diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/src/app/shared/shared-main/angular/number-formatter.pipe.ts | 17 | ||||
-rw-r--r-- | client/src/app/shared/shared-video-miniature/video-download.component.ts | 5 | ||||
-rw-r--r-- | client/src/locale/angular.cs-CZ.xlf | 10538 | ||||
-rw-r--r-- | client/src/locale/angular.de-DE.xlf | 266 | ||||
-rw-r--r-- | client/src/locale/angular.ru-RU.xlf | 546 | ||||
-rw-r--r-- | client/src/locale/angular.tr-TR.xlf | 9480 | ||||
-rw-r--r-- | client/src/locale/angular.uk-UA.xlf | 16 | ||||
-rw-r--r-- | client/src/locale/player.tzm.json | 28 | ||||
-rw-r--r-- | client/src/locale/server.uk-UA.json | 2 |
9 files changed, 11103 insertions, 9795 deletions
diff --git a/client/src/app/shared/shared-main/angular/number-formatter.pipe.ts b/client/src/app/shared/shared-main/angular/number-formatter.pipe.ts index 5e6ccfa16..8badb1573 100644 --- a/client/src/app/shared/shared-main/angular/number-formatter.pipe.ts +++ b/client/src/app/shared/shared-main/angular/number-formatter.pipe.ts | |||
@@ -1,14 +1,10 @@ | |||
1 | import { Pipe, PipeTransform } from '@angular/core' | 1 | import { formatNumber } from '@angular/common' |
2 | import { Inject, LOCALE_ID, Pipe, PipeTransform } from '@angular/core' | ||
2 | 3 | ||
3 | // Thanks: https://github.com/danrevah/ngx-pipes/blob/master/src/ng-pipes/pipes/math/bytes.ts | 4 | // Thanks: https://github.com/danrevah/ngx-pipes/blob/master/src/ng-pipes/pipes/math/bytes.ts |
4 | 5 | ||
5 | @Pipe({ name: 'myNumberFormatter' }) | 6 | @Pipe({ name: 'myNumberFormatter' }) |
6 | export class NumberFormatterPipe implements PipeTransform { | 7 | export class NumberFormatterPipe implements PipeTransform { |
7 | private dictionary: Array<{max: number, type: string}> = [ | ||
8 | { max: 1000, type: '' }, | ||
9 | { max: 1000000, type: 'K' }, | ||
10 | { max: 1000000000, type: 'M' } | ||
11 | ] | ||
12 | 8 | ||
13 | /** | 9 | /** |
14 | * @param x number | 10 | * @param x number |
@@ -21,6 +17,13 @@ export class NumberFormatterPipe implements PipeTransform { | |||
21 | return +f | 17 | return +f |
22 | } | 18 | } |
23 | 19 | ||
20 | private dictionary: Array<{max: number, type: string}> = [ | ||
21 | { max: 1000, type: '' }, | ||
22 | { max: 1000000, type: 'K' }, | ||
23 | { max: 1000000000, type: 'M' } | ||
24 | ] | ||
25 | constructor (@Inject(LOCALE_ID) private localeId: string) {} | ||
26 | |||
24 | transform (value: number) { | 27 | transform (value: number) { |
25 | const format = this.dictionary.find(d => value < d.max) || this.dictionary[this.dictionary.length - 1] | 28 | const format = this.dictionary.find(d => value < d.max) || this.dictionary[this.dictionary.length - 1] |
26 | const calc = value / (format.max / 1000) | 29 | const calc = value / (format.max / 1000) |
@@ -28,7 +31,7 @@ export class NumberFormatterPipe implements PipeTransform { | |||
28 | const decimalPart = NumberFormatterPipe.getDecimalForNumber(calc) | 31 | const decimalPart = NumberFormatterPipe.getDecimalForNumber(calc) |
29 | 32 | ||
30 | return integralPart < 10 && decimalPart > 0 | 33 | return integralPart < 10 && decimalPart > 0 |
31 | ? `${integralPart}.${decimalPart}${format.type}` | 34 | ? formatNumber(parseFloat(`${integralPart}.${decimalPart}`), this.localeId) + format.type |
32 | : `${integralPart}${format.type}` | 35 | : `${integralPart}${format.type}` |
33 | } | 36 | } |
34 | } | 37 | } |
diff --git a/client/src/app/shared/shared-video-miniature/video-download.component.ts b/client/src/app/shared/shared-video-miniature/video-download.component.ts index 99838f712..70b27b105 100644 --- a/client/src/app/shared/shared-video-miniature/video-download.component.ts +++ b/client/src/app/shared/shared-video-miniature/video-download.component.ts | |||
@@ -1,5 +1,5 @@ | |||
1 | import { mapValues, pick } from 'lodash-es' | 1 | import { mapValues, pick } from 'lodash-es' |
2 | import { Component, ElementRef, ViewChild } from '@angular/core' | 2 | import { Component, ElementRef, Inject, LOCALE_ID, ViewChild } from '@angular/core' |
3 | import { AuthService, Notifier } from '@app/core' | 3 | import { AuthService, Notifier } from '@app/core' |
4 | import { NgbActiveModal, NgbModal } from '@ng-bootstrap/ng-bootstrap' | 4 | import { NgbActiveModal, NgbModal } from '@ng-bootstrap/ng-bootstrap' |
5 | import { VideoCaption, VideoFile, VideoPrivacy } from '@shared/models' | 5 | import { VideoCaption, VideoFile, VideoPrivacy } from '@shared/models' |
@@ -34,13 +34,14 @@ export class VideoDownloadComponent { | |||
34 | private numbersPipe: NumberFormatterPipe | 34 | private numbersPipe: NumberFormatterPipe |
35 | 35 | ||
36 | constructor ( | 36 | constructor ( |
37 | @Inject(LOCALE_ID) private localeId: string, | ||
37 | private notifier: Notifier, | 38 | private notifier: Notifier, |
38 | private modalService: NgbModal, | 39 | private modalService: NgbModal, |
39 | private videoService: VideoService, | 40 | private videoService: VideoService, |
40 | private auth: AuthService | 41 | private auth: AuthService |
41 | ) { | 42 | ) { |
42 | this.bytesPipe = new BytesPipe() | 43 | this.bytesPipe = new BytesPipe() |
43 | this.numbersPipe = new NumberFormatterPipe() | 44 | this.numbersPipe = new NumberFormatterPipe(this.localeId) |
44 | } | 45 | } |
45 | 46 | ||
46 | get typeText () { | 47 | get typeText () { |
diff --git a/client/src/locale/angular.cs-CZ.xlf b/client/src/locale/angular.cs-CZ.xlf index 4021cb03d..7f0d809cd 100644 --- a/client/src/locale/angular.cs-CZ.xlf +++ b/client/src/locale/angular.cs-CZ.xlf | |||
@@ -1,320 +1,281 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | 1 | <?xml version='1.0' encoding='UTF-8'?> |
2 | <!--XLIFF document generated by Zanata. Visit http://zanata.org for more infomation.--> | 2 | <!--XLIFF document generated by Zanata. Visit http://zanata.org for more infomation.--> |
3 | <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.2.xsd" version="1.2"> | 3 | <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.2.xsd" version="1.2"> |
4 | <file source-language="en-US" datatype="plaintext" original="" target-language="cs-CZ"> | 4 | <file source-language="en-US" datatype="plaintext" original="" target-language="cs-CZ"> |
5 | <body> | 5 | <body> |
6 | |||
7 | |||
8 | |||
9 | |||
10 | |||
11 | |||
12 | |||
13 | |||
14 | |||
15 | |||
16 | |||
17 | |||
18 | |||
19 | |||
20 | |||
21 | |||
22 | |||
23 | |||
24 | |||
25 | |||
26 | |||
27 | |||
28 | |||
29 | |||
30 | |||
31 | |||
32 | |||
33 | |||
34 | |||
35 | |||
36 | |||
37 | <trans-unit id="219462505467671767" datatype="html"> | 6 | <trans-unit id="219462505467671767" datatype="html"> |
38 | <source>Close the left menu</source><target state="new">Close the left menu</target> | 7 | <source>Close the left menu</source> |
8 | <target state="translated">Zavřít levou nabídku</target> | ||
39 | <context-group purpose="location"> | 9 | <context-group purpose="location"> |
40 | <context context-type="sourcefile">src/app/app.component.ts</context> | 10 | <context context-type="sourcefile">src/app/app.component.ts</context> |
41 | <context context-type="linenumber">109</context> | 11 | <context context-type="linenumber">109</context> |
42 | </context-group> | 12 | </context-group> |
43 | </trans-unit><trans-unit id="3455550526898419928" datatype="html"> | 13 | </trans-unit> |
44 | <source>Open the left menu</source><target state="new">Open the left menu</target> | 14 | <trans-unit id="3455550526898419928" datatype="html"> |
15 | <source>Open the left menu</source> | ||
16 | <target state="translated">Otevřít levou nabídku</target> | ||
45 | <context-group purpose="location"> | 17 | <context-group purpose="location"> |
46 | <context context-type="sourcefile">src/app/app.component.ts</context> | 18 | <context context-type="sourcefile">src/app/app.component.ts</context> |
47 | <context context-type="linenumber">111</context> | 19 | <context context-type="linenumber">111</context> |
48 | </context-group> | 20 | </context-group> |
49 | </trans-unit><trans-unit id="f50983ee112befc1afddea5c570283db67e20fed" datatype="html"> | 21 | </trans-unit> |
22 | <trans-unit id="f50983ee112befc1afddea5c570283db67e20fed" datatype="html"> | ||
50 | <source>Channel avatar</source> | 23 | <source>Channel avatar</source> |
51 | <target state="new">Channel avatar</target> | 24 | <target state="new">Channel avatar</target> |
52 | 25 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">4</context></context-group> | |
53 | 26 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">17</context></context-group> | |
54 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 27 | </trans-unit> |
55 | <trans-unit id="879fef27271d8247d791381cf1f9bb0eb8974166" datatype="html"> | 28 | <trans-unit id="879fef27271d8247d791381cf1f9bb0eb8974166" datatype="html"> |
56 | <source>Account avatar</source> | 29 | <source>Account avatar</source> |
57 | <target state="new">Account avatar</target> | 30 | <target state="new">Account avatar</target> |
58 | 31 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">7</context></context-group> | |
59 | 32 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">13</context></context-group> | |
60 | 33 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">23</context></context-group> | |
61 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">7</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 34 | </trans-unit> |
62 | <trans-unit id="f3e63578c50546530daf6050d2ba6f8226040f2c"> | 35 | <trans-unit id="f3e63578c50546530daf6050d2ba6f8226040f2c"> |
63 | <source>You don't have notifications.</source> | 36 | <source>You don't have notifications.</source> |
64 | <target>Nemáte oznámení.</target> | 37 | <target>Nemáte oznámení.</target> |
65 | 38 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">1</context></context-group> | |
66 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 39 | </trans-unit> |
67 | <trans-unit id="1cff8e38c81055fa0ae7dbc80a7a0c5c39bbc263" datatype="html"> | 40 | <trans-unit id="1cff8e38c81055fa0ae7dbc80a7a0c5c39bbc263" datatype="html"> |
68 | <source> <x id="INTERPOLATION"/> published a new video: <x id="START_LINK"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> | 41 | <source><x id="INTERPOLATION"/> published a new video: <x id="START_LINK"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> |
69 | <target state="new"> | 42 | <target state="new"> |
70 | <x id="INTERPOLATION" equiv-text="{{ notification.video.channel.displayName }}"/> published a new video: | 43 | <x id="INTERPOLATION" equiv-text="{{ notification.video.channel.displayName }}"/> published a new video: |
71 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 44 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> |
72 | <x id="INTERPOLATION_1" equiv-text="{{ notification.video.name }}"/> | 45 | <x id="INTERPOLATION_1" equiv-text="{{ notification.video.name }}"/> |
73 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 46 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
74 | </target> | 47 | </target> |
75 | 48 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">15</context></context-group> | |
76 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 49 | </trans-unit> |
77 | <trans-unit id="5f61f85f3c9e196f7044fec4dfe165b081e14a3f" datatype="html"> | 50 | <trans-unit id="5f61f85f3c9e196f7044fec4dfe165b081e14a3f" datatype="html"> |
78 | <source> | 51 | <source>The notification concerns a video now unavailable</source> |
79 | The notification concerns a video now unavailable | ||
80 | </source> | ||
81 | <target state="new"> | 52 | <target state="new"> |
82 | The notification concerns a video now unavailable | 53 | The notification concerns a video now unavailable |
83 | </target> | 54 | </target> |
84 | 55 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">24</context></context-group> | |
85 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 56 | </trans-unit> |
86 | <trans-unit id="03ccba66e74e25303828fc37062dda862ec272dc" datatype="html"> | 57 | <trans-unit id="03ccba66e74e25303828fc37062dda862ec272dc" datatype="html"> |
87 | <source> Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been unblocked </source> | 58 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been unblocked </source> |
88 | <target state="new"> | 59 | <target state="new"> |
89 | Your video | 60 | Your video |
90 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 61 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> |
91 | <x id="INTERPOLATION" equiv-text="{{ notification.video.name }}"/> | 62 | <x id="INTERPOLATION" equiv-text="{{ notification.video.name }}"/> |
92 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been unblocked | 63 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been unblocked |
93 | 64 | ||
94 | </target> | 65 | </target> |
95 | 66 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">33</context></context-group> | |
96 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 67 | </trans-unit> |
97 | <trans-unit id="b1393385d75d42dfb7e893e3e99290bcc697e791" datatype="html"> | 68 | <trans-unit id="b1393385d75d42dfb7e893e3e99290bcc697e791" datatype="html"> |
98 | <source> Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been blocked </source> | 69 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been blocked </source> |
99 | <target state="new"> | 70 | <target state="new"> |
100 | Your video | 71 | Your video |
101 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 72 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> |
102 | <x id="INTERPOLATION" equiv-text="{{ notification.videoBlacklist.video.name }}"/> | 73 | <x id="INTERPOLATION" equiv-text="{{ notification.videoBlacklist.video.name }}"/> |
103 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been blocked | 74 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been blocked |
104 | 75 | ||
105 | </target> | 76 | </target> |
106 | 77 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">41</context></context-group> | |
107 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 78 | </trans-unit> |
108 | <trans-unit id="552e90b955a7121d58f6e5a38b68c7e90f5ed90c" datatype="html"> | 79 | <trans-unit id="552e90b955a7121d58f6e5a38b68c7e90f5ed90c" datatype="html"> |
109 | <source><x id="START_LINK"/>A new video abuse<x id="CLOSE_LINK"/> has been created on video <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> | 80 | <source><x id="START_LINK"/>A new video abuse<x id="CLOSE_LINK"/> has been created on video <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> |
110 | <target state="new"> | 81 | <target state="new"> |
111 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new video abuse | 82 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new video abuse |
112 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created on video | 83 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created on video |
113 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> | 84 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> |
114 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.video.name }}"/> | 85 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.video.name }}"/> |
115 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 86 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
116 | </target> | 87 | </target> |
117 | 88 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">49</context></context-group> | |
118 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 89 | </trans-unit> |
119 | <trans-unit id="c039b9ff89810152d8c0006979d3542a122cd286" datatype="html"> | 90 | <trans-unit id="c039b9ff89810152d8c0006979d3542a122cd286" datatype="html"> |
120 | <source><x id="START_LINK"/>A new comment abuse<x id="CLOSE_LINK"/> has been created on video <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> | 91 | <source><x id="START_LINK"/>A new comment abuse<x id="CLOSE_LINK"/> has been created on video <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> |
121 | <target state="new"> | 92 | <target state="new"> |
122 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new comment abuse | 93 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new comment abuse |
123 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created on video | 94 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created on video |
124 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> | 95 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> |
125 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.comment.video.name }}"/> | 96 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.comment.video.name }}"/> |
126 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 97 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
127 | </target> | 98 | </target> |
128 | 99 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">53</context></context-group> | |
129 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> | 100 | </trans-unit> |
130 | <trans-unit id="bfe60e77cfae17a8719a5fb422fb7e4b2bcc83c2" datatype="html"> | 101 | <trans-unit id="bfe60e77cfae17a8719a5fb422fb7e4b2bcc83c2" datatype="html"> |
131 | <source><x id="START_LINK"/>A new account abuse<x id="CLOSE_LINK"/> has been created on account <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> | 102 | <source><x id="START_LINK"/>A new account abuse<x id="CLOSE_LINK"/> has been created on account <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> |
132 | <target state="new"> | 103 | <target state="new"> |
133 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new account abuse | 104 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new account abuse |
134 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created on account | 105 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created on account |
135 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> | 106 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> |
136 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.account.displayName }}"/> | 107 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.account.displayName }}"/> |
137 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 108 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
138 | </target> | 109 | </target> |
139 | 110 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">57</context></context-group> | |
140 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | 111 | </trans-unit> |
141 | <trans-unit id="285ef550cb17086e949266777312a1884bd7d739" datatype="html"> | 112 | <trans-unit id="285ef550cb17086e949266777312a1884bd7d739" datatype="html"> |
142 | <source><x id="START_LINK"/>A new abuse<x id="CLOSE_LINK"/> has been created </source> | 113 | <source><x id="START_LINK"/>A new abuse<x id="CLOSE_LINK"/> has been created </source> |
143 | <target state="new"> | 114 | <target state="new"> |
144 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new abuse | 115 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new abuse |
145 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created | 116 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created |
146 | 117 | ||
147 | </target> | 118 | </target> |
148 | 119 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">62</context></context-group> | |
149 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 120 | </trans-unit> |
150 | <trans-unit id="680ba11d9548df295024d7f8ab7b816580725d5d" datatype="html"> | 121 | <trans-unit id="680ba11d9548df295024d7f8ab7b816580725d5d" datatype="html"> |
151 | <source><x id="START_LINK"/>Your abuse <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been <x id="START_TAG_NG_CONTAINER"/>accepted<x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>rejected<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 122 | <source><x id="START_LINK"/>Your abuse <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been <x id="START_TAG_NG_CONTAINER"/>accepted<x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>rejected<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
152 | <target state="new"> | 123 | <target state="new"> |
153 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Your abuse | 124 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Your abuse |
154 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.id }}"/> | 125 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.id }}"/> |
155 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been | 126 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been |
156 | 127 | ||
157 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>accepted | 128 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>accepted |
158 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | 129 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> |
159 | <x id="START_TAG_NG-CONTAINER_1" ctype="x-ng-container" equiv-text="<ng-container>"/>rejected | 130 | <x id="START_TAG_NG-CONTAINER_1" ctype="x-ng-container" equiv-text="<ng-container>"/>rejected |
160 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | 131 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> |
161 | </target> | 132 | </target> |
162 | 133 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">70</context></context-group> | |
163 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 134 | </trans-unit> |
164 | <trans-unit id="3f8e1a007a869471c5ab6e9b6149165ecc26e4ad" datatype="html"> | 135 | <trans-unit id="3f8e1a007a869471c5ab6e9b6149165ecc26e4ad" datatype="html"> |
165 | <source><x id="START_LINK"/>Abuse <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has a new message </source> | 136 | <source><x id="START_LINK"/>Abuse <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has a new message </source> |
166 | <target state="new"> | 137 | <target state="new"> |
167 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Abuse | 138 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Abuse |
168 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.id }}"/> | 139 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.id }}"/> |
169 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has a new message | 140 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has a new message |
170 | 141 | ||
171 | </target> | 142 | </target> |
172 | 143 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">80</context></context-group> | |
173 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">80</context></context-group></trans-unit> | 144 | </trans-unit> |
174 | <trans-unit id="9daaf09c3048f62f102989d1c6f3fe2f3770062f" datatype="html"> | 145 | <trans-unit id="9daaf09c3048f62f102989d1c6f3fe2f3770062f" datatype="html"> |
175 | <source> The recently added video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been <x id="START_LINK_1"/>automatically blocked<x id="CLOSE_LINK"/></source> | 146 | <source>The recently added video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been <x id="START_LINK_1"/>automatically blocked<x id="CLOSE_LINK"/></source> |
176 | <target state="new"> | 147 | <target state="new"> |
177 | The recently added video | 148 | The recently added video |
178 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 149 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> |
179 | <x id="INTERPOLATION" equiv-text="{{ notification.videoBlacklist.video.name }}"/> | 150 | <x id="INTERPOLATION" equiv-text="{{ notification.videoBlacklist.video.name }}"/> |
180 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been | 151 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been |
181 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/>automatically blocked | 152 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/>automatically blocked |
182 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 153 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
183 | </target> | 154 | </target> |
184 | 155 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">88</context></context-group> | |
185 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> | 156 | </trans-unit> |
186 | <trans-unit id="bb62d9c0e9059be1f08d6a03a946bdae8623e04a" datatype="html"> | 157 | <trans-unit id="bb62d9c0e9059be1f08d6a03a946bdae8623e04a" datatype="html"> |
187 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> commented your video <x id="START_LINK_1"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> | 158 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> commented your video <x id="START_LINK_1"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> |
188 | <target state="new"> | 159 | <target state="translated"><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> okomentoval vaše video <x id="START_LINK_1"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></target> |
189 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 160 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">101</context></context-group> |
190 | <x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/> | 161 | </trans-unit> |
191 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> commented your video | ||
192 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> | ||
193 | <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/> | ||
194 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | ||
195 | </target> | ||
196 | |||
197 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | ||
198 | <trans-unit id="4d2311a5156bd322cc7e2ebafcf6063ba8232e63" datatype="html"> | 162 | <trans-unit id="4d2311a5156bd322cc7e2ebafcf6063ba8232e63" datatype="html"> |
199 | <source> | 163 | <source>The notification concerns a comment now unavailable</source> |
200 | The notification concerns a comment now unavailable | ||
201 | </source> | ||
202 | <target state="new"> | 164 | <target state="new"> |
203 | The notification concerns a comment now unavailable | 165 | The notification concerns a comment now unavailable |
204 | </target> | 166 | </target> |
205 | 167 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">109</context></context-group> | |
206 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">109</context></context-group></trans-unit> | 168 | </trans-unit> |
207 | <trans-unit id="b187dd5f406f4195b326ab01fa81f823025821b9" datatype="html"> | 169 | <trans-unit id="b187dd5f406f4195b326ab01fa81f823025821b9" datatype="html"> |
208 | <source> Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been published </source> | 170 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been published </source> |
209 | <target state="translated">Vaše video | 171 | <target state="translated">Vaše video |
210 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 172 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> |
211 | <x id="INTERPOLATION" equiv-text="{{ notification.video.name }}"/> | 173 | <x id="INTERPOLATION" equiv-text="{{ notification.video.name }}"/> |
212 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> bylo publikováno | 174 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> bylo publikováno |
213 | </target> | 175 | </target> |
214 | 176 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">118</context></context-group> | |
215 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">118</context></context-group></trans-unit> | 177 | </trans-unit> |
216 | <trans-unit id="78dea99c581be394bf509426e114c9cda9f5825d" datatype="html"> | 178 | <trans-unit id="78dea99c581be394bf509426e114c9cda9f5825d" datatype="html"> |
217 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> succeeded </source> | 179 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> succeeded </source> |
218 | <target state="translated"> | 180 | <target state="translated"> |
219 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Impotování vašeho videa | 181 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Impotování vašeho videa |
220 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 182 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
221 | <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> se povedlo | 183 | <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> se povedlo |
222 | </target> | 184 | </target> |
223 | 185 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">126</context></context-group> | |
224 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 186 | </trans-unit> |
225 | <trans-unit id="dc586a7c70baa9217d98f58f4701fc3a29cd9d4d" datatype="html"> | 187 | <trans-unit id="dc586a7c70baa9217d98f58f4701fc3a29cd9d4d" datatype="html"> |
226 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> failed </source> | 188 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> failed </source> |
227 | <target state="translated"> | 189 | <target state="translated"> |
228 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Váš video import | 190 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Váš video import |
229 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 191 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
230 | <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> selhal | 192 | <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> selhal |
231 | </target> | 193 | </target> |
232 | 194 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">134</context></context-group> | |
233 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">134</context></context-group></trans-unit> | 195 | </trans-unit> |
234 | <trans-unit id="55c81d14a4e11004f0bcda5a47575f316e85e43e" datatype="html"> | 196 | <trans-unit id="55c81d14a4e11004f0bcda5a47575f316e85e43e" datatype="html"> |
235 | <source> User <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> registered on your instance </source> | 197 | <source>User <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> registered on your instance </source> |
236 | <target state="new"> | 198 | <target state="new"> |
237 | User | 199 | User |
238 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 200 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> |
239 | <x id="INTERPOLATION" equiv-text="{{ notification.account.name }}"/> | 201 | <x id="INTERPOLATION" equiv-text="{{ notification.account.name }}"/> |
240 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> registered on your instance | 202 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> registered on your instance |
241 | 203 | ||
242 | </target> | 204 | </target> |
243 | 205 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">142</context></context-group> | |
244 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">142</context></context-group></trans-unit> | 206 | </trans-unit> |
245 | <trans-unit id="0f146c0a4152eb93ec2ad119e1dec613864d64c6" datatype="html"> | 207 | <trans-unit id="0f146c0a4152eb93ec2ad119e1dec613864d64c6" datatype="html"> |
246 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> is following <x id="START_TAG_NG_CONTAINER"/>your channel <x id="INTERPOLATION_1"/><x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>your account<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 208 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> is following <x id="START_TAG_NG_CONTAINER"/>your channel <x id="INTERPOLATION_1"/><x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>your account<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
247 | <target state="translated"> | 209 | <target state="translated"> |
248 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 210 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> |
249 | <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow.follower.displayName }}"/> | 211 | <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow.follower.displayName }}"/> |
250 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> sleduje | 212 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> sleduje |
251 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>váš kanál | 213 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>váš kanál |
252 | <x id="INTERPOLATION_1" equiv-text="{{ notification.actorFollow.following.displayName }}"/> | 214 | <x id="INTERPOLATION_1" equiv-text="{{ notification.actorFollow.following.displayName }}"/> |
253 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | 215 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> |
254 | <x id="START_TAG_NG-CONTAINER_1" ctype="x-ng-container" equiv-text="<ng-container>"/>váš účet | 216 | <x id="START_TAG_NG-CONTAINER_1" ctype="x-ng-container" equiv-text="<ng-container>"/>váš účet |
255 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | 217 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> |
256 | </target> | 218 | </target> |
257 | 219 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">152</context></context-group> | |
258 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">152</context></context-group></trans-unit> | 220 | </trans-unit> |
259 | <trans-unit id="dde6b6ff4de622914ba78a2b584d070852eb710d" datatype="html"> | 221 | <trans-unit id="dde6b6ff4de622914ba78a2b584d070852eb710d" datatype="html"> |
260 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> mentioned you on <x id="START_LINK_1"/>video <x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> | 222 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> mentioned you on <x id="START_LINK_1"/>video <x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> |
261 | <target state="new"> | 223 | <target state="new"> |
262 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 224 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> |
263 | <x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/> | 225 | <x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/> |
264 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> mentioned you on | 226 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> mentioned you on |
265 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/>video | 227 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/>video |
266 | <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/> | 228 | <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/> |
267 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 229 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
268 | </target> | 230 | </target> |
269 | 231 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">165</context></context-group> | |
270 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 232 | </trans-unit> |
271 | <trans-unit id="790986a06ed0bbab17b7e91c166ea4dfd96e7d3d" datatype="html"> | 233 | <trans-unit id="790986a06ed0bbab17b7e91c166ea4dfd96e7d3d" datatype="html"> |
272 | <source> Your instance has <x id="START_LINK"/>a new follower<x id="CLOSE_LINK"/> (<x id="INTERPOLATION"/>) <x id="START_TAG_NG_CONTAINER"/> awaiting your approval<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 234 | <source>Your instance has <x id="START_LINK"/>a new follower<x id="CLOSE_LINK"/> (<x id="INTERPOLATION"/>) <x id="START_TAG_NG_CONTAINER"/> awaiting your approval<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
273 | <target state="new"> | 235 | <target state="new"> |
274 | Your instance has | 236 | Your instance has |
275 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>a new follower | 237 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>a new follower |
276 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> ( | 238 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> ( |
277 | <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow?.follower.host }}"/>) | 239 | <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow?.follower.host }}"/>) |
278 | 240 | ||
279 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> awaiting your approval | 241 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> awaiting your approval |
280 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | 242 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> |
281 | </target> | 243 | </target> |
282 | 244 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">173</context></context-group> | |
283 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">173</context></context-group></trans-unit> | 245 | </trans-unit> |
284 | <trans-unit id="b5a16cb819b18286a1a85e2a311045b920bfd559" datatype="html"> | 246 | <trans-unit id="b5a16cb819b18286a1a85e2a311045b920bfd559" datatype="html"> |
285 | <source> Your instance automatically followed <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> | 247 | <source>Your instance automatically followed <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> |
286 | <target state="translated">Vaše instance automaticky začala sledovat | 248 | <target state="translated">Vaše instance automaticky začala sledovat <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></target> |
287 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 249 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">182</context></context-group> |
288 | <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow.following.host }}"/> | 250 | </trans-unit> |
289 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 251 | <trans-unit id="d60604b8e42b3e6f9612ae780b2547b537250849" datatype="html"> |
290 | </target> | 252 | <source>The notification points to content now unavailable</source> |
291 | 253 | <target state="new"> The notification points to content now unavailable </target> | |
292 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">182</context></context-group></trans-unit><trans-unit id="d60604b8e42b3e6f9612ae780b2547b537250849" datatype="html"> | 254 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">190</context></context-group> |
293 | <source> The notification points to content now unavailable </source><target state="new"> The notification points to content now unavailable </target> | 255 | </trans-unit> |
294 | |||
295 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">190</context></context-group></trans-unit> | ||
296 | |||
297 | <trans-unit id="3fb9a5f7268114445d8c109a8f48102e93471f5a" datatype="html"> | 256 | <trans-unit id="3fb9a5f7268114445d8c109a8f48102e93471f5a" datatype="html"> |
298 | <source>Change your avatar</source> | 257 | <source>Change your avatar</source> |
299 | <target state="new">Change your avatar</target> | 258 | <target state="new">Change your avatar</target> |
300 | 259 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.html</context><context context-type="linenumber">16</context></context-group> | |
301 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="5779f601099ecd7ae8626722ef1d86f5c1a783dc" datatype="html"> | 260 | </trans-unit> |
302 | <source>Remove avatar</source><target state="new">Remove avatar</target> | 261 | <trans-unit id="5779f601099ecd7ae8626722ef1d86f5c1a783dc" datatype="html"> |
262 | <source>Remove avatar</source> | ||
263 | <target state="new">Remove avatar</target> | ||
303 | <context-group purpose="location"> | 264 | <context-group purpose="location"> |
304 | <context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.html</context> | 265 | <context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.html</context> |
305 | <context context-type="linenumber">41</context> | 266 | <context context-type="linenumber">41</context> |
306 | </context-group> | 267 | </context-group> |
307 | </trans-unit> | 268 | </trans-unit> |
308 | <trans-unit id="f9fdeb0495dd96319d13df9d9536760d0a98d9b5" datatype="html"> | 269 | <trans-unit id="f9fdeb0495dd96319d13df9d9536760d0a98d9b5" datatype="html"> |
309 | <source> | 270 | <source><x id="INTERPOLATION" equiv-text="{{ action.label }}"/> </source> |
310 | <x id="INTERPOLATION" equiv-text="{{ action.label }}"/> | ||
311 | </source> | ||
312 | <target state="new"> | 271 | <target state="new"> |
313 | <x id="INTERPOLATION" equiv-text="{{ action.label }}"/> | 272 | <x id="INTERPOLATION" equiv-text="{{ action.label }}"/> |
314 | </target> | 273 | </target> |
315 | 274 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context><context context-type="linenumber">22</context></context-group> | |
316 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit><trans-unit id="1486537403020619891" datatype="html"> | 275 | </trans-unit> |
317 | <source>My watch history</source><target state="new">My watch history</target> | 276 | <trans-unit id="1486537403020619891" datatype="html"> |
277 | <source>My watch history</source> | ||
278 | <target state="new">My watch history</target> | ||
318 | <context-group purpose="location"> | 279 | <context-group purpose="location"> |
319 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context> | 280 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context> |
320 | <context context-type="linenumber">49</context> | 281 | <context context-type="linenumber">49</context> |
@@ -323,238 +284,244 @@ | |||
323 | <trans-unit id="b2b638f4333842009c258a23e59dbe4160d1e566"> | 284 | <trans-unit id="b2b638f4333842009c258a23e59dbe4160d1e566"> |
324 | <source>Save to</source> | 285 | <source>Save to</source> |
325 | <target>Uložit na</target> | 286 | <target>Uložit na</target> |
326 | 287 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">4</context></context-group> | |
327 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 288 | </trans-unit> |
328 | <trans-unit id="24813b8a3e45f0b57136c18d003027262cfe2d1f"> | 289 | <trans-unit id="24813b8a3e45f0b57136c18d003027262cfe2d1f"> |
329 | <source>Options</source> | 290 | <source>Options</source> |
330 | <target>Možnosti</target> | 291 | <target>Možnosti</target> |
331 | 292 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">50</context></context-group> | |
332 | 293 | </trans-unit> | |
333 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | ||
334 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 294 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
335 | <source>Start at</source> | 295 | <source>Start at</source> |
336 | <target>Začít v čase</target> | 296 | <target>Začít v čase</target> |
337 | 297 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">57</context></context-group> | |
338 | 298 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">113</context></context-group> | |
339 | 299 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">34</context></context-group> | |
340 | 300 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">47</context></context-group> | |
341 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">57</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">113</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | 301 | </trans-unit> |
342 | <trans-unit id="4d20563f7e338a1d09eb756054564ccf7c6a30ef"> | 302 | <trans-unit id="4d20563f7e338a1d09eb756054564ccf7c6a30ef"> |
343 | <source>Stop at</source> | 303 | <source>Stop at</source> |
344 | <target>Zastavit v čase</target> | 304 | <target>Zastavit v čase</target> |
345 | 305 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">71</context></context-group> | |
346 | 306 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">144</context></context-group> | |
347 | 307 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">35</context></context-group> | |
348 | 308 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">62</context></context-group> | |
349 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">71</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">144</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 309 | </trans-unit> |
350 | <trans-unit id="020d5da7c3f4726e3623587a05a11f00e1d40409" datatype="html"> | 310 | <trans-unit id="020d5da7c3f4726e3623587a05a11f00e1d40409" datatype="html"> |
351 | <source> Your report will be sent to moderators of <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> and will be forwarded to the video origin (<x id="INTERPOLATION_1"/>) too<x id="CLOSE_TAG_NG_CONTAINER"/>. </source> | 311 | <source>Your report will be sent to moderators of <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> and will be forwarded to the video origin (<x id="INTERPOLATION_1"/>) too<x id="CLOSE_TAG_NG_CONTAINER"/>. </source> |
352 | <target state="new"> | 312 | <target state="new"> |
353 | Your report will be sent to moderators of | 313 | Your report will be sent to moderators of |
354 | <x id="INTERPOLATION" equiv-text="{{ currentHost }}"/> | 314 | <x id="INTERPOLATION" equiv-text="{{ currentHost }}"/> |
355 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> and will be forwarded to the video origin ( | 315 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> and will be forwarded to the video origin ( |
356 | <x id="INTERPOLATION_1" equiv-text="{{ originHost }}"/>) too | 316 | <x id="INTERPOLATION_1" equiv-text="{{ originHost }}"/>) too |
357 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/>. | 317 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/>. |
358 | 318 | ||
359 | </target> | 319 | </target> |
360 | 320 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">74</context></context-group> | |
361 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit> | 321 | </trans-unit> |
362 | <trans-unit id="04f47b9519b96ac834a111c0e113d18c77d177de" datatype="html"> | 322 | <trans-unit id="04f47b9519b96ac834a111c0e113d18c77d177de" datatype="html"> |
363 | <source>Please describe the issue...</source> | 323 | <source>Please describe the issue...</source> |
364 | <target state="new">Please describe the issue...</target> | 324 | <target state="new">Please describe the issue...</target> |
365 | 325 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">42</context></context-group> | |
366 | 326 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">80</context></context-group> | |
367 | 327 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">42</context></context-group> | |
368 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">80</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 328 | </trans-unit> |
369 | <trans-unit id="8efba03f22550a671ee2c2c6dfd1ff03ea047700" datatype="html"> | 329 | <trans-unit id="8efba03f22550a671ee2c2c6dfd1ff03ea047700" datatype="html"> |
370 | <source>Search playlists</source> | 330 | <source>Search playlists</source> |
371 | <target state="new">Search playlists</target> | 331 | <target state="new">Search playlists</target> |
372 | 332 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">9</context></context-group> | |
373 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 333 | </trans-unit> |
374 | <trans-unit id="19fc45e7e0cab63a8c4422ea7158bf5c6228cee4" datatype="html"> | 334 | <trans-unit id="19fc45e7e0cab63a8c4422ea7158bf5c6228cee4" datatype="html"> |
375 | <source>Create a private playlist</source> | 335 | <source>Create a private playlist</source> |
376 | <target state="new">Create a private playlist</target> | 336 | <target state="new">Create a private playlist</target> |
377 | 337 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">66</context></context-group> | |
378 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 338 | </trans-unit> |
379 | <trans-unit id="bc155f9fc3be3f32083f19b2c77d4ad3b696d9b9"> | 339 | <trans-unit id="bc155f9fc3be3f32083f19b2c77d4ad3b696d9b9"> |
380 | <source>Display name</source> | 340 | <source>Display name</source> |
381 | <target>Zobrazované jméno</target> | 341 | <target>Zobrazované jméno</target> |
382 | 342 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">8</context></context-group> | |
383 | 343 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group> | |
384 | 344 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group> | |
385 | 345 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">17</context></context-group> | |
386 | 346 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">71</context></context-group> | |
387 | 347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">53</context></context-group> | |
388 | 348 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">53</context></context-group> | |
389 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">71</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">53</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> | 349 | </trans-unit> |
390 | <trans-unit id="70a67e04629f6d412db0a12d51820b480788d795"> | 350 | <trans-unit id="70a67e04629f6d412db0a12d51820b480788d795"> |
391 | <source>Create</source> | 351 | <source>Create</source> |
392 | <target>Vytvořit</target> | 352 | <target>Vytvořit</target> |
393 | 353 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
394 | 354 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
395 | 355 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">81</context></context-group> | |
396 | 356 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
397 | 357 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
398 | 358 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
399 | 359 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
400 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">81</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 360 | </trans-unit> |
401 | <trans-unit id="e53246788ffa2660a170aa859691a55576df2e6c" datatype="html"> | 361 | <trans-unit id="e53246788ffa2660a170aa859691a55576df2e6c" datatype="html"> |
402 | <source>video</source> | 362 | <source>video</source> |
403 | <target state="new">video</target> | 363 | <target state="new">video</target> |
404 | 364 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">12</context></context-group> | |
405 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> | 365 | </trans-unit> |
406 | <trans-unit id="7cdda05962b3123483985a6fe7da45a7a564ecf9" datatype="html"> | 366 | <trans-unit id="7cdda05962b3123483985a6fe7da45a7a564ecf9" datatype="html"> |
407 | <source>subtitles</source> | 367 | <source>subtitles</source> |
408 | <target state="new">subtitles</target> | 368 | <target state="new">subtitles</target> |
409 | 369 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">11</context></context-group> | |
410 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 370 | </trans-unit> |
411 | <trans-unit id="7722a92a1fc887570b4f4d8a7bb916f067f32028" datatype="html"> | 371 | <trans-unit id="7722a92a1fc887570b4f4d8a7bb916f067f32028" datatype="html"> |
412 | <source>Format</source> | 372 | <source>Format</source> |
413 | <target state="new">Format</target> | 373 | <target state="new">Format</target> |
414 | 374 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">45</context></context-group> | |
415 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 375 | </trans-unit> |
416 | <trans-unit id="be745b3dc0df310871766eb6c8f78c3ce652a2b4" datatype="html"> | 376 | <trans-unit id="be745b3dc0df310871766eb6c8f78c3ce652a2b4" datatype="html"> |
417 | <source> | 377 | <source><x id="INTERPOLATION" equiv-text="{{ item.value.label }}"/> </source> |
418 | <x id="INTERPOLATION" equiv-text="{{ item.value.label }}"/> | ||
419 | </source> | ||
420 | <target state="new"> | 378 | <target state="new"> |
421 | <x id="INTERPOLATION" equiv-text="{{ item.value.label }}"/> | 379 | <x id="INTERPOLATION" equiv-text="{{ item.value.label }}"/> |
422 | </target> | 380 | </target> |
423 | 381 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">49</context></context-group> | |
424 | 382 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">61</context></context-group> | |
425 | 383 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">73</context></context-group> | |
426 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">49</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">61</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">73</context></context-group></trans-unit> | 384 | </trans-unit> |
427 | <trans-unit id="01504bc3847894e0816ec486648854d3835f91b0" datatype="html"> | 385 | <trans-unit id="01504bc3847894e0816ec486648854d3835f91b0" datatype="html"> |
428 | <source>Video stream</source> | 386 | <source>Video stream</source> |
429 | <target state="new">Video stream</target> | 387 | <target state="new">Video stream</target> |
430 | 388 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">57</context></context-group> | |
431 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | 389 | </trans-unit> |
432 | <trans-unit id="697b93fd14fd3c85be79056c6d7f459da204eff1" datatype="html"> | 390 | <trans-unit id="697b93fd14fd3c85be79056c6d7f459da204eff1" datatype="html"> |
433 | <source>Audio stream</source> | 391 | <source>Audio stream</source> |
434 | <target state="new">Audio stream</target> | 392 | <target state="new">Audio stream</target> |
435 | 393 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">69</context></context-group> | |
436 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 394 | </trans-unit> |
437 | <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c"> | 395 | <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c"> |
438 | <source>Direct download</source> | 396 | <source>Direct download</source> |
439 | <target>Přímý odkaz</target> | 397 | <target>Přímý odkaz</target> |
440 | 398 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">87</context></context-group> | |
441 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> | 399 | </trans-unit> |
442 | <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d"> | 400 | <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d"> |
443 | <source>Torrent (.torrent file)</source> | 401 | <source>Torrent (.torrent file)</source> |
444 | <target>Torrent (soubor .torrent)</target> | 402 | <target>Torrent (soubor .torrent)</target> |
445 | 403 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">92</context></context-group> | |
446 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit><trans-unit id="1006562256968398209" datatype="html"> | 404 | </trans-unit> |
447 | <source>video</source><target state="new">video</target> | 405 | <trans-unit id="1006562256968398209" datatype="html"> |
448 | 406 | <source>video</source> | |
449 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">48</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit><trans-unit id="5235042777215655908" datatype="html"> | 407 | <target state="new">video</target> |
450 | <source>subtitles</source><target state="new">subtitles</target> | 408 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">48</context></context-group> |
451 | 409 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">229</context></context-group> | |
452 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 410 | </trans-unit> |
411 | <trans-unit id="5235042777215655908" datatype="html"> | ||
412 | <source>subtitles</source> | ||
413 | <target state="new">subtitles</target> | ||
414 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">49</context></context-group> | ||
415 | </trans-unit> | ||
453 | <trans-unit id="da44efc7b658c318651866454d258bbbe57ff21c"> | 416 | <trans-unit id="da44efc7b658c318651866454d258bbbe57ff21c"> |
454 | <source>Cancel</source> | 417 | <source>Cancel</source> |
455 | <target> | 418 | <target> |
456 | Zrušit | 419 | Zrušit |
457 | </target> | 420 | </target> |
458 | 421 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">45</context></context-group> | |
459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 422 | </trans-unit> |
460 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 423 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
461 | <source>Download</source> | 424 | <source>Download</source> |
462 | <target>Stáhnout</target> | 425 | <target>Stáhnout</target> |
463 | 426 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">4</context></context-group> | |
464 | 427 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">104</context></context-group> | |
465 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 428 | </trans-unit> |
466 | <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125"> | 429 | <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125"> |
467 | <source>Reason...</source> | 430 | <source>Reason...</source> |
468 | <target>Důvod...</target> | 431 | <target>Důvod...</target> |
469 | 432 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">12</context></context-group> | |
470 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> | 433 | </trans-unit> |
471 | <trans-unit id="fb8aad312b72bbb7e5a1e2cc0b55fae8962bf0fb"> | 434 | <trans-unit id="fb8aad312b72bbb7e5a1e2cc0b55fae8962bf0fb"> |
472 | <source>Cancel</source> | 435 | <source>Cancel</source> |
473 | <target> | 436 | <target> |
474 | Zrušit | 437 | Zrušit |
475 | </target> | 438 | </target> |
476 | 439 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">19</context></context-group> | |
477 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 440 | </trans-unit> |
478 | <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd"> | 441 | <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd"> |
479 | <source>Submit</source> | 442 | <source>Submit</source> |
480 | <target>Odeslat</target> | 443 | <target>Odeslat</target> |
481 | 444 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">27</context></context-group> | |
482 | 445 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">57</context></context-group> | |
483 | 446 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">43</context></context-group> | |
484 | 447 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">95</context></context-group> | |
485 | 448 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">53</context></context-group> | |
486 | 449 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">57</context></context-group> | |
487 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">57</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">53</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | 450 | </trans-unit> |
488 | <trans-unit id="448d436df053141260523149173073ccbb0259f9" datatype="html"> | 451 | <trans-unit id="448d436df053141260523149173073ccbb0259f9" datatype="html"> |
489 | <source>Report video "<x id="INTERPOLATION"/>"</source> | 452 | <source>Report video "<x id="INTERPOLATION"/>"</source> |
490 | <target state="new">Report video " | 453 | <target state="translated">Nahlásit video " <x id="INTERPOLATION"/>"</target> |
491 | <x id="INTERPOLATION" equiv-text="{{ video.name }}"/>" | 454 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">3</context></context-group> |
492 | </target> | 455 | </trans-unit> |
493 | |||
494 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | ||
495 | <trans-unit id="97916f2928694b8d574b6f052b93e54565ed9823" datatype="html"> | 456 | <trans-unit id="97916f2928694b8d574b6f052b93e54565ed9823" datatype="html"> |
496 | <source>What is the issue?</source> | 457 | <source>What is the issue?</source> |
497 | <target state="new">What is the issue?</target> | 458 | <target state="new">What is the issue?</target> |
498 | 459 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">13</context></context-group> | |
499 | 460 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">13</context></context-group> | |
500 | 461 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">13</context></context-group> | |
501 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 462 | </trans-unit> |
502 | <trans-unit id="297603f796b0d287ac02b80d5aca6156c91a8fea" datatype="html"> | 463 | <trans-unit id="297603f796b0d287ac02b80d5aca6156c91a8fea" datatype="html"> |
503 | <source>This will ask remote instances to delete it</source> | 464 | <source>This will ask remote instances to delete it</source> |
504 | <target state="new">This will ask remote instances to delete it</target> | 465 | <target state="new">This will ask remote instances to delete it</target> |
505 | 466 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">27</context></context-group> | |
506 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit><trans-unit id="a5065c0f26fbd00b6f6ac0cf948535a44fffbd45" datatype="html"> | 467 | </trans-unit> |
507 | <source> Blocking this live will automatically terminate the live stream. </source><target state="new"> Blocking this live will automatically terminate the live stream. </target> | 468 | <trans-unit id="a5065c0f26fbd00b6f6ac0cf948535a44fffbd45" datatype="html"> |
508 | 469 | <source>Blocking this live will automatically terminate the live stream.</source> | |
509 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 470 | <target state="new"> Blocking this live will automatically terminate the live stream. </target> |
471 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">33</context></context-group> | ||
472 | </trans-unit> | ||
510 | <trans-unit id="0cd0f27936731dabfd8d89277b781d5dd664bc89" datatype="html"> | 473 | <trans-unit id="0cd0f27936731dabfd8d89277b781d5dd664bc89" datatype="html"> |
511 | <source>Unfederate the video</source> | 474 | <source>Unfederate the video</source> |
512 | <target state="new">Unfederate the video</target> | 475 | <target state="new">Unfederate the video</target> |
513 | 476 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">24</context></context-group> | |
514 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 477 | </trans-unit> |
515 | <trans-unit id="4b3963c6d0863118fe9e9e33447d12be3c2db081"> | 478 | <trans-unit id="4b3963c6d0863118fe9e9e33447d12be3c2db081"> |
516 | <source>Unlisted</source> | 479 | <source>Unlisted</source> |
517 | <target>Neveřejné</target> | 480 | <target>Neveřejné</target> |
518 | 481 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">6</context></context-group> | |
519 | 482 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.html</context><context context-type="linenumber">9</context></context-group> | |
520 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 483 | </trans-unit> |
521 | <trans-unit id="ddd8a4986d2d1717a274a5a0fbed04988a819e69"> | 484 | <trans-unit id="ddd8a4986d2d1717a274a5a0fbed04988a819e69"> |
522 | <source>Private</source> | 485 | <source>Private</source> |
523 | <target>Soukromé</target> | 486 | <target>Soukromé</target> |
524 | 487 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">7</context></context-group> | |
525 | 488 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">33</context></context-group> | |
526 | 489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.html</context><context context-type="linenumber">10</context></context-group> | |
527 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">7</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 490 | </trans-unit> |
528 | <trans-unit id="f73a82bb90c6c856cc0d2e3b2f5c109460074912" datatype="html"> | 491 | <trans-unit id="f73a82bb90c6c856cc0d2e3b2f5c109460074912" datatype="html"> |
529 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | 492 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> |
530 | <target state="new">{VAR_PLURAL, plural, =1 {1 view} other { | 493 | <target state="new">{VAR_PLURAL, plural, =1 {1 view} other { |
531 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 494 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
532 | </target> | 495 | </target> |
533 | 496 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">3</context></context-group> | |
534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit><trans-unit id="7ac18f5bb1a9b9f245acc8497c2f165a7e9f8510" datatype="html"> | 497 | </trans-unit> |
535 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | 498 | <trans-unit id="7ac18f5bb1a9b9f245acc8497c2f165a7e9f8510" datatype="html"> |
536 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | 499 | <source><x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} "/> </source> |
537 | "/> </target> | 500 | <target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} "/> </target> |
538 | <context-group purpose="location"> | 501 | <context-group purpose="location"> |
539 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> | 502 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> |
540 | <context context-type="linenumber">3,4</context> | 503 | <context context-type="linenumber">3,4</context> |
541 | </context-group> | 504 | </context-group> |
542 | </trans-unit><trans-unit id="bcd730167966d931a8956022c370de9ac26bc3ac" datatype="html"> | 505 | </trans-unit> |
543 | <source>{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</source><target state="new">{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</target> | 506 | <trans-unit id="bcd730167966d931a8956022c370de9ac26bc3ac" datatype="html"> |
507 | <source>{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</source> | ||
508 | <target state="new">{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</target> | ||
544 | <context-group purpose="location"> | 509 | <context-group purpose="location"> |
545 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> | 510 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> |
546 | <context context-type="linenumber">7</context> | 511 | <context context-type="linenumber">7</context> |
547 | </context-group> | 512 | </context-group> |
548 | </trans-unit><trans-unit id="2a6ba0b4ffe992ddd03f40ee75b879996bdfb5f7" datatype="html"> | 513 | </trans-unit> |
549 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}} | 514 | <trans-unit id="2a6ba0b4ffe992ddd03f40ee75b879996bdfb5f7" datatype="html"> |
550 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}} | 515 | <source><x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}} "/> </source> |
551 | "/> </target> | 516 | <target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}} "/> </target> |
552 | <context-group purpose="location"> | 517 | <context-group purpose="location"> |
553 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> | 518 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> |
554 | <context context-type="linenumber">7,8</context> | 519 | <context context-type="linenumber">7,8</context> |
555 | </context-group> | 520 | </context-group> |
556 | </trans-unit><trans-unit id="3267631941074558910" datatype="html"> | 521 | </trans-unit> |
557 | <source>Cannot fetch information of this remote account</source><target state="new">Cannot fetch information of this remote account</target> | 522 | <trans-unit id="3267631941074558910" datatype="html"> |
523 | <source>Cannot fetch information of this remote account</source> | ||
524 | <target state="new">Cannot fetch information of this remote account</target> | ||
558 | <context-group purpose="location"> | 525 | <context-group purpose="location"> |
559 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.ts</context> | 526 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.ts</context> |
560 | <context context-type="linenumber">60</context> | 527 | <context context-type="linenumber">60</context> |
@@ -563,135 +530,135 @@ | |||
563 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 530 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
564 | <source>Blocked</source> | 531 | <source>Blocked</source> |
565 | <target state="new">Blocked</target> | 532 | <target state="new">Blocked</target> |
566 | 533 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">52</context></context-group> | |
567 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 534 | </trans-unit> |
568 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> | 535 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87"> |
569 | <source>Sensitive</source> | 536 | <source>Sensitive</source> |
570 | <target state="new"> | 537 | <target state="translated">Citlivé</target> |
571 | Sensitive | 538 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">57</context></context-group> |
572 | </target> | 539 | </trans-unit> |
573 | |||
574 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | ||
575 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> | 540 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> |
576 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 541 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
577 | <target>{VAR_PLURAL, plural, =0 {Žádná videa} =1 {1 video} other { | 542 | <target>{VAR_PLURAL, plural, =0 {Žádná videa} =1 {1 video} other { |
578 | <x id="INTERPOLATION" equiv-text="{{ playlist.videosLength }}"/> videí} } | 543 | <x id="INTERPOLATION" equiv-text="{{ playlist.videosLength }}"/> videí} } |
579 | </target> | 544 | </target> |
580 | 545 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">9</context></context-group> | |
581 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 546 | </trans-unit> |
582 | <trans-unit id="4999ffd919bb9af482aa4c53badd6cd654468582"> | 547 | <trans-unit id="4999ffd919bb9af482aa4c53badd6cd654468582"> |
583 | <source> | 548 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> |
584 | <x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> | ||
585 | </source> | ||
586 | <target> | 549 | <target> |
587 | <x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> | 550 | <x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> |
588 | </target> | 551 | </target> |
589 | 552 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">22</context></context-group> | |
590 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 553 | </trans-unit> |
591 | <trans-unit id="a3550f6ce98d90d2947fe062530629dc2d3923b4"> | 554 | <trans-unit id="a3550f6ce98d90d2947fe062530629dc2d3923b4"> |
592 | <source>Updated <x id="INTERPOLATION"/></source> | 555 | <source>Updated <x id="INTERPOLATION"/></source> |
593 | <target>Aktualizováno | 556 | <target>Aktualizováno <x id="INTERPOLATION"/></target> |
594 | <x id="INTERPOLATION" equiv-text="{{ playlist.updatedAt | myFromNow }}"/> | 557 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">29</context></context-group> |
595 | </target> | 558 | </trans-unit> |
596 | |||
597 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | ||
598 | <trans-unit id="15c02cb6b6c3be53477e502d3e1ee26955b23af0" datatype="html"> | 559 | <trans-unit id="15c02cb6b6c3be53477e502d3e1ee26955b23af0" datatype="html"> |
599 | <source>Unavailable</source> | 560 | <source>Unavailable</source> |
600 | <target state="new">Unavailable</target> | 561 | <target state="translated">Nedostupné</target> |
601 | 562 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">32</context></context-group> | |
602 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 563 | </trans-unit> |
603 | <trans-unit id="28df1b02fd88d2deb0212bc5d7ff34cf9492fa54" datatype="html"> | 564 | <trans-unit id="28df1b02fd88d2deb0212bc5d7ff34cf9492fa54" datatype="html"> |
604 | <source>Deleted</source> | 565 | <source>Deleted</source> |
605 | <target state="new">Deleted</target> | 566 | <target state="translated">Smazané</target> |
606 | 567 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">34</context></context-group> | |
607 | 568 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">116</context></context-group> | |
608 | 569 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">57</context></context-group> | |
609 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">116</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | 570 | </trans-unit> |
610 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> | 571 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> |
611 | <source>Edit starts/stops at</source> | 572 | <source>Edit starts/stops at</source> |
612 | <target>Upravit čas spuštění/zastavení</target> | 573 | <target>Upravit čas spuštění/zastavení</target> |
613 | 574 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">50</context></context-group> | |
614 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 575 | </trans-unit> |
615 | <trans-unit id="52c9a103b812f258bcddc3d90a6e3f46871d25fe"> | 576 | <trans-unit id="52c9a103b812f258bcddc3d90a6e3f46871d25fe"> |
616 | <source>Save</source> | 577 | <source>Save</source> |
617 | <target>Uložit</target> | 578 | <target>Uložit</target> |
618 | 579 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">16</context></context-group> | |
619 | 580 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">16</context></context-group> | |
620 | 581 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">77</context></context-group> | |
621 | 582 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">77</context></context-group> | |
622 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">82</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 583 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">82</context></context-group> |
584 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">38</context></context-group> | ||
585 | </trans-unit> | ||
623 | <trans-unit id="b9dee3108a18796bd69c6be316c8fb985b58fb8e"> | 586 | <trans-unit id="b9dee3108a18796bd69c6be316c8fb985b58fb8e"> |
624 | <source>Delete from <x id="INTERPOLATION"/></source> | 587 | <source>Delete from <x id="INTERPOLATION"/></source> |
625 | <target>Smazat ze seznamu | 588 | <target>Smazat ze <x id="INTERPOLATION"/></target> |
626 | <x id="INTERPOLATION" equiv-text="{{ playlist?.displayName }}"/> | 589 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">88</context></context-group> |
627 | </target> | 590 | </trans-unit> |
628 | |||
629 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> | ||
630 | <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e"> | 591 | <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e"> |
631 | <source>No results.</source> | 592 | <source>No results.</source> |
632 | <target>Žádné výsledky.</target> | 593 | <target>Žádné výsledky.</target> |
633 | 594 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group> | |
634 | 595 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group> | |
635 | 596 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">1</context></context-group> | |
636 | 597 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group> | |
637 | 598 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group> | |
638 | 599 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group> | |
639 | 600 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group> | |
640 | 601 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group> | |
641 | 602 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/overview/video-overview.component.html</context><context context-type="linenumber">4</context></context-group> | |
642 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">1</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/overview/video-overview.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 603 | </trans-unit> |
643 | <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7"> | 604 | <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7"> |
644 | <source>Delete</source> | 605 | <source>Delete</source> |
645 | <target>Odstranit</target> | 606 | <target>Odstranit</target> |
646 | 607 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">43</context></context-group> | |
647 | 608 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">178</context></context-group> | |
648 | 609 | </trans-unit> | |
649 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">178</context></context-group></trans-unit> | ||
650 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 610 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
651 | <source>Edit</source> | 611 | <source>Edit</source> |
652 | <target>Upravit</target> | 612 | <target>Upravit</target> |
653 | 613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group> | |
654 | 614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
655 | 615 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group> | |
656 | 616 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
657 | 617 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
658 | 618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
659 | 619 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">38</context></context-group> | |
660 | 620 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">270</context></context-group> | |
661 | 621 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
662 | 622 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
663 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">270</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 623 | </trans-unit> |
664 | <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> | 624 | <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> |
665 | <source>Truncated preview</source> | 625 | <source>Truncated preview</source> |
666 | <target>Rychlý náhled</target> | 626 | <target>Rychlý náhled</target> |
667 | 627 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">11</context></context-group> | |
668 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit><trans-unit id="8461609631969932886" datatype="html"> | 628 | </trans-unit> |
669 | <source>Hide</source><target state="new">Hide</target> | 629 | <trans-unit id="8461609631969932886" datatype="html"> |
670 | 630 | <source>Hide</source> | |
671 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="8461842260159597706" datatype="html"> | 631 | <target state="new">Hide</target> |
672 | <source>Show</source><target state="new">Show</target> | 632 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">38</context></context-group> |
673 | 633 | </trans-unit> | |
674 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 634 | <trans-unit id="8461842260159597706" datatype="html"> |
635 | <source>Show</source> | ||
636 | <target state="new">Show</target> | ||
637 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">39</context></context-group> | ||
638 | </trans-unit> | ||
675 | <trans-unit id="f82f53a2544638939a8ba93c0fb1b0a4419c3196"> | 639 | <trans-unit id="f82f53a2544638939a8ba93c0fb1b0a4419c3196"> |
676 | <source>Complete preview</source> | 640 | <source>Complete preview</source> |
677 | <target>Náhled</target> | 641 | <target>Náhled</target> |
678 | 642 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">19</context></context-group> | |
679 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 643 | </trans-unit> |
680 | <trans-unit id="8644431249513874405" datatype="html"> | 644 | <trans-unit id="8644431249513874405" datatype="html"> |
681 | <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> | 645 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> |
682 | 646 | <target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | |
683 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> | 647 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">75</context></context-group> |
648 | </trans-unit> | ||
684 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 649 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
685 | <source>Recommended</source> | 650 | <source>Recommended</source> |
686 | <target state="new">Recommended</target> | 651 | <target state="new">Recommended</target> |
687 | 652 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/peertube-checkbox.component.html</context><context context-type="linenumber">33</context></context-group> | |
688 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/peertube-checkbox.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 653 | </trans-unit> |
689 | <trans-unit id="9b3287f52c239cad05ec98391553e5052ba1aa66"> | 654 | <trans-unit id="9b3287f52c239cad05ec98391553e5052ba1aa66"> |
690 | <source>Using an ActivityPub account</source> | 655 | <source>Using an ActivityPub account</source> |
691 | <target>Pomocí účtu ActivityPub</target> | 656 | <target>Pomocí účtu ActivityPub</target> |
692 | 657 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">54</context></context-group> | |
693 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit><trans-unit id="606af655e677f8b06f27f09777cbb8a25b4de665" datatype="html"> | 658 | </trans-unit> |
694 | <source>Subscribe with a remote account:</source><target state="new">Subscribe with a remote account:</target> | 659 | <trans-unit id="606af655e677f8b06f27f09777cbb8a25b4de665" datatype="html"> |
660 | <source>Subscribe with a remote account:</source> | ||
661 | <target state="new">Subscribe with a remote account:</target> | ||
695 | <context-group purpose="location"> | 662 | <context-group purpose="location"> |
696 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 663 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
697 | <context context-type="linenumber">62</context> | 664 | <context context-type="linenumber">62</context> |
@@ -700,344 +667,378 @@ | |||
700 | <trans-unit id="c7e2b4c04a0459ebc4d2e54e419abb679bc713f2" datatype="html"> | 667 | <trans-unit id="c7e2b4c04a0459ebc4d2e54e419abb679bc713f2" datatype="html"> |
701 | <source>Subscribe with an account on this instance</source> | 668 | <source>Subscribe with an account on this instance</source> |
702 | <target state="new">Subscribe with an account on this instance</target> | 669 | <target state="new">Subscribe with an account on this instance</target> |
703 | 670 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">57</context></context-group> | |
704 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | 671 | </trans-unit> |
705 | <trans-unit id="e7adf422424a61b71465d183f9d44bf956482ef0"> | 672 | <trans-unit id="e7adf422424a61b71465d183f9d44bf956482ef0"> |
706 | <source>Subscribe with your local account</source> | 673 | <source>Subscribe with your local account</source> |
707 | <target>Odebírat přes místní účet</target> | 674 | <target>Odebírat přes místní účet</target> |
708 | 675 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">58</context></context-group> | |
709 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit><trans-unit id="1096694538966074574" datatype="html"> | 676 | </trans-unit> |
710 | <source>Published <x id="PH" equiv-text="total"/> videos matching "<x id="PH_1" equiv-text="this.search"/>"</source><target state="new">Published <x id="PH" equiv-text="total"/> videos matching "<x id="PH_1" equiv-text="this.search"/>"</target> | 677 | <trans-unit id="1096694538966074574" datatype="html"> |
678 | <source>Published <x id="PH" equiv-text="total"/> videos matching "<x id="PH_1" equiv-text="this.search"/>"</source> | ||
679 | <target state="new">Published <x id="PH" equiv-text="total"/> videos matching "<x id="PH_1" equiv-text="this.search"/>"</target> | ||
711 | <context-group purpose="location"> | 680 | <context-group purpose="location"> |
712 | <context context-type="sourcefile">src/app/+accounts/account-search/account-search.component.ts</context> | 681 | <context context-type="sourcefile">src/app/+accounts/account-search/account-search.component.ts</context> |
713 | <context context-type="linenumber">89</context> | 682 | <context context-type="linenumber">89</context> |
714 | </context-group> | 683 | </context-group> |
715 | </trans-unit><trans-unit id="7639191791633609999" datatype="html"> | 684 | </trans-unit> |
716 | <source>The live stream will be automatically terminated.</source><target state="new">The live stream will be automatically terminated.</target> | 685 | <trans-unit id="7639191791633609999" datatype="html"> |
717 | 686 | <source>The live stream will be automatically terminated.</source> | |
718 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">205</context></context-group></trans-unit> | 687 | <target state="new">The live stream will be automatically terminated.</target> |
719 | 688 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">205</context></context-group> | |
689 | </trans-unit> | ||
720 | <trans-unit id="d8758664cadd6452256ca25ca0c7259074f427c1"> | 690 | <trans-unit id="d8758664cadd6452256ca25ca0c7259074f427c1"> |
721 | <source>Using a syndication feed</source> | 691 | <source>Using a syndication feed</source> |
722 | <target>Pomocí syndikačního proudu</target> | 692 | <target>Pomocí syndikačního proudu</target> |
723 | 693 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">68</context></context-group> | |
724 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">68</context></context-group></trans-unit> | 694 | </trans-unit> |
725 | <trans-unit id="d5e5bc7d213694fc0414a76f0ff3085bae44268a"> | 695 | <trans-unit id="d5e5bc7d213694fc0414a76f0ff3085bae44268a"> |
726 | <source>Subscribe via RSS</source> | 696 | <source>Subscribe via RSS</source> |
727 | <target>Odebírat přes RSS</target> | 697 | <target>Odebírat přes RSS</target> |
728 | 698 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">69</context></context-group> | |
729 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 699 | </trans-unit> |
730 | <trans-unit id="3e486bad6576aa445ccb6051069e45a3658e4160" datatype="html"> | 700 | <trans-unit id="3e486bad6576aa445ccb6051069e45a3658e4160" datatype="html"> |
731 | <source>PROFILE SETTINGS</source> | 701 | <source>PROFILE SETTINGS</source> |
732 | <target state="new">PROFILE SETTINGS</target> | 702 | <target state="new">PROFILE SETTINGS</target> |
733 | 703 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group> | |
734 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> | 704 | </trans-unit> |
735 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> | 705 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> |
736 | <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> | 706 | <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> |
737 | <target> | 707 | <target> |
738 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/>Vzdálený odběr | 708 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/>Vzdálený odběr |
739 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> | 709 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> |
740 | <x id="START_TAG_SPAN_1" ctype="x-span" equiv-text="<span>"/>Vzdálená interakce | 710 | <x id="START_TAG_SPAN_1" ctype="x-span" equiv-text="<span>"/>Vzdálená interakce |
741 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> | 711 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> |
742 | </target> | 712 | </target> |
743 | 713 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context><context context-type="linenumber">11</context></context-group> | |
744 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit><trans-unit id="10fc5e7d31ac52e14a0ee249d718275d2f25771e" datatype="html"> | 714 | </trans-unit> |
745 | <source> You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </source><target state="new"> You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | 715 | <trans-unit id="10fc5e7d31ac52e14a0ee249d718275d2f25771e" datatype="html"> |
716 | <source>You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | ||
717 | <target state="new"> You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | ||
746 | <context-group purpose="location"> | 718 | <context-group purpose="location"> |
747 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | 719 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
748 | <context context-type="linenumber">18,19</context> | 720 | <context context-type="linenumber">18,19</context> |
749 | </context-group> | 721 | </context-group> |
750 | </trans-unit><trans-unit id="d27c1d2f9703f3afcfb9186fc57fe169d851cb06" datatype="html"> | 722 | </trans-unit> |
751 | <source> You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </source><target state="new"> You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | 723 | <trans-unit id="d27c1d2f9703f3afcfb9186fc57fe169d851cb06" datatype="html"> |
724 | <source>You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | ||
725 | <target state="new"> You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | ||
752 | <context-group purpose="location"> | 726 | <context-group purpose="location"> |
753 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | 727 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
754 | <context context-type="linenumber">26,27</context> | 728 | <context context-type="linenumber">26,27</context> |
755 | </context-group> | 729 | </context-group> |
756 | </trans-unit> | 730 | </trans-unit> |
757 | |||
758 | |||
759 | <trans-unit id="6513f65441f986d9204122e01b4ab1df1d63d18e" datatype="html"> | 731 | <trans-unit id="6513f65441f986d9204122e01b4ab1df1d63d18e" datatype="html"> |
760 | <source>PeerTube version</source> | 732 | <source>PeerTube version</source> |
761 | <target state="new">PeerTube version</target> | 733 | <target state="translated">Verze PeerTube</target> |
762 | 734 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">6</context></context-group> | |
763 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 735 | </trans-unit> |
764 | <trans-unit id="083e95bdf6f64257d2ddd399ecf9f48ab88e279f" datatype="html"> | 736 | <trans-unit id="083e95bdf6f64257d2ddd399ecf9f48ab88e279f" datatype="html"> |
765 | <source><x id="START_TAG_DIV"/>Default NSFW/sensitive videos policy<x id="CLOSE_TAG_DIV"/><x id="START_TAG_DIV_1"/>can be redefined by the users<x id="CLOSE_TAG_DIV"/></source> | 737 | <source><x id="START_TAG_DIV"/>Default NSFW/sensitive videos policy<x id="CLOSE_TAG_DIV"/><x id="START_TAG_DIV_1"/>can be redefined by the users<x id="CLOSE_TAG_DIV"/></source> |
766 | <target state="new"> | 738 | <target state="new"> |
767 | <x id="START_TAG_DIV" ctype="x-div" equiv-text="<div>"/>Default NSFW/sensitive videos policy | 739 | <x id="START_TAG_DIV" ctype="x-div" equiv-text="<div>"/>Default NSFW/sensitive videos policy |
768 | <x id="CLOSE_TAG_DIV" ctype="x-div" equiv-text="</div>"/> | 740 | <x id="CLOSE_TAG_DIV" ctype="x-div" equiv-text="</div>"/> |
769 | <x id="START_TAG_DIV_1" ctype="x-div" equiv-text="<div>"/>can be redefined by the users | 741 | <x id="START_TAG_DIV_1" ctype="x-div" equiv-text="<div>"/>can be redefined by the users |
770 | <x id="CLOSE_TAG_DIV" ctype="x-div" equiv-text="</div>"/> | 742 | <x id="CLOSE_TAG_DIV" ctype="x-div" equiv-text="</div>"/> |
771 | </target> | 743 | </target> |
772 | 744 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">13</context></context-group> | |
773 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 745 | </trans-unit> |
774 | <trans-unit id="87ca23d62c168409ed040dae83dd8717cae3f08c"> | 746 | <trans-unit id="87ca23d62c168409ed040dae83dd8717cae3f08c"> |
775 | <source>User registration allowed</source> | 747 | <source>User registration allowed</source> |
776 | <target>Registrace uživatelů povolena</target> | 748 | <target>Registrace uživatelů povolena</target> |
777 | 749 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">21</context></context-group> | |
778 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 750 | </trans-unit> |
779 | <trans-unit id="62c8c98c3957946709b49d0a5e309e53e660b9e2" datatype="html"> | 751 | <trans-unit id="62c8c98c3957946709b49d0a5e309e53e660b9e2" datatype="html"> |
780 | <source>Video uploads</source> | 752 | <source>Video uploads</source> |
781 | <target state="new">Video uploads</target> | 753 | <target state="new">Video uploads</target> |
782 | 754 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">28</context></context-group> | |
783 | 755 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">39</context></context-group> | |
784 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 756 | </trans-unit> |
785 | <trans-unit id="ba774dce7a0cbbc29d7086b8557939c7e8d9883d" datatype="html"> | 757 | <trans-unit id="ba774dce7a0cbbc29d7086b8557939c7e8d9883d" datatype="html"> |
786 | <source>Transcoding in multiple resolutions</source> | 758 | <source>Transcoding in multiple resolutions</source> |
787 | <target state="new">Transcoding in multiple resolutions</target> | 759 | <target state="new">Transcoding in multiple resolutions</target> |
788 | 760 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">32</context></context-group> | |
789 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="5e84ff80421724dc306284a6330c0910fb95c64d" datatype="html"> | 761 | </trans-unit> |
790 | <source>Live streaming enabled</source><target state="new">Live streaming enabled</target> | 762 | <trans-unit id="5e84ff80421724dc306284a6330c0910fb95c64d" datatype="html"> |
791 | 763 | <source>Live streaming enabled</source> | |
792 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit><trans-unit id="855e1ff3acad516b927095d3990aeff917f75fa3" datatype="html"> | 764 | <target state="new">Live streaming enabled</target> |
793 | <source>Transcode live video in multiple resolutions</source><target state="new">Transcode live video in multiple resolutions</target> | 765 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">71</context></context-group> |
794 | 766 | </trans-unit> | |
795 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit><trans-unit id="bc3387a5ccd470d163e6459ff017b9f2edca92f4" datatype="html"> | 767 | <trans-unit id="855e1ff3acad516b927095d3990aeff917f75fa3" datatype="html"> |
796 | <source>Max parallel lives</source><target state="new">Max parallel lives</target> | 768 | <source>Transcode live video in multiple resolutions</source> |
797 | 769 | <target state="new">Transcode live video in multiple resolutions</target> | |
798 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit><trans-unit id="1be38e8cd37e921dd4af3b6f6251168cc5536f24" datatype="html"> | 770 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">78</context></context-group> |
799 | <source> <x id="INTERPOLATION"/> per user / <x id="INTERPOLATION_1"/> per instance </source><target state="new"> <x id="INTERPOLATION"/> per user / <x id="INTERPOLATION_1"/> per instance </target> | 771 | </trans-unit> |
800 | 772 | <trans-unit id="bc3387a5ccd470d163e6459ff017b9f2edca92f4" datatype="html"> | |
801 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 773 | <source>Max parallel lives</source> |
774 | <target state="new">Max parallel lives</target> | ||
775 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">85</context></context-group> | ||
776 | </trans-unit> | ||
777 | <trans-unit id="1be38e8cd37e921dd4af3b6f6251168cc5536f24" datatype="html"> | ||
778 | <source><x id="INTERPOLATION"/> per user / <x id="INTERPOLATION_1"/> per instance </source> | ||
779 | <target state="new"> <x id="INTERPOLATION"/> per user / <x id="INTERPOLATION_1"/> per instance </target> | ||
780 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">86</context></context-group> | ||
781 | </trans-unit> | ||
802 | <trans-unit id="7deebcf3491b27625e9b308179a6635b48368dcb" datatype="html"> | 782 | <trans-unit id="7deebcf3491b27625e9b308179a6635b48368dcb" datatype="html"> |
803 | <source>Requires manual validation by moderators</source> | 783 | <source>Requires manual validation by moderators</source> |
804 | <target state="new">Requires manual validation by moderators</target> | 784 | <target state="new">Requires manual validation by moderators</target> |
805 | 785 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">41</context></context-group> | |
806 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 786 | </trans-unit> |
807 | <trans-unit id="f1155367f44b4e3d2286db687d324a9b0cc1a7cb" datatype="html"> | 787 | <trans-unit id="f1155367f44b4e3d2286db687d324a9b0cc1a7cb" datatype="html"> |
808 | <source>Automatically published</source> | 788 | <source>Automatically published</source> |
809 | <target state="new">Automatically published</target> | 789 | <target state="new">Automatically published</target> |
810 | 790 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">42</context></context-group> | |
811 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 791 | </trans-unit> |
812 | <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b"> | 792 | <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b"> |
813 | <source>Video quota</source> | 793 | <source>Video quota</source> |
814 | <target>Limit na videa</target> | 794 | <target>Limit na videa</target> |
815 | 795 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">47</context></context-group> | |
816 | 796 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | |
817 | 797 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | |
818 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group></trans-unit> | 798 | </trans-unit> |
819 | <trans-unit id="9270dfd4606fb45a991fe7716e640b6efa28ba85"> | 799 | <trans-unit id="9270dfd4606fb45a991fe7716e640b6efa28ba85"> |
820 | <source> Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 800 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
821 | <target> | 801 | <target> |
822 | Neomezeno | 802 | Neomezeno |
823 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>( | 803 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>( |
824 | <x id="INTERPOLATION" equiv-text="{{ dailyUserVideoQuota | bytes: 0 }}"/> za den) | 804 | <x id="INTERPOLATION" equiv-text="{{ dailyUserVideoQuota | bytes: 0 }}"/> za den) |
825 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | 805 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> |
826 | </target> | 806 | </target> |
827 | 807 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">61</context></context-group> | |
828 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> | 808 | </trans-unit> |
829 | <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36"> | 809 | <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36"> |
830 | <source>Import</source> | 810 | <source>Import</source> |
831 | <target>Import</target> | 811 | <target>Import</target> |
832 | 812 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">92</context></context-group> | |
833 | 813 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">44</context></context-group> | |
834 | 814 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">36</context></context-group> | |
835 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit><trans-unit id="a4378d599f760c6d1de2667d4535b48db092cb6e" datatype="html"> | 815 | </trans-unit> |
836 | <source> You can import any torrent file that points to a media file. 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. </source><target state="new"> You can import any torrent file that points to a media file. 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. </target> | 816 | <trans-unit id="a4378d599f760c6d1de2667d4535b48db092cb6e" datatype="html"> |
837 | 817 | <source>You can import any torrent file that points to a media file. 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.</source> | |
838 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 818 | <target state="new"> You can import any torrent file that points to a media file. 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. </target> |
819 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">20</context></context-group> | ||
820 | </trans-unit> | ||
839 | <trans-unit id="590fc27fcbd7dd680da2bb2da644a183338f6bd1" datatype="html"> | 821 | <trans-unit id="590fc27fcbd7dd680da2bb2da644a183338f6bd1" datatype="html"> |
840 | <source>HTTP import (YouTube, Vimeo, direct URL...)</source> | 822 | <source>HTTP import (YouTube, Vimeo, direct URL...)</source> |
841 | <target state="new">HTTP import (YouTube, Vimeo, direct URL...)</target> | 823 | <target state="new">HTTP import (YouTube, Vimeo, direct URL...)</target> |
842 | 824 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">96</context></context-group> | |
843 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 825 | </trans-unit> |
844 | <trans-unit id="4e231a74ad4739e7b0606e8e66d5a656f5855a5a" datatype="html"> | 826 | <trans-unit id="4e231a74ad4739e7b0606e8e66d5a656f5855a5a" datatype="html"> |
845 | <source>Torrent import</source> | 827 | <source>Torrent import</source> |
846 | <target state="new">Torrent import</target> | 828 | <target state="new">Torrent import</target> |
847 | 829 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">103</context></context-group> | |
848 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">103</context></context-group></trans-unit> | 830 | </trans-unit> |
849 | <trans-unit id="59bdc3dfa4075f92c734588899485db702c8f120" datatype="html"> | 831 | <trans-unit id="59bdc3dfa4075f92c734588899485db702c8f120" datatype="html"> |
850 | <source>Player</source> | 832 | <source>Player</source> |
851 | <target state="new">Player</target> | 833 | <target state="translated">Přehrávač</target> |
852 | 834 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">111</context></context-group> | |
853 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 835 | </trans-unit> |
854 | <trans-unit id="af80f4182e09341958e8706bd2b47ece61233eb5"> | 836 | <trans-unit id="af80f4182e09341958e8706bd2b47ece61233eb5"> |
855 | <source>P2P enabled</source> | 837 | <source>P2P enabled</source> |
856 | <target>P2P povoleno</target> | 838 | <target>P2P povoleno</target> |
857 | 839 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">115</context></context-group> | |
858 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">115</context></context-group></trans-unit> | 840 | </trans-unit> |
859 | <trans-unit id="b8b6a001cca6fa2ba15600ca3a78dfeebf685d60" datatype="html"> | 841 | <trans-unit id="b8b6a001cca6fa2ba15600ca3a78dfeebf685d60" datatype="html"> |
860 | <source>Loading instance statistics...</source> | 842 | <source>Loading instance statistics...</source> |
861 | <target state="new">Loading instance statistics...</target> | 843 | <target state="new">Loading instance statistics...</target> |
862 | 844 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">1</context></context-group> | |
863 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 845 | </trans-unit> |
864 | <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d"> | 846 | <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d"> |
865 | <source>Local</source> | 847 | <source>Local</source> |
866 | <target>Místní</target> | 848 | <target>Místní</target> |
867 | 849 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">4</context></context-group> | |
868 | 850 | </trans-unit> | |
869 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | ||
870 | <trans-unit id="7c7f4be7b726e61c577e63842a58d9e435f7c597" datatype="html"> | 851 | <trans-unit id="7c7f4be7b726e61c577e63842a58d9e435f7c597" datatype="html"> |
871 | <source>users</source> | 852 | <source>users</source> |
872 | <target state="new">users</target> | 853 | <target state="new">users</target> |
873 | 854 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">11</context></context-group> | |
874 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 855 | </trans-unit> |
875 | <trans-unit id="5bc509bb72973f9895241127d5556e9e31051137" datatype="html"> | 856 | <trans-unit id="5bc509bb72973f9895241127d5556e9e31051137" datatype="html"> |
876 | <source>videos</source> | 857 | <source>videos</source> |
877 | <target state="new">videos</target> | 858 | <target state="new">videos</target> |
878 | 859 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">21</context></context-group> | |
879 | 860 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">65</context></context-group> | |
880 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> | 861 | </trans-unit> |
881 | <trans-unit id="bd21b1e6b5674003187e5cbec0e7e2854f9d8388" datatype="html"> | 862 | <trans-unit id="bd21b1e6b5674003187e5cbec0e7e2854f9d8388" datatype="html"> |
882 | <source>video views</source> | 863 | <source>video views</source> |
883 | <target state="new">video views</target> | 864 | <target state="new">video views</target> |
884 | 865 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">31</context></context-group> | |
885 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 866 | </trans-unit> |
886 | <trans-unit id="d11fe88f08e43bfe4dec7d16fe469aa65d1e3d84" datatype="html"> | 867 | <trans-unit id="d11fe88f08e43bfe4dec7d16fe469aa65d1e3d84" datatype="html"> |
887 | <source>video comments</source> | 868 | <source>video comments</source> |
888 | <target state="new">video comments</target> | 869 | <target state="new">video comments</target> |
889 | 870 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">41</context></context-group> | |
890 | 871 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">75</context></context-group> | |
891 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">75</context></context-group></trans-unit> | 872 | </trans-unit> |
892 | <trans-unit id="0bedca44bfc0ef579be6053ffe0e8cdee9aba07d" datatype="html"> | 873 | <trans-unit id="0bedca44bfc0ef579be6053ffe0e8cdee9aba07d" datatype="html"> |
893 | <source>of hosted video</source> | 874 | <source>of hosted video</source> |
894 | <target state="new">of hosted video</target> | 875 | <target state="new">of hosted video</target> |
895 | 876 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">51</context></context-group> | |
896 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 877 | </trans-unit> |
897 | <trans-unit id="de7d61497b3dc7df0f83c57f333458a7064ac4e7" datatype="html"> | 878 | <trans-unit id="de7d61497b3dc7df0f83c57f333458a7064ac4e7" datatype="html"> |
898 | <source>Federation</source> | 879 | <source>Federation</source> |
899 | <target state="new">Federation</target> | 880 | <target state="new">Federation</target> |
900 | 881 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">58</context></context-group> | |
901 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 882 | </trans-unit> |
902 | <trans-unit id="8de9d3173fafc2c7a94352dec3de899b6cedf9c5" datatype="html"> | 883 | <trans-unit id="8de9d3173fafc2c7a94352dec3de899b6cedf9c5" datatype="html"> |
903 | <source>followers</source> | 884 | <source>followers</source> |
904 | <target state="new">followers</target> | 885 | <target state="new">followers</target> |
905 | 886 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">85</context></context-group> | |
906 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 887 | </trans-unit> |
907 | <trans-unit id="1ec99ffe83830affef834fd7beeda8ee313203fe" datatype="html"> | 888 | <trans-unit id="1ec99ffe83830affef834fd7beeda8ee313203fe" datatype="html"> |
908 | <source>following</source> | 889 | <source>following</source> |
909 | <target state="new">following</target> | 890 | <target state="new">following</target> |
910 | 891 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group> | |
911 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2605931708025789621" datatype="html"> | 892 | </trans-unit> |
912 | <source>The upload failed</source><target state="new">The upload failed</target> | 893 | <trans-unit id="2605931708025789621" datatype="html"> |
894 | <source>The upload failed</source> | ||
895 | <target state="new">The upload failed</target> | ||
913 | <context-group purpose="location"> | 896 | <context-group purpose="location"> |
914 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> | 897 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> |
915 | <context context-type="linenumber">185</context> | 898 | <context context-type="linenumber">185</context> |
916 | </context-group> | 899 | </context-group> |
917 | </trans-unit><trans-unit id="1447760976255144968" datatype="html"> | 900 | </trans-unit> |
918 | <source>The connection was interrupted</source><target state="new">The connection was interrupted</target> | 901 | <trans-unit id="1447760976255144968" datatype="html"> |
902 | <source>The connection was interrupted</source> | ||
903 | <target state="new">The connection was interrupted</target> | ||
919 | <context-group purpose="location"> | 904 | <context-group purpose="location"> |
920 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> | 905 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> |
921 | <context context-type="linenumber">189</context> | 906 | <context context-type="linenumber">189</context> |
922 | </context-group> | 907 | </context-group> |
923 | </trans-unit><trans-unit id="3334825601859787496" datatype="html"> | 908 | </trans-unit> |
924 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source><target state="new">Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</target> | 909 | <trans-unit id="3334825601859787496" datatype="html"> |
910 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source> | ||
911 | <target state="new">Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</target> | ||
925 | <context-group purpose="location"> | 912 | <context-group purpose="location"> |
926 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> | 913 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> |
927 | <context context-type="linenumber">192</context> | 914 | <context context-type="linenumber">192</context> |
928 | </context-group> | 915 | </context-group> |
929 | </trans-unit><trans-unit id="8530934870279569179" datatype="html"> | 916 | </trans-unit> |
930 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source><target state="new">Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</target> | 917 | <trans-unit id="8530934870279569179" datatype="html"> |
918 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source> | ||
919 | <target state="new">Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</target> | ||
931 | <context-group purpose="location"> | 920 | <context-group purpose="location"> |
932 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> | 921 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> |
933 | <context context-type="linenumber">196</context> | 922 | <context context-type="linenumber">196</context> |
934 | </context-group> | 923 | </context-group> |
935 | </trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 924 | </trans-unit> |
936 | <source>User</source><target state="new">User</target> | 925 | <trans-unit id="2392488717875840729" datatype="html"> |
937 | 926 | <source>User</source> | |
938 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">392</context></context-group></trans-unit> | 927 | <target state="new">User</target> |
928 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">392</context></context-group> | ||
929 | </trans-unit> | ||
939 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 930 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
940 | <source>Ban</source> | 931 | <source>Ban</source> |
941 | <target>Zablokovat</target> | 932 | <target>Zablokovat</target> |
942 | 933 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">3</context></context-group> | |
943 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 934 | </trans-unit> |
944 | <trans-unit id="f21428bd564d1cacdbc737f87a8def2e2ad42251"> | 935 | <trans-unit id="f21428bd564d1cacdbc737f87a8def2e2ad42251"> |
945 | <source>A banned user will no longer be able to login.</source> | 936 | <source>A banned user will no longer be able to login.</source> |
946 | <target> | 937 | <target> |
947 | Blokovaný uživatel se už nebude moci přihlásit. | 938 | Blokovaný uživatel se už nebude moci přihlásit. |
948 | </target> | 939 | </target> |
949 | 940 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">21</context></context-group> | |
950 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 941 | </trans-unit> |
951 | <trans-unit id="d7b35c384aecd25a516200d6921836374613dfe7"> | 942 | <trans-unit id="d7b35c384aecd25a516200d6921836374613dfe7"> |
952 | <source>Cancel</source> | 943 | <source>Cancel</source> |
953 | <target>Zrušit</target> | 944 | <target>Zrušit</target> |
954 | 945 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group> | |
955 | 946 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">117</context></context-group> | |
956 | 947 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">22</context></context-group> | |
957 | 948 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">25</context></context-group> | |
958 | 949 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group> | |
959 | 950 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">38</context></context-group> | |
960 | 951 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">92</context></context-group> | |
961 | 952 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">99</context></context-group> | |
962 | 953 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">26</context></context-group> | |
963 | 954 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">31</context></context-group> | |
964 | 955 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">26</context></context-group> | |
965 | 956 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">48</context></context-group> | |
966 | 957 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group> | |
967 | 958 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">67</context></context-group> | |
968 | 959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">58</context></context-group> | |
969 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">99</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">48</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> | 960 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">58</context></context-group> |
961 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">69</context></context-group> | ||
962 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">37</context></context-group> | ||
963 | </trans-unit> | ||
970 | <trans-unit id="35fdca47605de8113a0db7f587f7c099abec8020"> | 964 | <trans-unit id="35fdca47605de8113a0db7f587f7c099abec8020"> |
971 | <source>Ban this user</source> | 965 | <source>Ban this user</source> |
972 | <target>Zablokovat tohoto uživatele</target> | 966 | <target>Zablokovat tohoto uživatele</target> |
973 | 967 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">31</context></context-group> | |
974 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 968 | </trans-unit> |
975 | <trans-unit id="dbabcb47dc77c29275d0f836280ef1dcd924fdb9" datatype="html"> | 969 | <trans-unit id="dbabcb47dc77c29275d0f836280ef1dcd924fdb9" datatype="html"> |
976 | <source>Block video "<x id="INTERPOLATION"/>"</source> | 970 | <source>Block video "<x id="INTERPOLATION"/>"</source> |
977 | <target state="new">Block video " | 971 | <target state="translated">Blokovat video " <x id="INTERPOLATION"/>"</target> |
978 | <x id="INTERPOLATION" equiv-text="{{ video.name }}"/>" | 972 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">3</context></context-group> |
979 | </target> | 973 | </trans-unit> |
980 | 974 | <trans-unit id="cc6208fd0ded0d4a57f4c0a97c2843dc454db39a" datatype="html"> | |
981 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit><trans-unit id="cc6208fd0ded0d4a57f4c0a97c2843dc454db39a" datatype="html"> | 975 | <source>Block live "<x id="INTERPOLATION"/>"</source> |
982 | <source>Block live "<x id="INTERPOLATION"/>"</source><target state="new">Block live "<x id="INTERPOLATION"/>"</target> | 976 | <target state="new">Block live "<x id="INTERPOLATION"/>"</target> |
983 | 977 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">4</context></context-group> | |
984 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 978 | </trans-unit> |
985 | <trans-unit id="dc3bdad5421d0ee7ddd76ae62b699d72dd9f61b4" datatype="html"> | 979 | <trans-unit id="dc3bdad5421d0ee7ddd76ae62b699d72dd9f61b4" datatype="html"> |
986 | <source>Please describe the reason...</source> | 980 | <source>Please describe the reason...</source> |
987 | <target state="new">Please describe the reason...</target> | 981 | <target state="new">Please describe the reason...</target> |
988 | 982 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">13</context></context-group> | |
989 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 983 | </trans-unit> |
990 | <trans-unit id="c078d4901a5fac169665947cc7a6108b94dd80c7"> | 984 | <trans-unit id="c078d4901a5fac169665947cc7a6108b94dd80c7"> |
991 | <source> | 985 | <source><x id="INTERPOLATION" equiv-text="{{ menuEntry.label }}"/> </source> |
992 | <x id="INTERPOLATION" equiv-text="{{ menuEntry.label }}"/> | ||
993 | </source> | ||
994 | <target> | 986 | <target> |
995 | <x id="INTERPOLATION" equiv-text="{{ menuEntry.label }}"/> | 987 | <x id="INTERPOLATION" equiv-text="{{ menuEntry.label }}"/> |
996 | </target> | 988 | </target> |
997 | 989 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">14</context></context-group> | |
998 | 990 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">24</context></context-group> | |
999 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">14</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit><trans-unit id="1191071088182425837" datatype="html"> | 991 | </trans-unit> |
1000 | <source><x id="PH"/>h</source><target state="new"><x id="PH"/>h</target> | 992 | <trans-unit id="1191071088182425837" datatype="html"> |
1001 | 993 | <source><x id="PH"/>h</source> | |
1002 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="8981309282078866700" datatype="html"> | 994 | <target state="new"><x id="PH"/>h</target> |
1003 | <source><x id="PH"/>min</source><target state="new"><x id="PH"/>min</target> | 995 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">14</context></context-group> |
1004 | 996 | </trans-unit> | |
1005 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">23</context></context-group></trans-unit><trans-unit id="350798057497677761" datatype="html"> | 997 | <trans-unit id="8981309282078866700" datatype="html"> |
1006 | <source><x id="PH"/>sec</source><target state="new"><x id="PH"/>sec</target> | 998 | <source><x id="PH"/>min</source> |
1007 | 999 | <target state="new"><x id="PH"/>min</target> | |
1008 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">17</context></context-group></trans-unit> | 1000 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">16</context></context-group> |
1001 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">23</context></context-group> | ||
1002 | </trans-unit> | ||
1003 | <trans-unit id="350798057497677761" datatype="html"> | ||
1004 | <source><x id="PH"/>sec</source> | ||
1005 | <target state="new"><x id="PH"/>sec</target> | ||
1006 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">17</context></context-group> | ||
1007 | </trans-unit> | ||
1009 | <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea"> | 1008 | <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea"> |
1010 | <source>Login</source> | 1009 | <source>Login</source> |
1011 | <target> | 1010 | <target> |
1012 | Přihlásit | 1011 | Přihlásit |
1013 | </target> | 1012 | </target> |
1014 | 1013 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">3</context></context-group> | |
1015 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 1014 | </trans-unit> |
1016 | <trans-unit id="6b6240483bee515c1e20c0c21fc6096e8cdd08e9" datatype="html"> | 1015 | <trans-unit id="6b6240483bee515c1e20c0c21fc6096e8cdd08e9" datatype="html"> |
1017 | <source> Sorry but there was an issue with the external login process. Please <x id="START_LINK"/>contact an administrator<x id="CLOSE_LINK"/>. </source> | 1016 | <source>Sorry but there was an issue with the external login process. Please <x id="START_LINK"/>contact an administrator<x id="CLOSE_LINK"/>. </source> |
1018 | <target state="new"> | 1017 | <target state="new"> |
1019 | Sorry but there was an issue with the external login process. Please | 1018 | Sorry but there was an issue with the external login process. Please |
1020 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>contact an administrator | 1019 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>contact an administrator |
1021 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | 1020 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. |
1022 | 1021 | ||
1023 | </target> | 1022 | </target> |
1024 | 1023 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">7</context></context-group> | |
1025 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 1024 | </trans-unit> |
1026 | |||
1027 | |||
1028 | <trans-unit id="ae3cb52bf2dee3101ee654812b5d16e8665a9453"> | 1025 | <trans-unit id="ae3cb52bf2dee3101ee654812b5d16e8665a9453"> |
1029 | <source>Request new verification email.</source> | 1026 | <source>Request new verification email.</source> |
1030 | <target>Vyžádat nový ověřovací e-mail.</target> | 1027 | <target>Vyžádat nový ověřovací e-mail.</target> |
1031 | 1028 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">12</context></context-group> | |
1032 | 1029 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">16</context></context-group> | |
1033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="0b56e18291f70cbcaddcafe46a4901fe499cd3cc" datatype="html"> | 1030 | </trans-unit> |
1034 | <source> This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source><target state="new"> This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 1031 | <trans-unit id="0b56e18291f70cbcaddcafe46a4901fe499cd3cc" datatype="html"> |
1032 | <source>This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | ||
1033 | <target state="new"> This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | ||
1035 | <context-group purpose="location"> | 1034 | <context-group purpose="location"> |
1036 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 1035 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
1037 | <context context-type="linenumber">60,62</context> | 1036 | <context context-type="linenumber">60,62</context> |
1038 | </context-group> | 1037 | </context-group> |
1039 | </trans-unit><trans-unit id="5ff5b420545ecb1ef07d7ad7c03253e4500246f1" datatype="html"> | 1038 | </trans-unit> |
1040 | <source> Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source><target state="new"> Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 1039 | <trans-unit id="5ff5b420545ecb1ef07d7ad7c03253e4500246f1" datatype="html"> |
1040 | <source>Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | ||
1041 | <target state="new"> Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | ||
1041 | <context-group purpose="location"> | 1042 | <context-group purpose="location"> |
1042 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 1043 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
1043 | <context context-type="linenumber">65,67</context> | 1044 | <context context-type="linenumber">65,67</context> |
@@ -1046,33 +1047,34 @@ | |||
1046 | <trans-unit id="e08a77594f3d89311cdf6da5090044270909c194"> | 1047 | <trans-unit id="e08a77594f3d89311cdf6da5090044270909c194"> |
1047 | <source>User</source> | 1048 | <source>User</source> |
1048 | <target>Uživatel</target> | 1049 | <target>Uživatel</target> |
1049 | 1050 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group> | |
1050 | 1051 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">26</context></context-group> | |
1051 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 1052 | </trans-unit> |
1052 | <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> | 1053 | <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> |
1053 | <source>Username or email address</source> | 1054 | <source>Username or email address</source> |
1054 | <target>Uživatelské jméno nebo e-mail</target> | 1055 | <target>Uživatelské jméno nebo e-mail</target> |
1055 | 1056 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">23</context></context-group> | |
1056 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 1057 | </trans-unit> |
1057 | |||
1058 | <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> | 1058 | <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> |
1059 | <source>Password</source> | 1059 | <source>Password</source> |
1060 | <target>Heslo</target> | 1060 | <target>Heslo</target> |
1061 | 1061 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">34</context></context-group> | |
1062 | 1062 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">36</context></context-group> | |
1063 | 1063 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">8</context></context-group> | |
1064 | 1064 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">10</context></context-group> | |
1065 | 1065 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">56</context></context-group> | |
1066 | 1066 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">58</context></context-group> | |
1067 | 1067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group> | |
1068 | 1068 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group> | |
1069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">10</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> | 1069 | </trans-unit> |
1070 | <trans-unit id="48ff0628dcbb4d37e9687302df3023b8427b48f2" datatype="html"> | 1070 | <trans-unit id="48ff0628dcbb4d37e9687302df3023b8427b48f2" datatype="html"> |
1071 | <source>Click here to reset your password</source> | 1071 | <source>Click here to reset your password</source> |
1072 | <target state="new">Click here to reset your password</target> | 1072 | <target state="new">Click here to reset your password</target> |
1073 | 1073 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">47</context></context-group> | |
1074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit><trans-unit id="3b59dc73883104c81370e6cd20a039474f71f156" datatype="html"> | 1074 | </trans-unit> |
1075 | <source> Logging into an account lets you publish content </source><target state="new"> Logging into an account lets you publish content </target> | 1075 | <trans-unit id="3b59dc73883104c81370e6cd20a039474f71f156" datatype="html"> |
1076 | <source>Logging into an account lets you publish content</source> | ||
1077 | <target state="new"> Logging into an account lets you publish content </target> | ||
1076 | <context-group purpose="location"> | 1078 | <context-group purpose="location"> |
1077 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 1079 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
1078 | <context context-type="linenumber">56,57</context> | 1080 | <context context-type="linenumber">56,57</context> |
@@ -1081,111 +1083,121 @@ | |||
1081 | <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> | 1083 | <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> |
1082 | <source>Login</source> | 1084 | <source>Login</source> |
1083 | <target>Přihlásit</target> | 1085 | <target>Přihlásit</target> |
1084 | 1086 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">93</context></context-group> | |
1085 | 1087 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">44</context></context-group> | |
1086 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">93</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> | 1088 | </trans-unit> |
1087 | <trans-unit id="f5d783c0613d323fdd20074ffbc519ee715a4f2b" datatype="html"> | 1089 | <trans-unit id="f5d783c0613d323fdd20074ffbc519ee715a4f2b" datatype="html"> |
1088 | <source>Or sign in with</source> | 1090 | <source>Or sign in with</source> |
1089 | <target state="new">Or sign in with</target> | 1091 | <target state="new">Or sign in with</target> |
1090 | 1092 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">72</context></context-group> | |
1091 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> | 1093 | </trans-unit> |
1092 | <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681"> | 1094 | <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681"> |
1093 | <source>Forgot your password</source> | 1095 | <source>Forgot your password</source> |
1094 | <target>Zapomenuté heslo</target> | 1096 | <target>Zapomenuté heslo</target> |
1095 | 1097 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">91</context></context-group> | |
1096 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1098 | </trans-unit> |
1097 | <trans-unit id="8f7dd0009f7dc9e4e3f1d9f43f944a3aa7cf737a" datatype="html"> | 1099 | <trans-unit id="8f7dd0009f7dc9e4e3f1d9f43f944a3aa7cf737a" datatype="html"> |
1098 | <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> | 1100 | <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> |
1099 | <target state="new"> | 1101 | <target state="new"> |
1100 | We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system. | 1102 | We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system. |
1101 | </target> | 1103 | </target> |
1102 | 1104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">99</context></context-group> | |
1103 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">99</context></context-group></trans-unit><trans-unit id="fd184f028267a379c6af2d6e6cce86fda172f827" datatype="html"> | 1105 | </trans-unit> |
1104 | <source> Enter your email address and we will send you a link to reset your password. </source><target state="new"> Enter your email address and we will send you a link to reset your password. </target> | 1106 | <trans-unit id="fd184f028267a379c6af2d6e6cce86fda172f827" datatype="html"> |
1105 | 1107 | <source>Enter your email address and we will send you a link to reset your password.</source> | |
1106 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="1190256911880544559" datatype="html"> | 1108 | <target state="new"> Enter your email address and we will send you a link to reset your password. </target> |
1107 | <source>An email with the reset password instructions will be sent to <x id="PH"/>. | 1109 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">103</context></context-group> |
1108 | The link will expire within 1 hour.</source><target state="new">An email with the reset password instructions will be sent to <x id="PH"/>. | 1110 | </trans-unit> |
1111 | <trans-unit id="1190256911880544559" datatype="html"> | ||
1112 | <source>An email with the reset password instructions will be sent to <x id="PH"/>. The link will expire within 1 hour.</source> | ||
1113 | <target state="new">An email with the reset password instructions will be sent to <x id="PH"/>. | ||
1109 | The link will expire within 1 hour.</target> | 1114 | The link will expire within 1 hour.</target> |
1110 | 1115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">126</context></context-group> | |
1111 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1116 | </trans-unit> |
1112 | <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc"> | 1117 | <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc"> |
1113 | <source>Email</source> | 1118 | <source>Email</source> |
1114 | <target>E-mail</target> | 1119 | <target>E-mail</target> |
1115 | 1120 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">107</context></context-group> | |
1116 | 1121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">45</context></context-group> | |
1117 | 1122 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">47</context></context-group> | |
1118 | 1123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">8</context></context-group> | |
1119 | 1124 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">4</context></context-group> | |
1120 | 1125 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group> | |
1121 | 1126 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group> | |
1122 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">107</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group></trans-unit> | 1127 | </trans-unit> |
1123 | <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529"> | 1128 | <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529"> |
1124 | <source>Email address</source> | 1129 | <source>Email address</source> |
1125 | <target>E-mailová adresa</target> | 1130 | <target>E-mailová adresa</target> |
1126 | 1131 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">109</context></context-group> | |
1127 | 1132 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">10</context></context-group> | |
1128 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">109</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit><trans-unit id="06c663bf1474713f57551123a46b34318543b67d" datatype="html"> | 1133 | </trans-unit> |
1129 | <source>Reset</source><target state="new">Reset</target> | 1134 | <trans-unit id="06c663bf1474713f57551123a46b34318543b67d" datatype="html"> |
1130 | 1135 | <source>Reset</source> | |
1136 | <target state="new">Reset</target> | ||
1131 | <note priority="1" from="description">Password reset button</note> | 1137 | <note priority="1" from="description">Password reset button</note> |
1132 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> | 1138 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">122</context></context-group> |
1133 | 1139 | </trans-unit> | |
1134 | <trans-unit id="406b08e859ab668ff07056881dcc4390109d4e1d" datatype="html"> | 1140 | <trans-unit id="406b08e859ab668ff07056881dcc4390109d4e1d" datatype="html"> |
1135 | <source><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}} "/> </source> | 1141 | <source><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}} "/> </source> |
1136 | <target state="new"> | 1142 | <target state="new"> |
1137 | <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> | 1143 | <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> |
1138 | <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {...} other {...}}"/> | 1144 | <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {...} other {...}}"/> |
1139 | </target> | 1145 | </target> |
1140 | 1146 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">5</context></context-group> | |
1141 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 1147 | </trans-unit> |
1142 | <trans-unit id="26b0b148ff87e083300fa9ca213f8ada7fa6211d" datatype="html"> | 1148 | <trans-unit id="26b0b148ff87e083300fa9ca213f8ada7fa6211d" datatype="html"> |
1143 | <source>on this instance</source> | 1149 | <source>on this instance</source> |
1144 | <target state="new">on this instance</target> | 1150 | <target state="new">on this instance</target> |
1145 | 1151 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">7</context></context-group> | |
1146 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 1152 | </trans-unit> |
1147 | <trans-unit id="cdc5b877341ff8e6009282a299f2f2d6987dbdbe" datatype="html"> | 1153 | <trans-unit id="cdc5b877341ff8e6009282a299f2f2d6987dbdbe" datatype="html"> |
1148 | <source>on the vidiverse</source> | 1154 | <source>on the vidiverse</source> |
1149 | <target state="new">on the vidiverse</target> | 1155 | <target state="new">on the vidiverse</target> |
1150 | 1156 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">8</context></context-group> | |
1151 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 1157 | </trans-unit> |
1152 | <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa"> | 1158 | <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa"> |
1153 | <source>Reset my password</source> | 1159 | <source>Reset my password</source> |
1154 | <target> | 1160 | <target> |
1155 | Resetovat heslo | 1161 | Resetovat heslo |
1156 | </target> | 1162 | </target> |
1157 | 1163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">3</context></context-group> | |
1158 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 1164 | </trans-unit> |
1159 | <trans-unit id="7f3bdcce4b2e8c37cd7f0f6c92ef8cff34b039b8"> | 1165 | <trans-unit id="7f3bdcce4b2e8c37cd7f0f6c92ef8cff34b039b8"> |
1160 | <source>Confirm password</source> | 1166 | <source>Confirm password</source> |
1161 | <target>Potvrdit heslo</target> | 1167 | <target>Potvrdit heslo</target> |
1162 | 1168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">19</context></context-group> | |
1163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 1169 | </trans-unit> |
1164 | <trans-unit id="3652e5c6e33165264d5271d06cc04ab7123b6df1"> | 1170 | <trans-unit id="3652e5c6e33165264d5271d06cc04ab7123b6df1"> |
1165 | <source>Confirmed password</source> | 1171 | <source>Confirmed password</source> |
1166 | <target>Potvrzené heslo</target> | 1172 | <target>Potvrzené heslo</target> |
1167 | 1173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">21</context></context-group> | |
1168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 1174 | </trans-unit> |
1169 | <trans-unit id="8bdf8db5eeeaef83184b489b80c1557b516fb3c3"> | 1175 | <trans-unit id="8bdf8db5eeeaef83184b489b80c1557b516fb3c3"> |
1170 | <source>Reset my password</source> | 1176 | <source>Reset my password</source> |
1171 | <target>Obnovit moje heslo</target> | 1177 | <target>Obnovit moje heslo</target> |
1172 | 1178 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">29</context></context-group> | |
1173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8890553633144307762" datatype="html"> | 1179 | </trans-unit> |
1174 | <source>Back</source><target state="new">Back</target> | 1180 | <trans-unit id="8890553633144307762" datatype="html"> |
1181 | <source>Back</source> | ||
1182 | <target state="new">Back</target> | ||
1175 | <context-group purpose="location"> | 1183 | <context-group purpose="location"> |
1176 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> | 1184 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> |
1177 | <context context-type="linenumber">41</context> | 1185 | <context context-type="linenumber">41</context> |
1178 | </context-group> | 1186 | </context-group> |
1179 | <note priority="1" from="description">Button on the registration form to go to the previous step</note> | 1187 | <note priority="1" from="description">Button on the registration form to go to the previous step</note> |
1180 | </trans-unit><trans-unit id="3885497195825665706" datatype="html"> | 1188 | </trans-unit> |
1181 | <source>Next</source><target state="new">Next</target> | 1189 | <trans-unit id="3885497195825665706" datatype="html"> |
1190 | <source>Next</source> | ||
1191 | <target state="new">Next</target> | ||
1182 | <context-group purpose="location"> | 1192 | <context-group purpose="location"> |
1183 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> | 1193 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> |
1184 | <context context-type="linenumber">42</context> | 1194 | <context context-type="linenumber">42</context> |
1185 | </context-group> | 1195 | </context-group> |
1186 | <note priority="1" from="description">Button on the registration form to go to the previous step</note> | 1196 | <note priority="1" from="description">Button on the registration form to go to the previous step</note> |
1187 | </trans-unit><trans-unit id="5018804994794983050" datatype="html"> | 1197 | </trans-unit> |
1188 | <source>Signup</source><target state="new">Signup</target> | 1198 | <trans-unit id="5018804994794983050" datatype="html"> |
1199 | <source>Signup</source> | ||
1200 | <target state="new">Signup</target> | ||
1189 | <context-group purpose="location"> | 1201 | <context-group purpose="location"> |
1190 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> | 1202 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> |
1191 | <context context-type="linenumber">64</context> | 1203 | <context context-type="linenumber">64</context> |
@@ -1193,190 +1205,180 @@ The link will expire within 1 hour.</target> | |||
1193 | <note priority="1" from="description">Button on the registration form to finalize the account and channel creation</note> | 1205 | <note priority="1" from="description">Button on the registration form to finalize the account and channel creation</note> |
1194 | </trans-unit> | 1206 | </trans-unit> |
1195 | <trans-unit id="4c3960fb1d9b07d1db3b5bda3ee40019211830dc"> | 1207 | <trans-unit id="4c3960fb1d9b07d1db3b5bda3ee40019211830dc"> |
1196 | <source> for <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> | 1208 | <source>for <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> |
1197 | <target> | 1209 | <target>pro <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></target> |
1198 | pro | 1210 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">11</context></context-group> |
1199 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> | 1211 | </trans-unit> |
1200 | <x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/> | ||
1201 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> | ||
1202 | </target> | ||
1203 | |||
1204 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | ||
1205 | <trans-unit id="7c603b9ed878097782e2b8908f662e2344b46061"> | 1212 | <trans-unit id="7c603b9ed878097782e2b8908f662e2344b46061"> |
1206 | <source> Filters <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> | 1213 | <source>Filters <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> |
1207 | <target> | 1214 | <target> |
1208 | Filtry | 1215 | Filtry |
1209 | 1216 | ||
1210 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> | 1217 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> |
1211 | <x id="INTERPOLATION" equiv-text="{{ numberOfFilters() }}"/> | 1218 | <x id="INTERPOLATION" equiv-text="{{ numberOfFilters() }}"/> |
1212 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> | 1219 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> |
1213 | </target> | 1220 | </target> |
1214 | 1221 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">21</context></context-group> | |
1215 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 1222 | </trans-unit> |
1216 | <trans-unit id="e2dbf0426cbb0b573faf49dffeb7d5bdf16eda5d"> | 1223 | <trans-unit id="e2dbf0426cbb0b573faf49dffeb7d5bdf16eda5d"> |
1217 | <source>No results found</source> | 1224 | <source>No results found</source> |
1218 | <target> | 1225 | <target> |
1219 | Nebyly nalezeny žádné výsledky | 1226 | Nebyly nalezeny žádné výsledky |
1220 | </target> | 1227 | </target> |
1221 | 1228 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">33</context></context-group> | |
1222 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 1229 | </trans-unit> |
1223 | <trans-unit id="10341623e991a4185990a0c3c76ac2bc3543cc4a"> | 1230 | <trans-unit id="10341623e991a4185990a0c3c76ac2bc3543cc4a"> |
1224 | <source> | 1231 | <source><x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> subscribers </source> |
1225 | <x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> subscribers | ||
1226 | </source> | ||
1227 | <target> | 1232 | <target> |
1228 | <x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> odběratelů | 1233 | <x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> odběratelů |
1229 | </target> | 1234 | </target> |
1230 | 1235 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">60</context></context-group> | |
1231 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1236 | </trans-unit> |
1232 | <trans-unit id="5cf92a1d527e65908c75633e8484cdd3b6d16b9b" datatype="html"> | 1237 | <trans-unit id="5cf92a1d527e65908c75633e8484cdd3b6d16b9b" datatype="html"> |
1233 | <source>Welcome to PeerTube, dear administrator!</source> | 1238 | <source>Welcome to PeerTube, dear administrator!</source> |
1234 | <target state="new">Welcome to PeerTube, dear administrator!</target> | 1239 | <target state="new">Welcome to PeerTube, dear administrator!</target> |
1235 | 1240 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">3</context></context-group> | |
1236 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 1241 | </trans-unit> |
1237 | <trans-unit id="fb2ab91ad6091b4a42f4ec08487650a0bc2d541c" datatype="html"> | 1242 | <trans-unit id="fb2ab91ad6091b4a42f4ec08487650a0bc2d541c" datatype="html"> |
1238 | <source>CLI documentation</source> | 1243 | <source>CLI documentation</source> |
1239 | <target state="new">CLI | 1244 | <target state="new">CLI |
1240 | documentation</target> | 1245 | documentation</target> |
1241 | 1246 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">12</context></context-group> | |
1242 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> | 1247 | </trans-unit> |
1243 | <trans-unit id="65462878ca6d04c826906432816a3df3e048ac87" datatype="html"> | 1248 | <trans-unit id="65462878ca6d04c826906432816a3df3e048ac87" datatype="html"> |
1244 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> | 1249 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> |
1245 | <target state="new">Upload or import videos, parse logs, prune storage directories, reset user password...</target> | 1250 | <target state="new">Upload or import videos, parse logs, prune storage directories, reset user password...</target> |
1246 | 1251 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">15</context></context-group> | |
1247 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 1252 | </trans-unit> |
1248 | <trans-unit id="054dd8ba0dece8069a5a7e538efaca9f58cf81f9" datatype="html"> | 1253 | <trans-unit id="054dd8ba0dece8069a5a7e538efaca9f58cf81f9" datatype="html"> |
1249 | <source>Administer documentation</source> | 1254 | <source>Administer documentation</source> |
1250 | <target state="new">Administer | 1255 | <target state="new">Administer |
1251 | documentation</target> | 1256 | documentation</target> |
1252 | 1257 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">19</context></context-group> | |
1253 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 1258 | </trans-unit> |
1254 | <trans-unit id="c38a3f5b5eff069d0097527fa40a3f8c4d9c1e4e" datatype="html"> | 1259 | <trans-unit id="c38a3f5b5eff069d0097527fa40a3f8c4d9c1e4e" datatype="html"> |
1255 | <source>Managing users, following other instances, dealing with spammers...</source> | 1260 | <source>Managing users, following other instances, dealing with spammers...</source> |
1256 | <target state="new">Managing users, following other instances, dealing with spammers...</target> | 1261 | <target state="new">Managing users, following other instances, dealing with spammers...</target> |
1257 | 1262 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">22</context></context-group> | |
1258 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 1263 | </trans-unit> |
1259 | <trans-unit id="4e020f13aa4db2285047eba96e50dc716fb5f417" datatype="html"> | 1264 | <trans-unit id="4e020f13aa4db2285047eba96e50dc716fb5f417" datatype="html"> |
1260 | <source>Use documentation</source> | 1265 | <source>Use documentation</source> |
1261 | <target state="new">Use | 1266 | <target state="new">Use |
1262 | documentation</target> | 1267 | documentation</target> |
1263 | 1268 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">26</context></context-group> | |
1264 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 1269 | </trans-unit> |
1265 | <trans-unit id="e1410009f484a2b44b6f15346df65f13f5e77444" datatype="html"> | 1270 | <trans-unit id="e1410009f484a2b44b6f15346df65f13f5e77444" datatype="html"> |
1266 | <source>Setup your account, managing video playlists, discover third-party applications...</source> | 1271 | <source>Setup your account, managing video playlists, discover third-party applications...</source> |
1267 | <target state="new">Setup your account, managing video playlists, discover third-party applications...</target> | 1272 | <target state="new">Setup your account, managing video playlists, discover third-party applications...</target> |
1268 | 1273 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">29</context></context-group> | |
1269 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1274 | </trans-unit> |
1270 | <trans-unit id="6b705cdf0d567cf608b9891a1d912daebac3523e" datatype="html"> | 1275 | <trans-unit id="6b705cdf0d567cf608b9891a1d912daebac3523e" datatype="html"> |
1271 | <source>Useful links</source> | 1276 | <source>Useful links</source> |
1272 | <target state="new">Useful links</target> | 1277 | <target state="new">Useful links</target> |
1273 | 1278 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">39</context></context-group> | |
1274 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1279 | </trans-unit> |
1275 | <trans-unit id="908ccbd854d79d50723e7a651b2a0f4dd0557c60" datatype="html"> | 1280 | <trans-unit id="908ccbd854d79d50723e7a651b2a0f4dd0557c60" datatype="html"> |
1276 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> | 1281 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> |
1277 | <target state="new">Official PeerTube website (news, support, contribute...): | 1282 | <target state="translated">Oficiální stránky PeerTube (novinky, podpora, přispívání...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></target> |
1278 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://joinpeertube.org | 1283 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">42</context></context-group> |
1279 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 1284 | </trans-unit> |
1280 | </target> | ||
1281 | |||
1282 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | ||
1283 | <trans-unit id="53f7ce6aef94fd128d0058de1cd63da90d062ee6" datatype="html"> | 1285 | <trans-unit id="53f7ce6aef94fd128d0058de1cd63da90d062ee6" datatype="html"> |
1284 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> | 1286 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> |
1285 | <target state="new">Put your instance on the public PeerTube index: | 1287 | <target state="translated">Dejte vaši instanci do veřejného indexu PeerTube: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></target> |
1286 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://instances.joinpeertube.org/instances | 1288 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">45</context></context-group> |
1287 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 1289 | </trans-unit> |
1288 | </target> | ||
1289 | |||
1290 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | ||
1291 | <trans-unit id="351af1021b0298109bfb72c7aa9a27999d110859" datatype="html"> | 1290 | <trans-unit id="351af1021b0298109bfb72c7aa9a27999d110859" datatype="html"> |
1292 | <source>It's time to configure your instance!</source> | 1291 | <source>It's time to configure your instance!</source> |
1293 | <target state="new">It's time to configure your instance!</target> | 1292 | <target state="new">It's time to configure your instance!</target> |
1294 | 1293 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">55</context></context-group> | |
1295 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1294 | </trans-unit> |
1296 | <trans-unit id="cde76f438c580e464940e141584e44ab21809cb6" datatype="html"> | 1295 | <trans-unit id="cde76f438c580e464940e141584e44ab21809cb6" datatype="html"> |
1297 | <source> Choosing your <x id="START_TAG_STRONG"/>instance name<x id="CLOSE_TAG_STRONG"/>, <x id="START_TAG_STRONG"/>setting up a description<x id="CLOSE_TAG_STRONG"/>, specifying <x id="START_TAG_STRONG"/>who you are<x id="CLOSE_TAG_STRONG"/>, why <x id="START_TAG_STRONG"/>you created your instance<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>how long<x id="CLOSE_TAG_STRONG"/> you plan to <x id="START_TAG_STRONG"/>maintain your it<x id="CLOSE_TAG_STRONG"/> is very important for visitors to understand on what type of instance they are. </source> | 1296 | <source>Choosing your <x id="START_TAG_STRONG"/>instance name<x id="CLOSE_TAG_STRONG"/>, <x id="START_TAG_STRONG"/>setting up a description<x id="CLOSE_TAG_STRONG"/>, specifying <x id="START_TAG_STRONG"/>who you are<x id="CLOSE_TAG_STRONG"/>, why <x id="START_TAG_STRONG"/>you created your instance<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>how long<x id="CLOSE_TAG_STRONG"/> you plan to <x id="START_TAG_STRONG"/>maintain your it<x id="CLOSE_TAG_STRONG"/> is very important for visitors to understand on what type of instance they are. </source> |
1298 | <target state="new"> | 1297 | <target state="new"> |
1299 | Choosing your | 1298 | Choosing your |
1300 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>instance name | 1299 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>instance name |
1301 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, | 1300 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, |
1302 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>setting up a description | 1301 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>setting up a description |
1303 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, specifying | 1302 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, specifying |
1304 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are | 1303 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>who you are |
1305 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, | 1304 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, |
1306 | why | 1305 | why |
1307 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>you created your instance | 1306 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>you created your instance |
1308 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and | 1307 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> and |
1309 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>how long | 1308 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>how long |
1310 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> you plan to | 1309 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> you plan to |
1311 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>maintain your it | 1310 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>maintain your it |
1312 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> | 1311 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> |
1313 | is very important for visitors to understand on what type of instance they are. | 1312 | is very important for visitors to understand on what type of instance they are. |
1314 | 1313 | ||
1315 | </target> | 1314 | </target> |
1316 | 1315 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group> | |
1317 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit><trans-unit id="2a94cfa351109b958a00ee927cd87ada8da44c1e" datatype="html"> | 1316 | </trans-unit> |
1318 | <source> If you want to open registrations, please decide what <x id="START_TAG_STRONG"/>your moderation rules<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>instance terms of service<x id="CLOSE_TAG_STRONG"/> are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on <x id="START_TAG_STRONG"/>the appropriate<x id="CLOSE_TAG_STRONG"/> PeerTube instance. </source><target state="new"> If you want to open registrations, please decide what <x id="START_TAG_STRONG"/>your moderation rules<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>instance terms of service<x id="CLOSE_TAG_STRONG"/> are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on <x id="START_TAG_STRONG"/>the appropriate<x id="CLOSE_TAG_STRONG"/> PeerTube instance. </target> | 1317 | <trans-unit id="2a94cfa351109b958a00ee927cd87ada8da44c1e" datatype="html"> |
1319 | 1318 | <source>If you want to open registrations, please decide what <x id="START_TAG_STRONG"/>your moderation rules<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>instance terms of service<x id="CLOSE_TAG_STRONG"/> are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on <x id="START_TAG_STRONG"/>the appropriate<x id="CLOSE_TAG_STRONG"/> PeerTube instance. </source> | |
1320 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 1319 | <target state="new"> If you want to open registrations, please decide what <x id="START_TAG_STRONG"/>your moderation rules<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>instance terms of service<x id="CLOSE_TAG_STRONG"/> are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on <x id="START_TAG_STRONG"/>the appropriate<x id="CLOSE_TAG_STRONG"/> PeerTube instance. </target> |
1321 | 1320 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">64</context></context-group> | |
1321 | </trans-unit> | ||
1322 | <trans-unit id="650b8c3e81746bc33ff276f2ef30bf89fa2d74dd" datatype="html"> | 1322 | <trans-unit id="650b8c3e81746bc33ff276f2ef30bf89fa2d74dd" datatype="html"> |
1323 | <source>Remind me later</source> | 1323 | <source>Remind me later</source> |
1324 | <target state="new">Remind me later</target> | 1324 | <target state="new">Remind me later</target> |
1325 | 1325 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">74</context></context-group> | |
1326 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit> | 1326 | </trans-unit> |
1327 | <trans-unit id="b310fa17f1bbfc4dd61b80c1cfc4116a81a9c76c" datatype="html"> | 1327 | <trans-unit id="b310fa17f1bbfc4dd61b80c1cfc4116a81a9c76c" datatype="html"> |
1328 | <source>Configure my instance</source> | 1328 | <source>Configure my instance</source> |
1329 | <target state="new"> | 1329 | <target state="new"> |
1330 | Configure my instance | 1330 | Configure my instance |
1331 | </target> | 1331 | </target> |
1332 | 1332 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group> | |
1333 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 1333 | </trans-unit> |
1334 | <trans-unit id="a9af18b4f210f5a19bb2503407923d3f25c57f98" datatype="html"> | 1334 | <trans-unit id="a9af18b4f210f5a19bb2503407923d3f25c57f98" datatype="html"> |
1335 | <source>Configuration warning!</source> | 1335 | <source>Configuration warning!</source> |
1336 | <target state="new">Configuration warning!</target> | 1336 | <target state="new">Configuration warning!</target> |
1337 | 1337 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">3</context></context-group> | |
1338 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 1338 | </trans-unit> |
1339 | <trans-unit id="e30fd615e98eb6ebc28346024a89f00192a98396" datatype="html"> | 1339 | <trans-unit id="e30fd615e98eb6ebc28346024a89f00192a98396" datatype="html"> |
1340 | <source>You enabled user registration on your instance but did not configure the following fields:</source> | 1340 | <source>You enabled user registration on your instance but did not configure the following fields:</source> |
1341 | <target state="new">You enabled user registration on your instance but did not configure the following fields:</target> | 1341 | <target state="new">You enabled user registration on your instance but did not configure the following fields:</target> |
1342 | 1342 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">10</context></context-group> | |
1343 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 1343 | </trans-unit> |
1344 | <trans-unit id="ab7e3d0be94cc55ce997a5f38c679956e66f3936" datatype="html"> | 1344 | <trans-unit id="ab7e3d0be94cc55ce997a5f38c679956e66f3936" datatype="html"> |
1345 | <source>Instance name</source> | 1345 | <source>Instance name</source> |
1346 | <target state="new">Instance name</target> | 1346 | <target state="new">Instance name</target> |
1347 | 1347 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">13</context></context-group> | |
1348 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 1348 | </trans-unit> |
1349 | <trans-unit id="b6e9a7a198c9882894677a0358d22ed79482808a" datatype="html"> | 1349 | <trans-unit id="b6e9a7a198c9882894677a0358d22ed79482808a" datatype="html"> |
1350 | <source>Instance short description</source> | 1350 | <source>Instance short description</source> |
1351 | <target state="new">Instance short description</target> | 1351 | <target state="new">Instance short description</target> |
1352 | 1352 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">14</context></context-group> | |
1353 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 1353 | </trans-unit> |
1354 | <trans-unit id="801cb5b4cc93a5c0a4d89a46b96487d3638f0bc5" datatype="html"> | 1354 | <trans-unit id="801cb5b4cc93a5c0a4d89a46b96487d3638f0bc5" datatype="html"> |
1355 | <source>Who you are</source> | 1355 | <source>Who you are</source> |
1356 | <target state="new">Who you are</target> | 1356 | <target state="new">Who you are</target> |
1357 | 1357 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">16</context></context-group> | |
1358 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 1358 | </trans-unit> |
1359 | <trans-unit id="de688f72fc745cc8481a5e9cc70b8ca9e6f41e2a" datatype="html"> | 1359 | <trans-unit id="de688f72fc745cc8481a5e9cc70b8ca9e6f41e2a" datatype="html"> |
1360 | <source>How long you plan to maintain your instance</source> | 1360 | <source>How long you plan to maintain your instance</source> |
1361 | <target state="new">How long you plan to maintain your instance</target> | 1361 | <target state="new">How long you plan to maintain your instance</target> |
1362 | 1362 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">17</context></context-group> | |
1363 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 1363 | </trans-unit> |
1364 | <trans-unit id="af60a062ecc7c70b278bdb3ba7ad0147abfecf0a" datatype="html"> | 1364 | <trans-unit id="af60a062ecc7c70b278bdb3ba7ad0147abfecf0a" datatype="html"> |
1365 | <source>How you plan to pay your instance</source> | 1365 | <source>How you plan to pay your instance</source> |
1366 | <target state="new">How you plan to pay your instance</target> | 1366 | <target state="new">How you plan to pay your instance</target> |
1367 | 1367 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">18</context></context-group> | |
1368 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 1368 | </trans-unit> |
1369 | <trans-unit id="c69c1bd027bae555557a48123a26d770a93ee473" datatype="html"> | 1369 | <trans-unit id="c69c1bd027bae555557a48123a26d770a93ee473" datatype="html"> |
1370 | <source>How you will moderate your instance</source> | 1370 | <source>How you will moderate your instance</source> |
1371 | <target state="new">How you will moderate your instance</target> | 1371 | <target state="new">How you will moderate your instance</target> |
1372 | 1372 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">20</context></context-group> | |
1373 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 1373 | </trans-unit> |
1374 | <trans-unit id="92ddf3c3a348adc059da6c17c808fa27c315d91c" datatype="html"> | 1374 | <trans-unit id="92ddf3c3a348adc059da6c17c808fa27c315d91c" datatype="html"> |
1375 | <source>Instance terms</source> | 1375 | <source>Instance terms</source> |
1376 | <target state="new">Instance terms</target> | 1376 | <target state="new">Instance terms</target> |
1377 | 1377 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">21</context></context-group> | |
1378 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit><trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6" datatype="html"> | 1378 | </trans-unit> |
1379 | <source>My settings</source><target state="new">My settings</target> | 1379 | <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6" datatype="html"> |
1380 | <source>My settings</source> | ||
1381 | <target state="new">My settings</target> | ||
1380 | <context-group purpose="location"> | 1382 | <context-group purpose="location"> |
1381 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> | 1383 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> |
1382 | <context context-type="linenumber">3</context> | 1384 | <context context-type="linenumber">3</context> |
@@ -1385,95 +1387,97 @@ The link will expire within 1 hour.</target> | |||
1385 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | 1387 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> |
1386 | <context context-type="linenumber">156</context> | 1388 | <context context-type="linenumber">156</context> |
1387 | </context-group> | 1389 | </context-group> |
1388 | </trans-unit><trans-unit id="772fa4cd7612cf9dd6a7fb1a3930756a95825709" datatype="html"> | 1390 | </trans-unit> |
1389 | <source>These settings apply only to your session on this instance.</source><target state="new">These settings apply only to your session on this instance.</target> | 1391 | <trans-unit id="772fa4cd7612cf9dd6a7fb1a3930756a95825709" datatype="html"> |
1392 | <source>These settings apply only to your session on this instance.</source> | ||
1393 | <target state="new">These settings apply only to your session on this instance.</target> | ||
1390 | <context-group purpose="location"> | 1394 | <context-group purpose="location"> |
1391 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> | 1395 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> |
1392 | <context context-type="linenumber">8</context> | 1396 | <context context-type="linenumber">8</context> |
1393 | </context-group> | 1397 | </context-group> |
1394 | </trans-unit> | 1398 | </trans-unit> |
1395 | <trans-unit id="565e31173ab0ea2c00c311c9051c15d8896a0b80" datatype="html"> | 1399 | <trans-unit id="565e31173ab0ea2c00c311c9051c15d8896a0b80" datatype="html"> |
1396 | <source> Please consider configuring these fields to help people to choose <x id="START_TAG_STRONG"/>the appropriate instance<x id="CLOSE_TAG_STRONG"/>. Without them, your instance may not be referenced on the <x id="START_LINK"/>JoinPeerTube website<x id="CLOSE_LINK"/>. </source> | 1400 | <source>Please consider configuring these fields to help people to choose <x id="START_TAG_STRONG"/>the appropriate instance<x id="CLOSE_TAG_STRONG"/>. Without them, your instance may not be referenced on the <x id="START_LINK"/>JoinPeerTube website<x id="CLOSE_LINK"/>. </source> |
1397 | <target state="new"> | 1401 | <target state="new"> |
1398 | Please consider configuring these fields to help people to choose | 1402 | Please consider configuring these fields to help people to choose |
1399 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>the appropriate instance | 1403 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>the appropriate instance |
1400 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. | 1404 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. |
1401 | Without them, your instance may not be referenced on the | 1405 | Without them, your instance may not be referenced on the |
1402 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>JoinPeerTube website | 1406 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>JoinPeerTube website |
1403 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | 1407 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. |
1404 | 1408 | ||
1405 | </target> | 1409 | </target> |
1406 | 1410 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">25</context></context-group> | |
1407 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1411 | </trans-unit> |
1408 | <trans-unit id="7d438f72f9985c4d06ed4fe80c90afc2e1df34d2" datatype="html"> | 1412 | <trans-unit id="7d438f72f9985c4d06ed4fe80c90afc2e1df34d2" datatype="html"> |
1409 | <source>Don't show me this warning anymore</source> | 1413 | <source>Don't show me this warning anymore</source> |
1410 | <target state="new">Don't show me this warning anymore</target> | 1414 | <target state="new">Don't show me this warning anymore</target> |
1411 | 1415 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">33</context></context-group> | |
1412 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 1416 | </trans-unit> |
1413 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html"> | 1417 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html"> |
1414 | <source>Close</source> | 1418 | <source>Close</source> |
1415 | <target state="new">Close</target> | 1419 | <target state="new">Close</target> |
1416 | 1420 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group> | |
1417 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit><trans-unit id="5d3bc02dfb6c9b6fdd716f77c487a779ba6d6cc2" datatype="html"> | 1421 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">34</context></context-group> |
1418 | <source>Update live settings</source><target state="new">Update live settings</target> | 1422 | </trans-unit> |
1419 | 1423 | <trans-unit id="5d3bc02dfb6c9b6fdd716f77c487a779ba6d6cc2" datatype="html"> | |
1420 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1424 | <source>Update live settings</source> |
1425 | <target state="new">Update live settings</target> | ||
1426 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">39</context></context-group> | ||
1427 | </trans-unit> | ||
1421 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1428 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1422 | <source> | 1429 | <source>Configure</source> |
1423 | Configure | ||
1424 | </source> | ||
1425 | <target state="new"> | 1430 | <target state="new"> |
1426 | Configure | 1431 | Configure |
1427 | </target> | 1432 | </target> |
1428 | 1433 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">43</context></context-group> | |
1429 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | 1434 | </trans-unit> |
1430 | <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96"> | 1435 | <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96"> |
1431 | <source>Change the language</source> | 1436 | <source>Change the language</source> |
1432 | <target>Změnit jazyk</target> | 1437 | <target>Změnit jazyk</target> |
1433 | 1438 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/language-chooser.component.html</context><context context-type="linenumber">3</context></context-group> | |
1434 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/language-chooser.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 1439 | </trans-unit> |
1435 | <trans-unit id="1c98d728375e7bd5b166d1aeb29485ef8b5d6e28"> | 1440 | <trans-unit id="1c98d728375e7bd5b166d1aeb29485ef8b5d6e28"> |
1436 | <source>Help to translate PeerTube!</source> | 1441 | <source>Help to translate PeerTube!</source> |
1437 | <target> | 1442 | <target> |
1438 | Pomozte nám přeložit PeerTube! | 1443 | Pomozte nám přeložit PeerTube! |
1439 | </target> | 1444 | </target> |
1440 | 1445 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/language-chooser.component.html</context><context context-type="linenumber">9</context></context-group> | |
1441 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/language-chooser.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 1446 | </trans-unit> |
1442 | <trans-unit id="608d7164ed2d996dc827b17cd7b6f5915c617be4" datatype="html"> | 1447 | <trans-unit id="608d7164ed2d996dc827b17cd7b6f5915c617be4" datatype="html"> |
1443 | <source>Public profile</source> | 1448 | <source>Public profile</source> |
1444 | <target state="new">Public profile</target> | 1449 | <target state="new">Public profile</target> |
1445 | 1450 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">23</context></context-group> | |
1446 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 1451 | </trans-unit> |
1447 | |||
1448 | |||
1449 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1452 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1450 | <source>Interface:</source> | 1453 | <source>Interface:</source> |
1451 | <target state="new">Interface:</target> | 1454 | <target state="new">Interface:</target> |
1452 | 1455 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">30</context></context-group> | |
1453 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 1456 | </trans-unit> |
1454 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1457 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1455 | <source>Videos:</source> | 1458 | <source>Videos:</source> |
1456 | <target state="new">Videos:</target> | 1459 | <target state="new">Videos:</target> |
1457 | 1460 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">37</context></context-group> | |
1458 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> | 1461 | </trans-unit> |
1459 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1462 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1460 | <source>Sensitive:</source> | 1463 | <source>Sensitive:</source> |
1461 | <target state="new">Sensitive:</target> | 1464 | <target state="new">Sensitive:</target> |
1462 | 1465 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">46</context></context-group> | |
1463 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 1466 | </trans-unit> |
1464 | |||
1465 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1467 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1466 | <source>Help share videos</source> | 1468 | <source>Help share videos</source> |
1467 | <target state="new">Help share videos</target> | 1469 | <target state="new">Help share videos</target> |
1468 | 1470 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">52</context></context-group> | |
1469 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 1471 | </trans-unit> |
1470 | |||
1471 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1472 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1472 | <source>Keyboard shortcuts</source> | 1473 | <source>Keyboard shortcuts</source> |
1473 | <target state="new">Keyboard shortcuts</target> | 1474 | <target state="new">Keyboard shortcuts</target> |
1474 | 1475 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">178</context></context-group> | |
1475 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">178</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit><trans-unit id="5ef7ce1bada0c3d3b4e5e299dad0d336f7897a34" datatype="html"> | 1476 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">61</context></context-group> |
1476 | <source>powered by PeerTube - CopyLeft 2015-2021</source><target state="new">powered by PeerTube - CopyLeft 2015-2021</target> | 1477 | </trans-unit> |
1478 | <trans-unit id="5ef7ce1bada0c3d3b4e5e299dad0d336f7897a34" datatype="html"> | ||
1479 | <source>powered by PeerTube - CopyLeft 2015-2021</source> | ||
1480 | <target state="new">powered by PeerTube - CopyLeft 2015-2021</target> | ||
1477 | <context-group purpose="location"> | 1481 | <context-group purpose="location"> |
1478 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | 1482 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> |
1479 | <context context-type="linenumber">183</context> | 1483 | <context context-type="linenumber">183</context> |
@@ -1482,86 +1486,103 @@ The link will expire within 1 hour.</target> | |||
1482 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1486 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1483 | <source>Help</source> | 1487 | <source>Help</source> |
1484 | <target state="new">Help</target> | 1488 | <target state="new">Help</target> |
1485 | 1489 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">174</context></context-group> | |
1486 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">174</context></context-group></trans-unit> | 1490 | </trans-unit> |
1487 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1491 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1488 | <source>Get help using PeerTube</source> | 1492 | <source>Get help using PeerTube</source> |
1489 | <target state="new">Get help using PeerTube</target> | 1493 | <target state="new">Get help using PeerTube</target> |
1490 | 1494 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">174</context></context-group> | |
1491 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">174</context></context-group></trans-unit> | 1495 | </trans-unit> |
1492 | |||
1493 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1496 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1494 | <source>powered by PeerTube</source> | 1497 | <source>powered by PeerTube</source> |
1495 | <target state="new">powered by PeerTube</target> | 1498 | <target state="new">powered by PeerTube</target> |
1496 | 1499 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">184</context></context-group> | |
1497 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">184</context></context-group></trans-unit> | 1500 | </trans-unit> |
1498 | |||
1499 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> | 1501 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> |
1500 | <source>Log out</source> | 1502 | <source>Log out</source> |
1501 | <target>Odhlásit</target> | 1503 | <target>Odhlásit</target> |
1502 | 1504 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group> | |
1503 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="e4825b5d86d89ae0f4c797ba256f66fd8abd4ee6" datatype="html"> | 1505 | </trans-unit> |
1504 | <source>My account</source><target state="new">My account</target> | 1506 | <trans-unit id="e4825b5d86d89ae0f4c797ba256f66fd8abd4ee6" datatype="html"> |
1505 | 1507 | <source>My account</source> | |
1506 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">77</context></context-group></trans-unit><trans-unit id="4ef4f031c147fb9ee0168bc6eacb78de180d7432" datatype="html"> | 1508 | <target state="new">My account</target> |
1507 | <source>My library</source><target state="new">My library</target> | 1509 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">77</context></context-group> |
1508 | 1510 | </trans-unit> | |
1509 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1511 | <trans-unit id="4ef4f031c147fb9ee0168bc6eacb78de180d7432" datatype="html"> |
1512 | <source>My library</source> | ||
1513 | <target state="new">My library</target> | ||
1514 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group> | ||
1515 | </trans-unit> | ||
1510 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1516 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1511 | <source>Create an account</source> | 1517 | <source>Create an account</source> |
1512 | <target>Vytvořit účet</target> | 1518 | <target>Vytvořit účet</target> |
1513 | 1519 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">94</context></context-group> | |
1514 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit><trans-unit id="618ca563e3091faf22978665282787c282a867b8" datatype="html"> | 1520 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">50</context></context-group> |
1515 | <source>IN MY LIBRARY</source><target state="new">IN MY LIBRARY</target> | 1521 | </trans-unit> |
1516 | 1522 | <trans-unit id="618ca563e3091faf22978665282787c282a867b8" datatype="html"> | |
1517 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">98</context></context-group></trans-unit> | 1523 | <source>IN MY LIBRARY</source> |
1518 | 1524 | <target state="new">IN MY LIBRARY</target> | |
1525 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">98</context></context-group> | ||
1526 | </trans-unit> | ||
1519 | <trans-unit id="3058024914967508975" datatype="html"> | 1527 | <trans-unit id="3058024914967508975" datatype="html"> |
1520 | <source>My videos</source><target state="new">My videos</target> | 1528 | <source>My videos</source> |
1521 | 1529 | <target state="new">My videos</target> | |
1522 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">58</context></context-group></trans-unit><trans-unit id="3108704604266608109" datatype="html"> | 1530 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">77</context></context-group> |
1523 | <source>My video imports</source><target state="new">My video imports</target> | 1531 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">58</context></context-group> |
1524 | 1532 | </trans-unit> | |
1525 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">90</context></context-group></trans-unit><trans-unit id="7545420287297803988" datatype="html"> | 1533 | <trans-unit id="3108704604266608109" datatype="html"> |
1526 | <source>My playlists</source><target state="new">My playlists</target> | 1534 | <source>My video imports</source> |
1527 | 1535 | <target state="new">My video imports</target> | |
1528 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">40</context></context-group></trans-unit><trans-unit id="949618577357088829" datatype="html"> | 1536 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">90</context></context-group> |
1529 | <source>Create a new playlist</source><target state="new">Create a new playlist</target> | 1537 | </trans-unit> |
1530 | 1538 | <trans-unit id="7545420287297803988" datatype="html"> | |
1531 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">49</context></context-group></trans-unit><trans-unit id="2527931602940887636" datatype="html"> | 1539 | <source>My playlists</source> |
1532 | <source>My subscriptions</source><target state="new">My subscriptions</target> | 1540 | <target state="new">My playlists</target> |
1533 | 1541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">40</context></context-group> | |
1534 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">99</context></context-group></trans-unit> | 1542 | </trans-unit> |
1543 | <trans-unit id="949618577357088829" datatype="html"> | ||
1544 | <source>Create a new playlist</source> | ||
1545 | <target state="new">Create a new playlist</target> | ||
1546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">49</context></context-group> | ||
1547 | </trans-unit> | ||
1548 | <trans-unit id="2527931602940887636" datatype="html"> | ||
1549 | <source>My subscriptions</source> | ||
1550 | <target state="new">My subscriptions</target> | ||
1551 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">99</context></context-group> | ||
1552 | </trans-unit> | ||
1535 | <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238"> | 1553 | <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238"> |
1536 | <source>Videos</source> | 1554 | <source>Videos</source> |
1537 | <target>Videa</target> | 1555 | <target>Videa</target> |
1538 | 1556 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group> | |
1539 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> | 1557 | </trans-unit> |
1540 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | 1558 | <trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1541 | 1559 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> | |
1542 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> | 1560 | <target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> |
1561 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group> | ||
1562 | </trans-unit> | ||
1543 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1563 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1544 | <source>Playlists</source> | 1564 | <source>Playlists</source> |
1545 | <target>Seznamy videí</target> | 1565 | <target>Seznamy videí</target> |
1546 | 1566 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group> | |
1547 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> | 1567 | </trans-unit> |
1548 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1568 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1549 | <source>Subscriptions</source> | 1569 | <source>Subscriptions</source> |
1550 | <target>Odběry</target> | 1570 | <target>Odběry</target> |
1551 | 1571 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">112</context></context-group> | |
1552 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">112</context></context-group></trans-unit> | 1572 | </trans-unit> |
1553 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> | 1573 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> |
1554 | <source>History</source> | 1574 | <source>History</source> |
1555 | <target>Historie</target> | 1575 | <target>Historie</target> |
1556 | 1576 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group> | |
1557 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> | 1577 | </trans-unit> |
1558 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1578 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1559 | <source>VIDEOS</source> | 1579 | <source>VIDEOS</source> |
1560 | <target state="new">VIDEOS</target> | 1580 | <target state="new">VIDEOS</target> |
1561 | 1581 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">411</context></context-group> | |
1562 | 1582 | </trans-unit> | |
1563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">411</context></context-group></trans-unit><trans-unit id="58c5c598fe5cdb9aeb4425ed9609a3eafa671158" datatype="html"> | 1583 | <trans-unit id="58c5c598fe5cdb9aeb4425ed9609a3eafa671158" datatype="html"> |
1564 | <source>Allow import with HTTP URL (e.g. YouTube)</source><target state="new">Allow import with HTTP URL (e.g. YouTube)</target> | 1584 | <source>Allow import with HTTP URL (e.g. YouTube)</source> |
1585 | <target state="new">Allow import with HTTP URL (e.g. YouTube)</target> | ||
1565 | <context-group purpose="location"> | 1586 | <context-group purpose="location"> |
1566 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 1587 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
1567 | <context context-type="linenumber">422</context> | 1588 | <context context-type="linenumber">422</context> |
@@ -1570,406 +1591,423 @@ The link will expire within 1 hour.</target> | |||
1570 | <trans-unit id="411ca58f59b00246e15b161e07409df55b5eb6db"> | 1591 | <trans-unit id="411ca58f59b00246e15b161e07409df55b5eb6db"> |
1571 | <source>Discover</source> | 1592 | <source>Discover</source> |
1572 | <target state="new">Discover</target> | 1593 | <target state="new">Discover</target> |
1573 | 1594 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group> | |
1574 | 1595 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/overview/video-overview.component.html</context><context context-type="linenumber">1</context></context-group> | |
1575 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/overview/video-overview.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 1596 | </trans-unit> |
1576 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1597 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1577 | <source>Trending</source> | 1598 | <source>Trending</source> |
1578 | <target>Trendy</target> | 1599 | <target>Trendy</target> |
1579 | 1600 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group> | |
1580 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> | 1601 | </trans-unit> |
1581 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1602 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1582 | <source>Most liked</source> | 1603 | <source>Most liked</source> |
1583 | <target state="new">Most liked</target> | 1604 | <target state="new">Most liked</target> |
1584 | 1605 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">137</context></context-group> | |
1585 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">137</context></context-group></trans-unit> | 1606 | </trans-unit> |
1586 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1607 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1587 | <source>Recently added</source> | 1608 | <source>Recently added</source> |
1588 | <target>Nedávno přidané</target> | 1609 | <target>Nedávno přidané</target> |
1589 | 1610 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">142</context></context-group> | |
1590 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">142</context></context-group></trans-unit> | 1611 | </trans-unit> |
1591 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1612 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1592 | <source>Administration</source> | 1613 | <source>Administration</source> |
1593 | <target>Administrace</target> | 1614 | <target>Administrace</target> |
1594 | 1615 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">87</context></context-group> | |
1595 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> | 1616 | </trans-unit> |
1596 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1617 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1597 | <source>About</source> | 1618 | <source>About</source> |
1598 | <target>O nás</target> | 1619 | <target>O nás</target> |
1599 | 1620 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group> | |
1600 | 1621 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context><context context-type="linenumber">1</context></context-group> | |
1601 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 1622 | </trans-unit> |
1602 | <trans-unit id="34746fb1c7f3d2194d99652bdff89e6e14c9c4f4" datatype="html"> | 1623 | <trans-unit id="34746fb1c7f3d2194d99652bdff89e6e14c9c4f4" datatype="html"> |
1603 | <source>Contact</source> | 1624 | <source>Contact</source> |
1604 | <target state="new">Contact</target> | 1625 | <target state="new">Contact</target> |
1605 | 1626 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">173</context></context-group> | |
1606 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">173</context></context-group></trans-unit> | 1627 | </trans-unit> |
1607 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1628 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1608 | <source>View your notifications</source> | 1629 | <source>View your notifications</source> |
1609 | <target>Zobrazit vaše oznámení</target> | 1630 | <target>Zobrazit vaše oznámení</target> |
1610 | 1631 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">3</context></context-group> | |
1611 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 1632 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">11</context></context-group> |
1633 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">11</context></context-group> | ||
1634 | </trans-unit> | ||
1612 | <trans-unit id="8bcabdf6b16cad0313a86c7e940c5e3ad7f9f8ab"> | 1635 | <trans-unit id="8bcabdf6b16cad0313a86c7e940c5e3ad7f9f8ab"> |
1613 | <source>Notifications</source> | 1636 | <source>Notifications</source> |
1614 | <target>Oznámení</target> | 1637 | <target>Oznámení</target> |
1615 | 1638 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">22</context></context-group> | |
1616 | 1639 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">1</context></context-group> | |
1617 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 1640 | </trans-unit> |
1618 | <trans-unit id="1da23f4068fd3796fbcb24d0c42bb62f92c96829" datatype="html"> | 1641 | <trans-unit id="1da23f4068fd3796fbcb24d0c42bb62f92c96829" datatype="html"> |
1619 | <source>Mark all as read</source> | 1642 | <source>Mark all as read</source> |
1620 | <target state="new">Mark all as read</target> | 1643 | <target state="new">Mark all as read</target> |
1621 | 1644 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">27</context></context-group> | |
1622 | 1645 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">27</context></context-group> | |
1623 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 1646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">20</context></context-group> |
1647 | </trans-unit> | ||
1624 | <trans-unit id="341e026e3f317aa3164916cc63a059c961a78b81"> | 1648 | <trans-unit id="341e026e3f317aa3164916cc63a059c961a78b81"> |
1625 | <source>Update your notification preferences</source> | 1649 | <source>Update your notification preferences</source> |
1626 | <target>Aktualizovat vaše předvolby oznámení</target> | 1650 | <target>Aktualizovat vaše předvolby oznámení</target> |
1627 | 1651 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">31</context></context-group> | |
1628 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 1652 | </trans-unit> |
1629 | <trans-unit id="3d1b5c9cd76948c04fdb7bb3fe51b6c1242c1bd5"> | 1653 | <trans-unit id="3d1b5c9cd76948c04fdb7bb3fe51b6c1242c1bd5"> |
1630 | <source>See all your notifications</source> | 1654 | <source>See all your notifications</source> |
1631 | <target>Zobrazit všechna oznámení</target> | 1655 | <target>Zobrazit všechna oznámení</target> |
1632 | 1656 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">49</context></context-group> | |
1633 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit><trans-unit id="4424964105331349857" datatype="html"> | 1657 | </trans-unit> |
1634 | <source>I'm a teapot</source><target state="new">I'm a teapot</target> | 1658 | <trans-unit id="4424964105331349857" datatype="html"> |
1659 | <source>I'm a teapot</source> | ||
1660 | <target state="new">I'm a teapot</target> | ||
1635 | <context-group purpose="location"> | 1661 | <context-group purpose="location"> |
1636 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.ts</context> | 1662 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.ts</context> |
1637 | <context context-type="linenumber">20</context> | 1663 | <context context-type="linenumber">20</context> |
1638 | </context-group> | 1664 | </context-group> |
1639 | </trans-unit><trans-unit id="75183663cb423cbc64e9443f38b091e65cf71ceb" datatype="html"> | 1665 | </trans-unit> |
1640 | <source>That's an error.</source><target state="new">That's an error.</target> | 1666 | <trans-unit id="75183663cb423cbc64e9443f38b091e65cf71ceb" datatype="html"> |
1667 | <source>That's an error.</source> | ||
1668 | <target state="new">That's an error.</target> | ||
1641 | <context-group purpose="location"> | 1669 | <context-group purpose="location"> |
1642 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1670 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1643 | <context context-type="linenumber">4</context> | 1671 | <context context-type="linenumber">4</context> |
1644 | </context-group> | 1672 | </context-group> |
1645 | </trans-unit><trans-unit id="09ee94b4e53e53026dbd591978aaa92901a8b67e" datatype="html"> | 1673 | </trans-unit> |
1646 | <source> We couldn't find any ressource tied to the URL <x id="INTERPOLATION" equiv-text="e URL {{ pathn"/> you were looking for. </source><target state="new"> We couldn't find any ressource tied to the URL <x id="INTERPOLATION" equiv-text="e URL {{ pathn"/> you were looking for. </target> | 1674 | <trans-unit id="09ee94b4e53e53026dbd591978aaa92901a8b67e" datatype="html"> |
1675 | <source>We couldn't find any ressource tied to the URL <x id="INTERPOLATION" equiv-text="e URL {{ pathn"/> you were looking for. </source> | ||
1676 | <target state="new"> We couldn't find any ressource tied to the URL <x id="INTERPOLATION" equiv-text="e URL {{ pathn"/> you were looking for. </target> | ||
1647 | <context-group purpose="location"> | 1677 | <context-group purpose="location"> |
1648 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1678 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1649 | <context context-type="linenumber">6,8</context> | 1679 | <context context-type="linenumber">6,8</context> |
1650 | </context-group> | 1680 | </context-group> |
1651 | </trans-unit><trans-unit id="c2c0aec88a83dd3aabac669264c432058f9e197e" datatype="html"> | 1681 | </trans-unit> |
1652 | <source>Possible reasons:</source><target state="new">Possible reasons:</target> | 1682 | <trans-unit id="c2c0aec88a83dd3aabac669264c432058f9e197e" datatype="html"> |
1683 | <source>Possible reasons:</source> | ||
1684 | <target state="new">Possible reasons:</target> | ||
1653 | <context-group purpose="location"> | 1685 | <context-group purpose="location"> |
1654 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1686 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1655 | <context context-type="linenumber">11</context> | 1687 | <context context-type="linenumber">11</context> |
1656 | </context-group> | 1688 | </context-group> |
1657 | <note priority="1" from="description">Possible reasons preceding a list of reasons a `Not Found` error page may occur</note> | 1689 | <note priority="1" from="description">Possible reasons preceding a list of reasons a `Not Found` error page may occur</note> |
1658 | </trans-unit><trans-unit id="5ddf9d42947dae74a85539c13e487932a157fc74" datatype="html"> | 1690 | </trans-unit> |
1659 | <source>The page may have been moved or deleted</source><target state="new">The page may have been moved or deleted</target> | 1691 | <trans-unit id="5ddf9d42947dae74a85539c13e487932a157fc74" datatype="html"> |
1692 | <source>The page may have been moved or deleted</source> | ||
1693 | <target state="new">The page may have been moved or deleted</target> | ||
1660 | <context-group purpose="location"> | 1694 | <context-group purpose="location"> |
1661 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1695 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1662 | <context context-type="linenumber">14</context> | 1696 | <context context-type="linenumber">14</context> |
1663 | </context-group> | 1697 | </context-group> |
1664 | </trans-unit><trans-unit id="ed052af4856de46aa0482d05b23b393619689cd2" datatype="html"> | 1698 | </trans-unit> |
1665 | <source>You may have used an outdated or broken link</source><target state="new">You may have used an outdated or broken link</target> | 1699 | <trans-unit id="ed052af4856de46aa0482d05b23b393619689cd2" datatype="html"> |
1700 | <source>You may have used an outdated or broken link</source> | ||
1701 | <target state="new">You may have used an outdated or broken link</target> | ||
1666 | <context-group purpose="location"> | 1702 | <context-group purpose="location"> |
1667 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1703 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1668 | <context context-type="linenumber">15</context> | 1704 | <context context-type="linenumber">15</context> |
1669 | </context-group> | 1705 | </context-group> |
1670 | </trans-unit><trans-unit id="b274f3be0260cd15f51c8d2de3387ec128a85083" datatype="html"> | 1706 | </trans-unit> |
1671 | <source>You may have typed the address or URL incorrectly</source><target state="new">You may have typed the address or URL incorrectly</target> | 1707 | <trans-unit id="b274f3be0260cd15f51c8d2de3387ec128a85083" datatype="html"> |
1708 | <source>You may have typed the address or URL incorrectly</source> | ||
1709 | <target state="new">You may have typed the address or URL incorrectly</target> | ||
1672 | <context-group purpose="location"> | 1710 | <context-group purpose="location"> |
1673 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1711 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1674 | <context context-type="linenumber">16</context> | 1712 | <context context-type="linenumber">16</context> |
1675 | </context-group> | 1713 | </context-group> |
1676 | </trans-unit><trans-unit id="18c5cc5c98ef03d23cde91a7dc64ee46cc49ec95" datatype="html"> | 1714 | </trans-unit> |
1677 | <source> The requested entity body blends sweet bits with a mellow earthiness. </source><target state="new"> The requested entity body blends sweet bits with a mellow earthiness. </target> | 1715 | <trans-unit id="18c5cc5c98ef03d23cde91a7dc64ee46cc49ec95" datatype="html"> |
1716 | <source>The requested entity body blends sweet bits with a mellow earthiness.</source> | ||
1717 | <target state="new"> The requested entity body blends sweet bits with a mellow earthiness. </target> | ||
1678 | <context-group purpose="location"> | 1718 | <context-group purpose="location"> |
1679 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1719 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1680 | <context context-type="linenumber">26,27</context> | 1720 | <context context-type="linenumber">26,27</context> |
1681 | </context-group> | 1721 | </context-group> |
1682 | <note priority="1" from="description">Description of a tea flavour, keeping the 'requested entity body' as a technical expression referring to a web request</note> | 1722 | <note priority="1" from="description">Description of a tea flavour, keeping the 'requested entity body' as a technical expression referring to a web request</note> |
1683 | </trans-unit><trans-unit id="68ffb388e7bfe4b0a6f9f6faef194f536a195c09" datatype="html"> | 1723 | </trans-unit> |
1684 | <source>Sepia seems to like it.</source><target state="new">Sepia seems to like it.</target> | 1724 | <trans-unit id="68ffb388e7bfe4b0a6f9f6faef194f536a195c09" datatype="html"> |
1725 | <source>Sepia seems to like it.</source> | ||
1726 | <target state="new">Sepia seems to like it.</target> | ||
1685 | <context-group purpose="location"> | 1727 | <context-group purpose="location"> |
1686 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1728 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1687 | <context context-type="linenumber">28</context> | 1729 | <context context-type="linenumber">28</context> |
1688 | </context-group> | 1730 | </context-group> |
1689 | <note priority="1" from="description">This is about Sepia's tea</note> | 1731 | <note priority="1" from="description">This is about Sepia's tea</note> |
1690 | </trans-unit><trans-unit id="2971365540217107489" datatype="html"> | 1732 | </trans-unit> |
1691 | <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source><target state="new">Media is too large for the server. Please contact you administrator if you want to increase the limit size.</target> | 1733 | <trans-unit id="2971365540217107489" datatype="html"> |
1692 | 1734 | <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source> | |
1693 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">62</context></context-group></trans-unit> | 1735 | <target state="new">Media is too large for the server. Please contact you administrator if you want to increase the limit size.</target> |
1736 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">62</context></context-group> | ||
1737 | </trans-unit> | ||
1694 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1738 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1695 | <source>Search videos, channels…</source> | 1739 | <source>Search videos, channels…</source> |
1696 | <target state="new">Search videos, channels…</target> | 1740 | <target state="new">Search videos, channels…</target> |
1697 | 1741 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">3</context></context-group> | |
1698 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 1742 | </trans-unit> |
1699 | <trans-unit id="90ce30ddedd5892740bb41e9ead736cd2c0f9b53" datatype="html"> | 1743 | <trans-unit id="90ce30ddedd5892740bb41e9ead736cd2c0f9b53" datatype="html"> |
1700 | <source>GLOBAL SEARCH</source> | 1744 | <source>GLOBAL SEARCH</source> |
1701 | <target state="new">GLOBAL SEARCH</target> | 1745 | <target state="new">GLOBAL SEARCH</target> |
1702 | 1746 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">26</context></context-group> | |
1703 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 1747 | </trans-unit> |
1704 | <trans-unit id="b2f3e08a790518414d240fbe2c3c116c6f83c275" datatype="html"> | 1748 | <trans-unit id="b2f3e08a790518414d240fbe2c3c116c6f83c275" datatype="html"> |
1705 | <source>using <x id="INTERPOLATION"/></source> | 1749 | <source>using <x id="INTERPOLATION"/></source> |
1706 | <target state="new">using | 1750 | <target state="translated">používá <x id="INTERPOLATION"/></target> |
1707 | <x id="INTERPOLATION" equiv-text="{{ serverConfig.search.searchIndex.url }}"/> | 1751 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">28</context></context-group> |
1708 | </target> | 1752 | </trans-unit> |
1709 | |||
1710 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | ||
1711 | <trans-unit id="44f26a1c56d73d4763225ba2e6d5091e0cad1b7c" datatype="html"> | 1753 | <trans-unit id="44f26a1c56d73d4763225ba2e6d5091e0cad1b7c" datatype="html"> |
1712 | <source>Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent.</source> | 1754 | <source>Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent.</source> |
1713 | <target state="new">Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent.</target> | 1755 | <target state="new">Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent.</target> |
1714 | 1756 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">32</context></context-group> | |
1715 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 1757 | </trans-unit> |
1716 | <trans-unit id="ee697ded3eb6909ca0e619ab5cc9647cbd849da5" datatype="html"> | 1758 | <trans-unit id="ee697ded3eb6909ca0e619ab5cc9647cbd849da5" datatype="html"> |
1717 | <source>ADVANCED SEARCH</source> | 1759 | <source>ADVANCED SEARCH</source> |
1718 | <target state="new">ADVANCED SEARCH</target> | 1760 | <target state="new">ADVANCED SEARCH</target> |
1719 | 1761 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">38</context></context-group> | |
1720 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 1762 | </trans-unit> |
1721 | <trans-unit id="8e799fee4b3df7ea53786f096380f81c78a77efd" datatype="html"> | 1763 | <trans-unit id="8e799fee4b3df7ea53786f096380f81c78a77efd" datatype="html"> |
1722 | <source>any instance</source> | 1764 | <source>any instance</source> |
1723 | <target state="new">any instance</target> | 1765 | <target state="new">any instance</target> |
1724 | 1766 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">41</context></context-group> | |
1725 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 1767 | </trans-unit> |
1726 | <trans-unit id="36a1080014918cc9c4ef8c0d3d5f4d3ae88176bd" datatype="html"> | 1768 | <trans-unit id="36a1080014918cc9c4ef8c0d3d5f4d3ae88176bd" datatype="html"> |
1727 | <source>only followed instances</source> | 1769 | <source>only followed instances</source> |
1728 | <target state="new">only followed instances</target> | 1770 | <target state="new">only followed instances</target> |
1729 | 1771 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">42</context></context-group> | |
1730 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1772 | </trans-unit> |
1731 | <trans-unit id="e5a60e5f83aad776726b8b9e7ff1b69f047a8416" datatype="html"> | 1773 | <trans-unit id="e5a60e5f83aad776726b8b9e7ff1b69f047a8416" datatype="html"> |
1732 | <source>Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows.</source> | 1774 | <source>Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows.</source> |
1733 | <target state="new">Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows.</target> | 1775 | <target state="new">Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows.</target> |
1734 | 1776 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">40</context></context-group> | |
1735 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> | 1777 | </trans-unit> |
1736 | <trans-unit id="648ca3b1ac41763033a412ead17c4a3dd71545be" datatype="html"> | 1778 | <trans-unit id="648ca3b1ac41763033a412ead17c4a3dd71545be" datatype="html"> |
1737 | <source>will list the matching channel</source> | 1779 | <source>will list the matching channel</source> |
1738 | <target state="new">will list the matching channel</target> | 1780 | <target state="new">will list the matching channel</target> |
1739 | 1781 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">49</context></context-group> | |
1740 | 1782 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">52</context></context-group> | |
1741 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">49</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 1783 | </trans-unit> |
1742 | <trans-unit id="48d27fa96b882d9c5c2a779376328790d80378eb" datatype="html"> | 1784 | <trans-unit id="48d27fa96b882d9c5c2a779376328790d80378eb" datatype="html"> |
1743 | <source>will list the matching video</source> | 1785 | <source>will list the matching video</source> |
1744 | <target state="new">will list the matching video</target> | 1786 | <target state="new">will list the matching video</target> |
1745 | 1787 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">55</context></context-group> | |
1746 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1788 | </trans-unit> |
1747 | <trans-unit id="25d438ce4c6d14835921c34bda6cc88f4fe5b1b4" datatype="html"> | 1789 | <trans-unit id="25d438ce4c6d14835921c34bda6cc88f4fe5b1b4" datatype="html"> |
1748 | <source>Any other input will return matching video or channel names.</source> | 1790 | <source>Any other input will return matching video or channel names.</source> |
1749 | <target state="new">Any other input will return matching video or channel names.</target> | 1791 | <target state="new">Any other input will return matching video or channel names.</target> |
1750 | 1792 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">58</context></context-group> | |
1751 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 1793 | </trans-unit> |
1752 | <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> | 1794 | <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> |
1753 | <source>Search...</source> | 1795 | <source>Search...</source> |
1754 | <target>Hledat...</target> | 1796 | <target>Hledat...</target> |
1755 | 1797 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">6</context></context-group> | |
1756 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 1798 | </trans-unit> |
1757 | |||
1758 | <trans-unit id="39ec2a3e2da523763f4db4b2227b7dbae5d70eba" datatype="html"> | 1799 | <trans-unit id="39ec2a3e2da523763f4db4b2227b7dbae5d70eba" datatype="html"> |
1759 | <source>In this instance's network</source> | 1800 | <source>In this instance's network</source> |
1760 | <target state="new">In this instance's network</target> | 1801 | <target state="new">In this instance's network</target> |
1761 | 1802 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/suggestion.component.html</context><context context-type="linenumber">14</context></context-group> | |
1762 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/suggestion.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 1803 | </trans-unit> |
1763 | <trans-unit id="9848e55d7c95eddc1c4a044a63ed0e88e8cb6f5c" datatype="html"> | 1804 | <trans-unit id="9848e55d7c95eddc1c4a044a63ed0e88e8cb6f5c" datatype="html"> |
1764 | <source>In the vidiverse</source> | 1805 | <source>In the vidiverse</source> |
1765 | <target state="new">In the vidiverse</target> | 1806 | <target state="new">In the vidiverse</target> |
1766 | 1807 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/suggestion.component.html</context><context context-type="linenumber">15</context></context-group> | |
1767 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/suggestion.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 1808 | </trans-unit> |
1768 | <trans-unit id="5d43539fc358c3a548b9d487be821db73e2702ff"> | 1809 | <trans-unit id="5d43539fc358c3a548b9d487be821db73e2702ff"> |
1769 | <source>Sort</source> | 1810 | <source>Sort</source> |
1770 | <target>Seřadit</target> | 1811 | <target>Seřadit</target> |
1771 | 1812 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">7</context></context-group> | |
1772 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 1813 | </trans-unit> |
1773 | <trans-unit id="a57adbb9bc3ecbc397157af25f96fc2123c9c383" datatype="html"> | 1814 | <trans-unit id="a57adbb9bc3ecbc397157af25f96fc2123c9c383" datatype="html"> |
1774 | <source> | 1815 | <source>Reset</source> |
1775 | Reset | ||
1776 | </source> | ||
1777 | <target state="new"> | 1816 | <target state="new"> |
1778 | Reset | 1817 | Reset |
1779 | </target> | 1818 | </target> |
1780 | 1819 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">9</context></context-group> | |
1781 | 1820 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">23</context></context-group> | |
1782 | 1821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">42</context></context-group> | |
1783 | 1822 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">56</context></context-group> | |
1784 | 1823 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">91</context></context-group> | |
1785 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">9</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1824 | </trans-unit> |
1786 | <trans-unit id="98acac685fc4b2d35e5d0cf3cd224d247a756c3e"> | 1825 | <trans-unit id="98acac685fc4b2d35e5d0cf3cd224d247a756c3e"> |
1787 | <source>Published date</source> | 1826 | <source>Published date</source> |
1788 | <target>Datum publikace</target> | 1827 | <target>Datum publikace</target> |
1789 | 1828 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">40</context></context-group> | |
1790 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> | 1829 | </trans-unit> |
1791 | <trans-unit id="31523e672b9f39a621e5d9e2a22b24bbf9aa8d4d"> | 1830 | <trans-unit id="31523e672b9f39a621e5d9e2a22b24bbf9aa8d4d"> |
1792 | <source>Original publication year</source> | 1831 | <source>Original publication year</source> |
1793 | <target>Původní rok publikování</target> | 1832 | <target>Původní rok publikování</target> |
1794 | 1833 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">54</context></context-group> | |
1795 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> | 1834 | </trans-unit> |
1796 | <trans-unit id="e9866754251f6f45c42710a3de01da5d79c6ae91"> | 1835 | <trans-unit id="e9866754251f6f45c42710a3de01da5d79c6ae91"> |
1797 | <source>After...</source> | 1836 | <source>After...</source> |
1798 | <target>Po...</target> | 1837 | <target>Po...</target> |
1799 | 1838 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">66</context></context-group> | |
1800 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1839 | </trans-unit> |
1801 | <trans-unit id="46c36269a23f9105124bbdd58f8c91833b92e565"> | 1840 | <trans-unit id="46c36269a23f9105124bbdd58f8c91833b92e565"> |
1802 | <source>Before...</source> | 1841 | <source>Before...</source> |
1803 | <target>Před...</target> | 1842 | <target>Před...</target> |
1804 | 1843 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">76</context></context-group> | |
1805 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> | 1844 | </trans-unit> |
1806 | <trans-unit id="a02ea1d4e7424ca989929da5e598f379940fdbf2"> | 1845 | <trans-unit id="a02ea1d4e7424ca989929da5e598f379940fdbf2"> |
1807 | <source>Duration</source> | 1846 | <source>Duration</source> |
1808 | <target>Trvání</target> | 1847 | <target>Trvání</target> |
1809 | 1848 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">89</context></context-group> | |
1810 | 1849 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">276</context></context-group> | |
1811 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">89</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">276</context></context-group></trans-unit> | 1850 | </trans-unit> |
1812 | <trans-unit id="dc67060f94f0f2b58549f54a5c07925dffd20238"> | 1851 | <trans-unit id="dc67060f94f0f2b58549f54a5c07925dffd20238"> |
1813 | <source>Display sensitive content</source> | 1852 | <source>Display sensitive content</source> |
1814 | <target>Zobrazit citlivý obsah</target> | 1853 | <target>Zobrazit citlivý obsah</target> |
1815 | 1854 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">21</context></context-group> | |
1816 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 1855 | </trans-unit> |
1817 | <trans-unit id="4f20f2d5a6882190892e58b85f6ccbedfa737952"> | 1856 | <trans-unit id="4f20f2d5a6882190892e58b85f6ccbedfa737952"> |
1818 | <source>Yes</source> | 1857 | <source>Yes</source> |
1819 | <target>Ano</target> | 1858 | <target>Ano</target> |
1820 | 1859 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">29</context></context-group> | |
1821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1860 | </trans-unit> |
1822 | <trans-unit id="3d3ae7deebc5949b0c1c78b9847886a94321d9fd"> | 1861 | <trans-unit id="3d3ae7deebc5949b0c1c78b9847886a94321d9fd"> |
1823 | <source>No</source> | 1862 | <source>No</source> |
1824 | <target>Ne</target> | 1863 | <target>Ne</target> |
1825 | 1864 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">34</context></context-group> | |
1826 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 1865 | </trans-unit> |
1827 | <trans-unit id="607de17c2a755f65775881c19e276e7c933bcf94"> | 1866 | <trans-unit id="607de17c2a755f65775881c19e276e7c933bcf94"> |
1828 | <source>Category</source> | 1867 | <source>Category</source> |
1829 | <target>Kategorie</target> | 1868 | <target>Kategorie</target> |
1830 | 1869 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">102</context></context-group> | |
1831 | 1870 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">241</context></context-group> | |
1832 | 1871 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">63</context></context-group> | |
1833 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">102</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">241</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">63</context></context-group></trans-unit> | 1872 | </trans-unit> |
1834 | <trans-unit id="265ee68edfe57e510270da31ec99f67d94346009" datatype="html"> | 1873 | <trans-unit id="265ee68edfe57e510270da31ec99f67d94346009" datatype="html"> |
1835 | <source> | 1874 | <source>Reset</source> |
1836 | Reset | ||
1837 | </source> | ||
1838 | <target state="new"> | 1875 | <target state="new"> |
1839 | Reset | 1876 | Reset |
1840 | </target> | 1877 | </target> |
1841 | 1878 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">104</context></context-group> | |
1842 | 1879 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">117</context></context-group> | |
1843 | 1880 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">130</context></context-group> | |
1844 | 1881 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">145</context></context-group> | |
1845 | 1882 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">153</context></context-group> | |
1846 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">104</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">130</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">145</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">153</context></context-group></trans-unit> | 1883 | </trans-unit> |
1847 | <trans-unit id="75706466a5cffa6f6bf0d6c94a8345a001ce8cea" datatype="html"> | 1884 | <trans-unit id="75706466a5cffa6f6bf0d6c94a8345a001ce8cea" datatype="html"> |
1848 | <source>Display all categories</source> | 1885 | <source>Display all categories</source> |
1849 | <target state="new">Display all categories</target> | 1886 | <target state="new">Display all categories</target> |
1850 | 1887 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">108</context></context-group> | |
1851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">108</context></context-group></trans-unit> | 1888 | </trans-unit> |
1852 | <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c"> | 1889 | <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c"> |
1853 | <source>Licence</source> | 1890 | <source>Licence</source> |
1854 | <target>Licence</target> | 1891 | <target>Licence</target> |
1855 | 1892 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">115</context></context-group> | |
1856 | 1893 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">250</context></context-group> | |
1857 | 1894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">74</context></context-group> | |
1858 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">115</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">250</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit> | 1895 | </trans-unit> |
1859 | <trans-unit id="e19d80c6277747a68f3da8cfe1318303d2b5c952" datatype="html"> | 1896 | <trans-unit id="e19d80c6277747a68f3da8cfe1318303d2b5c952" datatype="html"> |
1860 | <source>Display all licenses</source> | 1897 | <source>Display all licenses</source> |
1861 | <target state="new">Display all licenses</target> | 1898 | <target state="new">Display all licenses</target> |
1862 | 1899 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">121</context></context-group> | |
1863 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1900 | </trans-unit> |
1864 | <trans-unit id="fe46ccaae902ce974e2441abe752399288298619"> | 1901 | <trans-unit id="fe46ccaae902ce974e2441abe752399288298619"> |
1865 | <source>Language</source> | 1902 | <source>Language</source> |
1866 | <target>Jazyk</target> | 1903 | <target>Jazyk</target> |
1867 | 1904 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">128</context></context-group> | |
1868 | 1905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">259</context></context-group> | |
1869 | 1906 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">10</context></context-group> | |
1870 | 1907 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">94</context></context-group> | |
1871 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">128</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">259</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">10</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">94</context></context-group></trans-unit> | 1908 | </trans-unit> |
1872 | <trans-unit id="dcc3173a99661496cd1f836283993cc3e6576b26" datatype="html"> | 1909 | <trans-unit id="dcc3173a99661496cd1f836283993cc3e6576b26" datatype="html"> |
1873 | <source>Display all languages</source> | 1910 | <source>Display all languages</source> |
1874 | <target state="new">Display all languages</target> | 1911 | <target state="new">Display all languages</target> |
1875 | 1912 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">134</context></context-group> | |
1876 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">134</context></context-group></trans-unit> | 1913 | </trans-unit> |
1877 | <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8"> | 1914 | <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8"> |
1878 | <source>All of these tags</source> | 1915 | <source>All of these tags</source> |
1879 | <target>Všechny tyto štítky</target> | 1916 | <target>Všechny tyto štítky</target> |
1880 | 1917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">143</context></context-group> | |
1881 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">143</context></context-group></trans-unit> | 1918 | </trans-unit> |
1882 | <trans-unit id="492d2bd18db0cba03f6d9e3b0c42b8639fbe51ab"> | 1919 | <trans-unit id="492d2bd18db0cba03f6d9e3b0c42b8639fbe51ab"> |
1883 | <source>One of these tags</source> | 1920 | <source>One of these tags</source> |
1884 | <target>Jeden z těchto štítků</target> | 1921 | <target>Jeden z těchto štítků</target> |
1885 | 1922 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">151</context></context-group> | |
1886 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">151</context></context-group></trans-unit> | 1923 | </trans-unit> |
1887 | <trans-unit id="118bedbb308a28f06d1c0c84645a35c9bf93cbf3" datatype="html"> | 1924 | <trans-unit id="118bedbb308a28f06d1c0c84645a35c9bf93cbf3" datatype="html"> |
1888 | <source>Search target</source> | 1925 | <source>Search target</source> |
1889 | <target state="new">Search target</target> | 1926 | <target state="new">Search target</target> |
1890 | 1927 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">160</context></context-group> | |
1891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1928 | </trans-unit> |
1892 | <trans-unit id="cdfec9a92a3081018d34e82d74e85e4e9f63a95f" datatype="html"> | 1929 | <trans-unit id="cdfec9a92a3081018d34e82d74e85e4e9f63a95f" datatype="html"> |
1893 | <source>Vidiverse</source> | 1930 | <source>Vidiverse</source> |
1894 | <target state="new">Vidiverse</target> | 1931 | <target state="new">Vidiverse</target> |
1895 | 1932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">170</context></context-group> | |
1896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1933 | </trans-unit> |
1897 | <trans-unit id="ca72d574353a355b8fadbc1ceda174a0bd1bf7cd" datatype="html"> | 1934 | <trans-unit id="ca72d574353a355b8fadbc1ceda174a0bd1bf7cd" datatype="html"> |
1898 | <source> | 1935 | <source>Reset</source> |
1899 | Reset | ||
1900 | </source> | ||
1901 | <target state="new"> | 1936 | <target state="new"> |
1902 | Reset | 1937 | Reset |
1903 | </target> | 1938 | </target> |
1904 | 1939 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">178</context></context-group> | |
1905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">178</context></context-group></trans-unit> | 1940 | </trans-unit> |
1906 | <trans-unit id="5ca707824ab93066c7d9b44e1b8bf216725c2c22"> | 1941 | <trans-unit id="5ca707824ab93066c7d9b44e1b8bf216725c2c22"> |
1907 | <source>Filter</source> | 1942 | <source>Filter</source> |
1908 | <target>Filtr</target> | 1943 | <target>Filtr</target> |
1909 | 1944 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">181</context></context-group> | |
1910 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">181</context></context-group></trans-unit> | 1945 | </trans-unit> |
1911 | |||
1912 | <trans-unit id="6f5a458f827503ac7b8697688ecf3e0490818ee8" datatype="html"> | 1946 | <trans-unit id="6f5a458f827503ac7b8697688ecf3e0490818ee8" datatype="html"> |
1913 | <source>Video channels</source> | 1947 | <source>Video channels</source> |
1914 | <target state="new">Video channels</target> | 1948 | <target state="new">Video channels</target> |
1915 | 1949 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">1</context></context-group> | |
1916 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 1950 | </trans-unit> |
1917 | <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0"> | 1951 | <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0"> |
1918 | <source>Add caption</source> | 1952 | <source>Add caption</source> |
1919 | <target>Přidat titulek</target> | 1953 | <target>Přidat titulek</target> |
1920 | 1954 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">5</context></context-group> | |
1921 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 1955 | </trans-unit> |
1922 | <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8"> | 1956 | <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8"> |
1923 | <source>Select the caption file</source> | 1957 | <source>Select the caption file</source> |
1924 | <target>Vyberte soubor s titulky</target> | 1958 | <target>Vyberte soubor s titulky</target> |
1925 | 1959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">24</context></context-group> | |
1926 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 1960 | </trans-unit> |
1927 | <trans-unit id="c34c61401151c29fb3679638a7d0b95258145ec3"> | 1961 | <trans-unit id="c34c61401151c29fb3679638a7d0b95258145ec3"> |
1928 | <source>This will replace an existing caption!</source> | 1962 | <source>This will replace an existing caption!</source> |
1929 | <target> | 1963 | <target> |
1930 | Tohle nahradí existující titulek! | 1964 | Tohle nahradí existující titulek! |
1931 | </target> | 1965 | </target> |
1932 | 1966 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">31</context></context-group> | |
1933 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 1967 | </trans-unit> |
1934 | <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c"> | 1968 | <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c"> |
1935 | <source>Add this caption</source> | 1969 | <source>Add this caption</source> |
1936 | <target>Přidat tento titulek</target> | 1970 | <target>Přidat tento titulek</target> |
1937 | 1971 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">42</context></context-group> | |
1938 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1972 | </trans-unit> |
1939 | <trans-unit id="fdf7cbdc140d0aab0f0b6c06065a0fd448ed6a2e"> | 1973 | <trans-unit id="fdf7cbdc140d0aab0f0b6c06065a0fd448ed6a2e"> |
1940 | <source>Title</source> | 1974 | <source>Title</source> |
1941 | <target>Nadpis</target> | 1975 | <target>Nadpis</target> |
1942 | 1976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
1943 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 1977 | </trans-unit> |
1944 | <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b"> | 1978 | <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b"> |
1945 | <source>Tags</source> | 1979 | <source>Tags</source> |
1946 | <target>Štítky</target> | 1980 | <target>Štítky</target> |
1947 | 1981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">268</context></context-group> | |
1948 | 1982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">19</context></context-group> | |
1949 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">268</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 1983 | </trans-unit> |
1950 | <trans-unit id="554a78c6ac043b4a9058c39d63e4475a454e4dc2" datatype="html"> | 1984 | <trans-unit id="554a78c6ac043b4a9058c39d63e4475a454e4dc2" datatype="html"> |
1951 | <source> Tags could be used to suggest relevant recommendations. <x id="LINE_BREAK"/> There is a maximum of 5 tags. <x id="LINE_BREAK"/> Press <x id="START_TAG_KBD"/>Enter<x id="CLOSE_TAG_KBD"/> to add a new tag. </source> | 1985 | <source>Tags could be used to suggest relevant recommendations. <x id="LINE_BREAK"/> There is a maximum of 5 tags. <x id="LINE_BREAK"/> Press <x id="START_TAG_KBD"/>Enter<x id="CLOSE_TAG_KBD"/> to add a new tag. </source> |
1952 | <target state="new"> | 1986 | <target state="new"> |
1953 | Tags could be used to suggest relevant recommendations. | 1987 | Tags could be used to suggest relevant recommendations. |
1954 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 1988 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
1955 | There is a maximum of 5 tags. | 1989 | There is a maximum of 5 tags. |
1956 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 1990 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
1957 | Press | 1991 | Press |
1958 | <x id="START_TAG_KBD" ctype="x-kbd" equiv-text="<kbd>"/>Enter | 1992 | <x id="START_TAG_KBD" ctype="x-kbd" equiv-text="<kbd>"/>Enter |
1959 | <x id="CLOSE_TAG_KBD" ctype="x-kbd" equiv-text="</kbd>"/> to add a new tag. | 1993 | <x id="CLOSE_TAG_KBD" ctype="x-kbd" equiv-text="</kbd>"/> to add a new tag. |
1960 | 1994 | ||
1961 | </target> | 1995 | </target> |
1962 | 1996 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">24</context></context-group> | |
1963 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 1997 | </trans-unit> |
1964 | <trans-unit id="8389e9cde2928cc27aaecbdee818a255bf7984b0" datatype="html"> | 1998 | <trans-unit id="8389e9cde2928cc27aaecbdee818a255bf7984b0" datatype="html"> |
1965 | <source>Enter a new tag</source> | 1999 | <source>Enter a new tag</source> |
1966 | <target state="new">Enter a new tag</target> | 2000 | <target state="new">Enter a new tag</target> |
1967 | 2001 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-tags.component.html</context><context context-type="linenumber">5</context></context-group> | |
1968 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-tags.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit><trans-unit id="6179532215548637839" datatype="html"> | 2002 | </trans-unit> |
1969 | <source>extensions</source><target state="new">extensions</target> | 2003 | <trans-unit id="6179532215548637839" datatype="html"> |
1970 | 2004 | <source>extensions</source> | |
1971 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit><trans-unit id="8054921481196967348" datatype="html"> | 2005 | <target state="new">extensions</target> |
1972 | <source>This image is too large.</source><target state="new">This image is too large.</target> | 2006 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.ts</context><context context-type="linenumber">41</context></context-group> |
2007 | </trans-unit> | ||
2008 | <trans-unit id="8054921481196967348" datatype="html"> | ||
2009 | <source>This image is too large.</source> | ||
2010 | <target state="new">This image is too large.</target> | ||
1973 | <context-group purpose="location"> | 2011 | <context-group purpose="location"> |
1974 | <context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.ts</context> | 2012 | <context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.ts</context> |
1975 | <context context-type="linenumber">56</context> | 2013 | <context context-type="linenumber">56</context> |
@@ -1978,1070 +2016,1133 @@ The link will expire within 1 hour.</target> | |||
1978 | <trans-unit id="be24dae69c0d0605237d6dd638b172a42a88851e" datatype="html"> | 2016 | <trans-unit id="be24dae69c0d0605237d6dd638b172a42a88851e" datatype="html"> |
1979 | <source>No items found</source> | 2017 | <source>No items found</source> |
1980 | <target state="new">No items found</target> | 2018 | <target state="new">No items found</target> |
1981 | 2019 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.html</context><context context-type="linenumber">14</context></context-group> | |
1982 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 2020 | </trans-unit> |
1983 | <trans-unit id="eec715de352a6b114713b30b640d319fa78207a0"> | 2021 | <trans-unit id="eec715de352a6b114713b30b640d319fa78207a0"> |
1984 | <source>Description</source> | 2022 | <source>Description</source> |
1985 | <target>Popis</target> | 2023 | <target>Popis</target> |
1986 | 2024 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group> | |
1987 | 2025 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group> | |
1988 | 2026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">28</context></context-group> | |
1989 | 2027 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">64</context></context-group> | |
1990 | 2028 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">64</context></context-group> | |
1991 | 2029 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">113</context></context-group> | |
1992 | 2030 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">38</context></context-group> | |
1993 | 2031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">39</context></context-group> | |
1994 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">113</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 2032 | </trans-unit> |
1995 | <trans-unit id="3b86a740c713742c3f7538c60b890fccdd0a5caf" datatype="html"> | 2033 | <trans-unit id="3b86a740c713742c3f7538c60b890fccdd0a5caf" datatype="html"> |
1996 | <source>Video descriptions are truncated by default and require manual action to expand them.</source> | 2034 | <source>Video descriptions are truncated by default and require manual action to expand them.</source> |
1997 | <target state="new"> | 2035 | <target state="new"> |
1998 | Video descriptions are truncated by default and require manual action to expand them. | 2036 | Video descriptions are truncated by default and require manual action to expand them. |
1999 | </target> | 2037 | </target> |
2000 | 2038 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">43</context></context-group> | |
2001 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit><trans-unit id="ef0f544578470cd6dd75432d0f1ba0e27914d2cc" datatype="html"> | 2039 | </trans-unit> |
2002 | <source><x id="START_LINK"/>Choose<x id="CLOSE_LINK"/> the appropriate license for your work. </source><target state="new"><x id="START_LINK"/>Choose<x id="CLOSE_LINK"/> the appropriate license for your work. </target> | 2040 | <trans-unit id="ef0f544578470cd6dd75432d0f1ba0e27914d2cc" datatype="html"> |
2003 | 2041 | <source><x id="START_LINK"/>Choose<x id="CLOSE_LINK"/> the appropriate license for your work. </source> | |
2004 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2042 | <target state="new"><x id="START_LINK"/>Choose<x id="CLOSE_LINK"/> the appropriate license for your work. </target> |
2043 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">79</context></context-group> | ||
2044 | </trans-unit> | ||
2005 | <trans-unit id="0cc554f4d7bb6a87515d2d95438e183b50702071"> | 2045 | <trans-unit id="0cc554f4d7bb6a87515d2d95438e183b50702071"> |
2006 | <source>Channel</source> | 2046 | <source>Channel</source> |
2007 | <target>Kanál</target> | 2047 | <target>Kanál</target> |
2008 | 2048 | <note from="description" priority="1">Stepper label for the registration page asking information about the default channel</note> | |
2009 | 2049 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">33</context></context-group> | |
2010 | 2050 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">33</context></context-group> | |
2011 | 2051 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">70</context></context-group> | |
2012 | 2052 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">70</context></context-group> | |
2013 | 2053 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">30</context></context-group> | |
2014 | 2054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">22</context></context-group> | |
2015 | <note from="description" priority="1">Stepper label for the registration page asking information about the default channel</note><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">14</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 2055 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">6</context></context-group> |
2056 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">14</context></context-group> | ||
2057 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">58</context></context-group> | ||
2058 | </trans-unit> | ||
2016 | <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427"> | 2059 | <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427"> |
2017 | <source>Privacy</source> | 2060 | <source>Privacy</source> |
2018 | <target>Soukromí</target> | 2061 | <target>Soukromí</target> |
2019 | 2062 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group> | |
2020 | 2063 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group> | |
2021 | 2064 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">226</context></context-group> | |
2022 | 2065 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">37</context></context-group> | |
2023 | 2066 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">29</context></context-group> | |
2024 | 2067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">13</context></context-group> | |
2025 | 2068 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">21</context></context-group> | |
2026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">226</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">106</context></context-group></trans-unit> | 2069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">106</context></context-group> |
2070 | </trans-unit> | ||
2027 | <trans-unit id="4b6dbf2d92858e82bcf6ae5dbc8dfb4b29d82ad0" datatype="html"> | 2071 | <trans-unit id="4b6dbf2d92858e82bcf6ae5dbc8dfb4b29d82ad0" datatype="html"> |
2028 | <source>FAQ</source> | 2072 | <source>FAQ</source> |
2029 | <target state="new">FAQ</target> | 2073 | <target state="new">FAQ</target> |
2030 | 2074 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">175</context></context-group> | |
2031 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">175</context></context-group></trans-unit> | 2075 | </trans-unit> |
2032 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 2076 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
2033 | <source>Frequently asked questions about PeerTube</source> | 2077 | <source>Frequently asked questions about PeerTube</source> |
2034 | <target state="new">Frequently asked questions about PeerTube</target> | 2078 | <target state="new">Frequently asked questions about PeerTube</target> |
2035 | 2079 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">175</context></context-group> | |
2036 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">175</context></context-group></trans-unit> | 2080 | </trans-unit> |
2037 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 2081 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
2038 | <source>API</source> | 2082 | <source>API</source> |
2039 | <target state="new">API</target> | 2083 | <target state="new">API</target> |
2040 | 2084 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group> | |
2041 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> | 2085 | </trans-unit> |
2042 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 2086 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
2043 | <source>API documentation</source> | 2087 | <source>API documentation</source> |
2044 | <target state="new">API documentation</target> | 2088 | <target state="new">API documentation</target> |
2045 | 2089 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group> | |
2046 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> | 2090 | </trans-unit> |
2047 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 2091 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
2048 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 2092 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
2049 | <target>Naplánovat publikování ( | 2093 | <target>Naplánovat publikování (<x id="INTERPOLATION"/>)</target> |
2050 | <x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>) | 2094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">117</context></context-group> |
2051 | </target> | 2095 | </trans-unit> |
2052 | |||
2053 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> | ||
2054 | <trans-unit id="ea504765b49242bfcaefec84a9cf2f6f179c2ea5" datatype="html"> | 2096 | <trans-unit id="ea504765b49242bfcaefec84a9cf2f6f179c2ea5" datatype="html"> |
2055 | <source>Contains sensitive content</source> | 2097 | <source>Contains sensitive content</source> |
2056 | <target state="new">Contains sensitive content</target> | 2098 | <target state="new">Contains sensitive content</target> |
2057 | 2099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">131</context></context-group> | |
2058 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">131</context></context-group></trans-unit> | 2100 | </trans-unit> |
2059 | <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644"> | 2101 | <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644"> |
2060 | <source>Some instances do not list videos containing mature or explicit content by default.</source> | 2102 | <source>Some instances do not list videos containing mature or explicit content by default.</source> |
2061 | <target>Některé instance nezobrazují videa s citlivým materiálem.</target> | 2103 | <target>Některé instance nezobrazují videa s citlivým materiálem.</target> |
2062 | 2104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">135</context></context-group> | |
2063 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">135</context></context-group></trans-unit> | 2105 | </trans-unit> |
2064 | <trans-unit id="ec396d3c2e26cbe4a1b3d6747c732419c6dcc3bb" datatype="html"> | 2106 | <trans-unit id="ec396d3c2e26cbe4a1b3d6747c732419c6dcc3bb" datatype="html"> |
2065 | <source>Publish after transcoding</source> | 2107 | <source>Publish after transcoding</source> |
2066 | <target state="new">Publish after transcoding</target> | 2108 | <target state="new">Publish after transcoding</target> |
2067 | 2109 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">141</context></context-group> | |
2068 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">141</context></context-group></trans-unit> | 2110 | </trans-unit> |
2069 | <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63" datatype="html"> | 2111 | <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63" datatype="html"> |
2070 | <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source> | 2112 | <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source> |
2071 | <target state="new">If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</target> | 2113 | <target state="new">If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</target> |
2072 | 2114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">145</context></context-group> | |
2073 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">145</context></context-group></trans-unit> | 2115 | </trans-unit> |
2074 | <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7"> | 2116 | <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7"> |
2075 | <source>Basic info</source> | 2117 | <source>Basic info</source> |
2076 | <target>Základní údaje</target> | 2118 | <target>Základní údaje</target> |
2077 | 2119 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">5</context></context-group> | |
2078 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 2120 | </trans-unit> |
2079 | <trans-unit id="92bcfd1d237a2bfe48dc9f46d074ed26abc8df22"> | 2121 | <trans-unit id="92bcfd1d237a2bfe48dc9f46d074ed26abc8df22"> |
2080 | <source>Add another caption</source> | 2122 | <source>Add another caption</source> |
2081 | <target>Přidat další titulek</target> | 2123 | <target>Přidat další titulek</target> |
2082 | 2124 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">163</context></context-group> | |
2083 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 2125 | </trans-unit> |
2084 | <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed" datatype="html"> | 2126 | <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed" datatype="html"> |
2085 | <source>See the subtitle file</source> | 2127 | <source>See the subtitle file</source> |
2086 | <target state="new">See the subtitle file</target> | 2128 | <target state="new">See the subtitle file</target> |
2087 | 2129 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">172</context></context-group> | |
2088 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">172</context></context-group></trans-unit> | 2130 | </trans-unit> |
2089 | <trans-unit id="e687f6387adbaf61ce650b58f0e60ca42d843cee" datatype="html"> | 2131 | <trans-unit id="e687f6387adbaf61ce650b58f0e60ca42d843cee" datatype="html"> |
2090 | <source>Already uploaded ✔</source> | 2132 | <source>Already uploaded ✔</source> |
2091 | <target state="new">Already uploaded ✔</target> | 2133 | <target state="new">Already uploaded ✔</target> |
2092 | 2134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">176</context></context-group> | |
2093 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> | 2135 | </trans-unit> |
2094 | <trans-unit id="ca4588e185413b2fc77dbe35c861cc540b11b9ad" datatype="html"> | 2136 | <trans-unit id="ca4588e185413b2fc77dbe35c861cc540b11b9ad" datatype="html"> |
2095 | <source>Will be created on update</source> | 2137 | <source>Will be created on update</source> |
2096 | <target state="new">Will be created on update</target> | 2138 | <target state="new">Will be created on update</target> |
2097 | 2139 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">184</context></context-group> | |
2098 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">184</context></context-group></trans-unit> | 2140 | </trans-unit> |
2099 | <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9" datatype="html"> | 2141 | <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9" datatype="html"> |
2100 | <source>Cancel create</source> | 2142 | <source>Cancel create</source> |
2101 | <target state="new">Cancel create</target> | 2143 | <target state="new">Cancel create</target> |
2102 | 2144 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">186</context></context-group> | |
2103 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2145 | </trans-unit> |
2104 | <trans-unit id="b6bfdd386cb0b560d697c93555d8cd8cab00c393" datatype="html"> | 2146 | <trans-unit id="b6bfdd386cb0b560d697c93555d8cd8cab00c393" datatype="html"> |
2105 | <source>Will be deleted on update</source> | 2147 | <source>Will be deleted on update</source> |
2106 | <target state="new">Will be deleted on update</target> | 2148 | <target state="new">Will be deleted on update</target> |
2107 | 2149 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">192</context></context-group> | |
2108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">192</context></context-group></trans-unit> | 2150 | </trans-unit> |
2109 | <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c" datatype="html"> | 2151 | <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c" datatype="html"> |
2110 | <source>Cancel deletion</source> | 2152 | <source>Cancel deletion</source> |
2111 | <target state="new">Cancel deletion</target> | 2153 | <target state="new">Cancel deletion</target> |
2112 | 2154 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">194</context></context-group> | |
2113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">194</context></context-group></trans-unit> | 2155 | </trans-unit> |
2114 | <trans-unit id="82f867b2607d45ba36de11d4c8b53d7177122ee0"> | 2156 | <trans-unit id="82f867b2607d45ba36de11d4c8b53d7177122ee0"> |
2115 | <source>No captions for now.</source> | 2157 | <source>No captions for now.</source> |
2116 | <target> | 2158 | <target> |
2117 | Prozatím tu nejsou žádné titulky. | 2159 | Prozatím tu nejsou žádné titulky. |
2118 | </target> | 2160 | </target> |
2119 | 2161 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">200</context></context-group> | |
2120 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">200</context></context-group></trans-unit><trans-unit id="f98c72e3e802851f600b498e00763e7e32688a88" datatype="html"> | 2162 | </trans-unit> |
2121 | <source>Live settings</source><target state="new">Live settings</target> | 2163 | <trans-unit id="f98c72e3e802851f600b498e00763e7e32688a88" datatype="html"> |
2122 | 2164 | <source>Live settings</source> | |
2123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">208</context></context-group></trans-unit><trans-unit id="a3ecb8ed851e54c72dd44723d9fc3117e49ea498" datatype="html"> | 2165 | <target state="new">Live settings</target> |
2124 | <source>You can stream multiple times in a permanent live. The URL for your viewers won't change but you cannot save replays of your lives</source><target state="new">You can stream multiple times in a permanent live. The URL for your viewers won't change but you cannot save replays of your lives</target> | 2166 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">208</context></context-group> |
2125 | 2167 | </trans-unit> | |
2126 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">236</context></context-group></trans-unit><trans-unit id="223e01b44f68af4522e390bae9d584b4cbbdfebe" datatype="html"> | 2168 | <trans-unit id="a3ecb8ed851e54c72dd44723d9fc3117e49ea498" datatype="html"> |
2127 | <source>This is a permanent live</source><target state="new">This is a permanent live</target> | 2169 | <source>You can stream multiple times in a permanent live. The URL for your viewers won't change but you cannot save replays of your lives</source> |
2128 | 2170 | <target state="new">You can stream multiple times in a permanent live. The URL for your viewers won't change but you cannot save replays of your lives</target> | |
2129 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">232</context></context-group></trans-unit><trans-unit id="4b5b87d3c8366afa8bd2e40e0b07cc3102133250" datatype="html"> | 2171 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">236</context></context-group> |
2130 | <source>⚠️ If you enable this option, your live will be terminated if you exceed your video quota</source><target state="new">⚠️ If you enable this option, your live will be terminated if you exceed your video quota</target> | 2172 | </trans-unit> |
2131 | 2173 | <trans-unit id="223e01b44f68af4522e390bae9d584b4cbbdfebe" datatype="html"> | |
2132 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">248</context></context-group></trans-unit><trans-unit id="e495a796f252097a77a501a99db7cb30d1019296" datatype="html"> | 2174 | <source>This is a permanent live</source> |
2133 | <source>Automatically publish a replay when your live ends</source><target state="new">Automatically publish a replay when your live ends</target> | 2175 | <target state="new">This is a permanent live</target> |
2134 | 2176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">232</context></context-group> | |
2135 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">244</context></context-group></trans-unit> | 2177 | </trans-unit> |
2178 | <trans-unit id="4b5b87d3c8366afa8bd2e40e0b07cc3102133250" datatype="html"> | ||
2179 | <source>⚠️ If you enable this option, your live will be terminated if you exceed your video quota</source> | ||
2180 | <target state="new">⚠️ If you enable this option, your live will be terminated if you exceed your video quota</target> | ||
2181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">248</context></context-group> | ||
2182 | </trans-unit> | ||
2183 | <trans-unit id="e495a796f252097a77a501a99db7cb30d1019296" datatype="html"> | ||
2184 | <source>Automatically publish a replay when your live ends</source> | ||
2185 | <target state="new">Automatically publish a replay when your live ends</target> | ||
2186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">244</context></context-group> | ||
2187 | </trans-unit> | ||
2136 | <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93"> | 2188 | <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93"> |
2137 | <source>Captions</source> | 2189 | <source>Captions</source> |
2138 | <target>Titulky</target> | 2190 | <target>Titulky</target> |
2139 | 2191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">155</context></context-group> | |
2140 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">155</context></context-group></trans-unit> | 2192 | </trans-unit> |
2141 | <trans-unit id="fc7600ad500918cb091064cb7129a5d13657a430" datatype="html"> | 2193 | <trans-unit id="fc7600ad500918cb091064cb7129a5d13657a430" datatype="html"> |
2142 | <source>Video preview</source> | 2194 | <source>Video preview</source> |
2143 | <target state="new">Video preview</target> | 2195 | <target state="new">Video preview</target> |
2144 | 2196 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">267</context></context-group> | |
2145 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">267</context></context-group></trans-unit> | 2197 | </trans-unit> |
2146 | <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604"> | 2198 | <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604"> |
2147 | <source>Support</source> | 2199 | <source>Support</source> |
2148 | <target>Podpora</target> | 2200 | <target>Podpora</target> |
2149 | 2201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">276</context></context-group> | |
2150 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">276</context></context-group></trans-unit> | 2202 | </trans-unit> |
2151 | <trans-unit id="64ec6a11fd39e7a4cba76281bdd490124437e96f" datatype="html"> | 2203 | <trans-unit id="64ec6a11fd39e7a4cba76281bdd490124437e96f" datatype="html"> |
2152 | <source> | 2204 | <source>Short text to tell people how they can support you (membership platform...).</source> |
2153 | Short text to tell people how they can support you (membership platform...). | ||
2154 | </source> | ||
2155 | <target state="new"> | 2205 | <target state="new"> |
2156 | Short text to tell people how they can support you (membership platform...). | 2206 | Short text to tell people how they can support you (membership platform...). |
2157 | </target> | 2207 | </target> |
2158 | 2208 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">280</context></context-group> | |
2159 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">280</context></context-group></trans-unit> | 2209 | </trans-unit> |
2160 | <trans-unit id="50d14e019ef14b4180e247e0b3a45386a8a78bf6"> | 2210 | <trans-unit id="50d14e019ef14b4180e247e0b3a45386a8a78bf6"> |
2161 | <source>Original publication date</source> | 2211 | <source>Original publication date</source> |
2162 | <target>Původní datum publikace</target> | 2212 | <target>Původní datum publikace</target> |
2163 | 2213 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">296</context></context-group> | |
2164 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">296</context></context-group></trans-unit> | 2214 | </trans-unit> |
2165 | <trans-unit id="109ff29714fe8f2a0bfb232f04b908062fac22b0" datatype="html"> | 2215 | <trans-unit id="109ff29714fe8f2a0bfb232f04b908062fac22b0" datatype="html"> |
2166 | <source> | 2216 | <source>This is the date when the content was originally published (e.g. the release date for a film)</source> |
2167 | This is the date when the content was originally published (e.g. the release date for a film) | ||
2168 | </source> | ||
2169 | <target state="new"> | 2217 | <target state="new"> |
2170 | This is the date when the content was originally published (e.g. the release date for a film) | 2218 | This is the date when the content was originally published (e.g. the release date for a film) |
2171 | </target> | 2219 | </target> |
2172 | 2220 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">300</context></context-group> | |
2173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">300</context></context-group></trans-unit><trans-unit id="48c3bde722dc317f76aa607445f11128f7fc7276" datatype="html"> | 2221 | </trans-unit> |
2174 | <source>Plugin settings</source><target state="new">Plugin settings</target> | 2222 | <trans-unit id="48c3bde722dc317f76aa607445f11128f7fc7276" datatype="html"> |
2175 | 2223 | <source>Plugin settings</source> | |
2176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">330</context></context-group></trans-unit> | 2224 | <target state="new">Plugin settings</target> |
2225 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">330</context></context-group> | ||
2226 | </trans-unit> | ||
2177 | <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a"> | 2227 | <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a"> |
2178 | <source>Enable video comments</source> | 2228 | <source>Enable video comments</source> |
2179 | <target>Povolit komentáře</target> | 2229 | <target>Povolit komentáře</target> |
2180 | 2230 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">317</context></context-group> | |
2181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">317</context></context-group></trans-unit> | 2231 | </trans-unit> |
2182 | <trans-unit id="0b365218ce1ae736f9066fd3d47278cc8f3ed1d0"> | 2232 | <trans-unit id="0b365218ce1ae736f9066fd3d47278cc8f3ed1d0"> |
2183 | <source>Enable download</source> | 2233 | <source>Enable download</source> |
2184 | <target>Download povolen</target> | 2234 | <target>Download povolen</target> |
2185 | 2235 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">322</context></context-group> | |
2186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">322</context></context-group></trans-unit> | 2236 | </trans-unit> |
2187 | <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1"> | 2237 | <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1"> |
2188 | <source>Advanced settings</source> | 2238 | <source>Advanced settings</source> |
2189 | <target>Rozšířená nastavení</target> | 2239 | <target>Rozšířená nastavení</target> |
2190 | 2240 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">260</context></context-group> | |
2191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">260</context></context-group></trans-unit> | 2241 | </trans-unit> |
2192 | <trans-unit id="801b98c6f02fe3b32f6afa3ee854c99ed83474e6"> | 2242 | <trans-unit id="801b98c6f02fe3b32f6afa3ee854c99ed83474e6"> |
2193 | <source>URL</source> | 2243 | <source>URL</source> |
2194 | <target>URL</target> | 2244 | <target>URL</target> |
2195 | 2245 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">16</context></context-group> | |
2196 | 2246 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">71</context></context-group> | |
2197 | 2247 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">6</context></context-group> | |
2198 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">71</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="92cd0a8da81d2ec6d454aa524c0ad967e1ca0818" datatype="html"> | 2248 | </trans-unit> |
2199 | <source> You can import any URL <x id="START_LINK"/>supported by youtube-dl<x id="CLOSE_LINK"/> or URL that points to a media file. 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. </source><target state="new"> You can import any URL <x id="START_LINK"/>supported by youtube-dl<x id="CLOSE_LINK"/> or URL that points to a media file. 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. </target> | 2249 | <trans-unit id="92cd0a8da81d2ec6d454aa524c0ad967e1ca0818" datatype="html"> |
2200 | 2250 | <source>You can import any URL <x id="START_LINK"/>supported by youtube-dl<x id="CLOSE_LINK"/> or URL that points to a media file. 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. </source> | |
2201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2251 | <target state="new"> You can import any URL <x id="START_LINK"/>supported by youtube-dl<x id="CLOSE_LINK"/> or URL that points to a media file. 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. </target> |
2202 | 2252 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">11</context></context-group> | |
2253 | </trans-unit> | ||
2203 | <trans-unit id="385811ab5a5c3e96e0db46c9ce1fc3147d8cd4c7" datatype="html"> | 2254 | <trans-unit id="385811ab5a5c3e96e0db46c9ce1fc3147d8cd4c7" datatype="html"> |
2204 | <source>Sorry, but something went wrong</source> | 2255 | <source>Sorry, but something went wrong</source> |
2205 | <target state="new">Sorry, but something went wrong</target> | 2256 | <target state="new">Sorry, but something went wrong</target> |
2206 | 2257 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">51</context></context-group> | |
2207 | 2258 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">44</context></context-group> | |
2208 | 2259 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">26</context></context-group> | |
2209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">51</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit> | 2260 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">74</context></context-group> |
2261 | </trans-unit> | ||
2210 | <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2" datatype="html"> | 2262 | <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2" datatype="html"> |
2211 | <source> Congratulations, the video behind <x id="INTERPOLATION"/> will be imported! You can already add information about this video. | 2263 | <source>Congratulations, the video behind <x id="INTERPOLATION"/> will be imported! You can already add information about this video. </source> |
2212 | </source> | ||
2213 | <target state="new"> | 2264 | <target state="new"> |
2214 | Congratulations, the video behind | 2265 | Congratulations, the video behind |
2215 | <x id="INTERPOLATION" equiv-text="{{ targetUrl }}"/> will be imported! You can already add information about this video. | 2266 | <x id="INTERPOLATION" equiv-text="{{ targetUrl }}"/> will be imported! You can already add information about this video. |
2216 | 2267 | ||
2217 | </target> | 2268 | </target> |
2218 | 2269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">48</context></context-group> | |
2219 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> | 2270 | </trans-unit> |
2220 | <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb"> | 2271 | <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb"> |
2221 | <source>Update</source> | 2272 | <source>Update</source> |
2222 | <target>Aktualizovat</target> | 2273 | <target>Aktualizovat</target> |
2223 | 2274 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">3</context></context-group> | |
2224 | 2275 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">18</context></context-group> | |
2225 | 2276 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">68</context></context-group> | |
2226 | 2277 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">61</context></context-group> | |
2227 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">68</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">61</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 2278 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">45</context></context-group> |
2279 | </trans-unit> | ||
2228 | <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> | 2280 | <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> |
2229 | <source>Select the file to upload</source> | 2281 | <source>Select the file to upload</source> |
2230 | <target>Zvolte soubor k nahrání</target> | 2282 | <target>Zvolte soubor k nahrání</target> |
2231 | 2283 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">6</context></context-group> | |
2232 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 2284 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">8</context></context-group> |
2285 | </trans-unit> | ||
2233 | <trans-unit id="9172233176401579786" datatype="html"> | 2286 | <trans-unit id="9172233176401579786" datatype="html"> |
2234 | <source>Scheduled</source> | 2287 | <source>Scheduled</source> |
2235 | <target state="new">Scheduled</target> | 2288 | <target state="new">Scheduled</target> |
2236 | 2289 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">197</context></context-group> | |
2237 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">197</context></context-group></trans-unit> | 2290 | </trans-unit> |
2238 | <trans-unit id="1435317307066082710" datatype="html"> | 2291 | <trans-unit id="1435317307066082710" datatype="html"> |
2239 | <source>Hide the video until a specific date</source> | 2292 | <source>Hide the video until a specific date</source> |
2240 | <target state="new">Hide the video until a specific date</target> | 2293 | <target state="new">Hide the video until a specific date</target> |
2241 | 2294 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">198</context></context-group> | |
2242 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">198</context></context-group></trans-unit> | 2295 | </trans-unit> |
2243 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 2296 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
2244 | <source>Video background image</source> | 2297 | <source>Video background image</source> |
2245 | <target state="new">Video background image</target> | 2298 | <target state="new">Video background image</target> |
2246 | 2299 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">29</context></context-group> | |
2247 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 2300 | </trans-unit> |
2248 | <trans-unit id="1860b3f71e0b82e9c10e1eaf0ff073216ed896cc" datatype="html"> | 2301 | <trans-unit id="1860b3f71e0b82e9c10e1eaf0ff073216ed896cc" datatype="html"> |
2249 | <source> Image that will be merged with your audio file. <x id="LINE_BREAK"/> The chosen image will be definitive and cannot be modified. </source> | 2302 | <source>Image that will be merged with your audio file. <x id="LINE_BREAK"/> The chosen image will be definitive and cannot be modified. </source> |
2250 | <target state="new"> | 2303 | <target state="new"> |
2251 | Image that will be merged with your audio file. | 2304 | Image that will be merged with your audio file. |
2252 | 2305 | ||
2253 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 2306 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
2254 | The chosen image will be definitive and cannot be modified. | 2307 | The chosen image will be definitive and cannot be modified. |
2255 | 2308 | ||
2256 | </target> | 2309 | </target> |
2257 | 2310 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">32</context></context-group> | |
2258 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="5d8068c24887a511fc8b04308de94829c9b13cce" datatype="html"> | 2311 | </trans-unit> |
2259 | <source>Total video uploaded</source><target state="new">Total video uploaded</target> | 2312 | <trans-unit id="5d8068c24887a511fc8b04308de94829c9b13cce" datatype="html"> |
2260 | 2313 | <source>Total video uploaded</source> | |
2261 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2314 | <target state="new">Total video uploaded</target> |
2315 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">52</context></context-group> | ||
2316 | </trans-unit> | ||
2262 | <trans-unit id="dfd046dad933ba0a50926b9ab3c1b579c802312e" datatype="html"> | 2317 | <trans-unit id="dfd046dad933ba0a50926b9ab3c1b579c802312e" datatype="html"> |
2263 | <source>Processing…</source> | 2318 | <source>Processing…</source> |
2264 | <target state="new">Processing…</target> | 2319 | <target state="new">Processing…</target> |
2265 | 2320 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">54</context></context-group> | |
2266 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit><trans-unit id="38e0956efb7c78e758d638c8f1e5c99859b82836" datatype="html"> | 2321 | </trans-unit> |
2267 | <source>Retry</source><target state="new">Retry</target> | 2322 | <trans-unit id="38e0956efb7c78e758d638c8f1e5c99859b82836" datatype="html"> |
2268 | 2323 | <source>Retry</source> | |
2324 | <target state="new">Retry</target> | ||
2269 | <note priority="1" from="description">Retry failed upload of a video</note> | 2325 | <note priority="1" from="description">Retry failed upload of a video</note> |
2270 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">68</context></context-group></trans-unit> | 2326 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">68</context></context-group> |
2327 | </trans-unit> | ||
2271 | <trans-unit id="a81bfce50be151484f8e59b34829ab07ef97982b" datatype="html"> | 2328 | <trans-unit id="a81bfce50be151484f8e59b34829ab07ef97982b" datatype="html"> |
2272 | <source>Total video quota</source> | 2329 | <source>Total video quota</source> |
2273 | <target state="new">Total video quota</target> | 2330 | <target state="new">Total video quota</target> |
2274 | 2331 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.html</context><context context-type="linenumber">3</context></context-group> | |
2275 | 2332 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">141</context></context-group> | |
2276 | 2333 | </trans-unit> | |
2277 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">141</context></context-group></trans-unit> | ||
2278 | <trans-unit id="6357683911e256c566259880de43ea9403de00d3" datatype="html"> | 2334 | <trans-unit id="6357683911e256c566259880de43ea9403de00d3" datatype="html"> |
2279 | <source>Congratulations! Your video is now available in your private library.</source> | 2335 | <source>Congratulations! Your video is now available in your private library.</source> |
2280 | <target state="new"> | 2336 | <target state="new"> |
2281 | Congratulations! Your video is now available in your private library. | 2337 | Congratulations! Your video is now available in your private library. |
2282 | </target> | 2338 | </target> |
2283 | 2339 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">79</context></context-group> | |
2284 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2340 | </trans-unit> |
2285 | <trans-unit id="f7ac2376749c7985f94f0fc89ba75ea624de1215"> | 2341 | <trans-unit id="f7ac2376749c7985f94f0fc89ba75ea624de1215"> |
2286 | <source>Publish will be available when upload is finished</source> | 2342 | <source>Publish will be available when upload is finished</source> |
2287 | <target>Publikovat lze jakmile bude dokončeno nahrávání</target> | 2343 | <target>Publikovat lze jakmile bude dokončeno nahrávání</target> |
2288 | 2344 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">92</context></context-group> | |
2289 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> | 2345 | </trans-unit> |
2290 | <trans-unit id="223aae0477f79f0bc4436c1c57619415f04cbbb3"> | 2346 | <trans-unit id="223aae0477f79f0bc4436c1c57619415f04cbbb3"> |
2291 | <source>Publish</source> | 2347 | <source>Publish</source> |
2292 | <target>Publikovat</target> | 2348 | <target>Publikovat</target> |
2293 | 2349 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/header.component.html</context><context context-type="linenumber">5</context></context-group> | |
2294 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/header.component.html</context><context context-type="linenumber">5</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">94</context></context-group></trans-unit> | 2350 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">94</context></context-group> |
2351 | </trans-unit> | ||
2295 | <trans-unit id="6206e8d42fea5d7147d3e68d8e061583886603ae" datatype="html"> | 2352 | <trans-unit id="6206e8d42fea5d7147d3e68d8e061583886603ae" datatype="html"> |
2296 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2353 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2297 | <target state="new">Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</target> | 2354 | <target state="new">Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</target> |
2298 | 2355 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">3</context></context-group> | |
2299 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 2356 | </trans-unit> |
2300 | <trans-unit id="d8bd78a04cdb225ea9a4c95dbdc4db26229981e2" datatype="html"> | 2357 | <trans-unit id="d8bd78a04cdb225ea9a4c95dbdc4db26229981e2" datatype="html"> |
2301 | <source>Read instance rules for help</source> | 2358 | <source>Read instance rules for help</source> |
2302 | <target state="new">Read instance rules for help</target> | 2359 | <target state="new">Read instance rules for help</target> |
2303 | 2360 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">4</context></context-group> | |
2304 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 2361 | </trans-unit> |
2305 | <trans-unit id="2fcbf437e001f47974d45bd03a19e0d9245fdb3b" datatype="html"> | 2362 | <trans-unit id="2fcbf437e001f47974d45bd03a19e0d9245fdb3b" datatype="html"> |
2306 | <source>Select the torrent to import</source> | 2363 | <source>Select the torrent to import</source> |
2307 | <target state="new">Select the torrent to import</target> | 2364 | <target state="new">Select the torrent to import</target> |
2308 | 2365 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">6</context></context-group> | |
2309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 2366 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">8</context></context-group> |
2367 | </trans-unit> | ||
2310 | <trans-unit id="63f5d0ec23e3cf4abf6d5221107633c90d8d4a15" datatype="html"> | 2368 | <trans-unit id="63f5d0ec23e3cf4abf6d5221107633c90d8d4a15" datatype="html"> |
2311 | <source>OR</source> | 2369 | <source>OR</source> |
2312 | <target state="new">OR</target> | 2370 | <target state="new">OR</target> |
2313 | 2371 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">13</context></context-group> | |
2314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 2372 | </trans-unit> |
2315 | <trans-unit id="0d6558176587662e9bb3b79cca57d42591cf82f9" datatype="html"> | 2373 | <trans-unit id="0d6558176587662e9bb3b79cca57d42591cf82f9" datatype="html"> |
2316 | <source>Paste magnet URI</source> | 2374 | <source>Paste magnet URI</source> |
2317 | <target state="new">Paste magnet URI</target> | 2375 | <target state="new">Paste magnet URI</target> |
2318 | 2376 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">16</context></context-group> | |
2319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 2377 | </trans-unit> |
2320 | |||
2321 | <trans-unit id="7cb3731472edd9edf6a6d036498c2c8388157266" datatype="html"> | 2378 | <trans-unit id="7cb3731472edd9edf6a6d036498c2c8388157266" datatype="html"> |
2322 | <source>Congratulations, the video will be imported with BitTorrent! You can already add information about this video.</source> | 2379 | <source>Congratulations, the video will be imported with BitTorrent! You can already add information about this video.</source> |
2323 | <target state="new"> | 2380 | <target state="new"> |
2324 | Congratulations, the video will be imported with BitTorrent! You can already add information about this video. | 2381 | Congratulations, the video will be imported with BitTorrent! You can already add information about this video. |
2325 | </target> | 2382 | </target> |
2326 | 2383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">56</context></context-group> | |
2327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit><trans-unit id="7860848084471862305" datatype="html"> | 2384 | </trans-unit> |
2328 | <source>Cannot create live because this instance have too many created lives</source><target state="new">Cannot create live because this instance have too many created lives</target> | 2385 | <trans-unit id="7860848084471862305" datatype="html"> |
2329 | 2386 | <source>Cannot create live because this instance have too many created lives</source> | |
2330 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">91</context></context-group></trans-unit><trans-unit id="1278564497286613571" datatype="html"> | 2387 | <target state="new">Cannot create live because this instance have too many created lives</target> |
2331 | <source>Cannot create live because you created too many lives</source><target state="new">Cannot create live because you created too many lives</target> | 2388 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">91</context></context-group> |
2332 | 2389 | </trans-unit> | |
2333 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">93</context></context-group></trans-unit><trans-unit id="2621043320678012413" datatype="html"> | 2390 | <trans-unit id="1278564497286613571" datatype="html"> |
2334 | <source>Live published.</source><target state="new">Live published.</target> | 2391 | <source>Cannot create live because you created too many lives</source> |
2335 | 2392 | <target state="new">Cannot create live because you created too many lives</target> | |
2336 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">123</context></context-group></trans-unit><trans-unit id="40e85da538414cc425f42d2b09189ce344865aa1" datatype="html"> | 2393 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">93</context></context-group> |
2337 | <source>Go Live</source><target state="new">Go Live</target> | 2394 | </trans-unit> |
2338 | 2395 | <trans-unit id="2621043320678012413" datatype="html"> | |
2339 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="975c4cdb9e07ef4c43e2c7aa3f787feabc9a47d2" datatype="html"> | 2396 | <source>Live published.</source> |
2340 | <source> Max live duration is <x id="INTERPOLATION"/>. If your live reaches this limit, it will be automatically terminated. | 2397 | <target state="new">Live published.</target> |
2341 | </source><target state="new"> Max live duration is <x id="INTERPOLATION"/>. If your live reaches this limit, it will be automatically terminated. | 2398 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">123</context></context-group> |
2399 | </trans-unit> | ||
2400 | <trans-unit id="40e85da538414cc425f42d2b09189ce344865aa1" datatype="html"> | ||
2401 | <source>Go Live</source> | ||
2402 | <target state="new">Go Live</target> | ||
2403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">20</context></context-group> | ||
2404 | </trans-unit> | ||
2405 | <trans-unit id="975c4cdb9e07ef4c43e2c7aa3f787feabc9a47d2" datatype="html"> | ||
2406 | <source>Max live duration is <x id="INTERPOLATION"/>. If your live reaches this limit, it will be automatically terminated. </source> | ||
2407 | <target state="new"> Max live duration is <x id="INTERPOLATION"/>. If your live reaches this limit, it will be automatically terminated. | ||
2342 | </target> | 2408 | </target> |
2343 | 2409 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">30</context></context-group> | |
2344 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 2410 | </trans-unit> |
2345 | <trans-unit id="ebe5234338205e30a59cf703e2a2b6ef49fb75f8" datatype="html"> | 2411 | <trans-unit id="ebe5234338205e30a59cf703e2a2b6ef49fb75f8" datatype="html"> |
2346 | <source> We recommend you to not use the <x id="START_TAG_STRONG"/>root<x id="CLOSE_TAG_STRONG"/> user to publish your videos, since it's the super-admin account of your instance. <x id="LINE_BREAK"/> Instead, <x id="START_LINK"/>create a dedicated account<x id="CLOSE_LINK"/> to upload your videos. </source> | 2412 | <source>We recommend you to not use the <x id="START_TAG_STRONG"/>root<x id="CLOSE_TAG_STRONG"/> user to publish your videos, since it's the super-admin account of your instance. <x id="LINE_BREAK"/> Instead, <x id="START_LINK"/>create a dedicated account<x id="CLOSE_LINK"/> to upload your videos. </source> |
2347 | <target state="new"> | 2413 | <target state="new"> |
2348 | We recommend you to not use the | 2414 | We recommend you to not use the |
2349 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>root | 2415 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>root |
2350 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> user to publish your videos, since it's the super-admin account of your instance. | 2416 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> user to publish your videos, since it's the super-admin account of your instance. |
2351 | 2417 | ||
2352 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 2418 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
2353 | Instead, | 2419 | Instead, |
2354 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>create a dedicated account | 2420 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>create a dedicated account |
2355 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to upload your videos. | 2421 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to upload your videos. |
2356 | 2422 | ||
2357 | </target> | 2423 | </target> |
2358 | 2424 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">11</context></context-group> | |
2359 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2425 | </trans-unit> |
2360 | <trans-unit id="0b60d939cf0f1af9fe513f31164d198abf671860" datatype="html"> | 2426 | <trans-unit id="0b60d939cf0f1af9fe513f31164d198abf671860" datatype="html"> |
2361 | <source>Import <x id="INTERPOLATION"/></source> | 2427 | <source>Import <x id="INTERPOLATION"/></source> |
2362 | <target state="new">Import | 2428 | <target state="translated">Importovat <x id="INTERPOLATION"/></target> |
2363 | <x id="INTERPOLATION" equiv-text="{{ videoName }}"/> | 2429 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">19</context></context-group> |
2364 | </target> | 2430 | </trans-unit> |
2365 | |||
2366 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | ||
2367 | <trans-unit id="e9cfe8bd050660077212af5c02f5be24821f28d5" datatype="html"> | 2431 | <trans-unit id="e9cfe8bd050660077212af5c02f5be24821f28d5" datatype="html"> |
2368 | <source>Upload <x id="INTERPOLATION"/></source> | 2432 | <source>Upload <x id="INTERPOLATION"/></source> |
2369 | <target state="new">Upload | 2433 | <target state="new">Upload |
2370 | <x id="INTERPOLATION" equiv-text="{{ videoName }}"/> | 2434 | <x id="INTERPOLATION" equiv-text="{{ videoName }}"/> |
2371 | </target> | 2435 | </target> |
2372 | 2436 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">20</context></context-group> | |
2373 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 2437 | </trans-unit> |
2374 | <trans-unit id="4faf57baebf0fb754a91af0c39521a30cbb1def3"> | 2438 | <trans-unit id="4faf57baebf0fb754a91af0c39521a30cbb1def3"> |
2375 | <source>Upload a file</source> | 2439 | <source>Upload a file</source> |
2376 | <target>Nahrát soubor</target> | 2440 | <target>Nahrát soubor</target> |
2377 | 2441 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">26</context></context-group> | |
2378 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 2442 | </trans-unit> |
2379 | <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470" datatype="html"> | 2443 | <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470" datatype="html"> |
2380 | <source>Import with URL</source> | 2444 | <source>Import with URL</source> |
2381 | <target state="new">Import with URL</target> | 2445 | <target state="new">Import with URL</target> |
2382 | 2446 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">36</context></context-group> | |
2383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2447 | </trans-unit> |
2384 | <trans-unit id="752c401d7dcd708944eef60e411187f71d882340" datatype="html"> | 2448 | <trans-unit id="752c401d7dcd708944eef60e411187f71d882340" datatype="html"> |
2385 | <source>Import with torrent</source> | 2449 | <source>Import with torrent</source> |
2386 | <target state="new">Import with torrent</target> | 2450 | <target state="new">Import with torrent</target> |
2387 | 2451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">46</context></context-group> | |
2388 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit><trans-unit id="d90cc5777a7e16ef76f325c89fe0f9270b9fa827" datatype="html"> | 2452 | </trans-unit> |
2389 | <source>Go live</source><target state="new">Go live</target> | 2453 | <trans-unit id="d90cc5777a7e16ef76f325c89fe0f9270b9fa827" datatype="html"> |
2390 | 2454 | <source>Go live</source> | |
2391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 2455 | <target state="new">Go live</target> |
2456 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">56</context></context-group> | ||
2457 | </trans-unit> | ||
2392 | <trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1" datatype="html"> | 2458 | <trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1" datatype="html"> |
2393 | <source> | 2459 | <source>Other videos</source> |
2394 | Other videos | ||
2395 | </source> | ||
2396 | <target state="new"> | 2460 | <target state="new"> |
2397 | Other videos | 2461 | Other videos |
2398 | </target> | 2462 | </target> |
2399 | 2463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/recommendations/recommended-videos.component.html</context><context context-type="linenumber">5</context></context-group> | |
2400 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/recommendations/recommended-videos.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 2464 | </trans-unit> |
2401 | <trans-unit id="70155053814b6999f8abce4f89bab85afc76e538" datatype="html"> | 2465 | <trans-unit id="70155053814b6999f8abce4f89bab85afc76e538" datatype="html"> |
2402 | <source>AUTOPLAY</source> | 2466 | <source>AUTOPLAY</source> |
2403 | <target state="new">AUTOPLAY</target> | 2467 | <target state="new">AUTOPLAY</target> |
2404 | 2468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/recommendations/recommended-videos.component.html</context><context context-type="linenumber">10</context></context-group> | |
2405 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/recommendations/recommended-videos.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit><trans-unit id="4619111912751495491" datatype="html"> | 2469 | </trans-unit> |
2406 | <source>Report this comment</source><target state="new">Report this comment</target> | 2470 | <trans-unit id="4619111912751495491" datatype="html"> |
2407 | 2471 | <source>Report this comment</source> | |
2408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 2472 | <target state="new">Report this comment</target> |
2473 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">173</context></context-group> | ||
2474 | </trans-unit> | ||
2409 | <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9"> | 2475 | <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9"> |
2410 | <source>Share</source> | 2476 | <source>Share</source> |
2411 | <target>Sdílet</target> | 2477 | <target>Sdílet</target> |
2412 | 2478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">12</context></context-group> | |
2413 | 2479 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">3</context></context-group> | |
2414 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 2480 | </trans-unit> |
2415 | <trans-unit id="71420314c00d8b709ea1aad8f608498f8db92258" datatype="html"> | 2481 | <trans-unit id="71420314c00d8b709ea1aad8f608498f8db92258" datatype="html"> |
2416 | <source>Share the playlist</source> | 2482 | <source>Share the playlist</source> |
2417 | <target state="new">Share the playlist</target> | 2483 | <target state="new">Share the playlist</target> |
2418 | 2484 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">11</context></context-group> | |
2419 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2485 | </trans-unit> |
2420 | <trans-unit id="dfc8701a2a6898d6784db0ebf9d3191552d81d89" datatype="html"> | 2486 | <trans-unit id="dfc8701a2a6898d6784db0ebf9d3191552d81d89" datatype="html"> |
2421 | <source>Share the playlist at this video position</source> | 2487 | <source>Share the playlist at this video position</source> |
2422 | <target state="new">Share the playlist at this video position</target> | 2488 | <target state="new">Share the playlist at this video position</target> |
2423 | 2489 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">58</context></context-group> | |
2424 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 2490 | </trans-unit> |
2425 | <trans-unit id="51f7d84d38a304f7f056d2dcaf6d733c3ade35f9" datatype="html"> | 2491 | <trans-unit id="51f7d84d38a304f7f056d2dcaf6d733c3ade35f9" datatype="html"> |
2426 | <source>Share the video</source> | 2492 | <source>Share the video</source> |
2427 | <target state="new">Share the video</target> | 2493 | <target state="new">Share the video</target> |
2428 | 2494 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">66</context></context-group> | |
2429 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 2495 | </trans-unit> |
2430 | <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f" datatype="html"> | 2496 | <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f" datatype="html"> |
2431 | <source>QR-Code</source> | 2497 | <source>QR-Code</source> |
2432 | <target state="new">QR-Code</target> | 2498 | <target state="new">QR-Code</target> |
2433 | 2499 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">27</context></context-group> | |
2434 | 2500 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">81</context></context-group> | |
2435 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 2501 | </trans-unit> |
2436 | <trans-unit id="08c1bbb22df74b12c362fd114d0aa5a230ee4656" datatype="html"> | 2502 | <trans-unit id="08c1bbb22df74b12c362fd114d0aa5a230ee4656" datatype="html"> |
2437 | <source> | 2503 | <source>The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites).</source> |
2438 | The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites). | ||
2439 | </source> | ||
2440 | <target state="new"> | 2504 | <target state="new"> |
2441 | The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites). | 2505 | The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites). |
2442 | </target> | 2506 | </target> |
2443 | 2507 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">44</context></context-group> | |
2444 | 2508 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">98</context></context-group> | |
2445 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">98</context></context-group></trans-unit> | 2509 | </trans-unit> |
2446 | <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c"> | 2510 | <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c"> |
2447 | <source>Embed</source> | 2511 | <source>Embed</source> |
2448 | <target>Vložit do stránky</target> | 2512 | <target>Vložit do stránky</target> |
2449 | 2513 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">37</context></context-group> | |
2450 | 2514 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">91</context></context-group> | |
2451 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 2515 | </trans-unit> |
2452 | <trans-unit id="9adb13e2ba5160c8b0b100dc3f4cbe6051b5af9b" datatype="html"> | 2516 | <trans-unit id="9adb13e2ba5160c8b0b100dc3f4cbe6051b5af9b" datatype="html"> |
2453 | <source>Auto select subtitle</source> | 2517 | <source>Auto select subtitle</source> |
2454 | <target state="new">Auto select subtitle</target> | 2518 | <target state="new">Auto select subtitle</target> |
2455 | 2519 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">128</context></context-group> | |
2456 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">128</context></context-group></trans-unit> | 2520 | </trans-unit> |
2457 | <trans-unit id="f0e9c70583e8264cda79a8151de51cbb1ecb02ef" datatype="html"> | 2521 | <trans-unit id="f0e9c70583e8264cda79a8151de51cbb1ecb02ef" datatype="html"> |
2458 | <source> | 2522 | <source>More customization</source> |
2459 | More customization | ||
2460 | </source> | ||
2461 | <target state="new"> | 2523 | <target state="new"> |
2462 | More customization | 2524 | More customization |
2463 | </target> | 2525 | </target> |
2464 | 2526 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">223</context></context-group> | |
2465 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">223</context></context-group></trans-unit> | 2527 | </trans-unit> |
2466 | <trans-unit id="cfad9c5d4357d7c4ac99cc2ce63c54c9738901d7" datatype="html"> | 2528 | <trans-unit id="cfad9c5d4357d7c4ac99cc2ce63c54c9738901d7" datatype="html"> |
2467 | <source> | 2529 | <source>Less customization</source> |
2468 | Less customization | ||
2469 | </source> | ||
2470 | <target state="new"> | 2530 | <target state="new"> |
2471 | Less customization | 2531 | Less customization |
2472 | </target> | 2532 | </target> |
2473 | 2533 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">231</context></context-group> | |
2474 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">231</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> | 2534 | </trans-unit> |
2475 | <source>Login</source><target state="new">Login</target> | 2535 | <trans-unit id="2454050363478003966" datatype="html"> |
2476 | 2536 | <source>Login</source> | |
2477 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login-routing.module.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 2537 | <target state="new">Login</target> |
2538 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login-routing.module.ts</context><context context-type="linenumber">14</context></context-group> | ||
2539 | </trans-unit> | ||
2478 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2540 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2479 | <source>Autoplay</source> | 2541 | <source>Autoplay</source> |
2480 | <target state="new">Autoplay</target> | 2542 | <target state="new">Autoplay</target> |
2481 | 2543 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">159</context></context-group> | |
2482 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">159</context></context-group></trans-unit> | 2544 | </trans-unit> |
2483 | <trans-unit id="71b6e75eb1d54bcd9a64b9af9b99121785a065d0" datatype="html"> | 2545 | <trans-unit id="71b6e75eb1d54bcd9a64b9af9b99121785a065d0" datatype="html"> |
2484 | <source>Support <x id="INTERPOLATION"/></source> | 2546 | <source>Support <x id="INTERPOLATION"/></source> |
2485 | <target state="new">Support | 2547 | <target state="translated">Podpořit <x id="INTERPOLATION"/></target> |
2486 | <x id="INTERPOLATION" equiv-text="{{ video.account.displayName }}"/> | 2548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/modal/video-support.component.html</context><context context-type="linenumber">3</context></context-group> |
2487 | </target> | 2549 | </trans-unit> |
2488 | |||
2489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/modal/video-support.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | ||
2490 | <trans-unit id="cb66498f1a530d9b29ee5bc6605628add658dd87" datatype="html"> | 2550 | <trans-unit id="cb66498f1a530d9b29ee5bc6605628add658dd87" datatype="html"> |
2491 | <source>Maybe later</source> | 2551 | <source>Maybe later</source> |
2492 | <target state="new">Maybe later</target> | 2552 | <target state="new">Maybe later</target> |
2493 | 2553 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/modal/video-support.component.html</context><context context-type="linenumber">11</context></context-group> | |
2494 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/modal/video-support.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2554 | </trans-unit> |
2495 | <trans-unit id="62a557fcfdbd25a31d1a0332294f94a466fee809"> | 2555 | <trans-unit id="62a557fcfdbd25a31d1a0332294f94a466fee809"> |
2496 | <source>Muted</source> | 2556 | <source>Muted</source> |
2497 | <target>Skryt</target> | 2557 | <target>Skryt</target> |
2498 | 2558 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">19</context></context-group> | |
2499 | 2559 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">166</context></context-group> | |
2500 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">19</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> | 2560 | </trans-unit> |
2501 | <trans-unit id="67732b09326ab7941ce983205a42d7819dd35668" datatype="html"> | 2561 | <trans-unit id="67732b09326ab7941ce983205a42d7819dd35668" datatype="html"> |
2502 | <source>Loop</source> | 2562 | <source>Loop</source> |
2503 | <target state="new">Loop</target> | 2563 | <target state="new">Loop</target> |
2504 | 2564 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">173</context></context-group> | |
2505 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">173</context></context-group></trans-unit><trans-unit id="84e4e97b8f2abab33abeecc89f47671b07fd09cf" datatype="html"> | 2565 | </trans-unit> |
2506 | <source>Use origin instance URL</source><target state="new">Use origin instance URL</target> | 2566 | <trans-unit id="84e4e97b8f2abab33abeecc89f47671b07fd09cf" datatype="html"> |
2507 | 2567 | <source>Use origin instance URL</source> | |
2508 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">180</context></context-group></trans-unit> | 2568 | <target state="new">Use origin instance URL</target> |
2569 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">180</context></context-group> | ||
2570 | </trans-unit> | ||
2509 | <trans-unit id="af3ab1a1035c222ccc88816baa236eb95cea7523" datatype="html"> | 2571 | <trans-unit id="af3ab1a1035c222ccc88816baa236eb95cea7523" datatype="html"> |
2510 | <source>Display video title</source> | 2572 | <source>Display video title</source> |
2511 | <target state="new">Display video title</target> | 2573 | <target state="new">Display video title</target> |
2512 | 2574 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">189</context></context-group> | |
2513 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">189</context></context-group></trans-unit> | 2575 | </trans-unit> |
2514 | <trans-unit id="cd0fb32d9b50b615bdce413ca955283df7ab0b74" datatype="html"> | 2576 | <trans-unit id="cd0fb32d9b50b615bdce413ca955283df7ab0b74" datatype="html"> |
2515 | <source>Display privacy warning</source> | 2577 | <source>Display privacy warning</source> |
2516 | <target state="new">Display privacy warning</target> | 2578 | <target state="new">Display privacy warning</target> |
2517 | 2579 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">196</context></context-group> | |
2518 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">196</context></context-group></trans-unit> | 2580 | </trans-unit> |
2519 | <trans-unit id="3e10c53d0372db827bf38571e56d166f1df963bf" datatype="html"> | 2581 | <trans-unit id="3e10c53d0372db827bf38571e56d166f1df963bf" datatype="html"> |
2520 | <source>Display player controls</source> | 2582 | <source>Display player controls</source> |
2521 | <target state="new">Display player controls</target> | 2583 | <target state="new">Display player controls</target> |
2522 | 2584 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">203</context></context-group> | |
2523 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">203</context></context-group></trans-unit> | 2585 | </trans-unit> |
2524 | <trans-unit id="d0701f8fd194fd5a29f6dc015d0a27c85128b65e" datatype="html"> | 2586 | <trans-unit id="d0701f8fd194fd5a29f6dc015d0a27c85128b65e" datatype="html"> |
2525 | <source>Display PeerTube button link</source> | 2587 | <source>Display PeerTube button link</source> |
2526 | <target state="new">Display PeerTube button link</target> | 2588 | <target state="new">Display PeerTube button link</target> |
2527 | 2589 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">210</context></context-group> | |
2528 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">210</context></context-group></trans-unit> | 2590 | </trans-unit> |
2529 | <trans-unit id="3c4c080864b313cfdff5fdea6aae5da276246d99" datatype="html"> | 2591 | <trans-unit id="3c4c080864b313cfdff5fdea6aae5da276246d99" datatype="html"> |
2530 | <source>Public</source> | 2592 | <source>Public</source> |
2531 | <target state="new">Public</target> | 2593 | <target state="new">Public</target> |
2532 | 2594 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.html</context><context context-type="linenumber">11</context></context-group> | |
2533 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2595 | </trans-unit> |
2534 | <trans-unit id="38e66e2d779d6d819cd7703ab73ab1bab75f8614" datatype="html"> | 2596 | <trans-unit id="38e66e2d779d6d819cd7703ab73ab1bab75f8614" datatype="html"> |
2535 | <source>The video is being imported, it will be available when the import is finished.</source> | 2597 | <source>The video is being imported, it will be available when the import is finished.</source> |
2536 | <target state="new"> | 2598 | <target state="new"> |
2537 | The video is being imported, it will be available when the import is finished. | 2599 | The video is being imported, it will be available when the import is finished. |
2538 | </target> | 2600 | </target> |
2539 | 2601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">21</context></context-group> | |
2540 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 2602 | </trans-unit> |
2541 | <trans-unit id="d2a8e8e4e5345201c07ba03a7fafe8b663230246" datatype="html"> | 2603 | <trans-unit id="d2a8e8e4e5345201c07ba03a7fafe8b663230246" datatype="html"> |
2542 | <source>The video is being transcoded, it may not work properly.</source> | 2604 | <source>The video is being transcoded, it may not work properly.</source> |
2543 | <target state="new"> | 2605 | <target state="new"> |
2544 | The video is being transcoded, it may not work properly. | 2606 | The video is being transcoded, it may not work properly. |
2545 | </target> | 2607 | </target> |
2546 | 2608 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">25</context></context-group> | |
2547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2609 | </trans-unit> |
2548 | <trans-unit id="2dd4add38e83d8ec58e37735e76090e9738c974a" datatype="html"> | 2610 | <trans-unit id="2dd4add38e83d8ec58e37735e76090e9738c974a" datatype="html"> |
2549 | <source> This video will be published on <x id="INTERPOLATION"/>. </source> | 2611 | <source>This video will be published on <x id="INTERPOLATION"/>. </source> |
2550 | <target state="new"> | 2612 | <target state="new"> |
2551 | This video will be published on | 2613 | This video will be published on |
2552 | <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. | 2614 | <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. |
2553 | 2615 | ||
2554 | </target> | 2616 | </target> |
2555 | 2617 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">28</context></context-group> | |
2556 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit><trans-unit id="130abb70adbfbda0d03e31ce2e94dc3871e30c2f" datatype="html"> | 2618 | </trans-unit> |
2557 | <source> This live has not started yet. </source><target state="new"> This live has not started yet. </target> | 2619 | <trans-unit id="130abb70adbfbda0d03e31ce2e94dc3871e30c2f" datatype="html"> |
2558 | 2620 | <source>This live has not started yet.</source> | |
2559 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit><trans-unit id="4ae62d06d4ba0a78f3c5f478235cdb8cacc5f3e9" datatype="html"> | 2621 | <target state="new"> This live has not started yet. </target> |
2560 | <source> This live has ended. </source><target state="new"> This live has ended. </target> | 2622 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">33</context></context-group> |
2561 | 2623 | </trans-unit> | |
2562 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> | 2624 | <trans-unit id="4ae62d06d4ba0a78f3c5f478235cdb8cacc5f3e9" datatype="html"> |
2625 | <source>This live has ended.</source> | ||
2626 | <target state="new"> This live has ended. </target> | ||
2627 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">37</context></context-group> | ||
2628 | </trans-unit> | ||
2563 | <trans-unit id="bbb57efb2edd572de832c8fff03bc85d7723abd3" datatype="html"> | 2629 | <trans-unit id="bbb57efb2edd572de832c8fff03bc85d7723abd3" datatype="html"> |
2564 | <source>This video is blocked.</source> | 2630 | <source>This video is blocked.</source> |
2565 | <target state="new">This video is blocked.</target> | 2631 | <target state="new">This video is blocked.</target> |
2566 | 2632 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">41</context></context-group> | |
2567 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit><trans-unit id="1ade7342907e567e3c91d505719fac63d95324e0" datatype="html"> | 2633 | </trans-unit> |
2568 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source><target state="new">Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> | 2634 | <trans-unit id="1ade7342907e567e3c91d505719fac63d95324e0" datatype="html"> |
2569 | 2635 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> | |
2570 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">68</context></context-group></trans-unit> | 2636 | <target state="new">Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> |
2571 | 2637 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">55</context></context-group> | |
2572 | 2638 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">68</context></context-group> | |
2639 | </trans-unit> | ||
2573 | <trans-unit id="74059c5dce671d464259e3ce37a5d408c3fd7720" datatype="html"> | 2640 | <trans-unit id="74059c5dce671d464259e3ce37a5d408c3fd7720" datatype="html"> |
2574 | <source>SUPPORT</source> | 2641 | <source>SUPPORT</source> |
2575 | <target state="new">SUPPORT</target> | 2642 | <target state="new">SUPPORT</target> |
2576 | 2643 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">104</context></context-group> | |
2577 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 2644 | </trans-unit> |
2578 | <trans-unit id="83ea0f7a6f84393af198d48193e01a96f3fcbc9a" datatype="html"> | 2645 | <trans-unit id="83ea0f7a6f84393af198d48193e01a96f3fcbc9a" datatype="html"> |
2579 | <source>SHARE</source> | 2646 | <source>SHARE</source> |
2580 | <target state="new">SHARE</target> | 2647 | <target state="new">SHARE</target> |
2581 | 2648 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">109</context></context-group> | |
2582 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">109</context></context-group></trans-unit> | 2649 | </trans-unit> |
2583 | <trans-unit id="cf272d006ff8c0b60e61b14e17fa6a39b30d614a" datatype="html"> | 2650 | <trans-unit id="cf272d006ff8c0b60e61b14e17fa6a39b30d614a" datatype="html"> |
2584 | <source>SAVE</source> | 2651 | <source>SAVE</source> |
2585 | <target state="new">SAVE</target> | 2652 | <target state="new">SAVE</target> |
2586 | 2653 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">120</context></context-group> | |
2587 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">120</context></context-group></trans-unit> | 2654 | </trans-unit> |
2588 | <trans-unit id="8270eaeb2582eef4b7cde314c370aaf5b45c43d2" datatype="html"> | 2655 | <trans-unit id="8270eaeb2582eef4b7cde314c370aaf5b45c43d2" datatype="html"> |
2589 | <source>DOWNLOAD</source> | 2656 | <source>DOWNLOAD</source> |
2590 | <target state="new">DOWNLOAD</target> | 2657 | <target state="new">DOWNLOAD</target> |
2591 | 2658 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">134</context></context-group> | |
2592 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">134</context></context-group></trans-unit> | 2659 | </trans-unit> |
2593 | <trans-unit id="677619204556459328"> | 2660 | <trans-unit id="677619204556459328"> |
2594 | <source>Like this video</source> | 2661 | <source>Like this video</source> |
2595 | <target>To se mi líbí</target> | 2662 | <target>To se mi líbí</target> |
2596 | 2663 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">132</context></context-group> | |
2597 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">132</context></context-group></trans-unit> | 2664 | </trans-unit> |
2598 | <trans-unit id="1979134407801821102"> | 2665 | <trans-unit id="1979134407801821102"> |
2599 | <source>Dislike this video</source> | 2666 | <source>Dislike this video</source> |
2600 | <target>To se mi nelíbí</target> | 2667 | <target>To se mi nelíbí</target> |
2601 | 2668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">133</context></context-group> | |
2602 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 2669 | </trans-unit> |
2603 | <trans-unit id="4001371302469308813" datatype="html"> | 2670 | <trans-unit id="4001371302469308813" datatype="html"> |
2604 | <source>Support options for this video</source> | 2671 | <source>Support options for this video</source> |
2605 | <target state="new">Support options for this video</target> | 2672 | <target state="new">Support options for this video</target> |
2606 | 2673 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">134</context></context-group> | |
2607 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> | 2674 | </trans-unit> |
2608 | <trans-unit id="0b7f242da10ece3f2995095c455b9a92ebcdd3b4" datatype="html"> | 2675 | <trans-unit id="0b7f242da10ece3f2995095c455b9a92ebcdd3b4" datatype="html"> |
2609 | <source>By <x id="INTERPOLATION"/></source> | 2676 | <source>By <x id="INTERPOLATION"/></source> |
2610 | <target state="new">By | 2677 | <target state="translated">Od <x id="INTERPOLATION"/></target> |
2611 | <x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> | 2678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">186</context></context-group> |
2612 | </target> | 2679 | </trans-unit> |
2613 | |||
2614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">186</context></context-group></trans-unit> | ||
2615 | <trans-unit id="d0336848b0c375a1c25ba369b3481ee383217a4f" datatype="html"> | 2680 | <trans-unit id="d0336848b0c375a1c25ba369b3481ee383217a4f" datatype="html"> |
2616 | <source>Subscribe</source> | 2681 | <source>Subscribe</source> |
2617 | <target state="new">Subscribe</target> | 2682 | <target state="new">Subscribe</target> |
2618 | 2683 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">9</context></context-group> | |
2619 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 2684 | </trans-unit> |
2620 | <trans-unit id="6e215e23505768151b501b7e11dd5b864e604fd9" datatype="html"> | 2685 | <trans-unit id="6e215e23505768151b501b7e11dd5b864e604fd9" datatype="html"> |
2621 | <source>Subscribe to all channels</source> | 2686 | <source>Subscribe to all channels</source> |
2622 | <target state="new">Subscribe to all channels</target> | 2687 | <target state="new">Subscribe to all channels</target> |
2623 | 2688 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">11</context></context-group> | |
2624 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2689 | </trans-unit> |
2625 | <trans-unit id="c33a843e309de9d67771aa5e666f61e92f4c6216" datatype="html"> | 2690 | <trans-unit id="c33a843e309de9d67771aa5e666f61e92f4c6216" datatype="html"> |
2626 | <source>channels subscribed</source> | 2691 | <source>channels subscribed</source> |
2627 | <target state="new">channels subscribed</target> | 2692 | <target state="new">channels subscribed</target> |
2628 | 2693 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">13</context></context-group> | |
2629 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 2694 | </trans-unit> |
2630 | <trans-unit id="e01bfa3629e2133dbf307975446bde047eb8bd1f" datatype="html"> | 2695 | <trans-unit id="e01bfa3629e2133dbf307975446bde047eb8bd1f" datatype="html"> |
2631 | <source>{VAR_SELECT, select, undefined {Unsubscribe} other {Unsubscribe from all channels} }</source> | 2696 | <source>{VAR_SELECT, select, undefined {Unsubscribe} other {Unsubscribe from all channels} }</source> |
2632 | <target state="new">{VAR_SELECT, select, undefined {Unsubscribe} other {Unsubscribe from all channels} }</target> | 2697 | <target state="new">{VAR_SELECT, select, undefined {Unsubscribe} other {Unsubscribe from all channels} }</target> |
2633 | 2698 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">34</context></context-group> | |
2634 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 2699 | </trans-unit> |
2635 | <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b"> | 2700 | <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b"> |
2636 | <source>Show more</source> | 2701 | <source>Show more</source> |
2637 | <target>Zobrazit více</target> | 2702 | <target>Zobrazit více</target> |
2638 | 2703 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">213</context></context-group> | |
2639 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">213</context></context-group></trans-unit> | 2704 | </trans-unit> |
2640 | <trans-unit id="5403a767248e304199592271bba3366d2ca3f903"> | 2705 | <trans-unit id="5403a767248e304199592271bba3366d2ca3f903"> |
2641 | <source>Show less</source> | 2706 | <source>Show less</source> |
2642 | <target>Zobrazit méně</target> | 2707 | <target>Zobrazit méně</target> |
2643 | 2708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">219</context></context-group> | |
2644 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">219</context></context-group></trans-unit> | 2709 | </trans-unit> |
2645 | <trans-unit id="57bfd54c230fc20caff1f0b321ad42be3bf859a6" datatype="html"> | 2710 | <trans-unit id="57bfd54c230fc20caff1f0b321ad42be3bf859a6" datatype="html"> |
2646 | <source>Origin instance</source> | 2711 | <source>Origin instance</source> |
2647 | <target state="new">Origin instance</target> | 2712 | <target state="new">Origin instance</target> |
2648 | 2713 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">231</context></context-group> | |
2649 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">231</context></context-group></trans-unit> | 2714 | </trans-unit> |
2650 | <trans-unit id="284b55e2ae9f6e5bc78c92a18ef26da02f380079" datatype="html"> | 2715 | <trans-unit id="284b55e2ae9f6e5bc78c92a18ef26da02f380079" datatype="html"> |
2651 | <source>Originally published</source> | 2716 | <source>Originally published</source> |
2652 | <target state="new">Originally published</target> | 2717 | <target state="new">Originally published</target> |
2653 | 2718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">236</context></context-group> | |
2654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">236</context></context-group></trans-unit> | 2719 | </trans-unit> |
2655 | <trans-unit id="4c0ba3cde3b3c58b855ffb4beaa5804a2fc3826b" datatype="html"> | 2720 | <trans-unit id="4c0ba3cde3b3c58b855ffb4beaa5804a2fc3826b" datatype="html"> |
2656 | <source>Friendly Reminder: </source> | 2721 | <source>Friendly Reminder:</source> |
2657 | <target state="new">Friendly Reminder: </target> | 2722 | <target state="new">Friendly Reminder: </target> |
2658 | 2723 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">299</context></context-group> | |
2659 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">299</context></context-group></trans-unit> | 2724 | </trans-unit> |
2660 | <trans-unit id="89707647cc7c304e499ae46a5a0c5b508c3c80a0" datatype="html"> | 2725 | <trans-unit id="89707647cc7c304e499ae46a5a0c5b508c3c80a0" datatype="html"> |
2661 | <source> | 2726 | <source>the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers.</source> |
2662 | the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. | ||
2663 | </source> | ||
2664 | <target state="new"> | 2727 | <target state="new"> |
2665 | the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. | 2728 | the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. |
2666 | </target> | 2729 | </target> |
2667 | 2730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">301</context></context-group> | |
2668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">301</context></context-group></trans-unit> | 2731 | </trans-unit> |
2669 | <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e"> | 2732 | <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e"> |
2670 | <source>More information</source> | 2733 | <source>More information</source> |
2671 | <target>Více informací</target> | 2734 | <target>Více informací</target> |
2672 | 2735 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">52</context></context-group> | |
2673 | 2736 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">50</context></context-group> | |
2674 | 2737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">73</context></context-group> | |
2675 | 2738 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">304</context></context-group> | |
2676 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">50</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">73</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">304</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">53</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> | 2739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">53</context></context-group> |
2740 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">53</context></context-group> | ||
2741 | </trans-unit> | ||
2677 | <trans-unit id="75d9bb7a2e6256268cd0653aac75a8b994d3cf1f" datatype="html"> | 2742 | <trans-unit id="75d9bb7a2e6256268cd0653aac75a8b994d3cf1f" datatype="html"> |
2678 | <source>The video was blocked due to automatic blocking of new videos</source> | 2743 | <source>The video was blocked due to automatic blocking of new videos</source> |
2679 | <target state="new">The video was blocked due to automatic blocking of new videos</target> | 2744 | <target state="new">The video was blocked due to automatic blocking of new videos</target> |
2680 | 2745 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">74</context></context-group> | |
2681 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit><trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9" datatype="html"> | 2746 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">74</context></context-group> |
2682 | <source>NSFW</source><target state="new">NSFW</target> | 2747 | </trans-unit> |
2683 | 2748 | <trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9" datatype="html"> | |
2684 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> | 2749 | <source>NSFW</source> |
2750 | <target state="new">NSFW</target> | ||
2751 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">84</context></context-group> | ||
2752 | </trans-unit> | ||
2685 | <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318"> | 2753 | <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318"> |
2686 | <source>Get more information</source> | 2754 | <source>Get more information</source> |
2687 | <target>Získat více informací</target> | 2755 | <target>Získat více informací</target> |
2688 | 2756 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">304</context></context-group> | |
2689 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">304</context></context-group></trans-unit> | 2757 | </trans-unit> |
2690 | <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f" datatype="html"> | 2758 | <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f" datatype="html"> |
2691 | <source> | 2759 | <source>OK</source> |
2692 | OK | ||
2693 | </source> | ||
2694 | <target state="new"> | 2760 | <target state="new"> |
2695 | OK | 2761 | OK |
2696 | </target> | 2762 | </target> |
2697 | 2763 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">308</context></context-group> | |
2698 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">308</context></context-group></trans-unit> | 2764 | </trans-unit> |
2699 | <trans-unit id="a8db53a47543132da1a68066f0a9cba0551a8933" datatype="html"> | 2765 | <trans-unit id="a8db53a47543132da1a68066f0a9cba0551a8933" datatype="html"> |
2700 | <source>1 Comment</source> | 2766 | <source>1 Comment</source> |
2701 | <target state="new">1 Comment</target> | 2767 | <target state="new">1 Comment</target> |
2702 | 2768 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">6</context></context-group> | |
2703 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2769 | </trans-unit> |
2704 | <trans-unit id="8164af7bbe7fb9a3d2064ddf2627a7a4d5446575" datatype="html"> | 2770 | <trans-unit id="8164af7bbe7fb9a3d2064ddf2627a7a4d5446575" datatype="html"> |
2705 | <source> | 2771 | <source><x id="INTERPOLATION" equiv-text="{{ componentPagination.totalItems }}"/> Comments </source> |
2706 | <x id="INTERPOLATION" equiv-text="{{ componentPagination.totalItems }}"/> Comments | ||
2707 | </source> | ||
2708 | <target state="new"> | 2772 | <target state="new"> |
2709 | <x id="INTERPOLATION" equiv-text="{{ componentPagination.totalItems }}"/> Comments | 2773 | <x id="INTERPOLATION" equiv-text="{{ componentPagination.totalItems }}"/> Comments |
2710 | </target> | 2774 | </target> |
2711 | 2775 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">7</context></context-group> | |
2712 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 2776 | </trans-unit> |
2713 | <trans-unit id="c5bb9f8936cb33db2ca351a1b87a984fdf11917c" datatype="html"> | 2777 | <trans-unit id="c5bb9f8936cb33db2ca351a1b87a984fdf11917c" datatype="html"> |
2714 | <source>Comments</source> | 2778 | <source>Comments</source> |
2715 | <target state="new">Comments</target> | 2779 | <target state="new">Comments</target> |
2716 | 2780 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">9</context></context-group> | |
2717 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 2781 | </trans-unit> |
2718 | <trans-unit id="a87cd0a1633f944e697fa2ee68362d8bc11c41ee" datatype="html"> | 2782 | <trans-unit id="a87cd0a1633f944e697fa2ee68362d8bc11c41ee" datatype="html"> |
2719 | <source> | 2783 | <source>SORT BY</source> |
2720 | SORT BY | ||
2721 | </source> | ||
2722 | <target state="new"> | 2784 | <target state="new"> |
2723 | SORT BY | 2785 | SORT BY |
2724 | </target> | 2786 | </target> |
2725 | 2787 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">16</context></context-group> | |
2726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 2788 | </trans-unit> |
2727 | <trans-unit id="6d355ab9a2c6af4f7ffcb44dd8ca0c5572f958ca" datatype="html"> | 2789 | <trans-unit id="6d355ab9a2c6af4f7ffcb44dd8ca0c5572f958ca" datatype="html"> |
2728 | <source>Most recent first (default)</source> | 2790 | <source>Most recent first (default)</source> |
2729 | <target state="new">Most recent first (default)</target> | 2791 | <target state="new">Most recent first (default)</target> |
2730 | 2792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">19</context></context-group> | |
2731 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 2793 | </trans-unit> |
2732 | <trans-unit id="df2d2cca87a54e75abb4196d10358579dd0321b4" datatype="html"> | 2794 | <trans-unit id="df2d2cca87a54e75abb4196d10358579dd0321b4" datatype="html"> |
2733 | <source>Most replies first</source> | 2795 | <source>Most replies first</source> |
2734 | <target state="new">Most replies first</target> | 2796 | <target state="new">Most replies first</target> |
2735 | 2797 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">20</context></context-group> | |
2736 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 2798 | </trans-unit> |
2737 | <trans-unit id="17810e68b0ba21e62e61eecfaf0a93b2c91033b4"> | 2799 | <trans-unit id="17810e68b0ba21e62e61eecfaf0a93b2c91033b4"> |
2738 | <source>No comments.</source> | 2800 | <source>No comments.</source> |
2739 | <target>Žádné komentáře</target> | 2801 | <target>Žádné komentáře</target> |
2740 | 2802 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group> | |
2741 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 2803 | </trans-unit> |
2742 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2804 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2743 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2805 | <source>View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2744 | <target state="new"> | 2806 | <target state="new"> |
2745 | View | 2807 | View |
2746 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies from | 2808 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies from |
2747 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> and others | 2809 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> and others |
2748 | 2810 | ||
2749 | </target> | 2811 | </target> |
2750 | 2812 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">83</context></context-group> | |
2751 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 2813 | </trans-unit> |
2752 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2814 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2753 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2815 | <source>View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2754 | <target state="new"> | 2816 | <target state="new"> |
2755 | View | 2817 | View |
2756 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies from | 2818 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies from |
2757 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2819 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2758 | </target> | 2820 | </target> |
2759 | 2821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">86</context></context-group> | |
2760 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 2822 | </trans-unit> |
2761 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2823 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2762 | <source>View <x id="INTERPOLATION"/> replies</source> | 2824 | <source>View <x id="INTERPOLATION"/> replies</source> |
2763 | <target state="new">View | 2825 | <target state="translated">Zobrazit <x id="INTERPOLATION"/> odpovědi</target> |
2764 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2826 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group> |
2765 | </target> | 2827 | </trans-unit> |
2766 | |||
2767 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> | ||
2768 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2828 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2769 | <source>Comments are disabled.</source> | 2829 | <source>Comments are disabled.</source> |
2770 | <target> | 2830 | <target> |
2771 | Komentáře nejsou povoleny. | 2831 | Komentáře nejsou povoleny. |
2772 | </target> | 2832 | </target> |
2773 | 2833 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group> | |
2774 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 2834 | </trans-unit> |
2775 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> | 2835 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> |
2776 | <source>Add comment...</source> | 2836 | <source>Add comment...</source> |
2777 | <target>Přidat komentář...</target> | 2837 | <target>Přidat komentář...</target> |
2778 | 2838 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group> | |
2779 | <context-group purpose="location"><context context-type="sourcefile">src/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"> | 2839 | </trans-unit> |
2780 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> | 2840 | <trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2781 | 2841 | <source>Markdown compatible</source> | |
2782 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | 2842 | <target state="new">Markdown compatible</target> |
2783 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> | 2843 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">13</context></context-group> |
2784 | 2844 | </trans-unit> | |
2785 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | 2845 | <trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> |
2786 | <source>Auto generated links</source><target state="new">Auto generated links</target> | 2846 | <source>Markdown compatible that supports:</source> |
2787 | 2847 | <target state="new">Markdown compatible that supports:</target> | |
2788 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | 2848 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">15</context></context-group> |
2789 | <source>Break lines</source><target state="new">Break lines</target> | 2849 | </trans-unit> |
2790 | 2850 | <trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | |
2791 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | 2851 | <source>Auto generated links</source> |
2792 | <source>Lists</source><target state="new">Lists</target> | 2852 | <target state="new">Auto generated links</target> |
2793 | 2853 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">18</context></context-group> | |
2794 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | 2854 | </trans-unit> |
2795 | <source>Emphasis</source><target state="new">Emphasis</target> | 2855 | <trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> |
2796 | 2856 | <source>Break lines</source> | |
2797 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | 2857 | <target state="new">Break lines</target> |
2798 | <source>bold</source><target state="new">bold</target> | 2858 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">19</context></context-group> |
2799 | 2859 | </trans-unit> | |
2800 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | 2860 | <trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> |
2801 | <source>italic</source><target state="new">italic</target> | 2861 | <source>Lists</source> |
2802 | 2862 | <target state="new">Lists</target> | |
2803 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | 2863 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">20</context></context-group> |
2804 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | 2864 | </trans-unit> |
2805 | 2865 | <trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | |
2806 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | 2866 | <source>Emphasis</source> |
2807 | <source>Emoji markup</source><target state="new">Emoji markup</target> | 2867 | <target state="new">Emphasis</target> |
2808 | 2868 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group> | |
2809 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | 2869 | </trans-unit> |
2810 | <source>See complete list</source><target state="new">See complete list</target> | 2870 | <trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> |
2811 | 2871 | <source>bold</source> | |
2812 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2872 | <target state="new">bold</target> |
2813 | 2873 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">23</context></context-group> | |
2874 | </trans-unit> | ||
2875 | <trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2876 | <source>italic</source> | ||
2877 | <target state="new">italic</target> | ||
2878 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">23</context></context-group> | ||
2879 | </trans-unit> | ||
2880 | <trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2881 | <source>Emoji shortcuts</source> | ||
2882 | <target state="new">Emoji shortcuts</target> | ||
2883 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">26</context></context-group> | ||
2884 | </trans-unit> | ||
2885 | <trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2886 | <source>Emoji markup</source> | ||
2887 | <target state="new">Emoji markup</target> | ||
2888 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">30</context></context-group> | ||
2889 | </trans-unit> | ||
2890 | <trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2891 | <source>See complete list</source> | ||
2892 | <target state="new">See complete list</target> | ||
2893 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">32</context></context-group> | ||
2894 | </trans-unit> | ||
2814 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2895 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2815 | <source>You are one step away from commenting</source> | 2896 | <source>You are one step away from commenting</source> |
2816 | <target state="new">You are one step away from commenting</target> | 2897 | <target state="new">You are one step away from commenting</target> |
2817 | 2898 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group> | |
2818 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit><trans-unit id="6670e588ad98a777c18f30096aeff7687d53c1c4" datatype="html"> | 2899 | </trans-unit> |
2819 | <source> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </source><target state="new"> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </target> | 2900 | <trans-unit id="6670e588ad98a777c18f30096aeff7687d53c1c4" datatype="html"> |
2901 | <source>You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example).</source> | ||
2902 | <target state="new"> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </target> | ||
2820 | <context-group purpose="location"> | 2903 | <context-group purpose="location"> |
2821 | <context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context> | 2904 | <context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2822 | <context context-type="linenumber">60,61</context> | 2905 | <context context-type="linenumber">60,61</context> |
2823 | </context-group> | 2906 | </context-group> |
2824 | </trans-unit> | 2907 | </trans-unit> |
2825 | |||
2826 | |||
2827 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2908 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2828 | <source>Login to comment</source> | 2909 | <source>Login to comment</source> |
2829 | <target state="new">Login to comment</target> | 2910 | <target state="translated">Přihlásit ke komentování</target> |
2830 | 2911 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">72</context></context-group> | |
2831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> | 2912 | </trans-unit> |
2832 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | 2913 | <trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2833 | 2914 | <source>Markdown Emoji List</source> | |
2834 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">80</context></context-group></trans-unit><trans-unit id="2662644497259948010" datatype="html"> | 2915 | <target state="new">Markdown Emoji List</target> |
2835 | <source>Comment</source><target state="new">Comment</target> | 2916 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">80</context></context-group> |
2836 | 2917 | </trans-unit> | |
2837 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit><trans-unit id="4502286564339177240" datatype="html"> | 2918 | <trans-unit id="2662644497259948010" datatype="html"> |
2838 | <source>Reply</source><target state="new">Reply</target> | 2919 | <source>Comment</source> |
2839 | 2920 | <target state="new">Comment</target> | |
2840 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> | 2921 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.ts</context><context context-type="linenumber">67</context></context-group> |
2922 | </trans-unit> | ||
2923 | <trans-unit id="4502286564339177240" datatype="html"> | ||
2924 | <source>Reply</source> | ||
2925 | <target state="new">Reply</target> | ||
2926 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.ts</context><context context-type="linenumber">69</context></context-group> | ||
2927 | </trans-unit> | ||
2841 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> | 2928 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> |
2842 | <source>Highlighted comment</source> | 2929 | <source>Highlighted comment</source> |
2843 | <target>Zvýrazněné komentáře</target> | 2930 | <target>Zvýrazněné komentáře</target> |
2844 | 2931 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">20</context></context-group> | |
2845 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 2932 | </trans-unit> |
2846 | <trans-unit id="cb23d4d98007aa4d7123837f4c17a671848377d6"> | 2933 | <trans-unit id="cb23d4d98007aa4d7123837f4c17a671848377d6"> |
2847 | <source>Reply</source> | 2934 | <source>Reply</source> |
2848 | <target>Odpovědět</target> | 2935 | <target>Odpovědět</target> |
2849 | 2936 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">46</context></context-group> | |
2850 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 2937 | </trans-unit> |
2851 | <trans-unit id="3dc4cf221502c170c7fcd4b2bffc9b3aa46b84bb" datatype="html"> | 2938 | <trans-unit id="3dc4cf221502c170c7fcd4b2bffc9b3aa46b84bb" datatype="html"> |
2852 | <source>This comment has been deleted</source> | 2939 | <source>This comment has been deleted</source> |
2853 | <target state="new">This comment has been deleted</target> | 2940 | <target state="new">This comment has been deleted</target> |
2854 | 2941 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">63</context></context-group> | |
2855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">63</context></context-group></trans-unit> | 2942 | </trans-unit> |
2856 | <trans-unit id="9031514421077169181" datatype="html"> | 2943 | <trans-unit id="9031514421077169181" datatype="html"> |
2857 | <source>Video redundancies</source> | 2944 | <source>Video redundancies</source> |
2858 | <target state="new">Video redundancies</target> | 2945 | <target state="new">Video redundancies</target> |
2859 | 2946 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">39</context></context-group> | |
2860 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 2947 | </trans-unit> |
2861 | <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396"> | 2948 | <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396"> |
2862 | <source>1 host (without "http://") per line</source> | 2949 | <source>1 host (without "http://") per line</source> |
2863 | <target>1 host (bez "http://") na každý řádek</target> | 2950 | <target>1 host (bez "http://") na každý řádek</target> |
2864 | 2951 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">11</context></context-group> | |
2865 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2952 | </trans-unit> |
2866 | <trans-unit id="b56702ff10875710f111634cc315cd3ef01b206f" datatype="html"> | 2953 | <trans-unit id="b56702ff10875710f111634cc315cd3ef01b206f" datatype="html"> |
2867 | <source> Your report will be sent to moderators of <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> and will be forwarded to the comment origin (<x id="INTERPOLATION_1"/>) too<x id="CLOSE_TAG_NG_CONTAINER"/>. </source> | 2954 | <source>Your report will be sent to moderators of <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> and will be forwarded to the comment origin (<x id="INTERPOLATION_1"/>) too<x id="CLOSE_TAG_NG_CONTAINER"/>. </source> |
2868 | <target state="new"> | 2955 | <target state="new"> |
2869 | Your report will be sent to moderators of | 2956 | Your report will be sent to moderators of |
2870 | <x id="INTERPOLATION" equiv-text="{{ currentHost }}"/> | 2957 | <x id="INTERPOLATION" equiv-text="{{ currentHost }}"/> |
2871 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> and will be forwarded to the comment origin ( | 2958 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> and will be forwarded to the comment origin ( |
2872 | <x id="INTERPOLATION_1" equiv-text="{{ originHost }}"/>) too | 2959 | <x id="INTERPOLATION_1" equiv-text="{{ originHost }}"/>) too |
2873 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/>. | 2960 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/>. |
2874 | 2961 | ||
2875 | </target> | 2962 | </target> |
2876 | 2963 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">36</context></context-group> | |
2877 | 2964 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">36</context></context-group> | |
2878 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit><trans-unit id="658727060940996385" datatype="html"> | 2965 | </trans-unit> |
2879 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source><target state="new">Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</target> | 2966 | <trans-unit id="658727060940996385" datatype="html"> |
2967 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source> | ||
2968 | <target state="new">Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</target> | ||
2880 | <context-group purpose="location"> | 2969 | <context-group purpose="location"> |
2881 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> | 2970 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> |
2882 | <context context-type="linenumber">41</context> | 2971 | <context context-type="linenumber">41</context> |
2883 | </context-group> | 2972 | </context-group> |
2884 | </trans-unit><trans-unit id="270726559962362501" datatype="html"> | 2973 | </trans-unit> |
2885 | <source>Renew token</source><target state="new">Renew token</target> | 2974 | <trans-unit id="270726559962362501" datatype="html"> |
2975 | <source>Renew token</source> | ||
2976 | <target state="new">Renew token</target> | ||
2886 | <context-group purpose="location"> | 2977 | <context-group purpose="location"> |
2887 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> | 2978 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> |
2888 | <context context-type="linenumber">42</context> | 2979 | <context context-type="linenumber">42</context> |
2889 | </context-group> | 2980 | </context-group> |
2890 | </trans-unit><trans-unit id="3029923402309610616" datatype="html"> | 2981 | </trans-unit> |
2891 | <source>Token renewed. Update your client configuration accordingly.</source><target state="new">Token renewed. Update your client configuration accordingly.</target> | 2982 | <trans-unit id="3029923402309610616" datatype="html"> |
2983 | <source>Token renewed. Update your client configuration accordingly.</source> | ||
2984 | <target state="new">Token renewed. Update your client configuration accordingly.</target> | ||
2892 | <context-group purpose="location"> | 2985 | <context-group purpose="location"> |
2893 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> | 2986 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> |
2894 | <context context-type="linenumber">49</context> | 2987 | <context context-type="linenumber">49</context> |
2895 | </context-group> | 2988 | </context-group> |
2896 | </trans-unit><trans-unit id="f1abafaeb40ce52355ddcc24686e3cd17b64e08a" datatype="html"> | 2989 | </trans-unit> |
2897 | <source>Applications</source><target state="new">Applications</target> | 2990 | <trans-unit id="f1abafaeb40ce52355ddcc24686e3cd17b64e08a" datatype="html"> |
2991 | <source>Applications</source> | ||
2992 | <target state="new">Applications</target> | ||
2898 | <context-group purpose="location"> | 2993 | <context-group purpose="location"> |
2899 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2994 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2900 | <context context-type="linenumber">3</context> | 2995 | <context context-type="linenumber">3</context> |
2901 | </context-group> | 2996 | </context-group> |
2902 | </trans-unit><trans-unit id="a9dff163e112fd17d43b049f58d1f6a0ee60aab0" datatype="html"> | 2997 | </trans-unit> |
2903 | <source>SUBSCRIPTION FEED</source><target state="new">SUBSCRIPTION FEED</target> | 2998 | <trans-unit id="a9dff163e112fd17d43b049f58d1f6a0ee60aab0" datatype="html"> |
2999 | <source>SUBSCRIPTION FEED</source> | ||
3000 | <target state="new">SUBSCRIPTION FEED</target> | ||
2904 | <context-group purpose="location"> | 3001 | <context-group purpose="location"> |
2905 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 3002 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2906 | <context context-type="linenumber">8</context> | 3003 | <context context-type="linenumber">8</context> |
2907 | </context-group> | 3004 | </context-group> |
2908 | </trans-unit><trans-unit id="065367408b21af81c55d4a12dad437ee1b726476" datatype="html"> | 3005 | </trans-unit> |
2909 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. </target> | 3006 | <trans-unit id="065367408b21af81c55d4a12dad437ee1b726476" datatype="html"> |
3007 | <source>Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to.</source> | ||
3008 | <target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. </target> | ||
2910 | <context-group purpose="location"> | 3009 | <context-group purpose="location"> |
2911 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 3010 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2912 | <context context-type="linenumber">10,12</context> | 3011 | <context context-type="linenumber">10,12</context> |
2913 | </context-group> | 3012 | </context-group> |
2914 | </trans-unit><trans-unit id="70b989779eb53e6ff14d810336677dbc3bde4202" datatype="html"> | 3013 | </trans-unit> |
2915 | <source>Feed URL</source><target state="new">Feed URL</target> | 3014 | <trans-unit id="70b989779eb53e6ff14d810336677dbc3bde4202" datatype="html"> |
3015 | <source>Feed URL</source> | ||
3016 | <target state="new">Feed URL</target> | ||
2916 | <context-group purpose="location"> | 3017 | <context-group purpose="location"> |
2917 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 3018 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2918 | <context context-type="linenumber">18</context> | 3019 | <context context-type="linenumber">18</context> |
2919 | </context-group> | 3020 | </context-group> |
2920 | </trans-unit><trans-unit id="87752e8ea0b8d9cc97d85d89a74b828c031242d2" datatype="html"> | 3021 | </trans-unit> |
2921 | <source>Feed Token</source><target state="new">Feed Token</target> | 3022 | <trans-unit id="87752e8ea0b8d9cc97d85d89a74b828c031242d2" datatype="html"> |
3023 | <source>Feed Token</source> | ||
3024 | <target state="new">Feed Token</target> | ||
2922 | <context-group purpose="location"> | 3025 | <context-group purpose="location"> |
2923 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 3026 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2924 | <context context-type="linenumber">23</context> | 3027 | <context context-type="linenumber">23</context> |
2925 | </context-group> | 3028 | </context-group> |
2926 | </trans-unit><trans-unit id="7b4abd453d7f667c0aa6bce607433714511bae6e" datatype="html"> | 3029 | </trans-unit> |
2927 | <source>⚠️ Never share your feed token with anyone.</source><target state="new">⚠️ Never share your feed token with anyone.</target> | 3030 | <trans-unit id="7b4abd453d7f667c0aa6bce607433714511bae6e" datatype="html"> |
3031 | <source>⚠️ Never share your feed token with anyone.</source> | ||
3032 | <target state="new">⚠️ Never share your feed token with anyone.</target> | ||
2928 | <context-group purpose="location"> | 3033 | <context-group purpose="location"> |
2929 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 3034 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2930 | <context context-type="linenumber">26</context> | 3035 | <context context-type="linenumber">26</context> |
2931 | </context-group> | 3036 | </context-group> |
2932 | </trans-unit><trans-unit id="7a2fe0ebf8d14b0c59eae0b7a48ce23425d45eac" datatype="html"> | 3037 | </trans-unit> |
2933 | <source>Renew token</source><target state="new">Renew token</target> | 3038 | <trans-unit id="7a2fe0ebf8d14b0c59eae0b7a48ce23425d45eac" datatype="html"> |
2934 | 3039 | <source>Renew token</source> | |
2935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 3040 | <target state="new">Renew token</target> |
2936 | 3041 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context><context context-type="linenumber">35</context></context-group> | |
3042 | </trans-unit> | ||
2937 | <trans-unit id="25925fc5826bc5b3eeae7c45b08b0ed74b9e2954"> | 3043 | <trans-unit id="25925fc5826bc5b3eeae7c45b08b0ed74b9e2954"> |
2938 | <source>Filter...</source> | 3044 | <source>Filter...</source> |
2939 | <target>Filtrovat...</target> | 3045 | <target>Filtrovat...</target> |
2940 | 3046 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">23</context></context-group> | |
2941 | 3047 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">16</context></context-group> | |
2942 | 3048 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">27</context></context-group> | |
2943 | 3049 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">23</context></context-group> | |
2944 | 3050 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">16</context></context-group> | |
2945 | 3051 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">23</context></context-group> | |
2946 | 3052 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">42</context></context-group> | |
2947 | 3053 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">29</context></context-group> | |
2948 | 3054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">37</context></context-group> | |
2949 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 3055 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">16</context></context-group> |
3056 | </trans-unit> | ||
2950 | <trans-unit id="1e5e23363e949f7dcbaf034bdb141a561132a10e" datatype="html"> | 3057 | <trans-unit id="1e5e23363e949f7dcbaf034bdb141a561132a10e" datatype="html"> |
2951 | <source>Clear filters</source> | 3058 | <source>Clear filters</source> |
2952 | <target state="new">Clear filters</target> | 3059 | <target state="new">Clear filters</target> |
2953 | 3060 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">26</context></context-group> | |
2954 | 3061 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">13</context></context-group> | |
2955 | 3062 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">14</context></context-group> | |
2956 | 3063 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">14</context></context-group> | |
2957 | 3064 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">27</context></context-group> | |
2958 | 3065 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">20</context></context-group> | |
2959 | 3066 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">31</context></context-group> | |
2960 | 3067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">14</context></context-group> | |
2961 | 3068 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">27</context></context-group> | |
2962 | 3069 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">20</context></context-group> | |
2963 | 3070 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">27</context></context-group> | |
2964 | 3071 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">46</context></context-group> | |
2965 | 3072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">33</context></context-group> | |
2966 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">14</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">14</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">14</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">46</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 3073 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">41</context></context-group> |
3074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">20</context></context-group> | ||
3075 | </trans-unit> | ||
2967 | <trans-unit id="08658c558971c49d1120d6c8a5a4fecf5c3b1561" datatype="html"> | 3076 | <trans-unit id="08658c558971c49d1120d6c8a5a4fecf5c3b1561" datatype="html"> |
2968 | <source>Video/Comment/Account</source> | 3077 | <source>Video/Comment/Account</source> |
2969 | <target state="new">Video/Comment/Account</target> | 3078 | <target state="new">Video/Comment/Account</target> |
2970 | 3079 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">42</context></context-group> | |
2971 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 3080 | </trans-unit> |
2972 | <trans-unit id="45cc8ca94b5a50842a9a8ef804a5ab089a38ae5c"> | 3081 | <trans-unit id="45cc8ca94b5a50842a9a8ef804a5ab089a38ae5c"> |
2973 | <source>ID</source> | 3082 | <source>ID</source> |
2974 | <target>ID</target> | 3083 | <target>ID</target> |
2975 | 3084 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">41</context></context-group> | |
2976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 3085 | </trans-unit> |
2977 | <trans-unit id="1d284acc5ec053b3cd87e4e9fcd7aaefec0c54fb"> | 3086 | <trans-unit id="1d284acc5ec053b3cd87e4e9fcd7aaefec0c54fb"> |
2978 | <source>Follower handle</source> | 3087 | <source>Follower handle</source> |
2979 | <target state="new">Follower handle</target> | 3088 | <target state="new">Follower handle</target> |
2980 | 3089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">28</context></context-group> | |
2981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 3090 | </trans-unit> |
2982 | <trans-unit id="873b72903b1858a9cd6c8967521030b4d7d1435b"> | 3091 | <trans-unit id="873b72903b1858a9cd6c8967521030b4d7d1435b"> |
2983 | <source>State</source> | 3092 | <source>State</source> |
2984 | <target>Stav</target> | 3093 | <target>Stav</target> |
2985 | 3094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">19</context></context-group> | |
2986 | 3095 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">43</context></context-group> | |
2987 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">19</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | 3096 | </trans-unit> |
2988 | |||
2989 | |||
2990 | |||
2991 | |||
2992 | |||
2993 | <trans-unit id="ff3173170e5b03536dd3b3e1afbae1f55356eb1b"> | 3097 | <trans-unit id="ff3173170e5b03536dd3b3e1afbae1f55356eb1b"> |
2994 | <source>Created <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3098 | <source>Created <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
2995 | <target>Vytvořeno | 3099 | <target>Vytvořeno <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> |
2996 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 3100 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">20</context></context-group> |
2997 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 3101 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">43</context></context-group> |
2998 | </target> | 3102 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">44</context></context-group> |
2999 | 3103 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">37</context></context-group> | |
3000 | 3104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">31</context></context-group> | |
3001 | 3105 | </trans-unit> | |
3002 | |||
3003 | |||
3004 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | ||
3005 | <trans-unit id="9c9e0eb0ce8abea8b4c7c5dbb6e80a9a5f5b4193" datatype="html"> | 3106 | <trans-unit id="9c9e0eb0ce8abea8b4c7c5dbb6e80a9a5f5b4193" datatype="html"> |
3006 | <source>Open actor page in a new tab</source> | 3107 | <source>Open actor page in a new tab</source> |
3007 | <target state="new">Open actor page in a new tab</target> | 3108 | <target state="new">Open actor page in a new tab</target> |
3008 | 3109 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">46</context></context-group> | |
3009 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 3110 | </trans-unit> |
3010 | <trans-unit id="7823909fb1d8d313382f6f4bd842f1a7ef6f08d1"> | 3111 | <trans-unit id="7823909fb1d8d313382f6f4bd842f1a7ef6f08d1"> |
3011 | <source>Accepted</source> | 3112 | <source>Accepted</source> |
3012 | <target>Přijato</target> | 3113 | <target>Přijato</target> |
3013 | 3114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">55</context></context-group> | |
3014 | 3115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">53</context></context-group> | |
3015 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> | 3116 | </trans-unit> |
3016 | <trans-unit id="e6a27066251ca1e04c5be86ad758380856df2506"> | 3117 | <trans-unit id="e6a27066251ca1e04c5be86ad758380856df2506"> |
3017 | <source>Pending</source> | 3118 | <source>Pending</source> |
3018 | <target>Čeká</target> | 3119 | <target>Čeká</target> |
3019 | 3120 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">58</context></context-group> | |
3020 | 3121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">56</context></context-group> | |
3021 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 3122 | </trans-unit> |
3022 | <trans-unit id="6fc5e65900ae1415d3170d5d2842f0dcae1b6645"> | 3123 | <trans-unit id="6fc5e65900ae1415d3170d5d2842f0dcae1b6645"> |
3023 | <source>Accept</source> | 3124 | <source>Accept</source> |
3024 | <target>Přijmout</target> | 3125 | <target>Přijmout</target> |
3025 | 3126 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">33</context></context-group> | |
3026 | 3127 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">30</context></context-group> | |
3027 | 3128 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">39</context></context-group> | |
3028 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 3129 | </trans-unit> |
3029 | <trans-unit id="4a5613f6b472c1ed863dff1be932913a251f27a2"> | 3130 | <trans-unit id="4a5613f6b472c1ed863dff1be932913a251f27a2"> |
3030 | <source>Refuse</source> | 3131 | <source>Refuse</source> |
3031 | <target>Odmítnout</target> | 3132 | <target>Odmítnout</target> |
3032 | 3133 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">34</context></context-group> | |
3033 | 3134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">40</context></context-group> | |
3034 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> | 3135 | </trans-unit> |
3035 | <trans-unit id="ff772a40114c96a96d8f2bfe0394658eda5a51ca" datatype="html"> | 3136 | <trans-unit id="ff772a40114c96a96d8f2bfe0394658eda5a51ca" datatype="html"> |
3036 | <source>No follower found matching current filters.</source> | 3137 | <source>No follower found matching current filters.</source> |
3037 | <target state="new">No follower found matching current filters.</target> | 3138 | <target state="new">No follower found matching current filters.</target> |
3038 | 3139 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">68</context></context-group> | |
3039 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">68</context></context-group></trans-unit> | 3140 | </trans-unit> |
3040 | <trans-unit id="2bea79363bdef3300bdcad9ef20a680c05e9f781" datatype="html"> | 3141 | <trans-unit id="2bea79363bdef3300bdcad9ef20a680c05e9f781" datatype="html"> |
3041 | <source>Your instance doesn't have any follower.</source> | 3142 | <source>Your instance doesn't have any follower.</source> |
3042 | <target state="new">Your instance doesn't have any follower.</target> | 3143 | <target state="new">Your instance doesn't have any follower.</target> |
3043 | 3144 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">69</context></context-group> | |
3044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 3145 | </trans-unit> |
3045 | <trans-unit id="57295ef79276c604cc86f130c0046469e150f7cd" datatype="html"> | 3146 | <trans-unit id="57295ef79276c604cc86f130c0046469e150f7cd" datatype="html"> |
3046 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> followers</source> | 3147 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> followers</source> |
3047 | <target state="new">Showing | 3148 | <target state="new">Showing |
@@ -3049,31 +3150,31 @@ The link will expire within 1 hour.</target> | |||
3049 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 3150 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
3050 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> followers | 3151 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> followers |
3051 | </target> | 3152 | </target> |
3052 | 3153 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">10</context></context-group> | |
3053 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3154 | </trans-unit> |
3054 | <trans-unit id="270a185f179774aa3cee3120ed4f5650e8816b9f" datatype="html"> | 3155 | <trans-unit id="270a185f179774aa3cee3120ed4f5650e8816b9f" datatype="html"> |
3055 | <source> | 3156 | <source><x id="INTERPOLATION" equiv-text="{{ action }}"/> </source> |
3056 | <x id="INTERPOLATION" equiv-text="{{ action }}"/> | ||
3057 | </source> | ||
3058 | <target state="new"> | 3157 | <target state="new"> |
3059 | <x id="INTERPOLATION" equiv-text="{{ action }}"/> | 3158 | <x id="INTERPOLATION" equiv-text="{{ action }}"/> |
3060 | </target> | 3159 | </target> |
3061 | 3160 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">3</context></context-group> | |
3062 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3161 | </trans-unit> |
3063 | <trans-unit id="fe22ca53e651df951dac25b67c17894b0980f767"> | 3162 | <trans-unit id="fe22ca53e651df951dac25b67c17894b0980f767"> |
3064 | <source>Host</source> | 3163 | <source>Host</source> |
3065 | <target>Host</target> | 3164 | <target>Host</target> |
3066 | 3165 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">35</context></context-group> | |
3067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 3166 | </trans-unit> |
3068 | <trans-unit id="107f0fef40ba00a1a183a03eba85054ed8413f92" datatype="html"> | 3167 | <trans-unit id="107f0fef40ba00a1a183a03eba85054ed8413f92" datatype="html"> |
3069 | <source>Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3168 | <source>Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3070 | <target state="new">Redundancy allowed | 3169 | <target state="new">Redundancy allowed |
3071 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 3170 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
3072 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 3171 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
3073 | </target> | 3172 | </target> |
3074 | 3173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">38</context></context-group> | |
3075 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="a89875525c82ab81ffe32e481a5475b43d0c2902" datatype="html"> | 3174 | </trans-unit> |
3076 | <source>Unfollow</source><target state="new">Unfollow</target> | 3175 | <trans-unit id="a89875525c82ab81ffe32e481a5475b43d0c2902" datatype="html"> |
3176 | <source>Unfollow</source> | ||
3177 | <target state="new">Unfollow</target> | ||
3077 | <context-group purpose="location"> | 3178 | <context-group purpose="location"> |
3078 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | 3179 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> |
3079 | <context context-type="linenumber">45</context> | 3180 | <context context-type="linenumber">45</context> |
@@ -3082,20 +3183,20 @@ The link will expire within 1 hour.</target> | |||
3082 | <trans-unit id="8cffa679dff97a096d44fca9348eeaa1867d40aa" datatype="html"> | 3183 | <trans-unit id="8cffa679dff97a096d44fca9348eeaa1867d40aa" datatype="html"> |
3083 | <source>Open instance in a new tab</source> | 3184 | <source>Open instance in a new tab</source> |
3084 | <target state="new">Open instance in a new tab</target> | 3185 | <target state="new">Open instance in a new tab</target> |
3085 | 3186 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">46</context></context-group> | |
3086 | 3187 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">48</context></context-group> | |
3087 | 3188 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">46</context></context-group> | |
3088 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">46</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">48</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 3189 | </trans-unit> |
3089 | <trans-unit id="d9b4b939363bf385cbb7828c1535f2e2a5e0d362" datatype="html"> | 3190 | <trans-unit id="d9b4b939363bf385cbb7828c1535f2e2a5e0d362" datatype="html"> |
3090 | <source>No host found matching current filters.</source> | 3191 | <source>No host found matching current filters.</source> |
3091 | <target state="new">No host found matching current filters.</target> | 3192 | <target state="new">No host found matching current filters.</target> |
3092 | 3193 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">74</context></context-group> | |
3093 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit> | 3194 | </trans-unit> |
3094 | <trans-unit id="6f635f2eba7fe60e4266192fbfef20948fbe3b0a" datatype="html"> | 3195 | <trans-unit id="6f635f2eba7fe60e4266192fbfef20948fbe3b0a" datatype="html"> |
3095 | <source>Your instance is not following anyone.</source> | 3196 | <source>Your instance is not following anyone.</source> |
3096 | <target state="new">Your instance is not following anyone.</target> | 3197 | <target state="new">Your instance is not following anyone.</target> |
3097 | 3198 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">75</context></context-group> | |
3098 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">75</context></context-group></trans-unit> | 3199 | </trans-unit> |
3099 | <trans-unit id="b2ddee45fe4c3ebc20f39ed10ef70505c9eb65ce" datatype="html"> | 3200 | <trans-unit id="b2ddee45fe4c3ebc20f39ed10ef70505c9eb65ce" datatype="html"> |
3100 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> hosts</source> | 3201 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> hosts</source> |
3101 | <target state="new">Showing | 3202 | <target state="new">Showing |
@@ -3103,14 +3204,16 @@ The link will expire within 1 hour.</target> | |||
3103 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 3204 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
3104 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> hosts | 3205 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> hosts |
3105 | </target> | 3206 | </target> |
3106 | 3207 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">10</context></context-group> | |
3107 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3208 | </trans-unit> |
3108 | <trans-unit id="f697b4a4f0b6413284269de48a9e1a43a362646f" datatype="html"> | 3209 | <trans-unit id="f697b4a4f0b6413284269de48a9e1a43a362646f" datatype="html"> |
3109 | <source>Follow domains</source> | 3210 | <source>Follow domains</source> |
3110 | <target state="new">Follow domains</target> | 3211 | <target state="new">Follow domains</target> |
3111 | 3212 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">82</context></context-group> | |
3112 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="428ed89aeb4bd5a1b5f39b674d2c476e18c55334" datatype="html"> | 3213 | </trans-unit> |
3113 | <source>Follow instances</source><target state="new">Follow instances</target> | 3214 | <trans-unit id="428ed89aeb4bd5a1b5f39b674d2c476e18c55334" datatype="html"> |
3215 | <source>Follow instances</source> | ||
3216 | <target state="new">Follow instances</target> | ||
3114 | <context-group purpose="location"> | 3217 | <context-group purpose="location"> |
3115 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | 3218 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> |
3116 | <context context-type="linenumber">17</context> | 3219 | <context context-type="linenumber">17</context> |
@@ -3119,190 +3222,196 @@ The link will expire within 1 hour.</target> | |||
3119 | <trans-unit id="1fc09996a8d49e3d1cc3abedb3edf3fa4c427a5f" datatype="html"> | 3222 | <trans-unit id="1fc09996a8d49e3d1cc3abedb3edf3fa4c427a5f" datatype="html"> |
3120 | <source>Videos redundancies</source> | 3223 | <source>Videos redundancies</source> |
3121 | <target state="new">Videos redundancies</target> | 3224 | <target state="new">Videos redundancies</target> |
3122 | 3225 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
3123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3226 | </trans-unit> |
3124 | <trans-unit id="8a3b2dec938ae1c71320e653fb1fdb810e614f76" datatype="html"> | 3227 | <trans-unit id="8a3b2dec938ae1c71320e653fb1fdb810e614f76" datatype="html"> |
3125 | <source>My videos duplicated by remote instances</source> | 3228 | <source>My videos duplicated by remote instances</source> |
3126 | <target state="new">My videos duplicated by remote instances</target> | 3229 | <target state="new">My videos duplicated by remote instances</target> |
3127 | 3230 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">12</context></context-group> | |
3128 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> | 3231 | </trans-unit> |
3129 | <trans-unit id="cb2281bf5c9f420429bbd5c5473ee7aacc879e1e" datatype="html"> | 3232 | <trans-unit id="cb2281bf5c9f420429bbd5c5473ee7aacc879e1e" datatype="html"> |
3130 | <source>Remote videos duplicated by my instance</source> | 3233 | <source>Remote videos duplicated by my instance</source> |
3131 | <target state="new">Remote videos duplicated by my instance</target> | 3234 | <target state="new">Remote videos duplicated by my instance</target> |
3132 | 3235 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">13</context></context-group> | |
3133 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 3236 | </trans-unit> |
3134 | <trans-unit id="31cf824034489eb42f6a388d5980b98b8e1de015"> | 3237 | <trans-unit id="31cf824034489eb42f6a388d5980b98b8e1de015"> |
3135 | <source>Create user</source> | 3238 | <source>Create user</source> |
3136 | <target>Vytvořit uživatele</target> | 3239 | <target>Vytvořit uživatele</target> |
3137 | 3240 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">20</context></context-group> | |
3138 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 3241 | </trans-unit> |
3139 | <trans-unit id="55d4cef22a65e0850dc95aa127f45e9df525f68f" datatype="html"> | 3242 | <trans-unit id="55d4cef22a65e0850dc95aa127f45e9df525f68f" datatype="html"> |
3140 | <source>Table parameters</source> | 3243 | <source>Table parameters</source> |
3141 | <target state="new">Table parameters</target> | 3244 | <target state="new">Table parameters</target> |
3142 | 3245 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">59</context></context-group> | |
3143 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 3246 | </trans-unit> |
3144 | <trans-unit id="48c6910585f5bef4f725104287ec904c7cb8c6e9" datatype="html"> | 3247 | <trans-unit id="48c6910585f5bef4f725104287ec904c7cb8c6e9" datatype="html"> |
3145 | <source>Select columns</source> | 3248 | <source>Select columns</source> |
3146 | <target state="new">Select columns</target> | 3249 | <target state="new">Select columns</target> |
3147 | 3250 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">65</context></context-group> | |
3148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> | 3251 | </trans-unit> |
3149 | <trans-unit id="ed66036cb394f49f63cb5fb5632f483613b790f6" datatype="html"> | 3252 | <trans-unit id="ed66036cb394f49f63cb5fb5632f483613b790f6" datatype="html"> |
3150 | <source>Highlight banned users</source> | 3253 | <source>Highlight banned users</source> |
3151 | <target state="new">Highlight banned users</target> | 3254 | <target state="new">Highlight banned users</target> |
3152 | 3255 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">71</context></context-group> | |
3153 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit> | 3256 | </trans-unit> |
3154 | <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> | 3257 | <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> |
3155 | <source>Username</source> | 3258 | <source>Username</source> |
3156 | <target>Uživatelské jméno</target> | 3259 | <target>Uživatelské jméno</target> |
3157 | 3260 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">23</context></context-group> | |
3158 | 3261 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">6</context></context-group> | |
3159 | 3262 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> | |
3160 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="498afab4384cdddd310de830b987345b71aee25f" datatype="html"> | 3263 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> |
3161 | <source>e.g. jane_doe</source><target state="new">e.g. jane_doe</target> | 3264 | </trans-unit> |
3162 | 3265 | <trans-unit id="498afab4384cdddd310de830b987345b71aee25f" datatype="html"> | |
3266 | <source>e.g. jane_doe</source> | ||
3267 | <target state="new">e.g. jane_doe</target> | ||
3163 | <note priority="1" from="description">Username choice placeholder in the registration form</note> | 3268 | <note priority="1" from="description">Username choice placeholder in the registration form</note> |
3164 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | 3269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">27</context></context-group> |
3270 | </trans-unit> | ||
3165 | <trans-unit id="1bd571d8f3981f6043b0df3402cc3d97e0d7ad2a"> | 3271 | <trans-unit id="1bd571d8f3981f6043b0df3402cc3d97e0d7ad2a"> |
3166 | <source>john</source> | 3272 | <source>john</source> |
3167 | <target>john</target> | 3273 | <target>john</target> |
3168 | 3274 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">85</context></context-group> | |
3169 | 3275 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">85</context></context-group> | |
3170 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 3276 | </trans-unit> |
3171 | <trans-unit id="bb3542ff8e5defa6d0c773799e5c8fe399605d05"> | 3277 | <trans-unit id="bb3542ff8e5defa6d0c773799e5c8fe399605d05"> |
3172 | <source>mail@example.com</source> | 3278 | <source>mail@example.com</source> |
3173 | <target>email@priklad.cz</target> | 3279 | <target>email@priklad.cz</target> |
3174 | 3280 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">107</context></context-group> | |
3175 | 3281 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">107</context></context-group> | |
3176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">107</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> | 3282 | </trans-unit> |
3177 | <trans-unit id="8861667a66c0000e6ae144520026d55123cea117" datatype="html"> | 3283 | <trans-unit id="8861667a66c0000e6ae144520026d55123cea117" datatype="html"> |
3178 | <source> | 3284 | <source>If you leave the password empty, an email will be sent to the user.</source> |
3179 | If you leave the password empty, an email will be sent to the user. | ||
3180 | </source> | ||
3181 | <target state="new"> | 3285 | <target state="new"> |
3182 | If you leave the password empty, an email will be sent to the user. | 3286 | If you leave the password empty, an email will be sent to the user. |
3183 | </target> | 3287 | </target> |
3184 | 3288 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">121</context></context-group> | |
3185 | 3289 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">121</context></context-group> | |
3186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">121</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 3290 | </trans-unit> |
3187 | <trans-unit id="c36a66f2107e8da5371ebc9d15c2008dff567f46"> | 3291 | <trans-unit id="c36a66f2107e8da5371ebc9d15c2008dff567f46"> |
3188 | <source>Role</source> | 3292 | <source>Role</source> |
3189 | <target>Role</target> | 3293 | <target>Role</target> |
3190 | 3294 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | |
3191 | 3295 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | |
3192 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group></trans-unit> | 3296 | </trans-unit> |
3193 | <trans-unit id="2768c5a04ffea51e600e3b1e14ed676afb355f23" datatype="html"> | 3297 | <trans-unit id="2768c5a04ffea51e600e3b1e14ed676afb355f23" datatype="html"> |
3194 | <source> Transcoding is enabled. The video quota only takes into account <x id="START_TAG_STRONG"/>original<x id="CLOSE_TAG_STRONG"/> video size. <x id="LINE_BREAK"/> At most, this user could upload ~ <x id="INTERPOLATION"/>. </source> | 3298 | <source>Transcoding is enabled. The video quota only takes into account <x id="START_TAG_STRONG"/>original<x id="CLOSE_TAG_STRONG"/> video size. <x id="LINE_BREAK"/> At most, this user could upload ~ <x id="INTERPOLATION"/>. </source> |
3195 | <target state="new"> | 3299 | <target state="new"> |
3196 | Transcoding is enabled. The video quota only takes into account | 3300 | Transcoding is enabled. The video quota only takes into account |
3197 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>original | 3301 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>original |
3198 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> video size. | 3302 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> video size. |
3199 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 3303 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
3200 | At most, this user could upload ~ | 3304 | At most, this user could upload ~ |
3201 | <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. | 3305 | <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. |
3202 | 3306 | ||
3203 | </target> | 3307 | </target> |
3204 | 3308 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">161</context></context-group> | |
3205 | 3309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">161</context></context-group> | |
3206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">161</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 3310 | </trans-unit> |
3207 | <trans-unit id="6ded52553dd8720fd3698b8fbc3a6d037c07b496"> | 3311 | <trans-unit id="6ded52553dd8720fd3698b8fbc3a6d037c07b496"> |
3208 | <source>Daily video quota</source> | 3312 | <source>Daily video quota</source> |
3209 | <target>Denní kvóta pro videa</target> | 3313 | <target>Denní kvóta pro videa</target> |
3210 | 3314 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.html</context><context context-type="linenumber">13</context></context-group> | |
3211 | 3315 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">167</context></context-group> | |
3212 | 3316 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">167</context></context-group> | |
3213 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">167</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> | 3317 | </trans-unit> |
3214 | <trans-unit id="a0f69dcdccf2174aa7fa17708ac63c3a3104456c" datatype="html"> | 3318 | <trans-unit id="a0f69dcdccf2174aa7fa17708ac63c3a3104456c" datatype="html"> |
3215 | <source>Doesn't need review before a video goes public</source> | 3319 | <source>Doesn't need review before a video goes public</source> |
3216 | <target state="new">Doesn't need review before a video goes public</target> | 3320 | <target state="new">Doesn't need review before a video goes public</target> |
3217 | 3321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">180</context></context-group> | |
3218 | 3322 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">180</context></context-group> | |
3219 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">180</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">180</context></context-group></trans-unit> | 3323 | </trans-unit> |
3220 | <trans-unit id="27a8f947ecc46bcad10d965360f500a14128bd7d"> | 3324 | <trans-unit id="27a8f947ecc46bcad10d965360f500a14128bd7d"> |
3221 | <source>Send a link to reset the password by email to the user</source> | 3325 | <source>Send a link to reset the password by email to the user</source> |
3222 | <target>Zaslat odkaz pro reset hesla uživateli emailem</target> | 3326 | <target>Zaslat odkaz pro reset hesla uživateli emailem</target> |
3223 | 3327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">205</context></context-group> | |
3224 | 3328 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">205</context></context-group> | |
3225 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">205</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">205</context></context-group></trans-unit> | 3329 | </trans-unit> |
3226 | <trans-unit id="950adafba22e3c85e889f2c38faebe98145bfb7f"> | 3330 | <trans-unit id="950adafba22e3c85e889f2c38faebe98145bfb7f"> |
3227 | <source>Ask for new password</source> | 3331 | <source>Ask for new password</source> |
3228 | <target>Požádat o nové heslo</target> | 3332 | <target>Požádat o nové heslo</target> |
3229 | 3333 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">206</context></context-group> | |
3230 | 3334 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">206</context></context-group> | |
3231 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">206</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">206</context></context-group></trans-unit> | 3335 | </trans-unit> |
3232 | <trans-unit id="e6a48b1ed6160a99fba3a1607e27e9e93a4f4244"> | 3336 | <trans-unit id="e6a48b1ed6160a99fba3a1607e27e9e93a4f4244"> |
3233 | <source>Manually set the user password</source> | 3337 | <source>Manually set the user password</source> |
3234 | <target>Manuálně nastavit heslo uživatele</target> | 3338 | <target>Manuálně nastavit heslo uživatele</target> |
3235 | 3339 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">210</context></context-group> | |
3236 | 3340 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">210</context></context-group> | |
3237 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">210</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">210</context></context-group></trans-unit> | 3341 | </trans-unit> |
3238 | <trans-unit id="2aba1e87039819aca3b70faa9aa848c12bf139ca"> | 3342 | <trans-unit id="2aba1e87039819aca3b70faa9aa848c12bf139ca"> |
3239 | <source>Show</source> | 3343 | <source>Show</source> |
3240 | <target>Zobrazit</target> | 3344 | <target>Zobrazit</target> |
3241 | 3345 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">10</context></context-group> | |
3242 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3346 | </trans-unit> |
3243 | <trans-unit id="1eede69e18c5ac9c0b0295b72cabb7e64e029e74"> | 3347 | <trans-unit id="1eede69e18c5ac9c0b0295b72cabb7e64e029e74"> |
3244 | <source>Hide</source> | 3348 | <source>Hide</source> |
3245 | <target>Skrýt</target> | 3349 | <target>Skrýt</target> |
3246 | 3350 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">11</context></context-group> | |
3247 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 3351 | </trans-unit> |
3248 | <trans-unit id="ea762ca1d74c96d8568ac68482778f52ca531cc4"> | 3352 | <trans-unit id="ea762ca1d74c96d8568ac68482778f52ca531cc4"> |
3249 | <source>Batch actions</source> | 3353 | <source>Batch actions</source> |
3250 | <target>Souhrnné akce</target> | 3354 | <target>Souhrnné akce</target> |
3251 | 3355 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">22</context></context-group> | |
3252 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 3356 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">22</context></context-group> |
3357 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">13</context></context-group> | ||
3358 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">13</context></context-group> | ||
3359 | </trans-unit> | ||
3253 | <trans-unit id="715d36ab50d156b744ffedc975ffb97cae75ff7b" datatype="html"> | 3360 | <trans-unit id="715d36ab50d156b744ffedc975ffb97cae75ff7b" datatype="html"> |
3254 | <source>Advanced user filters</source> | 3361 | <source>Advanced user filters</source> |
3255 | <target state="new">Advanced user filters</target> | 3362 | <target state="new">Advanced user filters</target> |
3256 | 3363 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">32</context></context-group> | |
3257 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 3364 | </trans-unit> |
3258 | <trans-unit id="765fcd9017ea1e180bbd266673d7cf11535d8c4a" datatype="html"> | 3365 | <trans-unit id="765fcd9017ea1e180bbd266673d7cf11535d8c4a" datatype="html"> |
3259 | <source>Banned users</source> | 3366 | <source>Banned users</source> |
3260 | <target state="new">Banned users</target> | 3367 | <target state="new">Banned users</target> |
3261 | 3368 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">33</context></context-group> | |
3262 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 3369 | </trans-unit> |
3263 | <trans-unit id="7d88bb14f4ef7eaea7ca41c1832c66451410047a" datatype="html"> | 3370 | <trans-unit id="7d88bb14f4ef7eaea7ca41c1832c66451410047a" datatype="html"> |
3264 | <source>The user was banned</source> | 3371 | <source>The user was banned</source> |
3265 | <target state="new">The user was banned</target> | 3372 | <target state="new">The user was banned</target> |
3266 | 3373 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">161</context></context-group> | |
3267 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">161</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 3374 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">161</context></context-group> |
3375 | </trans-unit> | ||
3268 | <trans-unit id="ed64ec2b14251cfbe9ab28abde51d3f052fde1e7" datatype="html"> | 3376 | <trans-unit id="ed64ec2b14251cfbe9ab28abde51d3f052fde1e7" datatype="html"> |
3269 | <source>Open account in a new tab</source> | 3377 | <source>Open account in a new tab</source> |
3270 | <target state="new">Open account in a new tab</target> | 3378 | <target state="new">Open account in a new tab</target> |
3271 | 3379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">38</context></context-group> | |
3272 | 3380 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">39</context></context-group> | |
3273 | 3381 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">66</context></context-group> | |
3274 | 3382 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">66</context></context-group> | |
3275 | 3383 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">39</context></context-group> | |
3276 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">66</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">66</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">87</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> | 3384 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">87</context></context-group> |
3385 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">107</context></context-group> | ||
3386 | </trans-unit> | ||
3277 | <trans-unit id="d9e38d58225f58cb64126e4d5ec58f39dcb326df" datatype="html"> | 3387 | <trans-unit id="d9e38d58225f58cb64126e4d5ec58f39dcb326df" datatype="html"> |
3278 | <source> | 3388 | <source>Deleted account</source> |
3279 | Deleted account | ||
3280 | </source> | ||
3281 | <target state="new"> | 3389 | <target state="new"> |
3282 | Deleted account | 3390 | Deleted account |
3283 | </target> | 3391 | </target> |
3284 | 3392 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">82</context></context-group> | |
3285 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 3393 | </trans-unit> |
3286 | <trans-unit id="02ba1a65db92d1d0ab4ba380086e9be61891aaa5"> | 3394 | <trans-unit id="02ba1a65db92d1d0ab4ba380086e9be61891aaa5"> |
3287 | <source>User's email must be verified to login</source> | 3395 | <source>User's email must be verified to login</source> |
3288 | <target>Uživatelský email musí být před přihlášením ověřen</target> | 3396 | <target>Uživatelský email musí být před přihlášením ověřen</target> |
3289 | 3397 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">130</context></context-group> | |
3290 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">130</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">130</context></context-group></trans-unit> | 3398 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">130</context></context-group> |
3399 | </trans-unit> | ||
3291 | <trans-unit id="79cee9973620b2592ff2824c525aa8ed0b5e2b8b"> | 3400 | <trans-unit id="79cee9973620b2592ff2824c525aa8ed0b5e2b8b"> |
3292 | <source>User's email is verified / User can login without email verification</source> | 3401 | <source>User's email is verified / User can login without email verification</source> |
3293 | <target>Uživatelský email je ověřen / Uživatel se může přihlásit bez ověření</target> | 3402 | <target>Uživatelský email je ověřen / Uživatel se může přihlásit bez ověření</target> |
3294 | 3403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">134</context></context-group> | |
3295 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">134</context></context-group></trans-unit> | 3404 | </trans-unit> |
3296 | <trans-unit id="12289e981bf1acd36d74ee0e50d6fb43ba29ca6a" datatype="html"> | 3405 | <trans-unit id="12289e981bf1acd36d74ee0e50d6fb43ba29ca6a" datatype="html"> |
3297 | <source>Total daily video quota</source> | 3406 | <source>Total daily video quota</source> |
3298 | <target state="new">Total daily video quota</target> | 3407 | <target state="new">Total daily video quota</target> |
3299 | 3408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">151</context></context-group> | |
3300 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">151</context></context-group></trans-unit> | 3409 | </trans-unit> |
3301 | <trans-unit id="a9587caabf0dc5d824f817baae1c2f5521d9b1ee"> | 3410 | <trans-unit id="a9587caabf0dc5d824f817baae1c2f5521d9b1ee"> |
3302 | <source>Ban reason:</source> | 3411 | <source>Ban reason:</source> |
3303 | <target>Důvod zablokování:</target> | 3412 | <target>Důvod zablokování:</target> |
3304 | 3413 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">178</context></context-group> | |
3305 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">178</context></context-group></trans-unit> | 3414 | </trans-unit> |
3306 | <trans-unit id="0fcb785bae83bfd5c1b1bbeb57cda21eec98ae1a" datatype="html"> | 3415 | <trans-unit id="0fcb785bae83bfd5c1b1bbeb57cda21eec98ae1a" datatype="html"> |
3307 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> users</source> | 3416 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> users</source> |
3308 | <target state="new">Showing | 3417 | <target state="new">Showing |
@@ -3310,172 +3419,200 @@ The link will expire within 1 hour.</target> | |||
3310 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 3419 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
3311 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> users | 3420 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> users |
3312 | </target> | 3421 | </target> |
3313 | 3422 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">6</context></context-group> | |
3314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 3423 | </trans-unit> |
3315 | <trans-unit id="2049290282534091182"> | 3424 | <trans-unit id="2049290282534091182"> |
3316 | <source>Moderation</source> | 3425 | <source>Moderation</source> |
3317 | <target state="new">Moderation</target> | 3426 | <target state="new">Moderation</target> |
3318 | 3427 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">28</context></context-group> | |
3319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit><trans-unit id="1868606282505332204" datatype="html"> | 3428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">47</context></context-group> |
3320 | <source>Reports</source><target state="new">Reports</target> | 3429 | </trans-unit> |
3321 | 3430 | <trans-unit id="1868606282505332204" datatype="html"> | |
3322 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">53</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">37</context></context-group></trans-unit><trans-unit id="746099155736913817" datatype="html"> | 3431 | <source>Reports</source> |
3323 | <source>Video blocks</source><target state="new">Video blocks</target> | 3432 | <target state="new">Reports</target> |
3324 | 3433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">53</context></context-group> | |
3325 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">60</context></context-group></trans-unit><trans-unit id="7427986413651551775" datatype="html"> | 3434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">37</context></context-group> |
3326 | <source>Video comments</source><target state="new">Video comments</target> | 3435 | </trans-unit> |
3327 | 3436 | <trans-unit id="746099155736913817" datatype="html"> | |
3328 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">86</context></context-group></trans-unit><trans-unit id="7815838401315213887" datatype="html"> | 3437 | <source>Video blocks</source> |
3329 | <source>Muted accounts</source><target state="new">Muted accounts</target> | 3438 | <target state="new">Video blocks</target> |
3330 | 3439 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">60</context></context-group> | |
3331 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">86</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">98</context></context-group></trans-unit><trans-unit id="5668793810321242853" datatype="html"> | 3440 | </trans-unit> |
3332 | <source>Muted servers</source><target state="new">Muted servers</target> | 3441 | <trans-unit id="7427986413651551775" datatype="html"> |
3333 | 3442 | <source>Video comments</source> | |
3334 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit><trans-unit id="4555457172864212828" datatype="html"> | 3443 | <target state="new">Video comments</target> |
3335 | <source>Users</source><target state="new">Users</target> | 3444 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">67</context></context-group> |
3336 | 3445 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">86</context></context-group> | |
3337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">88</context></context-group></trans-unit><trans-unit id="3008420115644088420" datatype="html"> | 3446 | </trans-unit> |
3338 | <source>Configuration</source><target state="new">Configuration</target> | 3447 | <trans-unit id="7815838401315213887" datatype="html"> |
3339 | 3448 | <source>Muted accounts</source> | |
3340 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">95</context></context-group></trans-unit> | 3449 | <target state="new">Muted accounts</target> |
3450 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">31</context></context-group> | ||
3451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">86</context></context-group> | ||
3452 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">74</context></context-group> | ||
3453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">98</context></context-group> | ||
3454 | </trans-unit> | ||
3455 | <trans-unit id="5668793810321242853" datatype="html"> | ||
3456 | <source>Muted servers</source> | ||
3457 | <target state="new">Muted servers</target> | ||
3458 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">36</context></context-group> | ||
3459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">95</context></context-group> | ||
3460 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">81</context></context-group> | ||
3461 | </trans-unit> | ||
3462 | <trans-unit id="4555457172864212828" datatype="html"> | ||
3463 | <source>Users</source> | ||
3464 | <target state="new">Users</target> | ||
3465 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">88</context></context-group> | ||
3466 | </trans-unit> | ||
3467 | <trans-unit id="3008420115644088420" datatype="html"> | ||
3468 | <source>Configuration</source> | ||
3469 | <target state="new">Configuration</target> | ||
3470 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">95</context></context-group> | ||
3471 | </trans-unit> | ||
3341 | <trans-unit id="d2e7333704502d1720b353742634630b71ea8bd7" datatype="html"> | 3472 | <trans-unit id="d2e7333704502d1720b353742634630b71ea8bd7" datatype="html"> |
3342 | <source>Video blocks</source> | 3473 | <source>Video blocks</source> |
3343 | <target state="new">Video blocks</target> | 3474 | <target state="new">Video blocks</target> |
3344 | 3475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
3345 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3476 | </trans-unit> |
3346 | <trans-unit id="b1ff109b26ae8f08650415454b9098c43eba2e2c"> | 3477 | <trans-unit id="b1ff109b26ae8f08650415454b9098c43eba2e2c"> |
3347 | <source>Muted accounts</source> | 3478 | <source>Muted accounts</source> |
3348 | <target>Skryté účty</target> | 3479 | <target>Skryté účty</target> |
3349 | 3480 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group> | |
3350 | 3481 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group> | |
3351 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3482 | </trans-unit> |
3352 | <trans-unit id="bd0611346af048015e0a1275091ef68ce98832d2"> | 3483 | <trans-unit id="bd0611346af048015e0a1275091ef68ce98832d2"> |
3353 | <source>Muted servers</source> | 3484 | <source>Muted servers</source> |
3354 | <target>Skryté servery</target> | 3485 | <target>Skryté servery</target> |
3355 | 3486 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">3</context></context-group> | |
3356 | 3487 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">3</context></context-group> | |
3357 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3488 | </trans-unit> |
3358 | <trans-unit id="2122599f5b51ab83849bc77fa5cafcdcd896ac72" datatype="html"> | 3489 | <trans-unit id="2122599f5b51ab83849bc77fa5cafcdcd896ac72" datatype="html"> |
3359 | <source>Advanced block filters</source> | 3490 | <source>Advanced block filters</source> |
3360 | <target state="new">Advanced block filters</target> | 3491 | <target state="new">Advanced block filters</target> |
3361 | 3492 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">23</context></context-group> | |
3362 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 3493 | </trans-unit> |
3363 | <trans-unit id="7d0cb3dbf192b9f3a5dbfb6d56d7609b200cbd4e" datatype="html"> | 3494 | <trans-unit id="7d0cb3dbf192b9f3a5dbfb6d56d7609b200cbd4e" datatype="html"> |
3364 | <source>Automatic blocks</source> | 3495 | <source>Automatic blocks</source> |
3365 | <target state="new">Automatic blocks</target> | 3496 | <target state="new">Automatic blocks</target> |
3366 | 3497 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">24</context></context-group> | |
3367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 3498 | </trans-unit> |
3368 | <trans-unit id="dfc11b6dc1387e59dbb79d248cf4c638fb9df3ea" datatype="html"> | 3499 | <trans-unit id="dfc11b6dc1387e59dbb79d248cf4c638fb9df3ea" datatype="html"> |
3369 | <source>Manual blocks</source> | 3500 | <source>Manual blocks</source> |
3370 | <target state="new">Manual blocks</target> | 3501 | <target state="new">Manual blocks</target> |
3371 | 3502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">25</context></context-group> | |
3372 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 3503 | </trans-unit> |
3373 | <trans-unit id="91bd2d52b840951d3b1f5830b023bee8bca91293" datatype="html"> | 3504 | <trans-unit id="91bd2d52b840951d3b1f5830b023bee8bca91293" datatype="html"> |
3374 | <source>Video <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3505 | <source>Video <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3375 | <target state="new">Video | 3506 | <target state="new">Video |
3376 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 3507 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
3377 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 3508 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
3378 | </target> | 3509 | </target> |
3379 | 3510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">43</context></context-group> | |
3380 | 3511 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">29</context></context-group> | |
3381 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 3512 | </trans-unit> |
3382 | <trans-unit id="b7237eade678ae47485fbd27ec7f8c1079a8c6b7" datatype="html"> | 3513 | <trans-unit id="b7237eade678ae47485fbd27ec7f8c1079a8c6b7" datatype="html"> |
3383 | <source>Total size</source> | 3514 | <source>Total size</source> |
3384 | <target state="new">Total size</target> | 3515 | <target state="new">Total size</target> |
3385 | 3516 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">30</context></context-group> | |
3386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 3517 | </trans-unit> |
3387 | <trans-unit id="e536fc8b9a652aa7f7b87193cdfa143481da3bad" datatype="html"> | 3518 | <trans-unit id="e536fc8b9a652aa7f7b87193cdfa143481da3bad" datatype="html"> |
3388 | <source>List redundancies</source> | 3519 | <source>List redundancies</source> |
3389 | <target state="new">List redundancies</target> | 3520 | <target state="new">List redundancies</target> |
3390 | 3521 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">37</context></context-group> | |
3391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> | 3522 | </trans-unit> |
3392 | <trans-unit id="897116a91d135b1552880aed6050814a4a0df28a" datatype="html"> | 3523 | <trans-unit id="897116a91d135b1552880aed6050814a4a0df28a" datatype="html"> |
3393 | <source>Your instance doesn't mirror any video.</source> | 3524 | <source>Your instance doesn't mirror any video.</source> |
3394 | <target state="new">Your instance doesn't mirror any video.</target> | 3525 | <target state="new">Your instance doesn't mirror any video.</target> |
3395 | 3526 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">81</context></context-group> | |
3396 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 3527 | </trans-unit> |
3397 | <trans-unit id="afc5c2bbf66996ab213f6eca65b24ca423d36e31" datatype="html"> | 3528 | <trans-unit id="afc5c2bbf66996ab213f6eca65b24ca423d36e31" datatype="html"> |
3398 | <source>Your instance has no mirrored videos.</source> | 3529 | <source>Your instance has no mirrored videos.</source> |
3399 | <target state="new">Your instance has no mirrored videos.</target> | 3530 | <target state="new">Your instance has no mirrored videos.</target> |
3400 | 3531 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">82</context></context-group> | |
3401 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 3532 | </trans-unit> |
3402 | <trans-unit id="0e96ed54157e69989a2c0bcce2f62399accdaa27" datatype="html"> | 3533 | <trans-unit id="0e96ed54157e69989a2c0bcce2f62399accdaa27" datatype="html"> |
3403 | <source>Enabled strategies stats</source> | 3534 | <source>Enabled strategies stats</source> |
3404 | <target state="new">Enabled strategies stats</target> | 3535 | <target state="new">Enabled strategies stats</target> |
3405 | 3536 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">91</context></context-group> | |
3406 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 3537 | </trans-unit> |
3407 | <trans-unit id="0f6e6ec286d43c14f16444a077639090f38e29de" datatype="html"> | 3538 | <trans-unit id="0f6e6ec286d43c14f16444a077639090f38e29de" datatype="html"> |
3408 | <source> | 3539 | <source>No redundancy strategy is enabled on your instance.</source> |
3409 | No redundancy strategy is enabled on your instance. | ||
3410 | </source> | ||
3411 | <target state="new"> | 3540 | <target state="new"> |
3412 | No redundancy strategy is enabled on your instance. | 3541 | No redundancy strategy is enabled on your instance. |
3413 | </target> | 3542 | </target> |
3414 | 3543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">96</context></context-group> | |
3415 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 3544 | </trans-unit> |
3416 | <trans-unit id="96dfa3efa02bfafc0bc6d4ab186ebef2813a9e8a"> | 3545 | <trans-unit id="96dfa3efa02bfafc0bc6d4ab186ebef2813a9e8a"> |
3417 | <source>Sensitive</source> | 3546 | <source>Sensitive</source> |
3418 | <target>Citlivé</target> | 3547 | <target>Citlivé</target> |
3419 | 3548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">44</context></context-group> | |
3420 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> | 3549 | </trans-unit> |
3421 | <trans-unit id="b748c96a1ee98d2fa9a645fb71838f5d4938855b"> | 3550 | <trans-unit id="b748c96a1ee98d2fa9a645fb71838f5d4938855b"> |
3422 | <source>Unfederated</source> | 3551 | <source>Unfederated</source> |
3423 | <target state="new">Unfederated</target> | 3552 | <target state="new">Unfederated</target> |
3424 | 3553 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">45</context></context-group> | |
3425 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> | 3554 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">88</context></context-group> |
3555 | </trans-unit> | ||
3426 | <trans-unit id="a7f42da3bb4eea0b71b0a20a2aff6612a82cab99"> | 3556 | <trans-unit id="a7f42da3bb4eea0b71b0a20a2aff6612a82cab99"> |
3427 | <source>Date <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3557 | <source>Date <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3428 | <target>Datum | 3558 | <target>Datum <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> |
3429 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 3559 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">62</context></context-group> |
3430 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 3560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">46</context></context-group> |
3431 | </target> | 3561 | </trans-unit> |
3432 | 3562 | <trans-unit id="33115b0bb932b9b0e326d7433b6ea8e6609ea577" datatype="html"> | |
3433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">62</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit><trans-unit id="33115b0bb932b9b0e326d7433b6ea8e6609ea577" datatype="html"> | 3563 | <source>Select this row</source> |
3434 | <source>Select this row</source><target state="new">Select this row</target> | 3564 | <target state="new">Select this row</target> |
3435 | 3565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">70</context></context-group> | |
3436 | 3566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">91</context></context-group> | |
3437 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 3567 | </trans-unit> |
3438 | <trans-unit id="030b4423b92167200e39519599f9b863b4f7c62c"> | 3568 | <trans-unit id="030b4423b92167200e39519599f9b863b4f7c62c"> |
3439 | <source>Actions</source> | 3569 | <source>Actions</source> |
3440 | <target>Akce</target> | 3570 | <target>Akce</target> |
3441 | 3571 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">18</context></context-group> | |
3442 | 3572 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">61</context></context-group> | |
3443 | 3573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">82</context></context-group> | |
3444 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">61</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">82</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit><trans-unit id="8c9050c6851a9df66791ce33bc05d6daff294921" datatype="html"> | 3574 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">62</context></context-group> |
3445 | <source>Commented video</source><target state="new">Commented video</target> | 3575 | </trans-unit> |
3446 | 3576 | <trans-unit id="8c9050c6851a9df66791ce33bc05d6daff294921" datatype="html"> | |
3447 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="0b8869949ffd1265a194490cd96c74c4ad7c234a" datatype="html"> | 3577 | <source>Commented video</source> |
3448 | <source>No comments found matching current filters.</source><target state="new">No comments found matching current filters.</target> | 3578 | <target state="new">Commented video</target> |
3449 | 3579 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">103</context></context-group> | |
3450 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">128</context></context-group></trans-unit><trans-unit id="fc9202e5b01bd5ec813af78b5d51d1204ab0777e" datatype="html"> | 3580 | </trans-unit> |
3451 | <source>No comments found.</source><target state="new">No comments found.</target> | 3581 | <trans-unit id="0b8869949ffd1265a194490cd96c74c4ad7c234a" datatype="html"> |
3452 | 3582 | <source>No comments found matching current filters.</source> | |
3453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">129</context></context-group></trans-unit> | 3583 | <target state="new">No comments found matching current filters.</target> |
3584 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">128</context></context-group> | ||
3585 | </trans-unit> | ||
3586 | <trans-unit id="fc9202e5b01bd5ec813af78b5d51d1204ab0777e" datatype="html"> | ||
3587 | <source>No comments found.</source> | ||
3588 | <target state="new">No comments found.</target> | ||
3589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">129</context></context-group> | ||
3590 | </trans-unit> | ||
3454 | <trans-unit id="c5cc399a82eb7993156daf2d6c1d9e071cde47ad" datatype="html"> | 3591 | <trans-unit id="c5cc399a82eb7993156daf2d6c1d9e071cde47ad" datatype="html"> |
3455 | <source>No abuses found matching current filters.</source> | 3592 | <source>No abuses found matching current filters.</source> |
3456 | <target state="new">No abuses found matching current filters.</target> | 3593 | <target state="new">No abuses found matching current filters.</target> |
3457 | 3594 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">188</context></context-group> | |
3458 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">188</context></context-group></trans-unit> | 3595 | </trans-unit> |
3459 | <trans-unit id="5d9dd64c1974b18918db7f24051bb385bd5558e1" datatype="html"> | 3596 | <trans-unit id="5d9dd64c1974b18918db7f24051bb385bd5558e1" datatype="html"> |
3460 | <source>No abuses found.</source> | 3597 | <source>No abuses found.</source> |
3461 | <target state="new">No abuses found.</target> | 3598 | <target state="new">No abuses found.</target> |
3462 | 3599 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">189</context></context-group> | |
3463 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">189</context></context-group></trans-unit> | 3600 | </trans-unit> |
3464 | <trans-unit id="d2a65fafac0e4e0a3289ec54627bd7f691d8020d" datatype="html"> | 3601 | <trans-unit id="d2a65fafac0e4e0a3289ec54627bd7f691d8020d" datatype="html"> |
3465 | <source>Block reason:</source> | 3602 | <source>Block reason:</source> |
3466 | <target state="new">Block reason:</target> | 3603 | <target state="new">Block reason:</target> |
3467 | 3604 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">104</context></context-group> | |
3468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 3605 | </trans-unit> |
3469 | <trans-unit id="f8add432da83aa37b8cf03c5b907c3a9e51088fd" datatype="html"> | 3606 | <trans-unit id="f8add432da83aa37b8cf03c5b907c3a9e51088fd" datatype="html"> |
3470 | <source>No blocked video found matching current filters.</source> | 3607 | <source>No blocked video found matching current filters.</source> |
3471 | <target state="new">No blocked video found matching current filters.</target> | 3608 | <target state="new">No blocked video found matching current filters.</target> |
3472 | 3609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">124</context></context-group> | |
3473 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">124</context></context-group></trans-unit> | 3610 | </trans-unit> |
3474 | <trans-unit id="8d02797f76f99ad51f55e91ff82088e8772152e0" datatype="html"> | 3611 | <trans-unit id="8d02797f76f99ad51f55e91ff82088e8772152e0" datatype="html"> |
3475 | <source>No blocked video found.</source> | 3612 | <source>No blocked video found.</source> |
3476 | <target state="new">No blocked video found.</target> | 3613 | <target state="new">No blocked video found.</target> |
3477 | 3614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">125</context></context-group> | |
3478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 3615 | </trans-unit> |
3479 | <trans-unit id="9f5c75bd513580d630817cd39179fd41e5ec36f6" datatype="html"> | 3616 | <trans-unit id="9f5c75bd513580d630817cd39179fd41e5ec36f6" datatype="html"> |
3480 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> blocked videos</source> | 3617 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> blocked videos</source> |
3481 | <target state="new">Showing | 3618 | <target state="new">Showing |
@@ -3483,158 +3620,158 @@ The link will expire within 1 hour.</target> | |||
3483 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 3620 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
3484 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> blocked videos | 3621 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> blocked videos |
3485 | </target> | 3622 | </target> |
3486 | 3623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">10</context></context-group> | |
3487 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3624 | </trans-unit> |
3488 | <trans-unit id="24968c3b9f7cb940df7e5bf46f61a11710481829" datatype="html"> | 3625 | <trans-unit id="24968c3b9f7cb940df7e5bf46f61a11710481829" datatype="html"> |
3489 | <source>Reports</source> | 3626 | <source>Reports</source> |
3490 | <target state="new">Reports</target> | 3627 | <target state="new">Reports</target> |
3491 | 3628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
3492 | 3629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/abuse-list/abuse-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
3493 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/abuse-list/abuse-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3630 | </trans-unit> |
3494 | <trans-unit id="bb863c794307735652d8695143e116eaee8a3c4f"> | 3631 | <trans-unit id="bb863c794307735652d8695143e116eaee8a3c4f"> |
3495 | <source>Moderation comment</source> | 3632 | <source>Moderation comment</source> |
3496 | <target state="new">Moderation comment</target> | 3633 | <target state="new">Moderation comment</target> |
3497 | 3634 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">3</context></context-group> | |
3498 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3635 | </trans-unit> |
3499 | <trans-unit id="5731e5d5ac989bf08848b5a57a5586cf84d80964"> | 3636 | <trans-unit id="5731e5d5ac989bf08848b5a57a5586cf84d80964"> |
3500 | <source>This comment can only be seen by you or the other moderators.</source> | 3637 | <source>This comment can only be seen by you or the other moderators.</source> |
3501 | <target> | 3638 | <target> |
3502 | Tento komentář můžete vidět pouze vy nebo ostatní moderátoři. | 3639 | Tento komentář můžete vidět pouze vy nebo ostatní moderátoři. |
3503 | </target> | 3640 | </target> |
3504 | 3641 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">21</context></context-group> | |
3505 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 3642 | </trans-unit> |
3506 | <trans-unit id="0562e455c88234829f3c27a38f3039f027bfd5d2"> | 3643 | <trans-unit id="0562e455c88234829f3c27a38f3039f027bfd5d2"> |
3507 | <source>Update this comment</source> | 3644 | <source>Update this comment</source> |
3508 | <target>Aktualizovat tento komentář</target> | 3645 | <target>Aktualizovat tento komentář</target> |
3509 | 3646 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">31</context></context-group> | |
3510 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 3647 | </trans-unit> |
3511 | <trans-unit id="f7753a5d0baa909f5860eb49e14c41fc4ae00fb4" datatype="html"> | 3648 | <trans-unit id="f7753a5d0baa909f5860eb49e14c41fc4ae00fb4" datatype="html"> |
3512 | <source>Advanced report filters</source> | 3649 | <source>Advanced report filters</source> |
3513 | <target state="new">Advanced report filters</target> | 3650 | <target state="new">Advanced report filters</target> |
3514 | 3651 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">18</context></context-group> | |
3515 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 3652 | </trans-unit> |
3516 | <trans-unit id="006dd388f1d14f58c33fb4ed4bb05a1dfbc42ffa" datatype="html"> | 3653 | <trans-unit id="006dd388f1d14f58c33fb4ed4bb05a1dfbc42ffa" datatype="html"> |
3517 | <source>Unsolved reports</source> | 3654 | <source>Unsolved reports</source> |
3518 | <target state="new">Unsolved reports</target> | 3655 | <target state="new">Unsolved reports</target> |
3519 | 3656 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">19</context></context-group> | |
3520 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 3657 | </trans-unit> |
3521 | <trans-unit id="dee7eb63010b67c2464dd7987307e85369f24b9d" datatype="html"> | 3658 | <trans-unit id="dee7eb63010b67c2464dd7987307e85369f24b9d" datatype="html"> |
3522 | <source>Accepted reports</source> | 3659 | <source>Accepted reports</source> |
3523 | <target state="new">Accepted reports</target> | 3660 | <target state="new">Accepted reports</target> |
3524 | 3661 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">20</context></context-group> | |
3525 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 3662 | </trans-unit> |
3526 | <trans-unit id="8140a31650a8a974acaf9f7e88cfb246ed6c9314" datatype="html"> | 3663 | <trans-unit id="8140a31650a8a974acaf9f7e88cfb246ed6c9314" datatype="html"> |
3527 | <source>Refused reports</source> | 3664 | <source>Refused reports</source> |
3528 | <target state="new">Refused reports</target> | 3665 | <target state="new">Refused reports</target> |
3529 | 3666 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">21</context></context-group> | |
3530 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 3667 | </trans-unit> |
3531 | <trans-unit id="1f5ed7018178a08c8eb17305833874a976fa428c" datatype="html"> | 3668 | <trans-unit id="1f5ed7018178a08c8eb17305833874a976fa428c" datatype="html"> |
3532 | <source>Reports with blocked videos</source> | 3669 | <source>Reports with blocked videos</source> |
3533 | <target state="new">Reports with blocked videos</target> | 3670 | <target state="new">Reports with blocked videos</target> |
3534 | 3671 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">22</context></context-group> | |
3535 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 3672 | </trans-unit> |
3536 | <trans-unit id="2f536bc37b142c0376631cefb992151fb733ce48" datatype="html"> | 3673 | <trans-unit id="2f536bc37b142c0376631cefb992151fb733ce48" datatype="html"> |
3537 | <source>Reports with deleted videos</source> | 3674 | <source>Reports with deleted videos</source> |
3538 | <target state="new">Reports with deleted videos</target> | 3675 | <target state="new">Reports with deleted videos</target> |
3539 | 3676 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">23</context></context-group> | |
3540 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 3677 | </trans-unit> |
3541 | <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2"> | 3678 | <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2"> |
3542 | <source>Reporter</source> | 3679 | <source>Reporter</source> |
3543 | <target>Autor nahlášení</target> | 3680 | <target>Autor nahlášení</target> |
3544 | 3681 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">41</context></context-group> | |
3545 | 3682 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">7</context></context-group> | |
3546 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 3683 | </trans-unit> |
3547 | <trans-unit id="fd7b8e728c25b616934661747224b1b2e7d9ea5c" datatype="html"> | 3684 | <trans-unit id="fd7b8e728c25b616934661747224b1b2e7d9ea5c" datatype="html"> |
3548 | <source> <x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 3685 | <source><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
3549 | <target state="new"> | 3686 | <target state="new"> |
3550 | <x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {...} other {...}}"/> | 3687 | <x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {...} other {...}}"/> |
3551 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> | 3688 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> |
3552 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> | 3689 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> |
3553 | </target> | 3690 | </target> |
3554 | 3691 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">27</context></context-group> | |
3555 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | 3692 | </trans-unit> |
3556 | <trans-unit id="fe8634bd713368d7971877c0e09d1869f09c924d" datatype="html"> | 3693 | <trans-unit id="fe8634bd713368d7971877c0e09d1869f09c924d" datatype="html"> |
3557 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> | 3694 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> |
3558 | <target state="new">{VAR_PLURAL, plural, =1 {1 report} other { | 3695 | <target state="new">{VAR_PLURAL, plural, =1 {1 report} other { |
3559 | <x id="INTERPOLATION" equiv-text="{{ abuse.countReportsForReporter }}"/> reports} } | 3696 | <x id="INTERPOLATION" equiv-text="{{ abuse.countReportsForReporter }}"/> reports} } |
3560 | </target> | 3697 | </target> |
3561 | 3698 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">27</context></context-group> | |
3562 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | 3699 | </trans-unit> |
3563 | <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4"> | 3700 | <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4"> |
3564 | <source>Video</source> | 3701 | <source>Video</source> |
3565 | <target>Video</target> | 3702 | <target>Video</target> |
3566 | 3703 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">18</context></context-group> | |
3567 | 3704 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">20</context></context-group> | |
3568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit><trans-unit id="5a5d7ee2acbfa9c91ab7f41d26bda9ff0cafe42f" datatype="html"> | 3705 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">60</context></context-group> |
3569 | <source>Comment</source><target state="new">Comment</target> | 3706 | </trans-unit> |
3570 | 3707 | <trans-unit id="5a5d7ee2acbfa9c91ab7f41d26bda9ff0cafe42f" datatype="html"> | |
3571 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> | 3708 | <source>Comment</source> |
3709 | <target state="new">Comment</target> | ||
3710 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">61</context></context-group> | ||
3711 | </trans-unit> | ||
3572 | <trans-unit id="dee48932053451ee2dfafe5500a5262cd4220d5e" datatype="html"> | 3712 | <trans-unit id="dee48932053451ee2dfafe5500a5262cd4220d5e" datatype="html"> |
3573 | <source>This video has been reported multiple times.</source> | 3713 | <source>This video has been reported multiple times.</source> |
3574 | <target state="new">This video has been reported multiple times.</target> | 3714 | <target state="new">This video has been reported multiple times.</target> |
3575 | 3715 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">95</context></context-group> | |
3576 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit> | 3716 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">95</context></context-group> |
3717 | </trans-unit> | ||
3577 | <trans-unit id="e9a289d014e33a5a45e1cf47131074f50abb7c18" datatype="html"> | 3718 | <trans-unit id="e9a289d014e33a5a45e1cf47131074f50abb7c18" datatype="html"> |
3578 | <source>The video was blocked</source> | 3719 | <source>The video was blocked</source> |
3579 | <target state="new">The video was blocked</target> | 3720 | <target state="new">The video was blocked</target> |
3580 | 3721 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">104</context></context-group> | |
3581 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">104</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 3722 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">104</context></context-group> |
3723 | </trans-unit> | ||
3582 | <trans-unit id="e186aa4dc511ff4347ec5304691000e3e0a4a048" datatype="html"> | 3724 | <trans-unit id="e186aa4dc511ff4347ec5304691000e3e0a4a048" datatype="html"> |
3583 | <source>by <x id="INTERPOLATION"/> on <x id="INTERPOLATION_1"/> </source> | 3725 | <source>by <x id="INTERPOLATION"/> on <x id="INTERPOLATION_1"/> </source> |
3584 | <target state="new">by | 3726 | <target state="new">by |
3585 | <x id="INTERPOLATION" equiv-text="{{ abuse.video.channel?.displayName }}"/> on | 3727 | <x id="INTERPOLATION" equiv-text="{{ abuse.video.channel?.displayName }}"/> on |
3586 | <x id="INTERPOLATION_1" equiv-text="{{ abuse.video.channel?.host }}"/> | 3728 | <x id="INTERPOLATION_1" equiv-text="{{ abuse.video.channel?.host }}"/> |
3587 | </target> | 3729 | </target> |
3588 | 3730 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">107</context></context-group> | |
3589 | 3731 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">124</context></context-group> | |
3590 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">107</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">124</context></context-group></trans-unit> | 3732 | </trans-unit> |
3591 | <trans-unit id="b0a337363ec610cf41744167b12f020e141a4617" datatype="html"> | 3733 | <trans-unit id="b0a337363ec610cf41744167b12f020e141a4617" datatype="html"> |
3592 | <source>Video was deleted</source> | 3734 | <source>Video was deleted</source> |
3593 | <target state="new">Video was deleted</target> | 3735 | <target state="new">Video was deleted</target> |
3594 | 3736 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">114</context></context-group> | |
3595 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">114</context></context-group></trans-unit> | 3737 | </trans-unit> |
3596 | <trans-unit id="c45d28b67fd917b804defbf9e465ec1abe0c67da" datatype="html"> | 3738 | <trans-unit id="c45d28b67fd917b804defbf9e465ec1abe0c67da" datatype="html"> |
3597 | <source> | 3739 | <source>Account deleted</source> |
3598 | Account deleted | ||
3599 | </source> | ||
3600 | <target state="new"> | 3740 | <target state="new"> |
3601 | Account deleted | 3741 | Account deleted |
3602 | </target> | 3742 | </target> |
3603 | 3743 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">150</context></context-group> | |
3604 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">150</context></context-group></trans-unit> | 3744 | </trans-unit> |
3605 | <trans-unit id="c1074e8c49b3cdfaeb7fcaf8cb27e44139389e29" datatype="html"> | 3745 | <trans-unit id="c1074e8c49b3cdfaeb7fcaf8cb27e44139389e29" datatype="html"> |
3606 | <source>Open video in a new tab</source> | 3746 | <source>Open video in a new tab</source> |
3607 | <target state="new">Open video in a new tab</target> | 3747 | <target state="new">Open video in a new tab</target> |
3608 | 3748 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">49</context></context-group> | |
3609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 3749 | </trans-unit> |
3610 | <trans-unit id="7e7ad19f1bcc2c33cdba4c1ad25e2b398ad453d9"> | 3750 | <trans-unit id="7e7ad19f1bcc2c33cdba4c1ad25e2b398ad453d9"> |
3611 | <source>State <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3751 | <source>State <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3612 | <target>Stav | 3752 | <target>Stav <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> |
3613 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 3753 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">44</context></context-group> |
3614 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 3754 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">36</context></context-group> |
3615 | </target> | 3755 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">29</context></context-group> |
3616 | 3756 | </trans-unit> | |
3617 | |||
3618 | |||
3619 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | ||
3620 | <trans-unit id="ea965d544a7dfd8185064c52cdfff553cf94d585" datatype="html"> | 3757 | <trans-unit id="ea965d544a7dfd8185064c52cdfff553cf94d585" datatype="html"> |
3621 | <source>Messages</source> | 3758 | <source>Messages</source> |
3622 | <target state="new">Messages</target> | 3759 | <target state="new">Messages</target> |
3623 | 3760 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">45</context></context-group> | |
3624 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 3761 | </trans-unit> |
3625 | <trans-unit id="31b1d714a41f00a1347b78884eee465b1d90f7e1" datatype="html"> | 3762 | <trans-unit id="31b1d714a41f00a1347b78884eee465b1d90f7e1" datatype="html"> |
3626 | <source>Internal note</source> | 3763 | <source>Internal note</source> |
3627 | <target state="new">Internal note</target> | 3764 | <target state="new">Internal note</target> |
3628 | 3765 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">46</context></context-group> | |
3629 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 3766 | </trans-unit> |
3630 | <trans-unit id="9a7b523cbbebabeb9b10482291b58c52825a4b05" datatype="html"> | 3767 | <trans-unit id="9a7b523cbbebabeb9b10482291b58c52825a4b05" datatype="html"> |
3631 | <source>Score <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3768 | <source>Score <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3632 | <target state="new">Score | 3769 | <target state="new">Score |
3633 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 3770 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
3634 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 3771 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
3635 | </target> | 3772 | </target> |
3636 | 3773 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">30</context></context-group> | |
3637 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 3774 | </trans-unit> |
3638 | <trans-unit id="8d1011bd5b502c857858a97d074118377d8fe714" datatype="html"> | 3775 | <trans-unit id="8d1011bd5b502c857858a97d074118377d8fe714" datatype="html"> |
3639 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> reports</source> | 3776 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> reports</source> |
3640 | <target state="new">Showing | 3777 | <target state="new">Showing |
@@ -3642,79 +3779,79 @@ The link will expire within 1 hour.</target> | |||
3642 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 3779 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
3643 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> reports | 3780 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> reports |
3644 | </target> | 3781 | </target> |
3645 | 3782 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">5</context></context-group> | |
3646 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 3783 | </trans-unit> |
3647 | <trans-unit id="4dbabcc6e79125d4b798ba8139a40202db712475" datatype="html"> | 3784 | <trans-unit id="4dbabcc6e79125d4b798ba8139a40202db712475" datatype="html"> |
3648 | <source>Reportee</source> | 3785 | <source>Reportee</source> |
3649 | <target state="new">Reportee</target> | 3786 | <target state="new">Reportee</target> |
3650 | 3787 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">33</context></context-group> | |
3651 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 3788 | </trans-unit> |
3652 | <trans-unit id="da3ebfaee320ad7a8a41c75d6ee19e687f9b484d" datatype="html"> | 3789 | <trans-unit id="da3ebfaee320ad7a8a41c75d6ee19e687f9b484d" datatype="html"> |
3653 | <source> <x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {1 report} other {{{ abuse.countReportsForReportee }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 3790 | <source><x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {1 report} other {{{ abuse.countReportsForReportee }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
3654 | <target state="new"> | 3791 | <target state="new"> |
3655 | <x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {...} other {...}}"/> | 3792 | <x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {...} other {...}}"/> |
3656 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> | 3793 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> |
3657 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> | 3794 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> |
3658 | </target> | 3795 | </target> |
3659 | 3796 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">52</context></context-group> | |
3660 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 3797 | </trans-unit> |
3661 | <trans-unit id="bdd37f55632abc18fb1fbf95d4b3f5f89ce3237b" datatype="html"> | 3798 | <trans-unit id="bdd37f55632abc18fb1fbf95d4b3f5f89ce3237b" datatype="html"> |
3662 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> | 3799 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> |
3663 | <target state="new">{VAR_PLURAL, plural, =1 {1 report} other { | 3800 | <target state="new">{VAR_PLURAL, plural, =1 {1 report} other { |
3664 | <x id="INTERPOLATION" equiv-text="{{ abuse.countReportsForReportee }}"/> reports} } | 3801 | <x id="INTERPOLATION" equiv-text="{{ abuse.countReportsForReportee }}"/> reports} } |
3665 | </target> | 3802 | </target> |
3666 | 3803 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">52</context></context-group> | |
3667 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 3804 | </trans-unit> |
3668 | <trans-unit id="9da0107a35751e722c8b4bca7636fc7645dbdbdc" datatype="html"> | 3805 | <trans-unit id="9da0107a35751e722c8b4bca7636fc7645dbdbdc" datatype="html"> |
3669 | <source>Updated</source> | 3806 | <source>Updated</source> |
3670 | <target state="new">Updated</target> | 3807 | <target state="new">Updated</target> |
3671 | 3808 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">58</context></context-group> | |
3672 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 3809 | </trans-unit> |
3673 | <trans-unit id="a3ae5c724857d00c006273db314041ab0664c269" datatype="html"> | 3810 | <trans-unit id="a3ae5c724857d00c006273db314041ab0664c269" datatype="html"> |
3674 | <source>Mute domain</source> | 3811 | <source>Mute domain</source> |
3675 | <target state="new">Mute domain</target> | 3812 | <target state="new">Mute domain</target> |
3676 | 3813 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">17</context></context-group> | |
3677 | 3814 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">17</context></context-group> | |
3678 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 3815 | </trans-unit> |
3679 | <trans-unit id="ff78f059449d44322f627d0f66df07abe476962b"> | 3816 | <trans-unit id="ff78f059449d44322f627d0f66df07abe476962b"> |
3680 | <source>Instance</source> | 3817 | <source>Instance</source> |
3681 | <target>Instance</target> | 3818 | <target>Instance</target> |
3682 | 3819 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">165</context></context-group> | |
3683 | 3820 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">35</context></context-group> | |
3684 | 3821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">5</context></context-group> | |
3685 | 3822 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">35</context></context-group> | |
3686 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">165</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">5</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 3823 | </trans-unit> |
3687 | <trans-unit id="079e99cce11c87b142e80fdd14dae98a61012fc4"> | 3824 | <trans-unit id="079e99cce11c87b142e80fdd14dae98a61012fc4"> |
3688 | <source>Muted at <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3825 | <source>Muted at <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3689 | <target state="new">Muted at | 3826 | <target state="new">Muted at |
3690 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 3827 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
3691 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 3828 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
3692 | </target> | 3829 | </target> |
3693 | 3830 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">36</context></context-group> | |
3694 | 3831 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">29</context></context-group> | |
3695 | 3832 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">29</context></context-group> | |
3696 | 3833 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">36</context></context-group> | |
3697 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 3834 | </trans-unit> |
3698 | <trans-unit id="1f689fada9748a830117f5b429a88ef8629082a8"> | 3835 | <trans-unit id="1f689fada9748a830117f5b429a88ef8629082a8"> |
3699 | <source>Unmute</source> | 3836 | <source>Unmute</source> |
3700 | <target>Zhlasitit</target> | 3837 | <target>Zhlasitit</target> |
3701 | 3838 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">43</context></context-group> | |
3702 | 3839 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">36</context></context-group> | |
3703 | 3840 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">36</context></context-group> | |
3704 | 3841 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">43</context></context-group> | |
3705 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | 3842 | </trans-unit> |
3706 | <trans-unit id="4cac34ce105daa25964c217fdf0515a0a6ee5db9" datatype="html"> | 3843 | <trans-unit id="4cac34ce105daa25964c217fdf0515a0a6ee5db9" datatype="html"> |
3707 | <source>No server found matching current filters.</source> | 3844 | <source>No server found matching current filters.</source> |
3708 | <target state="new">No server found matching current filters.</target> | 3845 | <target state="new">No server found matching current filters.</target> |
3709 | 3846 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">59</context></context-group> | |
3710 | 3847 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">59</context></context-group> | |
3711 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">59</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 3848 | </trans-unit> |
3712 | <trans-unit id="0ba22bd964baaf0c2f85d6731fccca31dbf06dae" datatype="html"> | 3849 | <trans-unit id="0ba22bd964baaf0c2f85d6731fccca31dbf06dae" datatype="html"> |
3713 | <source>No server found.</source> | 3850 | <source>No server found.</source> |
3714 | <target state="new">No server found.</target> | 3851 | <target state="new">No server found.</target> |
3715 | 3852 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">60</context></context-group> | |
3716 | 3853 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">60</context></context-group> | |
3717 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">60</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 3854 | </trans-unit> |
3718 | <trans-unit id="60cdb933d2c7051f3b5b23f9e5f8c83fa861b220" datatype="html"> | 3855 | <trans-unit id="60cdb933d2c7051f3b5b23f9e5f8c83fa861b220" datatype="html"> |
3719 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted instances</source> | 3856 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted instances</source> |
3720 | <target state="new">Showing | 3857 | <target state="new">Showing |
@@ -3722,51 +3859,56 @@ The link will expire within 1 hour.</target> | |||
3722 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 3859 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
3723 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> muted instances | 3860 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> muted instances |
3724 | </target> | 3861 | </target> |
3725 | 3862 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">10</context></context-group> | |
3726 | 3863 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">10</context></context-group> | |
3727 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">10</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3864 | </trans-unit> |
3728 | <trans-unit id="2aebea85561b74dd33ae2481bb942b8c4beb5524" datatype="html"> | 3865 | <trans-unit id="2aebea85561b74dd33ae2481bb942b8c4beb5524" datatype="html"> |
3729 | <source> | 3866 | <source>It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers.</source> |
3730 | It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers. | ||
3731 | </source> | ||
3732 | <target state="new"> | 3867 | <target state="new"> |
3733 | It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers. | 3868 | It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers. |
3734 | </target> | 3869 | </target> |
3735 | 3870 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">85</context></context-group> | |
3736 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 3871 | </trans-unit> |
3737 | <trans-unit id="c7b73cded84adfa978aae675417f4bb688631a71" datatype="html"> | 3872 | <trans-unit id="c7b73cded84adfa978aae675417f4bb688631a71" datatype="html"> |
3738 | <source>Mute domains</source> | 3873 | <source>Mute domains</source> |
3739 | <target state="new">Mute domains</target> | 3874 | <target state="new">Mute domains</target> |
3740 | 3875 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">67</context></context-group> | |
3741 | 3876 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">67</context></context-group> | |
3742 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> | 3877 | </trans-unit> |
3743 | <trans-unit id="29881a45dafbe5aa05cd9d0441a4c0c2fb06df92"> | 3878 | <trans-unit id="29881a45dafbe5aa05cd9d0441a4c0c2fb06df92"> |
3744 | <source>Account</source> | 3879 | <source>Account</source> |
3745 | <target>Účet</target> | 3880 | <target>Účet</target> |
3746 | 3881 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">28</context></context-group> | |
3747 | 3882 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">28</context></context-group> | |
3748 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 3883 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">59</context></context-group> |
3884 | </trans-unit> | ||
3749 | <trans-unit id="33c4091a2a2438ba655caa47ede7f7a82f5f0297" datatype="html"> | 3885 | <trans-unit id="33c4091a2a2438ba655caa47ede7f7a82f5f0297" datatype="html"> |
3750 | <source>No account found matching current filters.</source> | 3886 | <source>No account found matching current filters.</source> |
3751 | <target state="new">No account found matching current filters.</target> | 3887 | <target state="new">No account found matching current filters.</target> |
3752 | 3888 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">63</context></context-group> | |
3753 | 3889 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">63</context></context-group> | |
3754 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">63</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">63</context></context-group></trans-unit> | 3890 | </trans-unit> |
3755 | <trans-unit id="5d3b267bc054bb6b5743dd3d46ee58cff5141697" datatype="html"> | 3891 | <trans-unit id="5d3b267bc054bb6b5743dd3d46ee58cff5141697" datatype="html"> |
3756 | <source>No account found.</source> | 3892 | <source>No account found.</source> |
3757 | <target state="new">No account found.</target> | 3893 | <target state="new">No account found.</target> |
3758 | 3894 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group> | |
3759 | 3895 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group> | |
3760 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/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"> | 3896 | </trans-unit> |
3761 | <source>List installed plugins</source><target state="new">List installed plugins</target> | 3897 | <trans-unit id="2338185419645468935" datatype="html"> |
3762 | 3898 | <source>List installed plugins</source> | |
3763 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">28</context></context-group></trans-unit><trans-unit id="8897412584195581488" datatype="html"> | 3899 | <target state="new">List installed plugins</target> |
3764 | <source>Search plugins</source><target state="new">Search plugins</target> | 3900 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">28</context></context-group> |
3765 | 3901 | </trans-unit> | |
3766 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">37</context></context-group></trans-unit><trans-unit id="4994333937800672218" datatype="html"> | 3902 | <trans-unit id="8897412584195581488" datatype="html"> |
3767 | <source>Show plugin</source><target state="new">Show plugin</target> | 3903 | <source>Search plugins</source> |
3768 | 3904 | <target state="new">Search plugins</target> | |
3769 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 3905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">37</context></context-group> |
3906 | </trans-unit> | ||
3907 | <trans-unit id="4994333937800672218" datatype="html"> | ||
3908 | <source>Show plugin</source> | ||
3909 | <target state="new">Show plugin</target> | ||
3910 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">46</context></context-group> | ||
3911 | </trans-unit> | ||
3770 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3912 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3771 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3913 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3772 | <target state="new">Showing | 3914 | <target state="new">Showing |
@@ -3774,572 +3916,616 @@ The link will expire within 1 hour.</target> | |||
3774 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 3916 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
3775 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> muted accounts | 3917 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> muted accounts |
3776 | </target> | 3918 | </target> |
3777 | 3919 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">10</context></context-group> | |
3778 | 3920 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">10</context></context-group> | |
3779 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">10</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3921 | </trans-unit> |
3780 | <trans-unit id="8259696070728377358" datatype="html"> | 3922 | <trans-unit id="8259696070728377358" datatype="html"> |
3781 | <source>Plugins/Themes</source> | 3923 | <source>Plugins/Themes</source> |
3782 | <target state="new">Plugins/Themes</target> | 3924 | <target state="new">Plugins/Themes</target> |
3783 | 3925 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">99</context></context-group> | |
3784 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">99</context></context-group></trans-unit> | 3926 | </trans-unit> |
3785 | <trans-unit id="86288c2ac6b43ed195f0bc8bce825a3ab8151b71" datatype="html"> | 3927 | <trans-unit id="86288c2ac6b43ed195f0bc8bce825a3ab8151b71" datatype="html"> |
3786 | <source>Installed</source> | 3928 | <source>Installed</source> |
3787 | <target state="new">Installed</target> | 3929 | <target state="new">Installed</target> |
3788 | 3930 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">3</context></context-group> | |
3789 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3931 | </trans-unit> |
3790 | <trans-unit id="5a329cfc387d2231434afc2842ff649392da8921" datatype="html"> | 3932 | <trans-unit id="5a329cfc387d2231434afc2842ff649392da8921" datatype="html"> |
3791 | <source>Plugin homepage (new window)</source> | 3933 | <source>Plugin homepage (new window)</source> |
3792 | <target state="new">Plugin homepage (new window)</target> | 3934 | <target state="new">Plugin homepage (new window)</target> |
3793 | 3935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">40</context></context-group> | |
3794 | 3936 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">17</context></context-group> | |
3795 | 3937 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">21</context></context-group> | |
3796 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">40</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 3938 | </trans-unit> |
3797 | <trans-unit id="7e892ba15f2c6c17e83510e273b3e10fc32ea016"> | 3939 | <trans-unit id="7e892ba15f2c6c17e83510e273b3e10fc32ea016"> |
3798 | <source>Search</source> | 3940 | <source>Search</source> |
3799 | <target>Hledat</target> | 3941 | <target>Hledat</target> |
3800 | 3942 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">8</context></context-group> | |
3801 | 3943 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">122</context></context-group> | |
3802 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">122</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 3944 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">5</context></context-group> |
3945 | </trans-unit> | ||
3803 | <trans-unit id="82c6fc1dfd67a87c2a9f54c221907d0d61c63b88" datatype="html"> | 3946 | <trans-unit id="82c6fc1dfd67a87c2a9f54c221907d0d61c63b88" datatype="html"> |
3804 | <source>Users can resolve distant content</source> | 3947 | <source>Users can resolve distant content</source> |
3805 | <target state="new">Users can resolve distant content</target> | 3948 | <target state="new">Users can resolve distant content</target> |
3806 | 3949 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">126</context></context-group> | |
3807 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 3950 | </trans-unit> |
3808 | <trans-unit id="0fab2b1e25b97842c52a6b95f139bda7e416fde6" datatype="html"> | 3951 | <trans-unit id="0fab2b1e25b97842c52a6b95f139bda7e416fde6" datatype="html"> |
3809 | <source>Close this message</source> | 3952 | <source>Close this message</source> |
3810 | <target state="new">Close this message</target> | 3953 | <target state="new">Close this message</target> |
3811 | 3954 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.html</context><context context-type="linenumber">34</context></context-group> | |
3812 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/app.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 3955 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.html</context><context context-type="linenumber">34</context></context-group> |
3956 | </trans-unit> | ||
3813 | <trans-unit id="121cc5391cd2a5115bc2b3160379ee5b36cd7716" datatype="html"> | 3957 | <trans-unit id="121cc5391cd2a5115bc2b3160379ee5b36cd7716" datatype="html"> |
3814 | <source>Settings</source> | 3958 | <source>Settings</source> |
3815 | <target state="new">Settings</target> | 3959 | <target state="new">Settings</target> |
3816 | 3960 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">1</context></context-group> | |
3817 | 3961 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">26</context></context-group> | |
3818 | 3962 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">26</context></context-group> | |
3819 | 3963 | </trans-unit> | |
3820 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">1</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | ||
3821 | <trans-unit id="3b79d221458541611e8508d3551dd1ddd76b49d9" datatype="html"> | 3964 | <trans-unit id="3b79d221458541611e8508d3551dd1ddd76b49d9" datatype="html"> |
3822 | <source>Display settings</source> | 3965 | <source>Display settings</source> |
3823 | <target state="new">Display settings</target> | 3966 | <target state="new">Display settings</target> |
3824 | 3967 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">10</context></context-group> | |
3825 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3968 | </trans-unit> |
3826 | <trans-unit id="1dfba504a0d0bf41da961d89d402dedecde5e30d" datatype="html"> | 3969 | <trans-unit id="1dfba504a0d0bf41da961d89d402dedecde5e30d" datatype="html"> |
3827 | <source>Uninstall</source> | 3970 | <source>Uninstall</source> |
3828 | <target state="new">Uninstall</target> | 3971 | <target state="new">Uninstall</target> |
3829 | 3972 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">32</context></context-group> | |
3830 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 3973 | </trans-unit> |
3831 | <trans-unit id="fcef699ec12dbd6fcf9881d527af2fd775ccfdc7" datatype="html"> | 3974 | <trans-unit id="fcef699ec12dbd6fcf9881d527af2fd775ccfdc7" datatype="html"> |
3832 | <source>To load your new installed plugins or themes, refresh the page.</source> | 3975 | <source>To load your new installed plugins or themes, refresh the page.</source> |
3833 | <target state="new"> | 3976 | <target state="new"> |
3834 | To load your new installed plugins or themes, refresh the page. | 3977 | To load your new installed plugins or themes, refresh the page. |
3835 | </target> | 3978 | </target> |
3836 | 3979 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">10</context></context-group> | |
3837 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3980 | </trans-unit> |
3838 | <trans-unit id="8fc026bb4b317bf3a6159c364818202f5bb95a4e" datatype="html"> | 3981 | <trans-unit id="8fc026bb4b317bf3a6159c364818202f5bb95a4e" datatype="html"> |
3839 | <source>Popular</source> | 3982 | <source>Popular</source> |
3840 | <target state="new">Popular</target> | 3983 | <target state="new">Popular</target> |
3841 | 3984 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">16</context></context-group> | |
3842 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 3985 | </trans-unit> |
3843 | <trans-unit id="2d336e3fe6d5d0cb687ea6413890930b3d709005" datatype="html"> | 3986 | <trans-unit id="2d336e3fe6d5d0cb687ea6413890930b3d709005" datatype="html"> |
3844 | <source> <x id="INTERPOLATION" equiv-text=" {{ pagination.totalIt"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}"/> for "<x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" </source> | 3987 | <source><x id="INTERPOLATION" equiv-text=" {{ pagination.totalIt"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}"/> for "<x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" </source> |
3845 | <target state="new"> | 3988 | <target state="new"> |
3846 | <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> | 3989 | <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> |
3847 | <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {...} other {...}}"/> for " | 3990 | <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {...} other {...}}"/> for " |
3848 | <x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" | 3991 | <x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" |
3849 | 3992 | ||
3850 | </target> | 3993 | </target> |
3851 | 3994 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">22</context></context-group> | |
3852 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 3995 | </trans-unit> |
3853 | <trans-unit id="16e81be2315b29492395d99ba53a83e770430494" datatype="html"> | 3996 | <trans-unit id="16e81be2315b29492395d99ba53a83e770430494" datatype="html"> |
3854 | <source>{VAR_PLURAL, plural, =1 {result} other {results} }</source> | 3997 | <source>{VAR_PLURAL, plural, =1 {result} other {results} }</source> |
3855 | <target state="new">{VAR_PLURAL, plural, =1 {result} other {results} }</target> | 3998 | <target state="new">{VAR_PLURAL, plural, =1 {result} other {results} }</target> |
3856 | 3999 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">5</context></context-group> | |
3857 | 4000 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">23</context></context-group> | |
3858 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">5</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 4001 | </trans-unit> |
3859 | <trans-unit id="b1363973a9482c7b0a7c4a1d066fd64625d40207" datatype="html"> | 4002 | <trans-unit id="b1363973a9482c7b0a7c4a1d066fd64625d40207" datatype="html"> |
3860 | <source>No results.</source> | 4003 | <source>No results.</source> |
3861 | <target state="new"> | 4004 | <target state="new"> |
3862 | No results. | 4005 | No results. |
3863 | </target> | 4006 | </target> |
3864 | 4007 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">29</context></context-group> | |
3865 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 4008 | </trans-unit> |
3866 | <trans-unit id="fc06c11db79db253b0d0f1b070cf48e039e8a3a8" datatype="html"> | 4009 | <trans-unit id="fc06c11db79db253b0d0f1b070cf48e039e8a3a8" datatype="html"> |
3867 | <source>Plugin npm package (new window)</source> | 4010 | <source>Plugin npm package (new window)</source> |
3868 | <target state="new">Plugin npm package (new window)</target> | 4011 | <target state="new">Plugin npm package (new window)</target> |
3869 | 4012 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">44</context></context-group> | |
3870 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> | 4013 | </trans-unit> |
3871 | <trans-unit id="ba504ef7da4384f035fc148de2d121322aaa7407" datatype="html"> | 4014 | <trans-unit id="ba504ef7da4384f035fc148de2d121322aaa7407" datatype="html"> |
3872 | <source> This <x id="INTERPOLATION"/> does not have settings. </source> | 4015 | <source>This <x id="INTERPOLATION"/> does not have settings. </source> |
3873 | <target state="new"> | 4016 | <target state="new"> |
3874 | This | 4017 | This |
3875 | <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings. | 4018 | <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings. |
3876 | 4019 | ||
3877 | </target> | 4020 | </target> |
3878 | 4021 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context><context context-type="linenumber">16</context></context-group> | |
3879 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 4022 | </trans-unit> |
3880 | <trans-unit id="29832309535656200"> | 4023 | <trans-unit id="29832309535656200"> |
3881 | <source>System</source> | 4024 | <source>System</source> |
3882 | <target>Systém</target> | 4025 | <target>Systém</target> |
3883 | 4026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">103</context></context-group> | |
3884 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | 4027 | </trans-unit> |
3885 | <trans-unit id="43f1cc191ebc0b8ce89f6916aa634f5a57158798"> | 4028 | <trans-unit id="43f1cc191ebc0b8ce89f6916aa634f5a57158798"> |
3886 | <source>Jobs</source> | 4029 | <source>Jobs</source> |
3887 | <target>Úlohy</target> | 4030 | <target>Úlohy</target> |
3888 | 4031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">3</context></context-group> | |
3889 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 4032 | </trans-unit> |
3890 | <trans-unit id="eb3d5aefff38a814b76da74371cbf02c0789a1ef"> | 4033 | <trans-unit id="eb3d5aefff38a814b76da74371cbf02c0789a1ef"> |
3891 | <source>Logs</source> | 4034 | <source>Logs</source> |
3892 | <target>Protokoly</target> | 4035 | <target>Protokoly</target> |
3893 | 4036 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">5</context></context-group> | |
3894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 4037 | </trans-unit> |
3895 | <trans-unit id="dcfc990a822e11feb00eb91d9cf4d6ec0ed37dd0"> | 4038 | <trans-unit id="dcfc990a822e11feb00eb91d9cf4d6ec0ed37dd0"> |
3896 | <source>Debug</source> | 4039 | <source>Debug</source> |
3897 | <target state="new">Debug</target> | 4040 | <target state="new">Debug</target> |
3898 | 4041 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">7</context></context-group> | |
3899 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit><trans-unit id="8949443215142664126" datatype="html"> | 4042 | </trans-unit> |
3900 | <source>Delete this comment</source><target state="new">Delete this comment</target> | 4043 | <trans-unit id="8949443215142664126" datatype="html"> |
3901 | 4044 | <source>Delete this comment</source> | |
3902 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">65</context></context-group></trans-unit><trans-unit id="3327751240218085797" datatype="html"> | 4045 | <target state="new">Delete this comment</target> |
3903 | <source>Delete all comments of this account</source><target state="new">Delete all comments of this account</target> | 4046 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">65</context></context-group> |
3904 | 4047 | </trans-unit> | |
3905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">71</context></context-group></trans-unit><trans-unit id="2850960459131251840" datatype="html"> | 4048 | <trans-unit id="3327751240218085797" datatype="html"> |
3906 | <source>Comments are deleted after a few minutes</source><target state="new">Comments are deleted after a few minutes</target> | 4049 | <source>Delete all comments of this account</source> |
3907 | 4050 | <target state="new">Delete all comments of this account</target> | |
3908 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">72</context></context-group></trans-unit><trans-unit id="545410448674339480" datatype="html"> | 4051 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">71</context></context-group> |
3909 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source><target state="new"><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</target> | 4052 | </trans-unit> |
4053 | <trans-unit id="2850960459131251840" datatype="html"> | ||
4054 | <source>Comments are deleted after a few minutes</source> | ||
4055 | <target state="new">Comments are deleted after a few minutes</target> | ||
4056 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">72</context></context-group> | ||
4057 | </trans-unit> | ||
4058 | <trans-unit id="545410448674339480" datatype="html"> | ||
4059 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> | ||
4060 | <target state="new"><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</target> | ||
3910 | <context-group purpose="location"> | 4061 | <context-group purpose="location"> |
3911 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | 4062 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> |
3912 | <context context-type="linenumber">137</context> | 4063 | <context context-type="linenumber">137</context> |
3913 | </context-group> | 4064 | </context-group> |
3914 | </trans-unit><trans-unit id="379090446060940062" datatype="html"> | 4065 | </trans-unit> |
3915 | <source>Do you really want to delete all comments of <x id="PH"/>?</source><target state="new">Do you really want to delete all comments of <x id="PH"/>?</target> | 4066 | <trans-unit id="379090446060940062" datatype="html"> |
3916 | 4067 | <source>Do you really want to delete all comments of <x id="PH"/>?</source> | |
3917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">157</context></context-group></trans-unit><trans-unit id="4539246224625965241" datatype="html"> | 4068 | <target state="new">Do you really want to delete all comments of <x id="PH"/>?</target> |
3918 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source><target state="new">Comments of <x id="PH"/> will be deleted in a few minutes</target> | 4069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">157</context></context-group> |
3919 | 4070 | </trans-unit> | |
3920 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="5b8782215fc5ae41cbbb41f92509192b66ee1246" datatype="html"> | 4071 | <trans-unit id="4539246224625965241" datatype="html"> |
3921 | <source>Video comments</source><target state="new">Video comments</target> | 4072 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source> |
3922 | 4073 | <target state="new">Comments of <x id="PH"/> will be deleted in a few minutes</target> | |
3923 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit><trans-unit id="e92e448d39ae2bbd73d8f44d2f167019fe45a622" datatype="html"> | 4074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">169</context></context-group> |
3924 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</source><target state="new">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</target> | 4075 | </trans-unit> |
3925 | 4076 | <trans-unit id="5b8782215fc5ae41cbbb41f92509192b66ee1246" datatype="html"> | |
3926 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="ebdc173a9acc638a634724d31684849ce15778c8" datatype="html"> | 4077 | <source>Video comments</source> |
3927 | <source>Advanced comments filters</source><target state="new">Advanced comments filters</target> | 4078 | <target state="new">Video comments</target> |
3928 | 4079 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
3929 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit><trans-unit id="1f689bd2c3f3cfac3c800799545786e56aa5156d" datatype="html"> | 4080 | </trans-unit> |
3930 | <source>Local comments</source><target state="new">Local comments</target> | 4081 | <trans-unit id="e92e448d39ae2bbd73d8f44d2f167019fe45a622" datatype="html"> |
3931 | 4082 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</source> | |
3932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit><trans-unit id="3c770e01673ea017697b8c8a4feb63aefdd1f999" datatype="html"> | 4083 | <target state="new">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</target> |
3933 | <source>Remote comments</source><target state="new">Remote comments</target> | 4084 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">14</context></context-group> |
3934 | 4085 | </trans-unit> | |
3935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="5cb90e520edbff8862ce9fbec8c377416c1c286b" datatype="html"> | 4086 | <trans-unit id="ebdc173a9acc638a634724d31684849ce15778c8" datatype="html"> |
3936 | <source>Select all rows</source><target state="new">Select all rows</target> | 4087 | <source>Advanced comments filters</source> |
3937 | 4088 | <target state="new">Advanced comments filters</target> | |
3938 | 4089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">36</context></context-group> | |
3939 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 4090 | </trans-unit> |
4091 | <trans-unit id="1f689bd2c3f3cfac3c800799545786e56aa5156d" datatype="html"> | ||
4092 | <source>Local comments</source> | ||
4093 | <target state="new">Local comments</target> | ||
4094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">37</context></context-group> | ||
4095 | </trans-unit> | ||
4096 | <trans-unit id="3c770e01673ea017697b8c8a4feb63aefdd1f999" datatype="html"> | ||
4097 | <source>Remote comments</source> | ||
4098 | <target state="new">Remote comments</target> | ||
4099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">38</context></context-group> | ||
4100 | </trans-unit> | ||
4101 | <trans-unit id="5cb90e520edbff8862ce9fbec8c377416c1c286b" datatype="html"> | ||
4102 | <source>Select all rows</source> | ||
4103 | <target state="new">Select all rows</target> | ||
4104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">55</context></context-group> | ||
4105 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">51</context></context-group> | ||
4106 | </trans-unit> | ||
3940 | <trans-unit id="555ae4dbd23d5056aeafc8f3f31ebbab170bb917" datatype="html"> | 4107 | <trans-unit id="555ae4dbd23d5056aeafc8f3f31ebbab170bb917" datatype="html"> |
3941 | <source>Job type</source> | 4108 | <source>Job type</source> |
3942 | <target state="new">Job type</target> | 4109 | <target state="new">Job type</target> |
3943 | 4110 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">3</context></context-group> | |
3944 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 4111 | </trans-unit> |
3945 | <trans-unit id="723c95b5d673a557fa120aa65814a9f05c03e610" datatype="html"> | 4112 | <trans-unit id="723c95b5d673a557fa120aa65814a9f05c03e610" datatype="html"> |
3946 | <source>Job state</source> | 4113 | <source>Job state</source> |
3947 | <target state="new">Job state</target> | 4114 | <target state="new">Job state</target> |
3948 | 4115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">12</context></context-group> | |
3949 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit><trans-unit id="5e85feb6f9f0334366e46ee09ca6b8df52397432" datatype="html"> | 4116 | </trans-unit> |
3950 | <source>any</source><target state="new">any</target> | 4117 | <trans-unit id="5e85feb6f9f0334366e46ee09ca6b8df52397432" datatype="html"> |
4118 | <source>any</source> | ||
4119 | <target state="new">any</target> | ||
3951 | <context-group purpose="location"> | 4120 | <context-group purpose="location"> |
3952 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | 4121 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> |
3953 | <context context-type="linenumber">21</context> | 4122 | <context context-type="linenumber">21</context> |
3954 | </context-group> | 4123 | </context-group> |
3955 | <note priority="1" from="description">Selector for the list displaying jobs, filtering by their state</note> | 4124 | <note priority="1" from="description">Selector for the list displaying jobs, filtering by their state</note> |
3956 | </trans-unit><trans-unit id="15d67169976ce05d49bc6e85e51597c957f0e37d" datatype="html"> | 4125 | </trans-unit> |
3957 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> jobs</source><target state="new">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> jobs</target> | 4126 | <trans-unit id="15d67169976ce05d49bc6e85e51597c957f0e37d" datatype="html"> |
3958 | 4127 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> jobs</source> | |
3959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 4128 | <target state="new">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> jobs</target> |
4129 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">35</context></context-group> | ||
4130 | </trans-unit> | ||
3960 | <trans-unit id="f61c6867295f3b53d23557021f2f4e0aa1d0b8fc"> | 4131 | <trans-unit id="f61c6867295f3b53d23557021f2f4e0aa1d0b8fc"> |
3961 | <source>Type</source> | 4132 | <source>Type</source> |
3962 | <target>Typ</target> | 4133 | <target>Typ</target> |
3963 | 4134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">42</context></context-group> | |
3964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit><trans-unit id="e8d0453dbe7338287c348e1043da4620c218e9c4" datatype="html"> | 4135 | </trans-unit> |
3965 | <source>No jobs found.</source><target state="new">No jobs found.</target> | 4136 | <trans-unit id="e8d0453dbe7338287c348e1043da4620c218e9c4" datatype="html"> |
4137 | <source>No jobs found.</source> | ||
4138 | <target state="new">No jobs found.</target> | ||
3966 | <context-group purpose="location"> | 4139 | <context-group purpose="location"> |
3967 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | 4140 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> |
3968 | <context context-type="linenumber">94</context> | 4141 | <context context-type="linenumber">94</context> |
3969 | </context-group> | 4142 | </context-group> |
3970 | </trans-unit><trans-unit id="50140de8e198dcb486966365d1d4c01fd910cc46" datatype="html"> | 4143 | </trans-unit> |
3971 | <source>No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</source><target state="new">No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</target> | 4144 | <trans-unit id="50140de8e198dcb486966365d1d4c01fd910cc46" datatype="html"> |
4145 | <source>No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</source> | ||
4146 | <target state="new">No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</target> | ||
3972 | <context-group purpose="location"> | 4147 | <context-group purpose="location"> |
3973 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | 4148 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> |
3974 | <context context-type="linenumber">95</context> | 4149 | <context context-type="linenumber">95</context> |
3975 | </context-group> | 4150 | </context-group> |
3976 | </trans-unit><trans-unit id="34f47c715ccc293a1d86d7cee44515bbe0ab0db0" datatype="html"> | 4151 | </trans-unit> |
3977 | <source>No <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> jobs found.</source><target state="new">No <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> jobs found.</target> | 4152 | <trans-unit id="34f47c715ccc293a1d86d7cee44515bbe0ab0db0" datatype="html"> |
3978 | 4153 | <source>No <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> jobs found.</source> | |
3979 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">98</context></context-group></trans-unit><trans-unit id="3fc9776f71b2244ce796c554d1b1d4c583f33c77" datatype="html"> | 4154 | <target state="new">No <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> jobs found.</target> |
3980 | <source>No <x id="START_TAG_CODE"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_CODE"/> jobs found that are <x id="START_TAG_SPAN"/><x id="INTERPOLATION_1"/><x id="CLOSE_TAG_SPAN"/>.</source><target state="new">No <x id="START_TAG_CODE"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_CODE"/> jobs found that are <x id="START_TAG_SPAN"/><x id="INTERPOLATION_1"/><x id="CLOSE_TAG_SPAN"/>.</target> | 4155 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">98</context></context-group> |
3981 | 4156 | </trans-unit> | |
3982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">99</context></context-group></trans-unit> | 4157 | <trans-unit id="3fc9776f71b2244ce796c554d1b1d4c583f33c77" datatype="html"> |
4158 | <source>No <x id="START_TAG_CODE"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_CODE"/> jobs found that are <x id="START_TAG_SPAN"/><x id="INTERPOLATION_1"/><x id="CLOSE_TAG_SPAN"/>.</source> | ||
4159 | <target state="new">No <x id="START_TAG_CODE"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_CODE"/> jobs found that are <x id="START_TAG_SPAN"/><x id="INTERPOLATION_1"/><x id="CLOSE_TAG_SPAN"/>.</target> | ||
4160 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">99</context></context-group> | ||
4161 | </trans-unit> | ||
3983 | <trans-unit id="c8d1785038d461ec66b5799db21864182b35900a"> | 4162 | <trans-unit id="c8d1785038d461ec66b5799db21864182b35900a"> |
3984 | <source>Refresh</source> | 4163 | <source>Refresh</source> |
3985 | <target>Obnovit</target> | 4164 | <target>Obnovit</target> |
3986 | 4165 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">34</context></context-group> | |
3987 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit><trans-unit id="7f34c2aa1c5e1d4bc339995fe325e831d7fbe40a" datatype="html"> | 4166 | </trans-unit> |
3988 | <source>now</source><target state="new">now</target> | 4167 | <trans-unit id="7f34c2aa1c5e1d4bc339995fe325e831d7fbe40a" datatype="html"> |
3989 | 4168 | <source>now</source> | |
3990 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 4169 | <target state="new">now</target> |
4170 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">15</context></context-group> | ||
4171 | </trans-unit> | ||
3991 | <trans-unit id="94516fa213706c67ce5a5b5765681d7fb032033a" datatype="html"> | 4172 | <trans-unit id="94516fa213706c67ce5a5b5765681d7fb032033a" datatype="html"> |
3992 | <source>Loading...</source> | 4173 | <source>Loading...</source> |
3993 | <target state="new">Loading...</target> | 4174 | <target state="new">Loading...</target> |
3994 | 4175 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">38</context></context-group> | |
3995 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 4176 | </trans-unit> |
3996 | <trans-unit id="e4ce2d897f4bdce126c9012769654301a587110a" datatype="html"> | 4177 | <trans-unit id="e4ce2d897f4bdce126c9012769654301a587110a" datatype="html"> |
3997 | <source>By <x id="INTERPOLATION"/> -></source> | 4178 | <source>By <x id="INTERPOLATION"/> -></source> |
3998 | <target state="new">By | 4179 | <target state="new">By |
3999 | <x id="INTERPOLATION" equiv-text="{{ log.by }}"/> -> | 4180 | <x id="INTERPOLATION" equiv-text="{{ log.by }}"/> -> |
4000 | </target> | 4181 | </target> |
4001 | 4182 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">46</context></context-group> | |
4002 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 4183 | </trans-unit> |
4003 | <trans-unit id="3441b78841dad60f36576d99e38241ae7fefa933" datatype="html"> | 4184 | <trans-unit id="3441b78841dad60f36576d99e38241ae7fefa933" datatype="html"> |
4004 | <source>INSTANCE</source> | 4185 | <source>INSTANCE</source> |
4005 | <target state="new">INSTANCE</target> | 4186 | <target state="new">INSTANCE</target> |
4006 | 4187 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">15</context></context-group> | |
4007 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 4188 | </trans-unit> |
4008 | <trans-unit id="cff1428d10d59d14e45edec3c735a27b5482db59"> | 4189 | <trans-unit id="cff1428d10d59d14e45edec3c735a27b5482db59"> |
4009 | <source>Name</source> | 4190 | <source>Name</source> |
4010 | <target>Jméno</target> | 4191 | <target>Jméno</target> |
4011 | 4192 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">32</context></context-group> | |
4012 | 4193 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">32</context></context-group> | |
4013 | 4194 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">21</context></context-group> | |
4014 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">32</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">32</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 4195 | </trans-unit> |
4015 | <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b"> | 4196 | <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b"> |
4016 | <source>Short description</source> | 4197 | <source>Short description</source> |
4017 | <target>Krátký popis</target> | 4198 | <target>Krátký popis</target> |
4018 | 4199 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">30</context></context-group> | |
4019 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 4200 | </trans-unit> |
4020 | <trans-unit id="f14028bddcf7760c635464db8a9d2f69afd81b92" datatype="html"> | 4201 | <trans-unit id="f14028bddcf7760c635464db8a9d2f69afd81b92" datatype="html"> |
4021 | <source>Main instance categories</source> | 4202 | <source>Main instance categories</source> |
4022 | <target state="new">Main instance categories</target> | 4203 | <target state="new">Main instance categories</target> |
4023 | 4204 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">48</context></context-group> | |
4024 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> | 4205 | </trans-unit> |
4025 | <trans-unit id="27ea89c8d39a59d9ff6c761fbad00d57b7863849" datatype="html"> | 4206 | <trans-unit id="27ea89c8d39a59d9ff6c761fbad00d57b7863849" datatype="html"> |
4026 | <source>Add a new category</source> | 4207 | <source>Add a new category</source> |
4027 | <target state="new">Add a new category</target> | 4208 | <target state="new">Add a new category</target> |
4028 | 4209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">55</context></context-group> | |
4029 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 4210 | </trans-unit> |
4030 | <trans-unit id="a8544bac210fd102d71c5aaf1bef79c1fc48c079" datatype="html"> | 4211 | <trans-unit id="a8544bac210fd102d71c5aaf1bef79c1fc48c079" datatype="html"> |
4031 | <source>The <x id="START_LINK"/>sharing system<x id="CLOSE_LINK"/> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load.</source> | 4212 | <source>The <x id="START_LINK"/>sharing system<x id="CLOSE_LINK"/> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load.</source> |
4032 | <target state="new">The | 4213 | <target state="new">The |
4033 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>sharing system | 4214 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>sharing system |
4034 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load. | 4215 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load. |
4035 | </target> | 4216 | </target> |
4036 | 4217 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">50</context></context-group> | |
4037 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 4218 | </trans-unit> |
4038 | <trans-unit id="0f9a16c167ea4f043577304b13046c143692cb99" datatype="html"> | 4219 | <trans-unit id="0f9a16c167ea4f043577304b13046c143692cb99" datatype="html"> |
4039 | <source>Help share videos being played</source> | 4220 | <source>Help share videos being played</source> |
4040 | <target state="new">Help share videos being played</target> | 4221 | <target state="new">Help share videos being played</target> |
4041 | 4222 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">47</context></context-group> | |
4042 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | 4223 | </trans-unit> |
4043 | <trans-unit id="8002f4cecaf491c2fa08a13cb18c8fda1996d92f" datatype="html"> | 4224 | <trans-unit id="8002f4cecaf491c2fa08a13cb18c8fda1996d92f" datatype="html"> |
4044 | <source>When on a video page, directly start playing the video.</source> | 4225 | <source>When on a video page, directly start playing the video.</source> |
4045 | <target state="new">When on a video page, directly start playing the video.</target> | 4226 | <target state="new">When on a video page, directly start playing the video.</target> |
4046 | 4227 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">61</context></context-group> | |
4047 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> | 4228 | </trans-unit> |
4048 | <trans-unit id="cd607ede7ce410c98c681f5ba435642fe25f5f9c" datatype="html"> | 4229 | <trans-unit id="cd607ede7ce410c98c681f5ba435642fe25f5f9c" datatype="html"> |
4049 | <source>Automatically play videos</source> | 4230 | <source>Automatically play videos</source> |
4050 | <target state="new">Automatically play videos</target> | 4231 | <target state="new">Automatically play videos</target> |
4051 | 4232 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">58</context></context-group> | |
4052 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 4233 | </trans-unit> |
4053 | <trans-unit id="6319d0030e9d382e5beb2baa5a399c0af3a27015" datatype="html"> | 4234 | <trans-unit id="6319d0030e9d382e5beb2baa5a399c0af3a27015" datatype="html"> |
4054 | <source>When a video ends, follow up with the next suggested video.</source> | 4235 | <source>When a video ends, follow up with the next suggested video.</source> |
4055 | <target state="new">When a video ends, follow up with the next suggested video.</target> | 4236 | <target state="new">When a video ends, follow up with the next suggested video.</target> |
4056 | 4237 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">72</context></context-group> | |
4057 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> | 4238 | </trans-unit> |
4058 | <trans-unit id="056097a75d29b732ec5ad97c2e90d6c9be6528e4" datatype="html"> | 4239 | <trans-unit id="056097a75d29b732ec5ad97c2e90d6c9be6528e4" datatype="html"> |
4059 | <source>Automatically start playing the next video</source> | 4240 | <source>Automatically start playing the next video</source> |
4060 | <target state="new">Automatically start playing the next video</target> | 4241 | <target state="new">Automatically start playing the next video</target> |
4061 | 4242 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">69</context></context-group> | |
4062 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4243 | </trans-unit> |
4063 | <trans-unit id="ccb0ae7ba7f7a83045f1ad78d0c0044b5ed80629" datatype="html"> | 4244 | <trans-unit id="ccb0ae7ba7f7a83045f1ad78d0c0044b5ed80629" datatype="html"> |
4064 | <source>Main languages you/your moderators speak</source> | 4245 | <source>Main languages you/your moderators speak</source> |
4065 | <target state="new">Main languages you/your moderators speak</target> | 4246 | <target state="new">Main languages you/your moderators speak</target> |
4066 | 4247 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">62</context></context-group> | |
4067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 4248 | </trans-unit> |
4068 | <trans-unit id="f27b192f4d3153db7dc7044bea37e71655bfb3ea" datatype="html"> | 4249 | <trans-unit id="f27b192f4d3153db7dc7044bea37e71655bfb3ea" datatype="html"> |
4069 | <source>MODERATION & NSFW</source> | 4250 | <source>MODERATION & NSFW</source> |
4070 | <target state="new">MODERATION & NSFW</target> | 4251 | <target state="new">MODERATION & NSFW</target> |
4071 | 4252 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">80</context></context-group> | |
4072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">80</context></context-group></trans-unit> | 4253 | </trans-unit> |
4073 | <trans-unit id="f0716b4964f9dc6437aaed3ae0c78e94fd259fb9" datatype="html"> | 4254 | <trans-unit id="f0716b4964f9dc6437aaed3ae0c78e94fd259fb9" datatype="html"> |
4074 | <source> Manage <x id="START_LINK"/>users<x id="CLOSE_LINK"/> to build a moderation team. </source> | 4255 | <source>Manage <x id="START_LINK"/>users<x id="CLOSE_LINK"/> to build a moderation team. </source> |
4075 | <target state="new"> | 4256 | <target state="new"> |
4076 | Manage | 4257 | Manage |
4077 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>users | 4258 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>users |
4078 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to build a moderation team. | 4259 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to build a moderation team. |
4079 | 4260 | ||
4080 | </target> | 4261 | </target> |
4081 | 4262 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">82</context></context-group> | |
4082 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 4263 | </trans-unit> |
4083 | <trans-unit id="aad49456e42847e2ea95fbaeb2f49387199e5634" datatype="html"> | 4264 | <trans-unit id="aad49456e42847e2ea95fbaeb2f49387199e5634" datatype="html"> |
4084 | <source>This instance is dedicated to sensitive or NSFW content</source> | 4265 | <source>This instance is dedicated to sensitive or NSFW content</source> |
4085 | <target state="new">This instance is dedicated to sensitive or NSFW content</target> | 4266 | <target state="new">This instance is dedicated to sensitive or NSFW content</target> |
4086 | 4267 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">91</context></context-group> | |
4087 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 4268 | </trans-unit> |
4088 | <trans-unit id="55c4d3cc288701854147f69ccf3d86d316589968" datatype="html"> | 4269 | <trans-unit id="55c4d3cc288701854147f69ccf3d86d316589968" datatype="html"> |
4089 | <source> Enabling it will allow other administrators to know that you are mainly federating sensitive content.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </source> | 4270 | <source>Enabling it will allow other administrators to know that you are mainly federating sensitive content.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </source> |
4090 | <target state="new"> | 4271 | <target state="new"> |
4091 | Enabling it will allow other administrators to know that you are mainly federating sensitive content. | 4272 | Enabling it will allow other administrators to know that you are mainly federating sensitive content. |
4092 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 4273 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
4093 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 4274 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
4094 | Moreover, the NSFW checkbox on video upload will be automatically checked by default. | 4275 | Moreover, the NSFW checkbox on video upload will be automatically checked by default. |
4095 | 4276 | ||
4096 | </target> | 4277 | </target> |
4097 | 4278 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">96</context></context-group> | |
4098 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 4279 | </trans-unit> |
4099 | <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9"> | 4280 | <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9"> |
4100 | <source>Policy on videos containing sensitive content</source> | 4281 | <source>Policy on videos containing sensitive content</source> |
4101 | <target>Pravidla pro videa obsahující citlivý obsah</target> | 4282 | <target>Pravidla pro videa obsahující citlivý obsah</target> |
4102 | 4283 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">104</context></context-group> | |
4103 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 4284 | </trans-unit> |
4104 | <trans-unit id="8dccab3d8cadb847889ff89644d3f08ffee0d76e" datatype="html"> | 4285 | <trans-unit id="8dccab3d8cadb847889ff89644d3f08ffee0d76e" datatype="html"> |
4105 | <source> With <x id="START_TAG_STRONG"/>Do not list<x id="CLOSE_TAG_STRONG"/> or <x id="START_TAG_STRONG"/>Blur thumbnails<x id="CLOSE_TAG_STRONG"/>, a confirmation will be requested to watch the video. </source> | 4286 | <source>With <x id="START_TAG_STRONG"/>Do not list<x id="CLOSE_TAG_STRONG"/> or <x id="START_TAG_STRONG"/>Blur thumbnails<x id="CLOSE_TAG_STRONG"/>, a confirmation will be requested to watch the video. </source> |
4106 | <target state="new"> | 4287 | <target state="new"> |
4107 | With | 4288 | With |
4108 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Do not list | 4289 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Do not list |
4109 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or | 4290 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or |
4110 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails | 4291 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails |
4111 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. | 4292 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. |
4112 | 4293 | ||
4113 | </target> | 4294 | </target> |
4114 | 4295 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">109</context></context-group> | |
4115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">109</context></context-group></trans-unit> | 4296 | </trans-unit> |
4116 | <trans-unit id="5e155c34fb3ed8159bf0a486a366cfbc6874f9fe"> | 4297 | <trans-unit id="5e155c34fb3ed8159bf0a486a366cfbc6874f9fe"> |
4117 | <source>Do not list</source> | 4298 | <source>Do not list</source> |
4118 | <target>Nezobrazovat</target> | 4299 | <target>Nezobrazovat</target> |
4119 | 4300 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">16</context></context-group> | |
4120 | 4301 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">117</context></context-group> | |
4121 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> | 4302 | </trans-unit> |
4122 | <trans-unit id="aaa900149c2ca1575ac1918d1ded33fb69830ab2"> | 4303 | <trans-unit id="aaa900149c2ca1575ac1918d1ded33fb69830ab2"> |
4123 | <source>Blur thumbnails</source> | 4304 | <source>Blur thumbnails</source> |
4124 | <target>Rozmlžit náhledy</target> | 4305 | <target>Rozmlžit náhledy</target> |
4125 | 4306 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">17</context></context-group> | |
4126 | 4307 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">118</context></context-group> | |
4127 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">118</context></context-group></trans-unit> | 4308 | </trans-unit> |
4128 | <trans-unit id="010d24ef3c43b2d8f45a4d6cba7d73e12ee1557e"> | 4309 | <trans-unit id="010d24ef3c43b2d8f45a4d6cba7d73e12ee1557e"> |
4129 | <source>Display</source> | 4310 | <source>Display</source> |
4130 | <target>Zobrazit</target> | 4311 | <target>Zobrazit</target> |
4131 | 4312 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">18</context></context-group> | |
4132 | 4313 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">8</context></context-group> | |
4133 | 4314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">119</context></context-group> | |
4134 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">119</context></context-group></trans-unit> | 4315 | </trans-unit> |
4135 | <trans-unit id="05f5612d42b02be4d6d9e0a99585ae7e30a91780" datatype="html"> | 4316 | <trans-unit id="05f5612d42b02be4d6d9e0a99585ae7e30a91780" datatype="html"> |
4136 | <source>Strategy</source> | 4317 | <source>Strategy</source> |
4137 | <target state="new">Strategy</target> | 4318 | <target state="new">Strategy</target> |
4138 | 4319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">28</context></context-group> | |
4139 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4320 | </trans-unit> |
4140 | <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774"> | 4321 | <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774"> |
4141 | <source>Terms</source> | 4322 | <source>Terms</source> |
4142 | <target>Podmínky</target> | 4323 | <target>Podmínky</target> |
4143 | 4324 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">35</context></context-group> | |
4144 | 4325 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">35</context></context-group> | |
4145 | 4326 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">13</context></context-group> | |
4146 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">168</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 4327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">168</context></context-group> |
4328 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">126</context></context-group> | ||
4329 | </trans-unit> | ||
4147 | <trans-unit id="2c88654dd44fe8477ce6f85c1081cd24a590701b" datatype="html"> | 4330 | <trans-unit id="2c88654dd44fe8477ce6f85c1081cd24a590701b" datatype="html"> |
4148 | <source>Code of conduct</source> | 4331 | <source>Code of conduct</source> |
4149 | <target state="new">Code of conduct</target> | 4332 | <target state="new">Code of conduct</target> |
4150 | 4333 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">47</context></context-group> | |
4151 | 4334 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">47</context></context-group> | |
4152 | 4335 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">154</context></context-group> | |
4153 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">154</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">135</context></context-group></trans-unit> | 4336 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">135</context></context-group> |
4337 | </trans-unit> | ||
4154 | <trans-unit id="06119c0230042048f8a3fd6aa9260934b6fa5878" datatype="html"> | 4338 | <trans-unit id="06119c0230042048f8a3fd6aa9260934b6fa5878" datatype="html"> |
4155 | <source>Moderation information</source> | 4339 | <source>Moderation information</source> |
4156 | <target state="new">Moderation information</target> | 4340 | <target state="new">Moderation information</target> |
4157 | 4341 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">41</context></context-group> | |
4158 | 4342 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">41</context></context-group> | |
4159 | 4343 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">140</context></context-group> | |
4160 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">140</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">144</context></context-group></trans-unit> | 4344 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">144</context></context-group> |
4345 | </trans-unit> | ||
4161 | <trans-unit id="d635f94dd3214d8e5fb83a2af04e7b96c861e91f" datatype="html"> | 4346 | <trans-unit id="d635f94dd3214d8e5fb83a2af04e7b96c861e91f" datatype="html"> |
4162 | <source>Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc</source> | 4347 | <source>Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc</source> |
4163 | <target state="new">Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc</target> | 4348 | <target state="new">Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc</target> |
4164 | 4349 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">145</context></context-group> | |
4165 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">145</context></context-group></trans-unit> | 4350 | </trans-unit> |
4166 | <trans-unit id="b222d95cb22ff8c295920ca10c188c5d94cb0aa9" datatype="html"> | 4351 | <trans-unit id="b222d95cb22ff8c295920ca10c188c5d94cb0aa9" datatype="html"> |
4167 | <source>YOU AND YOUR INSTANCE</source> | 4352 | <source>YOU AND YOUR INSTANCE</source> |
4168 | <target state="new">YOU AND YOUR INSTANCE</target> | 4353 | <target state="new">YOU AND YOUR INSTANCE</target> |
4169 | 4354 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">159</context></context-group> | |
4170 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">159</context></context-group></trans-unit> | 4355 | </trans-unit> |
4171 | <trans-unit id="fdbabe6f967747b657518384b54bcc58d3913063" datatype="html"> | 4356 | <trans-unit id="fdbabe6f967747b657518384b54bcc58d3913063" datatype="html"> |
4172 | <source>Who is behind the instance?</source> | 4357 | <source>Who is behind the instance?</source> |
4173 | <target state="new">Who is behind the instance?</target> | 4358 | <target state="new">Who is behind the instance?</target> |
4174 | 4359 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">165</context></context-group> | |
4175 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 4360 | </trans-unit> |
4176 | <trans-unit id="963707d11903100147b40788e4f67cc93a234308" datatype="html"> | 4361 | <trans-unit id="963707d11903100147b40788e4f67cc93a234308" datatype="html"> |
4177 | <source>A single person? A non-profit? A company?</source> | 4362 | <source>A single person? A non-profit? A company?</source> |
4178 | <target state="new">A single person? A non-profit? A company?</target> | 4363 | <target state="new">A single person? A non-profit? A company?</target> |
4179 | 4364 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">166</context></context-group> | |
4180 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> | 4365 | </trans-unit> |
4181 | <trans-unit id="fef7c7a74c5646fe219d94db60e0652d6b878af5" datatype="html"> | 4366 | <trans-unit id="fef7c7a74c5646fe219d94db60e0652d6b878af5" datatype="html"> |
4182 | <source>Why did you create this instance?</source> | 4367 | <source>Why did you create this instance?</source> |
4183 | <target state="new">Why did you create this instance?</target> | 4368 | <target state="new">Why did you create this instance?</target> |
4184 | 4369 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">177</context></context-group> | |
4185 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> | 4370 | </trans-unit> |
4186 | <trans-unit id="53fe4c724dc3f942c4d1eac4206a9686cbbf968e" datatype="html"> | 4371 | <trans-unit id="53fe4c724dc3f942c4d1eac4206a9686cbbf968e" datatype="html"> |
4187 | <source>To share your personal videos? To open registrations and allow people to upload what they want?</source> | 4372 | <source>To share your personal videos? To open registrations and allow people to upload what they want?</source> |
4188 | <target state="new">To share your personal videos? To open registrations and allow people to upload what they want?</target> | 4373 | <target state="new">To share your personal videos? To open registrations and allow people to upload what they want?</target> |
4189 | 4374 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">178</context></context-group> | |
4190 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">178</context></context-group></trans-unit> | 4375 | </trans-unit> |
4191 | <trans-unit id="ac6b554b2f923239f6d7c5fcef8a7cce7d6b43b6" datatype="html"> | 4376 | <trans-unit id="ac6b554b2f923239f6d7c5fcef8a7cce7d6b43b6" datatype="html"> |
4192 | <source>How long do you plan to maintain this instance?</source> | 4377 | <source>How long do you plan to maintain this instance?</source> |
4193 | <target state="new">How long do you plan to maintain this instance?</target> | 4378 | <target state="new">How long do you plan to maintain this instance?</target> |
4194 | 4379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">188</context></context-group> | |
4195 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">188</context></context-group></trans-unit> | 4380 | </trans-unit> |
4196 | <trans-unit id="09d61fa0397899a1b26d09123aef7e7bf5bd78e1" datatype="html"> | 4381 | <trans-unit id="09d61fa0397899a1b26d09123aef7e7bf5bd78e1" datatype="html"> |
4197 | <source>It's important to know for users who want to register on your instance</source> | 4382 | <source>It's important to know for users who want to register on your instance</source> |
4198 | <target state="new">It's important to know for users who want to register on your instance</target> | 4383 | <target state="new">It's important to know for users who want to register on your instance</target> |
4199 | 4384 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">189</context></context-group> | |
4200 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">189</context></context-group></trans-unit> | 4385 | </trans-unit> |
4201 | <trans-unit id="1c0452d6bc62aace993630b59a085af1708a2f2d" datatype="html"> | 4386 | <trans-unit id="1c0452d6bc62aace993630b59a085af1708a2f2d" datatype="html"> |
4202 | <source>How will you finance the PeerTube server?</source> | 4387 | <source>How will you finance the PeerTube server?</source> |
4203 | <target state="new">How will you finance the PeerTube server?</target> | 4388 | <target state="new">How will you finance the PeerTube server?</target> |
4204 | 4389 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">199</context></context-group> | |
4205 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">199</context></context-group></trans-unit> | 4390 | </trans-unit> |
4206 | <trans-unit id="1bb1ca2264b1ab8be73deee74852a4e6d40101c5" datatype="html"> | 4391 | <trans-unit id="1bb1ca2264b1ab8be73deee74852a4e6d40101c5" datatype="html"> |
4207 | <source>With your own funds? With user donations? Advertising?</source> | 4392 | <source>With your own funds? With user donations? Advertising?</source> |
4208 | <target state="new">With your own funds? With user donations? Advertising?</target> | 4393 | <target state="new">With your own funds? With user donations? Advertising?</target> |
4209 | 4394 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">200</context></context-group> | |
4210 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">200</context></context-group></trans-unit> | 4395 | </trans-unit> |
4211 | <trans-unit id="434d9f89497fe693bb5e4cdce02925dec8d0281f" datatype="html"> | 4396 | <trans-unit id="434d9f89497fe693bb5e4cdce02925dec8d0281f" datatype="html"> |
4212 | <source>OTHER INFORMATION</source> | 4397 | <source>OTHER INFORMATION</source> |
4213 | <target state="new">OTHER INFORMATION</target> | 4398 | <target state="new">OTHER INFORMATION</target> |
4214 | 4399 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">214</context></context-group> | |
4215 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">214</context></context-group></trans-unit> | 4400 | </trans-unit> |
4216 | <trans-unit id="7dfc119f06b80d9324703c471b0c00118fa5849d" datatype="html"> | 4401 | <trans-unit id="7dfc119f06b80d9324703c471b0c00118fa5849d" datatype="html"> |
4217 | <source>What server/hardware does the instance run on?</source> | 4402 | <source>What server/hardware does the instance run on?</source> |
4218 | <target state="new">What server/hardware does the instance run on?</target> | 4403 | <target state="new">What server/hardware does the instance run on?</target> |
4219 | 4404 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">220</context></context-group> | |
4220 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">220</context></context-group></trans-unit> | 4405 | </trans-unit> |
4221 | <trans-unit id="4a58b1d4aff414350b701aa587aeb39a1276307a" datatype="html"> | 4406 | <trans-unit id="4a58b1d4aff414350b701aa587aeb39a1276307a" datatype="html"> |
4222 | <source>i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc.</source> | 4407 | <source>i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc.</source> |
4223 | <target state="new">i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc.</target> | 4408 | <target state="new">i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc.</target> |
4224 | 4409 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">221</context></context-group> | |
4225 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">221</context></context-group></trans-unit> | 4410 | </trans-unit> |
4226 | <trans-unit id="3070ae34708ac4b19ac0a2fdc2c0b82871754c7a" datatype="html"> | 4411 | <trans-unit id="3070ae34708ac4b19ac0a2fdc2c0b82871754c7a" datatype="html"> |
4227 | <source>Instance information</source> | 4412 | <source>Instance information</source> |
4228 | <target state="new">Instance information</target> | 4413 | <target state="new">Instance information</target> |
4229 | 4414 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">7</context></context-group> | |
4230 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 4415 | </trans-unit> |
4231 | <trans-unit id="e18e5566ca6266c849208665c731805571333a8b" datatype="html"> | 4416 | <trans-unit id="e18e5566ca6266c849208665c731805571333a8b" datatype="html"> |
4232 | <source>APPEARANCE</source> | 4417 | <source>APPEARANCE</source> |
4233 | <target state="new">APPEARANCE</target> | 4418 | <target state="new">APPEARANCE</target> |
4234 | 4419 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">245</context></context-group> | |
4235 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">245</context></context-group></trans-unit> | 4420 | </trans-unit> |
4236 | <trans-unit id="0aa2ad4efb780f946dd9a821fe7471dde20014c3" datatype="html"> | 4421 | <trans-unit id="0aa2ad4efb780f946dd9a821fe7471dde20014c3" datatype="html"> |
4237 | <source> Use <x id="START_LINK"/>plugins & themes<x id="CLOSE_LINK"/> for more involved changes, or <x id="START_LINK_1"/>add slight customizations<x id="CLOSE_LINK"/>. </source> | 4422 | <source>Use <x id="START_LINK"/>plugins & themes<x id="CLOSE_LINK"/> for more involved changes, or <x id="START_LINK_1"/>add slight customizations<x id="CLOSE_LINK"/>. </source> |
4238 | <target state="new"> | 4423 | <target state="new"> |
4239 | Use | 4424 | Use |
4240 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>plugins & themes | 4425 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>plugins & themes |
4241 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more involved changes, or | 4426 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more involved changes, or |
4242 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/>add slight customizations | 4427 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/>add slight customizations |
4243 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | 4428 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. |
4244 | 4429 | ||
4245 | </target> | 4430 | </target> |
4246 | 4431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">247</context></context-group> | |
4247 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">247</context></context-group></trans-unit> | 4432 | </trans-unit> |
4248 | <trans-unit id="deca31fc7adad40d00bd63881d0c17124cd05beb" datatype="html"> | 4433 | <trans-unit id="deca31fc7adad40d00bd63881d0c17124cd05beb" datatype="html"> |
4249 | <source>default</source> | 4434 | <source>default</source> |
4250 | <target state="new">default</target> | 4435 | <target state="new">default</target> |
4251 | 4436 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">259</context></context-group> | |
4252 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">259</context></context-group></trans-unit> | 4437 | </trans-unit> |
4253 | <trans-unit id="a42daa4748e433f25a51f598627d10de9c88d5d3" datatype="html"> | 4438 | <trans-unit id="a42daa4748e433f25a51f598627d10de9c88d5d3" datatype="html"> |
4254 | <source>Landing page</source> | 4439 | <source>Landing page</source> |
4255 | <target state="new">Landing page</target> | 4440 | <target state="new">Landing page</target> |
4256 | 4441 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">268</context></context-group> | |
4257 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">268</context></context-group></trans-unit> | 4442 | </trans-unit> |
4258 | <trans-unit id="28aca3fd95c8d941f643c617058636715b6f87d9" datatype="html"> | 4443 | <trans-unit id="28aca3fd95c8d941f643c617058636715b6f87d9" datatype="html"> |
4259 | <source>Discover videos</source> | 4444 | <source>Discover videos</source> |
4260 | <target state="new">Discover videos</target> | 4445 | <target state="new">Discover videos</target> |
4261 | 4446 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">271</context></context-group> | |
4262 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">271</context></context-group></trans-unit> | 4447 | </trans-unit> |
4263 | <trans-unit id="9091b36f8890eabbd2305789eb826d16e8f4641d" datatype="html"> | 4448 | <trans-unit id="9091b36f8890eabbd2305789eb826d16e8f4641d" datatype="html"> |
4264 | <source>Trending videos</source> | 4449 | <source>Trending videos</source> |
4265 | <target state="new">Trending videos</target> | 4450 | <target state="new">Trending videos</target> |
4266 | 4451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">272</context></context-group> | |
4267 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">272</context></context-group></trans-unit> | 4452 | </trans-unit> |
4268 | <trans-unit id="4c65fb9a424be158237157c16778273550a38c70" datatype="html"> | 4453 | <trans-unit id="4c65fb9a424be158237157c16778273550a38c70" datatype="html"> |
4269 | <source>Most liked videos</source> | 4454 | <source>Most liked videos</source> |
4270 | <target state="new">Most liked videos</target> | 4455 | <target state="new">Most liked videos</target> |
4271 | 4456 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">273</context></context-group> | |
4272 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">273</context></context-group></trans-unit> | 4457 | </trans-unit> |
4273 | <trans-unit id="93d74eb49a5e5c2af5f815178909adf425000af8" datatype="html"> | 4458 | <trans-unit id="93d74eb49a5e5c2af5f815178909adf425000af8" datatype="html"> |
4274 | <source>Recently added videos</source> | 4459 | <source>Recently added videos</source> |
4275 | <target state="new">Recently added videos</target> | 4460 | <target state="new">Recently added videos</target> |
4276 | 4461 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">274</context></context-group> | |
4277 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">274</context></context-group></trans-unit> | 4462 | </trans-unit> |
4278 | <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f"> | 4463 | <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f"> |
4279 | <source>Local videos</source> | 4464 | <source>Local videos</source> |
4280 | <target>Místní videa</target> | 4465 | <target>Místní videa</target> |
4281 | 4466 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">147</context></context-group> | |
4282 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">147</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">275</context></context-group></trans-unit> | 4467 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">275</context></context-group> |
4468 | </trans-unit> | ||
4283 | <trans-unit id="c5d4e7a320b88bdcf7fb2b670b81173048af3956" datatype="html"> | 4469 | <trans-unit id="c5d4e7a320b88bdcf7fb2b670b81173048af3956" datatype="html"> |
4284 | <source>BROADCAST MESSAGE</source> | 4470 | <source>BROADCAST MESSAGE</source> |
4285 | <target state="new">BROADCAST MESSAGE</target> | 4471 | <target state="new">BROADCAST MESSAGE</target> |
4286 | 4472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">286</context></context-group> | |
4287 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">286</context></context-group></trans-unit> | 4473 | </trans-unit> |
4288 | <trans-unit id="3a10a32f96683addb9e1335cdba7d6685587fe6e" datatype="html"> | 4474 | <trans-unit id="3a10a32f96683addb9e1335cdba7d6685587fe6e" datatype="html"> |
4289 | <source> | 4475 | <source>Display a message on your instance</source> |
4290 | Display a message on your instance | ||
4291 | </source> | ||
4292 | <target state="new"> | 4476 | <target state="new"> |
4293 | Display a message on your instance | 4477 | Display a message on your instance |
4294 | </target> | 4478 | </target> |
4295 | 4479 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">288</context></context-group> | |
4296 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">288</context></context-group></trans-unit> | 4480 | </trans-unit> |
4297 | <trans-unit id="58be3e0a0ef272fbd6e715b44059c3d89b332d9b" datatype="html"> | 4481 | <trans-unit id="58be3e0a0ef272fbd6e715b44059c3d89b332d9b" datatype="html"> |
4298 | <source>Enable broadcast message</source> | 4482 | <source>Enable broadcast message</source> |
4299 | <target state="new">Enable broadcast message</target> | 4483 | <target state="new">Enable broadcast message</target> |
4300 | 4484 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">299</context></context-group> | |
4301 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">299</context></context-group></trans-unit> | 4485 | </trans-unit> |
4302 | <trans-unit id="6938c4a91284a1bc8b61b0d8085d9985e46c9f5b" datatype="html"> | 4486 | <trans-unit id="6938c4a91284a1bc8b61b0d8085d9985e46c9f5b" datatype="html"> |
4303 | <source>Allow users to dismiss the broadcast message </source> | 4487 | <source>Allow users to dismiss the broadcast message</source> |
4304 | <target state="new">Allow users to dismiss the broadcast message </target> | 4488 | <target state="new">Allow users to dismiss the broadcast message </target> |
4305 | 4489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">306</context></context-group> | |
4306 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">306</context></context-group></trans-unit> | 4490 | </trans-unit> |
4307 | <trans-unit id="dd24d21f2898608f623ae2513e1eb0a08a442f7a" datatype="html"> | 4491 | <trans-unit id="dd24d21f2898608f623ae2513e1eb0a08a442f7a" datatype="html"> |
4308 | <source>Broadcast message level</source> | 4492 | <source>Broadcast message level</source> |
4309 | <target state="new">Broadcast message level</target> | 4493 | <target state="new">Broadcast message level</target> |
4310 | 4494 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">311</context></context-group> | |
4311 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">311</context></context-group></trans-unit> | 4495 | </trans-unit> |
4312 | <trans-unit id="ccac601bf473fa28c9ac46794f1cd40542f74347" datatype="html"> | 4496 | <trans-unit id="ccac601bf473fa28c9ac46794f1cd40542f74347" datatype="html"> |
4313 | <source>Message</source> | 4497 | <source>Message</source> |
4314 | <target state="new">Message</target> | 4498 | <target state="new">Message</target> |
4315 | 4499 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">323</context></context-group> | |
4316 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">323</context></context-group></trans-unit> | 4500 | </trans-unit> |
4317 | <trans-unit id="0ea3c4f671addedc1fff64ba63adbf0629fab06a" datatype="html"> | 4501 | <trans-unit id="0ea3c4f671addedc1fff64ba63adbf0629fab06a" datatype="html"> |
4318 | <source>NEW USERS</source> | 4502 | <source>NEW USERS</source> |
4319 | <target state="new">NEW USERS</target> | 4503 | <target state="new">NEW USERS</target> |
4320 | 4504 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">338</context></context-group> | |
4321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">338</context></context-group></trans-unit> | 4505 | </trans-unit> |
4322 | <trans-unit id="eb55f6a974ace4bade90b976dba651c9545c979d" datatype="html"> | 4506 | <trans-unit id="eb55f6a974ace4bade90b976dba651c9545c979d" datatype="html"> |
4323 | <source> Manage <x id="START_LINK"/>users<x id="CLOSE_LINK"/> to set their quota individually. </source> | 4507 | <source>Manage <x id="START_LINK"/>users<x id="CLOSE_LINK"/> to set their quota individually. </source> |
4324 | <target state="new"> | 4508 | <target state="new"> |
4325 | Manage | 4509 | Manage |
4326 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>users | 4510 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>users |
4327 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to set their quota individually. | 4511 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to set their quota individually. |
4328 | 4512 | ||
4329 | </target> | 4513 | </target> |
4330 | 4514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">340</context></context-group> | |
4331 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">340</context></context-group></trans-unit> | 4515 | </trans-unit> |
4332 | <trans-unit id="90f449b1f4787e6c9731198a96d35399c1b340a7"> | 4516 | <trans-unit id="90f449b1f4787e6c9731198a96d35399c1b340a7"> |
4333 | <source>Signup requires email verification</source> | 4517 | <source>Signup requires email verification</source> |
4334 | <target>Registrace vyžaduje ověření e-mailem.</target> | 4518 | <target>Registrace vyžaduje ověření e-mailem.</target> |
4335 | 4519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">360</context></context-group> | |
4336 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">360</context></context-group></trans-unit> | 4520 | </trans-unit> |
4337 | <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402"> | 4521 | <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402"> |
4338 | <source>Signup limit</source> | 4522 | <source>Signup limit</source> |
4339 | <target>Limit registrací</target> | 4523 | <target>Limit registrací</target> |
4340 | 4524 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">364</context></context-group> | |
4341 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">364</context></context-group></trans-unit><trans-unit id="b4d3a94d4c67e02c861a8c7c66c34b74ad2ddf0d" datatype="html"> | 4525 | </trans-unit> |
4342 | <source>{VAR_PLURAL, plural, =1 {user} other {users}}</source><target state="new">{VAR_PLURAL, plural, =1 {user} other {users}}</target> | 4526 | <trans-unit id="b4d3a94d4c67e02c861a8c7c66c34b74ad2ddf0d" datatype="html"> |
4527 | <source>{VAR_PLURAL, plural, =1 {user} other {users}}</source> | ||
4528 | <target state="new">{VAR_PLURAL, plural, =1 {user} other {users}}</target> | ||
4343 | <context-group purpose="location"> | 4529 | <context-group purpose="location"> |
4344 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4530 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
4345 | <context context-type="linenumber">370</context> | 4531 | <context context-type="linenumber">370</context> |
@@ -4348,414 +4534,479 @@ The link will expire within 1 hour.</target> | |||
4348 | <trans-unit id="25de1b6d18bda68f72a31c4ce8aa1c493584764f" datatype="html"> | 4534 | <trans-unit id="25de1b6d18bda68f72a31c4ce8aa1c493584764f" datatype="html"> |
4349 | <source>Enable Signup</source> | 4535 | <source>Enable Signup</source> |
4350 | <target state="new">Enable Signup</target> | 4536 | <target state="new">Enable Signup</target> |
4351 | 4537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">350</context></context-group> | |
4352 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">350</context></context-group></trans-unit> | 4538 | </trans-unit> |
4353 | <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be"> | 4539 | <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be"> |
4354 | <source>Users</source> | 4540 | <source>Users</source> |
4355 | <target>Uživatelé</target> | 4541 | <target>Uživatelé</target> |
4356 | 4542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> | |
4357 | 4543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> | |
4358 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 4544 | </trans-unit> |
4359 | <trans-unit id="9a298b5ee14cc04a1cbef88cd1cc54fbb8176bc2" datatype="html"> | 4545 | <trans-unit id="9a298b5ee14cc04a1cbef88cd1cc54fbb8176bc2" datatype="html"> |
4360 | <source>{VAR_PLURAL, plural, =1 {Video} other {Videos} }</source> | 4546 | <source>{VAR_PLURAL, plural, =1 {Video} other {Videos} }</source> |
4361 | <target state="new">{VAR_PLURAL, plural, =1 {Video} other {Videos} }</target> | 4547 | <target state="new">{VAR_PLURAL, plural, =1 {Video} other {Videos} }</target> |
4362 | 4548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">24</context></context-group> | |
4363 | 4549 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">24</context></context-group> | |
4364 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 4550 | </trans-unit> |
4365 | <trans-unit id="bcf8ce898a641416913d16b5dc39385e83ca069c" datatype="html"> | 4551 | <trans-unit id="bcf8ce898a641416913d16b5dc39385e83ca069c" datatype="html"> |
4366 | <source>{VAR_PLURAL, plural, =1 {Channel} other {Channels} }</source> | 4552 | <source>{VAR_PLURAL, plural, =1 {Channel} other {Channels} }</source> |
4367 | <target state="new">{VAR_PLURAL, plural, =1 {Channel} other {Channels} }</target> | 4553 | <target state="new">{VAR_PLURAL, plural, =1 {Channel} other {Channels} }</target> |
4368 | 4554 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">30</context></context-group> | |
4369 | 4555 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">30</context></context-group> | |
4370 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 4556 | </trans-unit> |
4371 | <trans-unit id="8b3b364967f953009a4b83c53ed5cf0b5ff3902a" datatype="html"> | 4557 | <trans-unit id="8b3b364967f953009a4b83c53ed5cf0b5ff3902a" datatype="html"> |
4372 | <source>{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }</source> | 4558 | <source>{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }</source> |
4373 | <target state="new">{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }</target> | 4559 | <target state="new">{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }</target> |
4374 | 4560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group> | |
4375 | 4561 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group> | |
4376 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 4562 | </trans-unit> |
4377 | <trans-unit id="89f26f7ae43839fb1c983c6dc82d7bb9f559ac98" datatype="html"> | 4563 | <trans-unit id="89f26f7ae43839fb1c983c6dc82d7bb9f559ac98" datatype="html"> |
4378 | <source>Incriminated in reports</source> | 4564 | <source>Incriminated in reports</source> |
4379 | <target state="new">Incriminated in reports</target> | 4565 | <target state="new">Incriminated in reports</target> |
4380 | 4566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">42</context></context-group> | |
4381 | 4567 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">42</context></context-group> | |
4382 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 4568 | </trans-unit> |
4383 | <trans-unit id="374b01a6d0311b4e675834b47db9e34d3fb833e7" datatype="html"> | 4569 | <trans-unit id="374b01a6d0311b4e675834b47db9e34d3fb833e7" datatype="html"> |
4384 | <source>Authored reports accepted</source> | 4570 | <source>Authored reports accepted</source> |
4385 | <target state="new">Authored reports accepted</target> | 4571 | <target state="new">Authored reports accepted</target> |
4386 | 4572 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">48</context></context-group> | |
4387 | 4573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">48</context></context-group> | |
4388 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">48</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> | 4574 | </trans-unit> |
4389 | <trans-unit id="8e29da1e7e8def288e5cf788c6f5ac6e5824259c" datatype="html"> | 4575 | <trans-unit id="8e29da1e7e8def288e5cf788c6f5ac6e5824259c" datatype="html"> |
4390 | <source>{VAR_PLURAL, plural, =1 {Comment} other {Comments} }</source> | 4576 | <source>{VAR_PLURAL, plural, =1 {Comment} other {Comments} }</source> |
4391 | <target state="new">{VAR_PLURAL, plural, =1 {Comment} other {Comments} }</target> | 4577 | <target state="new">{VAR_PLURAL, plural, =1 {Comment} other {Comments} }</target> |
4392 | 4578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">54</context></context-group> | |
4393 | 4579 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">54</context></context-group> | |
4394 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> | 4580 | </trans-unit> |
4395 | <trans-unit id="53ddc7cf814d93205e987d607dbcfcf9cd74b59a" datatype="html"> | 4581 | <trans-unit id="53ddc7cf814d93205e987d607dbcfcf9cd74b59a" datatype="html"> |
4396 | <source>NEW USER</source> | 4582 | <source>NEW USER</source> |
4397 | <target state="new">NEW USER</target> | 4583 | <target state="new">NEW USER</target> |
4398 | 4584 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">73</context></context-group> | |
4399 | 4585 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">73</context></context-group> | |
4400 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">73</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">73</context></context-group></trans-unit> | 4586 | </trans-unit> |
4401 | <trans-unit id="4a41f824a35ba01d5bd7be61aa06b3e8145209d0" datatype="html"> | 4587 | <trans-unit id="4a41f824a35ba01d5bd7be61aa06b3e8145209d0" datatype="html"> |
4402 | <source>Configuration</source> | 4588 | <source>Configuration</source> |
4403 | <target state="new">Configuration</target> | 4589 | <target state="new">Configuration</target> |
4404 | 4590 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1</context></context-group> | |
4405 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 4591 | </trans-unit> |
4406 | <trans-unit id="ec47d80e9b5608ecd396c32a46ca6b87601e7b20" datatype="html"> | 4592 | <trans-unit id="ec47d80e9b5608ecd396c32a46ca6b87601e7b20" datatype="html"> |
4407 | <source>Default video quota per user</source> | 4593 | <source>Default video quota per user</source> |
4408 | <target state="new">Default video quota per user</target> | 4594 | <target state="new">Default video quota per user</target> |
4409 | 4595 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">382</context></context-group> | |
4410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">382</context></context-group></trans-unit> | 4596 | </trans-unit> |
4411 | <trans-unit id="493c65a11deddda45b42a39f503fc4bb3f876cf2" datatype="html"> | 4597 | <trans-unit id="493c65a11deddda45b42a39f503fc4bb3f876cf2" datatype="html"> |
4412 | <source>Default daily upload limit per user</source> | 4598 | <source>Default daily upload limit per user</source> |
4413 | <target state="new">Default daily upload limit per user</target> | 4599 | <target state="new">Default daily upload limit per user</target> |
4414 | 4600 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">394</context></context-group> | |
4415 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">394</context></context-group></trans-unit> | 4601 | </trans-unit> |
4416 | |||
4417 | <trans-unit id="ec3d83c2ae784e843fbe96eb368f9e6e0f26cc2e" datatype="html"> | 4602 | <trans-unit id="ec3d83c2ae784e843fbe96eb368f9e6e0f26cc2e" datatype="html"> |
4418 | <source>Allow import with a torrent file or a magnet URI</source> | 4603 | <source>Allow import with a torrent file or a magnet URI</source> |
4419 | <target state="new">Allow import with a torrent file or a magnet URI</target> | 4604 | <target state="new">Allow import with a torrent file or a magnet URI</target> |
4420 | 4605 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">429</context></context-group> | |
4421 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">429</context></context-group></trans-unit> | 4606 | </trans-unit> |
4422 | <trans-unit id="c590ac6eba10ab6269e068156a910c7c58328cc5" datatype="html"> | 4607 | <trans-unit id="c590ac6eba10ab6269e068156a910c7c58328cc5" datatype="html"> |
4423 | <source>Unless a user is marked as trusted, their videos will stay private until a moderator reviews them.</source> | 4608 | <source>Unless a user is marked as trusted, their videos will stay private until a moderator reviews them.</source> |
4424 | <target state="new">Unless a user is marked as trusted, their videos will stay private until a moderator reviews them.</target> | 4609 | <target state="new">Unless a user is marked as trusted, their videos will stay private until a moderator reviews them.</target> |
4425 | 4610 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">446</context></context-group> | |
4426 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">446</context></context-group></trans-unit> | 4611 | </trans-unit> |
4427 | <trans-unit id="3097153cbaee3d44d0e298fbe9e8105b6e1fea0d" datatype="html"> | 4612 | <trans-unit id="3097153cbaee3d44d0e298fbe9e8105b6e1fea0d" datatype="html"> |
4428 | <source>Block new videos automatically</source> | 4613 | <source>Block new videos automatically</source> |
4429 | <target state="new">Block new videos automatically</target> | 4614 | <target state="new">Block new videos automatically</target> |
4430 | 4615 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">443</context></context-group> | |
4431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">443</context></context-group></trans-unit> | 4616 | </trans-unit> |
4432 | <trans-unit id="7b6494fa44035831e1215cd4a0284aec00f8cbbd" datatype="html"> | 4617 | <trans-unit id="7b6494fa44035831e1215cd4a0284aec00f8cbbd" datatype="html"> |
4433 | <source>SEARCH</source> | 4618 | <source>SEARCH</source> |
4434 | <target state="new">SEARCH</target> | 4619 | <target state="new">SEARCH</target> |
4435 | 4620 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">460</context></context-group> | |
4436 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">460</context></context-group></trans-unit> | 4621 | </trans-unit> |
4437 | |||
4438 | <trans-unit id="273341057700e25fb8a19896b5039dcf3f14b9ba" datatype="html"> | 4622 | <trans-unit id="273341057700e25fb8a19896b5039dcf3f14b9ba" datatype="html"> |
4439 | <source>Allow users to do remote URI/handle search</source> | 4623 | <source>Allow users to do remote URI/handle search</source> |
4440 | <target state="new">Allow users to do remote URI/handle search</target> | 4624 | <target state="new">Allow users to do remote URI/handle search</target> |
4441 | 4625 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">471</context></context-group> | |
4442 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">471</context></context-group></trans-unit><trans-unit id="24abd406ad31ca317072b179321ff7a7b2d56f86" datatype="html"> | 4626 | </trans-unit> |
4443 | <source>Allow <x id="START_TAG_STRONG"/>your users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</source><target state="new">Allow <x id="START_TAG_STRONG"/>your users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</target> | 4627 | <trans-unit id="24abd406ad31ca317072b179321ff7a7b2d56f86" datatype="html"> |
4444 | 4628 | <source>Allow <x id="START_TAG_STRONG"/>your users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</source> | |
4445 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">474</context></context-group></trans-unit> | 4629 | <target state="new">Allow <x id="START_TAG_STRONG"/>your users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</target> |
4446 | 4630 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">474</context></context-group> | |
4631 | </trans-unit> | ||
4447 | <trans-unit id="1a1dd78b1169f98fb2120c6af13e136aec2daf69" datatype="html"> | 4632 | <trans-unit id="1a1dd78b1169f98fb2120c6af13e136aec2daf69" datatype="html"> |
4448 | <source>Allow anonymous to do remote URI/handle search</source> | 4633 | <source>Allow anonymous to do remote URI/handle search</source> |
4449 | <target state="new">Allow anonymous to do remote URI/handle search</target> | 4634 | <target state="new">Allow anonymous to do remote URI/handle search</target> |
4450 | 4635 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">482</context></context-group> | |
4451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">482</context></context-group></trans-unit><trans-unit id="0a82b1f5636ff3c47cddf9e4bffa86b5d696fe06" datatype="html"> | 4636 | </trans-unit> |
4452 | <source>Allow <x id="START_TAG_STRONG"/>anonymous users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</source><target state="new">Allow <x id="START_TAG_STRONG"/>anonymous users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</target> | 4637 | <trans-unit id="0a82b1f5636ff3c47cddf9e4bffa86b5d696fe06" datatype="html"> |
4453 | 4638 | <source>Allow <x id="START_TAG_STRONG"/>anonymous users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</source> | |
4454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">485</context></context-group></trans-unit> | 4639 | <target state="new">Allow <x id="START_TAG_STRONG"/>anonymous users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</target> |
4640 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">485</context></context-group> | ||
4641 | </trans-unit> | ||
4455 | <trans-unit id="f3af9d2cf9a341ce634210908597e491e77e7376" datatype="html"> | 4642 | <trans-unit id="f3af9d2cf9a341ce634210908597e491e77e7376" datatype="html"> |
4456 | <source>⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select.</source> | 4643 | <source>⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select.</source> |
4457 | <target state="new">⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select.</target> | 4644 | <target state="new">⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select.</target> |
4458 | 4645 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">499</context></context-group> | |
4459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">499</context></context-group></trans-unit> | 4646 | </trans-unit> |
4460 | <trans-unit id="0c43b766533e99e88f65a9f1c8d63fb1926ab5cc" datatype="html"> | 4647 | <trans-unit id="0c43b766533e99e88f65a9f1c8d63fb1926ab5cc" datatype="html"> |
4461 | <source> You should only use moderated search indexes in production, or <x id="START_LINK"/>host your own<x id="CLOSE_LINK"/>. </source> | 4648 | <source>You should only use moderated search indexes in production, or <x id="START_LINK"/>host your own<x id="CLOSE_LINK"/>. </source> |
4462 | <target state="new"> | 4649 | <target state="new"> |
4463 | You should only use moderated search indexes in production, or | 4650 | You should only use moderated search indexes in production, or |
4464 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>host your own | 4651 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>host your own |
4465 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | 4652 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. |
4466 | 4653 | ||
4467 | </target> | 4654 | </target> |
4468 | 4655 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">502</context></context-group> | |
4469 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">502</context></context-group></trans-unit> | 4656 | </trans-unit> |
4470 | <trans-unit id="e5cd21a49e6eefd0610106b6afcd4ed56baab566" datatype="html"> | 4657 | <trans-unit id="e5cd21a49e6eefd0610106b6afcd4ed56baab566" datatype="html"> |
4471 | <source>Search index URL</source> | 4658 | <source>Search index URL</source> |
4472 | <target state="new">Search index URL</target> | 4659 | <target state="new">Search index URL</target> |
4473 | 4660 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">508</context></context-group> | |
4474 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">508</context></context-group></trans-unit> | 4661 | </trans-unit> |
4475 | <trans-unit id="8c720eb4f32907db445c969a451e59a28a15e89c" datatype="html"> | 4662 | <trans-unit id="8c720eb4f32907db445c969a451e59a28a15e89c" datatype="html"> |
4476 | <source>Disable local search in search bar</source> | 4663 | <source>Disable local search in search bar</source> |
4477 | <target state="new">Disable local search in search bar</target> | 4664 | <target state="new">Disable local search in search bar</target> |
4478 | 4665 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">519</context></context-group> | |
4479 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">519</context></context-group></trans-unit> | 4666 | </trans-unit> |
4480 | <trans-unit id="3b2b04802c47e4af0057651b972f52dffc92e8e1" datatype="html"> | 4667 | <trans-unit id="3b2b04802c47e4af0057651b972f52dffc92e8e1" datatype="html"> |
4481 | <source>Otherwise the local search stays used by default</source> | 4668 | <source>Otherwise the local search stays used by default</source> |
4482 | <target state="new">Otherwise the local search stays used by default</target> | 4669 | <target state="new">Otherwise the local search stays used by default</target> |
4483 | 4670 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">529</context></context-group> | |
4484 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">529</context></context-group></trans-unit> | 4671 | </trans-unit> |
4485 | <trans-unit id="be8b7fa8a3193d5015561140328a1240190842c1" datatype="html"> | 4672 | <trans-unit id="be8b7fa8a3193d5015561140328a1240190842c1" datatype="html"> |
4486 | <source>Search bar uses the global search index by default</source> | 4673 | <source>Search bar uses the global search index by default</source> |
4487 | <target state="new">Search bar uses the global search index by default</target> | 4674 | <target state="new">Search bar uses the global search index by default</target> |
4488 | 4675 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">526</context></context-group> | |
4489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">526</context></context-group></trans-unit> | 4676 | </trans-unit> |
4490 | <trans-unit id="bcaa25583cd971359254080004fbbb71c2b97ad6" datatype="html"> | 4677 | <trans-unit id="bcaa25583cd971359254080004fbbb71c2b97ad6" datatype="html"> |
4491 | <source>Enable global search</source> | 4678 | <source>Enable global search</source> |
4492 | <target state="new">Enable global search</target> | 4679 | <target state="new">Enable global search</target> |
4493 | 4680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">496</context></context-group> | |
4494 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">496</context></context-group></trans-unit> | 4681 | </trans-unit> |
4495 | <trans-unit id="3f237e2a863d0308a21bdb0bb5d4b84e3376dbee" datatype="html"> | 4682 | <trans-unit id="3f237e2a863d0308a21bdb0bb5d4b84e3376dbee" datatype="html"> |
4496 | <source>FEDERATION</source> | 4683 | <source>FEDERATION</source> |
4497 | <target state="new">FEDERATION</target> | 4684 | <target state="new">FEDERATION</target> |
4498 | 4685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">547</context></context-group> | |
4499 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">547</context></context-group></trans-unit> | 4686 | </trans-unit> |
4500 | <trans-unit id="2cc42a6b77d06f99a195ef8f3324d49267eedf87" datatype="html"> | 4687 | <trans-unit id="2cc42a6b77d06f99a195ef8f3324d49267eedf87" datatype="html"> |
4501 | <source> Manage <x id="START_LINK"/>relations<x id="CLOSE_LINK"/> with other instances. </source> | 4688 | <source>Manage <x id="START_LINK"/>relations<x id="CLOSE_LINK"/> with other instances. </source> |
4502 | <target state="new"> | 4689 | <target state="new"> |
4503 | Manage | 4690 | Manage |
4504 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>relations | 4691 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>relations |
4505 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> with other instances. | 4692 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> with other instances. |
4506 | 4693 | ||
4507 | </target> | 4694 | </target> |
4508 | 4695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">549</context></context-group> | |
4509 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">549</context></context-group></trans-unit> | 4696 | </trans-unit> |
4510 | <trans-unit id="a7f09999dbd1438d803b28abe1eb769f75126b3e" datatype="html"> | 4697 | <trans-unit id="a7f09999dbd1438d803b28abe1eb769f75126b3e" datatype="html"> |
4511 | <source>Other instances can follow yours</source> | 4698 | <source>Other instances can follow yours</source> |
4512 | <target state="new">Other instances can follow yours</target> | 4699 | <target state="new">Other instances can follow yours</target> |
4513 | 4700 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">561</context></context-group> | |
4514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">561</context></context-group></trans-unit> | 4701 | </trans-unit> |
4515 | <trans-unit id="3d9ffce2b1f284cb60067de15a313d3ecde0875f" datatype="html"> | 4702 | <trans-unit id="3d9ffce2b1f284cb60067de15a313d3ecde0875f" datatype="html"> |
4516 | <source>Manually approve new instance followers</source> | 4703 | <source>Manually approve new instance followers</source> |
4517 | <target state="new">Manually approve new instance followers</target> | 4704 | <target state="new">Manually approve new instance followers</target> |
4518 | 4705 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">568</context></context-group> | |
4519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">568</context></context-group></trans-unit> | 4706 | </trans-unit> |
4520 | <trans-unit id="9a3dd9c65ee3381ae3b78b9c56cc4e0d2e41f0e8" datatype="html"> | 4707 | <trans-unit id="9a3dd9c65ee3381ae3b78b9c56cc4e0d2e41f0e8" datatype="html"> |
4521 | <source>Automatically follow back instances</source> | 4708 | <source>Automatically follow back instances</source> |
4522 | <target state="new">Automatically follow back instances</target> | 4709 | <target state="new">Automatically follow back instances</target> |
4523 | 4710 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">581</context></context-group> | |
4524 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">581</context></context-group></trans-unit> | 4711 | </trans-unit> |
4525 | <trans-unit id="f183764323fcffd1b3ba4d13cdc21ec8971472cc" datatype="html"> | 4712 | <trans-unit id="f183764323fcffd1b3ba4d13cdc21ec8971472cc" datatype="html"> |
4526 | <source> You should only follow moderated indexes in production, or <x id="START_LINK"/>host your own<x id="CLOSE_LINK"/>. </source> | 4713 | <source>You should only follow moderated indexes in production, or <x id="START_LINK"/>host your own<x id="CLOSE_LINK"/>. </source> |
4527 | <target state="new"> | 4714 | <target state="new"> |
4528 | You should only follow moderated indexes in production, or | 4715 | You should only follow moderated indexes in production, or |
4529 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>host your own | 4716 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>host your own |
4530 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | 4717 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. |
4531 | 4718 | ||
4532 | </target> | 4719 | </target> |
4533 | 4720 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">600</context></context-group> | |
4534 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">600</context></context-group></trans-unit> | 4721 | </trans-unit> |
4535 | <trans-unit id="9bef6fc7194e11d18fdcac6aaccc816fe9ffc5a7" datatype="html"> | 4722 | <trans-unit id="9bef6fc7194e11d18fdcac6aaccc816fe9ffc5a7" datatype="html"> |
4536 | <source>⚠️ This functionality requires a lot of attention and extra moderation.</source> | 4723 | <source>⚠️ This functionality requires a lot of attention and extra moderation.</source> |
4537 | <target state="new">⚠️ This functionality requires a lot of attention and extra moderation.</target> | 4724 | <target state="new">⚠️ This functionality requires a lot of attention and extra moderation.</target> |
4538 | 4725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">353</context></context-group> | |
4539 | 4726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">584</context></context-group> | |
4540 | 4727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">597</context></context-group> | |
4541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">353</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">584</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">597</context></context-group></trans-unit> | 4728 | </trans-unit> |
4542 | <trans-unit id="764910b42b08b8342f7ba5907b258341ec044fa0" datatype="html"> | 4729 | <trans-unit id="764910b42b08b8342f7ba5907b258341ec044fa0" datatype="html"> |
4543 | <source>Index URL</source> | 4730 | <source>Index URL</source> |
4544 | <target state="new">Index URL</target> | 4731 | <target state="new">Index URL</target> |
4545 | 4732 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">606</context></context-group> | |
4546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">606</context></context-group></trans-unit> | 4733 | </trans-unit> |
4547 | <trans-unit id="62f023a56fd29518ab030384702362e6bf6a83e4" datatype="html"> | 4734 | <trans-unit id="62f023a56fd29518ab030384702362e6bf6a83e4" datatype="html"> |
4548 | <source>Automatically follow instances of a public index</source> | 4735 | <source>Automatically follow instances of a public index</source> |
4549 | <target state="new">Automatically follow instances of a public index</target> | 4736 | <target state="new">Automatically follow instances of a public index</target> |
4550 | 4737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">594</context></context-group> | |
4551 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">594</context></context-group></trans-unit> | 4738 | </trans-unit> |
4552 | <trans-unit id="5805ff22d19f43016e2b1a0f7eff12185c78e89d" datatype="html"> | 4739 | <trans-unit id="5805ff22d19f43016e2b1a0f7eff12185c78e89d" datatype="html"> |
4553 | <source>ADMINISTRATORS</source> | 4740 | <source>ADMINISTRATORS</source> |
4554 | <target state="new">ADMINISTRATORS</target> | 4741 | <target state="new">ADMINISTRATORS</target> |
4555 | 4742 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">626</context></context-group> | |
4556 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">626</context></context-group></trans-unit> | 4743 | </trans-unit> |
4557 | <trans-unit id="2149300564474427551"> | 4744 | <trans-unit id="2149300564474427551"> |
4558 | <source>Administrator</source> | 4745 | <source>Administrator</source> |
4559 | <target>Administrátor</target> | 4746 | <target>Administrátor</target> |
4560 | 4747 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">393</context></context-group> | |
4561 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">393</context></context-group></trans-unit> | 4748 | </trans-unit> |
4562 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> | 4749 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> |
4563 | <source>Admin email</source> | 4750 | <source>Admin email</source> |
4564 | <target>E-mail administrátora</target> | 4751 | <target>E-mail administrátora</target> |
4565 | 4752 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">632</context></context-group> | |
4566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">632</context></context-group></trans-unit> | 4753 | </trans-unit> |
4567 | <trans-unit id="f9bda6652199995a4bd4424f2e35b748eb0bda8a"> | 4754 | <trans-unit id="f9bda6652199995a4bd4424f2e35b748eb0bda8a"> |
4568 | <source>Enable contact form</source> | 4755 | <source>Enable contact form</source> |
4569 | <target>Povolit kontaktní formulář</target> | 4756 | <target>Povolit kontaktní formulář</target> |
4570 | 4757 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">643</context></context-group> | |
4571 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">643</context></context-group></trans-unit> | 4758 | </trans-unit> |
4572 | <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5"> | 4759 | <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5"> |
4573 | <source>Basic configuration</source> | 4760 | <source>Basic configuration</source> |
4574 | <target>Základní nastavení</target> | 4761 | <target>Základní nastavení</target> |
4575 | 4762 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group> | |
4576 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="b20a7aabcda694678c9485942ba237b86fd0cc9a" datatype="html"> | 4763 | </trans-unit> |
4577 | <source>VOD Transcoding</source><target state="new">VOD Transcoding</target> | 4764 | <trans-unit id="b20a7aabcda694678c9485942ba237b86fd0cc9a" datatype="html"> |
4578 | 4765 | <source>VOD Transcoding</source> | |
4579 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">701</context></context-group></trans-unit> | 4766 | <target state="new">VOD Transcoding</target> |
4767 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">701</context></context-group> | ||
4768 | </trans-unit> | ||
4580 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4769 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4581 | <source>TWITTER</source> | 4770 | <source>TWITTER</source> |
4582 | <target state="new">TWITTER</target> | 4771 | <target state="new">TWITTER</target> |
4583 | 4772 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group> | |
4584 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit><trans-unit id="953cc45f4ac17dee9271bd9a3667489c03c8076b" datatype="html"> | 4773 | </trans-unit> |
4585 | <source> Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. </source><target state="new"> Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. </target> | 4774 | <trans-unit id="953cc45f4ac17dee9271bd9a3667489c03c8076b" datatype="html"> |
4775 | <source>Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value.</source> | ||
4776 | <target state="new"> Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. </target> | ||
4586 | <context-group purpose="location"> | 4777 | <context-group purpose="location"> |
4587 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4778 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
4588 | <context context-type="linenumber">654,656</context> | 4779 | <context context-type="linenumber">654,656</context> |
4589 | </context-group> | 4780 | </context-group> |
4590 | </trans-unit> | 4781 | </trans-unit> |
4591 | |||
4592 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> | 4782 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> |
4593 | <source>Your Twitter username</source> | 4783 | <source>Your Twitter username</source> |
4594 | <target>Váš účet na Twitteru</target> | 4784 | <target>Váš účet na Twitteru</target> |
4595 | 4785 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">665</context></context-group> | |
4596 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">665</context></context-group></trans-unit> | 4786 | </trans-unit> |
4597 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4787 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4598 | <source>Instance allowed by Twitter</source> | 4788 | <source>Instance allowed by Twitter</source> |
4599 | <target state="new">Instance allowed by Twitter</target> | 4789 | <target state="new">Instance allowed by Twitter</target> |
4600 | 4790 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">677</context></context-group> | |
4601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">677</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4791 | </trans-unit> |
4602 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4792 | <trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4603 | 4793 | <source>If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source> | |
4604 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">682</context></context-group></trans-unit><trans-unit id="84fa6178d3a14368a4f2fde86c4c2c4e8764aa76" datatype="html"> | 4794 | <target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4605 | <source> Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. </source><target state="new"> Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. </target> | 4795 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">682</context></context-group> |
4606 | 4796 | </trans-unit> | |
4607 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">711</context></context-group></trans-unit><trans-unit id="cf385a62ac2f7e599d5dab1ea3fcd86a739ec098" datatype="html"> | 4797 | <trans-unit id="84fa6178d3a14368a4f2fde86c4c2c4e8764aa76" datatype="html"> |
4608 | <source> However, you may want to read our guidelines before tweaking the following values. </source><target state="new"> However, you may want to read our guidelines before tweaking the following values. </target> | 4798 | <source>Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically.</source> |
4609 | 4799 | <target state="new"> Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. </target> | |
4610 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="6d13d93e4896cd78cf72a2c9d470aea192fcb33b" datatype="html"> | 4800 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">711</context></context-group> |
4611 | <source>Read guidelines</source><target state="new">Read guidelines</target> | 4801 | </trans-unit> |
4612 | 4802 | <trans-unit id="cf385a62ac2f7e599d5dab1ea3fcd86a739ec098" datatype="html"> | |
4613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">718</context></context-group></trans-unit> | 4803 | <source>However, you may want to read our guidelines before tweaking the following values.</source> |
4804 | <target state="new"> However, you may want to read our guidelines before tweaking the following values. </target> | ||
4805 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group> | ||
4806 | </trans-unit> | ||
4807 | <trans-unit id="6d13d93e4896cd78cf72a2c9d470aea192fcb33b" datatype="html"> | ||
4808 | <source>Read guidelines</source> | ||
4809 | <target state="new">Read guidelines</target> | ||
4810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">718</context></context-group> | ||
4811 | </trans-unit> | ||
4614 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4812 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4615 | <source>LIVE</source><target state="new">LIVE</target> | 4813 | <source>LIVE</source> |
4616 | 4814 | <target state="new">LIVE</target> | |
4617 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">881</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4815 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group> |
4618 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4816 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">881</context></context-group> |
4619 | 4817 | </trans-unit> | |
4620 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="c0b94592a561638caf765f2cc338cd04e306f1a8" datatype="html"> | 4818 | <trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4621 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source><target state="new">⚠️ Enabling live streaming requires trust in your users and extra moderation work</target> | 4819 | <source>Enable users of your instance to stream live.</source> |
4622 | 4820 | <target state="new"> Enable users of your instance to stream live. </target> | |
4623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">898</context></context-group></trans-unit><trans-unit id="acdcf7ffe53af776994f9c393c1d20cdbc633ad4" datatype="html"> | 4821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group> |
4624 | <source>If enabled, your server needs to accept incoming TCP traffic on port <x id="INTERPOLATION" equiv-text="{{ liveRTMPPort }}"/></source><target state="new">If enabled, your server needs to accept incoming TCP traffic on port <x id="INTERPOLATION" equiv-text="{{ liveRTMPPort }}"/></target> | 4822 | </trans-unit> |
4625 | 4823 | <trans-unit id="c0b94592a561638caf765f2cc338cd04e306f1a8" datatype="html"> | |
4626 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">899</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4824 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source> |
4627 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4825 | <target state="new">⚠️ Enabling live streaming requires trust in your users and extra moderation work</target> |
4628 | 4826 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">898</context></context-group> | |
4629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">907</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4827 | </trans-unit> |
4630 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4828 | <trans-unit id="acdcf7ffe53af776994f9c393c1d20cdbc633ad4" datatype="html"> |
4631 | 4829 | <source>If enabled, your server needs to accept incoming TCP traffic on port <x id="INTERPOLATION" equiv-text="{{ liveRTMPPort }}"/></source> | |
4632 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit><trans-unit id="cf06f240dd01db03367a64c84e5513dd59f3a381" datatype="html"> | 4830 | <target state="new">If enabled, your server needs to accept incoming TCP traffic on port <x id="INTERPOLATION" equiv-text="{{ liveRTMPPort }}"/></target> |
4633 | <source>Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source><target state="new">Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 4831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">899</context></context-group> |
4634 | 4832 | </trans-unit> | |
4635 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">916</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4833 | <trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4636 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4834 | <source>Allow your users to automatically publish a replay of their live</source> |
4637 | 4835 | <target state="new">Allow your users to automatically publish a replay of their live</target> | |
4638 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">919</context></context-group></trans-unit><trans-unit id="bdc3da1a466b92c3da58c3dff5d47030ec9f6680" datatype="html"> | 4836 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">907</context></context-group> |
4639 | <source>Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source><target state="new">Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 4837 | </trans-unit> |
4640 | 4838 | <trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | |
4641 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">924</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4839 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> |
4642 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4840 | <target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4643 | 4841 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group> | |
4644 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">927</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | 4842 | </trans-unit> |
4645 | <source>Max live duration</source><target state="new">Max live duration</target> | 4843 | <trans-unit id="cf06f240dd01db03367a64c84e5513dd59f3a381" datatype="html"> |
4646 | 4844 | <source>Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | |
4647 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">932</context></context-group></trans-unit><trans-unit id="7f5b08538d16c5f243789b4af4b3d888028ef2f9" datatype="html"> | 4845 | <target state="new">Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
4648 | <source> Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some. </source><target state="new"> Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some. </target> | 4846 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">916</context></context-group> |
4649 | 4847 | </trans-unit> | |
4650 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">951</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4848 | <trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4651 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4849 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> |
4652 | 4850 | <target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | |
4653 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">919</context></context-group> |
4654 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4852 | </trans-unit> |
4655 | 4853 | <trans-unit id="bdc3da1a466b92c3da58c3dff5d47030ec9f6680" datatype="html"> | |
4656 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">971</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4854 | <source>Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
4657 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4855 | <target state="new">Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
4658 | 4856 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">924</context></context-group> | |
4659 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">894</context></context-group></trans-unit><trans-unit id="be88ab2c149700f1e6e7595a1ad10b592acd9504" datatype="html"> | 4857 | </trans-unit> |
4660 | <source>Transcoding enabled for live streams</source><target state="new">Transcoding enabled for live streams</target> | 4858 | <trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4661 | 4859 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> | |
4662 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">965</context></context-group></trans-unit><trans-unit id="12933ce3852d2abe0e36142c269e99cd772f4a89" datatype="html"> | 4860 | <target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4663 | <source>will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding</source><target state="new">will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding</target> | 4861 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">927</context></context-group> |
4664 | 4862 | </trans-unit> | |
4665 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="45f13883641cb1c796685a16cf3c156b89fd9a28" datatype="html"> | 4863 | <trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4666 | <source>will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding</source><target state="new">will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding</target> | 4864 | <source>Max live duration</source> |
4667 | 4865 | <target state="new">Max live duration</target> | |
4668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">993</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">932</context></context-group> |
4669 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4867 | </trans-unit> |
4670 | 4868 | <trans-unit id="7f5b08538d16c5f243789b4af4b3d888028ef2f9" datatype="html"> | |
4671 | 4869 | <source>Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some.</source> | |
4672 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">999</context></context-group></trans-unit> | 4870 | <target state="new"> Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some. </target> |
4871 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">951</context></context-group> | ||
4872 | </trans-unit> | ||
4873 | <trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | ||
4874 | <source>Live transcoding threads</source> | ||
4875 | <target state="new">Live transcoding threads</target> | ||
4876 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group> | ||
4877 | </trans-unit> | ||
4878 | <trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | ||
4879 | <source>Live resolutions to generate</source> | ||
4880 | <target state="new">Live resolutions to generate</target> | ||
4881 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">971</context></context-group> | ||
4882 | </trans-unit> | ||
4883 | <trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | ||
4884 | <source>Allow live streaming</source> | ||
4885 | <target state="new">Allow live streaming</target> | ||
4886 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">894</context></context-group> | ||
4887 | </trans-unit> | ||
4888 | <trans-unit id="be88ab2c149700f1e6e7595a1ad10b592acd9504" datatype="html"> | ||
4889 | <source>Transcoding enabled for live streams</source> | ||
4890 | <target state="new">Transcoding enabled for live streams</target> | ||
4891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">965</context></context-group> | ||
4892 | </trans-unit> | ||
4893 | <trans-unit id="12933ce3852d2abe0e36142c269e99cd772f4a89" datatype="html"> | ||
4894 | <source>will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding</source> | ||
4895 | <target state="new">will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding</target> | ||
4896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group> | ||
4897 | </trans-unit> | ||
4898 | <trans-unit id="45f13883641cb1c796685a16cf3c156b89fd9a28" datatype="html"> | ||
4899 | <source>will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding</source> | ||
4900 | <target state="new">will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding</target> | ||
4901 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">993</context></context-group> | ||
4902 | </trans-unit> | ||
4903 | <trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | ||
4904 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source> | ||
4905 | <target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | ||
4906 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group> | ||
4907 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">999</context></context-group> | ||
4908 | </trans-unit> | ||
4673 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4909 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> |
4674 | <source>Live streaming</source><target state="new">Live streaming</target> | 4910 | <source>Live streaming</source> |
4675 | 4911 | <target state="new">Live streaming</target> | |
4676 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">875</context></context-group></trans-unit> | 4912 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group> |
4913 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">875</context></context-group> | ||
4914 | </trans-unit> | ||
4677 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4915 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4678 | <source>TRANSCODING</source> | 4916 | <source>TRANSCODING</source> |
4679 | <target state="new">TRANSCODING</target> | 4917 | <target state="new">TRANSCODING</target> |
4680 | 4918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">728</context></context-group> | |
4681 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">728</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">949</context></context-group></trans-unit> | 4919 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">949</context></context-group> |
4920 | </trans-unit> | ||
4682 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4921 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4683 | <source> Process uploaded videos so that they are in a streamable form that any device can play. Though costly in resources, this is a critical part of PeerTube, so tread carefully. </source> | 4922 | <source>Process uploaded videos so that they are in a streamable form that any device can play. Though costly in resources, this is a critical part of PeerTube, so tread carefully.</source> |
4684 | <target state="new"> | 4923 | <target state="new"> |
4685 | Process uploaded videos so that they are in a streamable form that any device can play. Though costly in | 4924 | Process uploaded videos so that they are in a streamable form that any device can play. Though costly in |
4686 | resources, this is a critical part of PeerTube, so tread carefully. | 4925 | resources, this is a critical part of PeerTube, so tread carefully. |
4687 | </target> | 4926 | </target> |
4688 | 4927 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">730</context></context-group> | |
4689 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">730</context></context-group></trans-unit><trans-unit id="dd61ba82a1fe37408ee715264241c078530f8c6f" datatype="html"> | 4928 | </trans-unit> |
4690 | <source>Input formats</source><target state="new">Input formats</target> | 4929 | <trans-unit id="dd61ba82a1fe37408ee715264241c078530f8c6f" datatype="html"> |
4691 | 4930 | <source>Input formats</source> | |
4692 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit> | 4931 | <target state="new">Input formats</target> |
4932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group> | ||
4933 | </trans-unit> | ||
4693 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> | 4934 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> |
4694 | <source>Transcoding enabled</source> | 4935 | <source>Transcoding enabled</source> |
4695 | <target>Překódování povoleno</target> | 4936 | <target>Překódování povoleno</target> |
4696 | 4937 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group> | |
4697 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="5789fe6bacfbf750afc62f0399cadf899b67f348" datatype="html"> | 4938 | </trans-unit> |
4698 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | 4939 | <trans-unit id="5789fe6bacfbf750afc62f0399cadf899b67f348" datatype="html"> |
4699 | 4940 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | |
4700 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | 4941 | <target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
4701 | 4942 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">785</context></context-group> | |
4702 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 4943 | </trans-unit> |
4703 | 4944 | <trans-unit id="db8369ea3a140ba4a114648ba204fb1a55ba742e" datatype="html"> | |
4704 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">785</context></context-group></trans-unit><trans-unit id="db8369ea3a140ba4a114648ba204fb1a55ba742e" datatype="html"> | 4945 | <source><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Faster playback especially with long videos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></source> |
4705 | <source><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> | 4946 | <target state="new"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Faster playback especially with long videos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> |
4706 | "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Faster playback especially with long videos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></source><target state="new"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> | 4947 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">805</context></context-group> |
4707 | "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Faster playback especially with long videos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> | 4948 | </trans-unit> |
4708 | 4949 | <trans-unit id="0148700953243b0a7188dcbe233d8913c5cb6614" datatype="html"> | |
4709 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">805</context></context-group></trans-unit><trans-unit id="0148700953243b0a7188dcbe233d8913c5cb6614" datatype="html"> | 4950 | <source>will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding</source> |
4710 | <source>will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding</source><target state="new">will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding</target> | 4951 | <target state="new">will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding</target> |
4711 | 4952 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">852</context></context-group> | |
4712 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">852</context></context-group></trans-unit><trans-unit id="cacc547b752d8bc881f267e940b6b46885b566d9" datatype="html"> | 4953 | </trans-unit> |
4713 | <source>will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding</source><target state="new">will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding</target> | 4954 | <trans-unit id="cacc547b752d8bc881f267e940b6b46885b566d9" datatype="html"> |
4714 | 4955 | <source>will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding</source> | |
4715 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">853</context></context-group></trans-unit> | 4956 | <target state="new">will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding</target> |
4716 | 4957 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">853</context></context-group> | |
4717 | 4958 | </trans-unit> | |
4718 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> | 4959 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f"> |
4719 | <source>Allow additional extensions</source> | 4960 | <source>Allow additional extensions</source> |
4720 | <target>Povolit dodatečné přípony</target> | 4961 | <target>Povolit dodatečné přípony</target> |
4721 | 4962 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">753</context></context-group> | |
4722 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">753</context></context-group></trans-unit><trans-unit id="0ff72c066084f3c420dde9febf4f7255e7511867" datatype="html"> | 4963 | </trans-unit> |
4723 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.</source><target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.</target> | 4964 | <trans-unit id="0ff72c066084f3c420dde9febf4f7255e7511867" datatype="html"> |
4965 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.</source> | ||
4966 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.</target> | ||
4724 | <context-group purpose="location"> | 4967 | <context-group purpose="location"> |
4725 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4968 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
4726 | <context context-type="linenumber">756</context> | 4969 | <context context-type="linenumber">756</context> |
4727 | </context-group> | 4970 | </context-group> |
4728 | </trans-unit> | 4971 | </trans-unit> |
4729 | |||
4730 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6"> | 4972 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6"> |
4731 | <source>Allow audio files upload</source> | 4973 | <source>Allow audio files upload</source> |
4732 | <target>Umožnit upload audio souborů</target> | 4974 | <target>Umožnit upload audio souborů</target> |
4733 | 4975 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group> | |
4734 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="49c85926a345d64c41d9fa85c9aa11f3fc2982f3" datatype="html"> | 4976 | </trans-unit> |
4735 | <source>Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files.</source><target state="new">Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files.</target> | 4977 | <trans-unit id="49c85926a345d64c41d9fa85c9aa11f3fc2982f3" datatype="html"> |
4736 | 4978 | <source>Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files.</source> | |
4737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">767</context></context-group></trans-unit><trans-unit id="02c07d8c482b71d6409c4cd3a20d604cc0e11ea1" datatype="html"> | 4979 | <target state="new">Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files.</target> |
4738 | <source>The file will be merged in a still image video with the preview file on upload.</source><target state="new">The file will be merged in a still image video with the preview file on upload.</target> | 4980 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">767</context></context-group> |
4739 | 4981 | </trans-unit> | |
4740 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">768</context></context-group></trans-unit><trans-unit id="9d90195d5f6d7aa869c86e331a91e0feef8e4657" datatype="html"> | 4982 | <trans-unit id="02c07d8c482b71d6409c4cd3a20d604cc0e11ea1" datatype="html"> |
4741 | <source>Output formats</source><target state="new">Output formats</target> | 4983 | <source>The file will be merged in a still image video with the preview file on upload.</source> |
4742 | 4984 | <target state="new">The file will be merged in a still image video with the preview file on upload.</target> | |
4743 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">775</context></context-group></trans-unit><trans-unit id="7ceaf938d33be18d0e221b07ac3ed9d7e7142054" datatype="html"> | 4985 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">768</context></context-group> |
4744 | <source>WebTorrent enabled</source><target state="new">WebTorrent enabled</target> | 4986 | </trans-unit> |
4745 | 4987 | <trans-unit id="9d90195d5f6d7aa869c86e331a91e0feef8e4657" datatype="html"> | |
4746 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">781</context></context-group></trans-unit> | 4988 | <source>Output formats</source> |
4747 | 4989 | <target state="new">Output formats</target> | |
4748 | 4990 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">775</context></context-group> | |
4749 | 4991 | </trans-unit> | |
4992 | <trans-unit id="7ceaf938d33be18d0e221b07ac3ed9d7e7142054" datatype="html"> | ||
4993 | <source>WebTorrent enabled</source> | ||
4994 | <target state="new">WebTorrent enabled</target> | ||
4995 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">781</context></context-group> | ||
4996 | </trans-unit> | ||
4750 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4997 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4751 | <source>HLS with P2P support enabled</source> | 4998 | <source>HLS with P2P support enabled</source> |
4752 | <target state="new">HLS with P2P support enabled</target> | 4999 | <target state="new">HLS with P2P support enabled</target> |
4753 | 5000 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">800</context></context-group> | |
4754 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">800</context></context-group></trans-unit><trans-unit id="4279c0d1cd3a3396e93020c46f9eab4189b3d279" datatype="html"> | 5001 | </trans-unit> |
4755 | <source>Resolutions to generate per enabled format</source><target state="new">Resolutions to generate per enabled format</target> | 5002 | <trans-unit id="4279c0d1cd3a3396e93020c46f9eab4189b3d279" datatype="html"> |
4756 | 5003 | <source>Resolutions to generate per enabled format</source> | |
4757 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">822</context></context-group></trans-unit><trans-unit id="c5bc90e334dc36ba82d4050e69b024713f86e71f" datatype="html"> | 5004 | <target state="new">Resolutions to generate per enabled format</target> |
4758 | <source> The original file resolution will be the default target if no option is selected. </source><target state="new"> The original file resolution will be the default target if no option is selected. </target> | 5005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">822</context></context-group> |
5006 | </trans-unit> | ||
5007 | <trans-unit id="c5bc90e334dc36ba82d4050e69b024713f86e71f" datatype="html"> | ||
5008 | <source>The original file resolution will be the default target if no option is selected.</source> | ||
5009 | <target state="new"> The original file resolution will be the default target if no option is selected. </target> | ||
4759 | <context-group purpose="location"> | 5010 | <context-group purpose="location"> |
4760 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 5011 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
4761 | <context context-type="linenumber">838,839</context> | 5012 | <context context-type="linenumber">838,839</context> |
@@ -4764,432 +5015,418 @@ The link will expire within 1 hour.</target> | |||
4764 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> | 5015 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> |
4765 | <source>Transcoding threads</source> | 5016 | <source>Transcoding threads</source> |
4766 | <target>Vlákna na překódování</target> | 5017 | <target>Vlákna na překódování</target> |
4767 | 5018 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group> | |
4768 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 5019 | </trans-unit> |
4769 | |||
4770 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 5020 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4771 | <source>CACHE</source> | 5021 | <source>CACHE</source> |
4772 | <target state="new">CACHE</target> | 5022 | <target state="new">CACHE</target> |
4773 | 5023 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1022</context></context-group> | |
4774 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1022</context></context-group></trans-unit> | 5024 | </trans-unit> |
4775 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 5025 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4776 | <source> | 5026 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
4777 | Some files are not federated, and fetched when necessary. Define their caching policies. | ||
4778 | </source> | ||
4779 | <target state="new"> | 5027 | <target state="new"> |
4780 | Some files are not federated, and fetched when necessary. Define their caching policies. | 5028 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4781 | </target> | 5029 | </target> |
4782 | 5030 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1024</context></context-group> | |
4783 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1024</context></context-group></trans-unit> | 5031 | </trans-unit> |
4784 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 5032 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4785 | <source>Number of previews to keep in cache</source> | 5033 | <source>Number of previews to keep in cache</source> |
4786 | <target state="new">Number of previews to keep in cache</target> | 5034 | <target state="new">Number of previews to keep in cache</target> |
4787 | 5035 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1032</context></context-group> | |
4788 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1032</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 5036 | </trans-unit> |
4789 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 5037 | <trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4790 | 5038 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source> | |
4791 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1038</context></context-group></trans-unit> | 5039 | <target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
5040 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1038</context></context-group> | ||
5041 | </trans-unit> | ||
4792 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 5042 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4793 | <source>Number of video captions to keep in cache</source> | 5043 | <source>Number of video captions to keep in cache</source> |
4794 | <target state="new">Number of video captions to keep in cache</target> | 5044 | <target state="new">Number of video captions to keep in cache</target> |
4795 | 5045 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group> | |
4796 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 5046 | </trans-unit> |
4797 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 5047 | <trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4798 | 5048 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source> | |
4799 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1050</context></context-group></trans-unit> | 5049 | <target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
5050 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1050</context></context-group> | ||
5051 | </trans-unit> | ||
4800 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 5052 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4801 | <source>CUSTOMIZATIONS</source> | 5053 | <source>CUSTOMIZATIONS</source> |
4802 | <target state="new">CUSTOMIZATIONS</target> | 5054 | <target state="new">CUSTOMIZATIONS</target> |
4803 | 5055 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1062</context></context-group> | |
4804 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1062</context></context-group></trans-unit> | 5056 | </trans-unit> |
4805 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 5057 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4806 | <source> | 5058 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
4807 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | ||
4808 | </source> | ||
4809 | <target state="new"> | 5059 | <target state="new"> |
4810 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 5060 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4811 | </target> | 5061 | </target> |
4812 | 5062 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1064</context></context-group> | |
4813 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1064</context></context-group></trans-unit> | 5063 | </trans-unit> |
4814 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> | 5064 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> |
4815 | <source>JavaScript</source> | 5065 | <source>JavaScript</source> |
4816 | <target>JavaScript</target> | 5066 | <target>JavaScript</target> |
4817 | 5067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1073</context></context-group> | |
4818 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1073</context></context-group></trans-unit> | 5068 | </trans-unit> |
4819 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 5069 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4820 | <source> Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 5070 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4821 | <target state="new"> | 5071 | <target state="new"> |
4822 | Write JavaScript code directly. | 5072 | Write JavaScript code directly. |
4823 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/>Example: | 5073 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/>Example: |
4824 | <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/>console.log('my instance is amazing'); | 5074 | <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/>console.log('my instance is amazing'); |
4825 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 5075 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4826 | </target> | 5076 | </target> |
4827 | 5077 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1077</context></context-group> | |
4828 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1077</context></context-group></trans-unit> | 5078 | </trans-unit> |
4829 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 5079 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4830 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 5080 | <source>Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Prepend with <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> to override styles. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></source> |
4831 | color: red; | ||
4832 | <x id="INTERPOLATION_1"/> | ||
4833 | <x id="CLOSE_TAG_PRE"/> Prepend with <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> to override styles. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> | ||
4834 | color: red; | ||
4835 | <x id="INTERPOLATION_1"/> | ||
4836 | <x id="CLOSE_TAG_PRE"/></source> | ||
4837 | <target state="new"> | 5081 | <target state="new"> |
4838 | Write CSS code directly. Example: | 5082 | Write CSS code directly. Example: |
4839 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 5083 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
4840 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 5084 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
4841 | <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css | 5085 | <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css |
4842 | <x id="INTERPOLATION" equiv-text="{{ '{' }}"/> | 5086 | <x id="INTERPOLATION" equiv-text="{{ '{' }}"/> |
4843 | color: red; | 5087 | color: red; |
4844 | 5088 | ||
4845 | <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> | 5089 | <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> |
4846 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 5090 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4847 | Prepend with | 5091 | Prepend with |
4848 | <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>#custom-css | 5092 | <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>#custom-css |
4849 | <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> to override styles. Example: | 5093 | <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> to override styles. Example: |
4850 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 5094 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
4851 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 5095 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
4852 | <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css .logged-in-email | 5096 | <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css .logged-in-email |
4853 | <x id="INTERPOLATION" equiv-text="{{ '{' }}"/> | 5097 | <x id="INTERPOLATION" equiv-text="{{ '{' }}"/> |
4854 | color: red; | 5098 | color: red; |
4855 | 5099 | ||
4856 | <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> | 5100 | <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> |
4857 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 5101 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4858 | </target> | 5102 | </target> |
4859 | 5103 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1096</context></context-group> | |
4860 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1096</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 5104 | </trans-unit> |
4861 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 5105 | <trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4862 | 5106 | <source>It seems like the configuration is invalid. Please search for potential errors in the different tabs.</source> | |
4863 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1134</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 5107 | <target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4864 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 5108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1134</context></context-group> |
4865 | 5109 | </trans-unit> | |
4866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1138</context></context-group></trans-unit> | 5110 | <trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
5111 | <source>You cannot allow live replay if you don't enable transcoding.</source> | ||
5112 | <target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | ||
5113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1138</context></context-group> | ||
5114 | </trans-unit> | ||
4867 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> | 5115 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> |
4868 | <source>Advanced configuration</source> | 5116 | <source>Advanced configuration</source> |
4869 | <target>Pokročilá nastavení</target> | 5117 | <target>Pokročilá nastavení</target> |
4870 | 5118 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1016</context></context-group> | |
4871 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1016</context></context-group></trans-unit> | 5119 | </trans-unit> |
4872 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> | 5120 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> |
4873 | <source>Update configuration</source> | 5121 | <source>Update configuration</source> |
4874 | <target>Aktualizovat nastavení</target> | 5122 | <target>Aktualizovat nastavení</target> |
4875 | 5123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1141</context></context-group> | |
4876 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1141</context></context-group></trans-unit> | 5124 | </trans-unit> |
4877 | |||
4878 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 5125 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4879 | <source>VIDEO SETTINGS</source> | 5126 | <source>VIDEO SETTINGS</source> |
4880 | <target state="new">VIDEO SETTINGS</target> | 5127 | <target state="new">VIDEO SETTINGS</target> |
4881 | 5128 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group> | |
4882 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 5129 | </trans-unit> |
4883 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 5130 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4884 | <source>NOTIFICATIONS</source> | 5131 | <source>NOTIFICATIONS</source> |
4885 | <target state="new">NOTIFICATIONS</target> | 5132 | <target state="new">NOTIFICATIONS</target> |
4886 | 5133 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group> | |
4887 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> | 5134 | </trans-unit> |
4888 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 5135 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4889 | <source>INTERFACE</source> | 5136 | <source>INTERFACE</source> |
4890 | <target state="new">INTERFACE</target> | 5137 | <target state="new">INTERFACE</target> |
4891 | 5138 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group> | |
4892 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | 5139 | </trans-unit> |
4893 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 5140 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4894 | <source>PASSWORD</source> | 5141 | <source>PASSWORD</source> |
4895 | <target state="new">PASSWORD</target> | 5142 | <target state="new">PASSWORD</target> |
4896 | 5143 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group> | |
4897 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | 5144 | </trans-unit> |
4898 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 5145 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4899 | <source>EMAIL</source> | 5146 | <source>EMAIL</source> |
4900 | <target state="new">EMAIL</target> | 5147 | <target state="new">EMAIL</target> |
4901 | 5148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group> | |
4902 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> | 5149 | </trans-unit> |
4903 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 5150 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4904 | <source>DANGER ZONE</source> | 5151 | <source>DANGER ZONE</source> |
4905 | <target state="new">DANGER ZONE</target> | 5152 | <target state="new">DANGER ZONE</target> |
4906 | 5153 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">77</context></context-group> | |
4907 | 5154 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">198</context></context-group> | |
4908 | 5155 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">198</context></context-group> | |
4909 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">198</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">198</context></context-group></trans-unit> | 5156 | </trans-unit> |
4910 | <trans-unit id="4915431133669985304"> | 5157 | <trans-unit id="4915431133669985304"> |
4911 | <source>Profile</source> | 5158 | <source>Profile</source> |
4912 | <target>Profil</target> | 5159 | <target>Profil</target> |
4913 | 5160 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">170</context></context-group> | |
4914 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">170</context></context-group></trans-unit> | 5161 | </trans-unit> |
4915 | <trans-unit id="1963136290621768454" datatype="html"> | 5162 | <trans-unit id="1963136290621768454" datatype="html"> |
4916 | <source>Resolution</source> | 5163 | <source>Resolution</source> |
4917 | <target state="new">Resolution</target> | 5164 | <target state="new">Resolution</target> |
4918 | 5165 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">179</context></context-group> | |
4919 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">179</context></context-group></trans-unit> | 5166 | </trans-unit> |
4920 | <trans-unit id="7814358426066520520" datatype="html"> | 5167 | <trans-unit id="7814358426066520520" datatype="html"> |
4921 | <source>Aspect ratio</source> | 5168 | <source>Aspect ratio</source> |
4922 | <target state="new">Aspect ratio</target> | 5169 | <target state="new">Aspect ratio</target> |
4923 | 5170 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">180</context></context-group> | |
4924 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">180</context></context-group></trans-unit> | 5171 | </trans-unit> |
4925 | <trans-unit id="44862519224794374" datatype="html"> | 5172 | <trans-unit id="44862519224794374" datatype="html"> |
4926 | <source>Average frame rate</source> | 5173 | <source>Average frame rate</source> |
4927 | <target state="new">Average frame rate</target> | 5174 | <target state="new">Average frame rate</target> |
4928 | 5175 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">181</context></context-group> | |
4929 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">181</context></context-group></trans-unit> | 5176 | </trans-unit> |
4930 | <trans-unit id="5053683525387462246" datatype="html"> | 5177 | <trans-unit id="5053683525387462246" datatype="html"> |
4931 | <source>Pixel format</source> | 5178 | <source>Pixel format</source> |
4932 | <target state="new">Pixel format</target> | 5179 | <target state="new">Pixel format</target> |
4933 | 5180 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">182</context></context-group> | |
4934 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> | 5181 | </trans-unit> |
4935 | <trans-unit id="7858676566953242358" datatype="html"> | 5182 | <trans-unit id="7858676566953242358" datatype="html"> |
4936 | <source>Sample rate</source> | 5183 | <source>Sample rate</source> |
4937 | <target state="new">Sample rate</target> | 5184 | <target state="new">Sample rate</target> |
4938 | 5185 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">186</context></context-group> | |
4939 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 5186 | </trans-unit> |
4940 | <trans-unit id="5403856660543890284" datatype="html"> | 5187 | <trans-unit id="5403856660543890284" datatype="html"> |
4941 | <source>Channel Layout</source> | 5188 | <source>Channel Layout</source> |
4942 | <target state="new">Channel Layout</target> | 5189 | <target state="new">Channel Layout</target> |
4943 | 5190 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">187</context></context-group> | |
4944 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">187</context></context-group></trans-unit> | 5191 | </trans-unit> |
4945 | <trans-unit id="b5398623f87ee72ed23f5023918db1707771e925"> | 5192 | <trans-unit id="b5398623f87ee72ed23f5023918db1707771e925"> |
4946 | <source>Video settings</source> | 5193 | <source>Video settings</source> |
4947 | <target>Nastavení videí</target> | 5194 | <target>Nastavení videí</target> |
4948 | 5195 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">18</context></context-group> | |
4949 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 5196 | </trans-unit> |
4950 | <trans-unit id="dc7b800a27960e33af36f16f6c25aaf5776464f7" datatype="html"> | 5197 | <trans-unit id="dc7b800a27960e33af36f16f6c25aaf5776464f7" datatype="html"> |
4951 | <source>Interface settings</source> | 5198 | <source>Interface settings</source> |
4952 | <target state="new">Interface settings</target> | 5199 | <target state="new">Interface settings</target> |
4953 | 5200 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">22</context></context-group> | |
4954 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 5201 | </trans-unit> |
4955 | <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9"> | 5202 | <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9"> |
4956 | <source>Change password</source> | 5203 | <source>Change password</source> |
4957 | <target>Změnit heslo</target> | 5204 | <target>Změnit heslo</target> |
4958 | 5205 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">5</context></context-group> | |
4959 | 5206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">33</context></context-group> | |
4960 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">5</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 5207 | </trans-unit> |
4961 | <trans-unit id="0dd390d056411e1709ec97ec51c46d78600e3f7b"> | 5208 | <trans-unit id="0dd390d056411e1709ec97ec51c46d78600e3f7b"> |
4962 | <source>Current password</source> | 5209 | <source>Current password</source> |
4963 | <target>Současné heslo</target> | 5210 | <target>Současné heslo</target> |
4964 | 5211 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">8</context></context-group> | |
4965 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 5212 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">28</context></context-group> |
5213 | </trans-unit> | ||
4966 | <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229"> | 5214 | <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229"> |
4967 | <source>New password</source> | 5215 | <source>New password</source> |
4968 | <target>Nové heslo</target> | 5216 | <target>Nové heslo</target> |
4969 | 5217 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">17</context></context-group> | |
4970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 5218 | </trans-unit> |
4971 | <trans-unit id="ede41f01c781b168a783cfcefc6fb67d48780d9b"> | 5219 | <trans-unit id="ede41f01c781b168a783cfcefc6fb67d48780d9b"> |
4972 | <source>Confirm new password</source> | 5220 | <source>Confirm new password</source> |
4973 | <target>Potvrďte nové heslo</target> | 5221 | <target>Potvrďte nové heslo</target> |
4974 | 5222 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">26</context></context-group> | |
4975 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 5223 | </trans-unit> |
4976 | <trans-unit id="20f62f24170d57b1efeb2387a0949f482cd4d129"> | 5224 | <trans-unit id="20f62f24170d57b1efeb2387a0949f482cd4d129"> |
4977 | <source>Default policy on videos containing sensitive content</source> | 5225 | <source>Default policy on videos containing sensitive content</source> |
4978 | <target>Vychozí nastavení pro videa obsahující citlivý materiál</target> | 5226 | <target>Vychozí nastavení pro videa obsahující citlivý materiál</target> |
4979 | 5227 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">4</context></context-group> | |
4980 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 5228 | </trans-unit> |
4981 | <trans-unit id="8fbbb5d7bbc4df74ac19fe046f7b9d4f2fd80737" datatype="html"> | 5229 | <trans-unit id="8fbbb5d7bbc4df74ac19fe046f7b9d4f2fd80737" datatype="html"> |
4982 | <source> With <x id="START_TAG_STRONG"/>Do not list<x id="CLOSE_TAG_STRONG"/> or <x id="START_TAG_STRONG"/>Blur thumbnails<x id="CLOSE_TAG_STRONG"/>, a confirmation will be requested to watch the video. </source> | 5230 | <source>With <x id="START_TAG_STRONG"/>Do not list<x id="CLOSE_TAG_STRONG"/> or <x id="START_TAG_STRONG"/>Blur thumbnails<x id="CLOSE_TAG_STRONG"/>, a confirmation will be requested to watch the video. </source> |
4983 | <target state="new"> | 5231 | <target state="new"> |
4984 | With | 5232 | With |
4985 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Do not list | 5233 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Do not list |
4986 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or | 5234 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or |
4987 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails | 5235 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails |
4988 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. | 5236 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. |
4989 | 5237 | ||
4990 | </target> | 5238 | </target> |
4991 | 5239 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">8</context></context-group> | |
4992 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 5240 | </trans-unit> |
4993 | <trans-unit id="be05139c85b590f407c8204605601ab510247f9f" datatype="html"> | 5241 | <trans-unit id="be05139c85b590f407c8204605601ab510247f9f" datatype="html"> |
4994 | <source>Policy for sensitive videos</source> | 5242 | <source>Policy for sensitive videos</source> |
4995 | <target state="new">Policy for sensitive videos</target> | 5243 | <target state="new">Policy for sensitive videos</target> |
4996 | 5244 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">15</context></context-group> | |
4997 | 5245 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">116</context></context-group> | |
4998 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 5246 | </trans-unit> |
4999 | <trans-unit id="ea8e7b15807cce2fea74798db2396a4de016e5c7" datatype="html"> | 5247 | <trans-unit id="ea8e7b15807cce2fea74798db2396a4de016e5c7" datatype="html"> |
5000 | <source>Only display videos in the following languages/subtitles</source> | 5248 | <source>Only display videos in the following languages/subtitles</source> |
5001 | <target state="new">Only display videos in the following languages/subtitles</target> | 5249 | <target state="new">Only display videos in the following languages/subtitles</target> |
5002 | 5250 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">25</context></context-group> | |
5003 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 5251 | </trans-unit> |
5004 | <trans-unit id="db930d0e3dbcb12963bec15cfec67fac6534542d" datatype="html"> | 5252 | <trans-unit id="db930d0e3dbcb12963bec15cfec67fac6534542d" datatype="html"> |
5005 | <source>In Recently added, Trending, Local, Most liked and Search pages</source> | 5253 | <source>In Recently added, Trending, Local, Most liked and Search pages</source> |
5006 | <target state="new">In Recently added, Trending, Local, Most liked and Search pages</target> | 5254 | <target state="new">In Recently added, Trending, Local, Most liked and Search pages</target> |
5007 | 5255 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">28</context></context-group> | |
5008 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 5256 | </trans-unit> |
5009 | <trans-unit id="984be691d289644c6d40fa2cc858093be31ab58e" datatype="html"> | 5257 | <trans-unit id="984be691d289644c6d40fa2cc858093be31ab58e" datatype="html"> |
5010 | <source>Add a new language</source> | 5258 | <source>Add a new language</source> |
5011 | <target state="new">Add a new language</target> | 5259 | <target state="new">Add a new language</target> |
5012 | 5260 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">36</context></context-group> | |
5013 | 5261 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">69</context></context-group> | |
5014 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 5262 | </trans-unit> |
5015 | |||
5016 | <trans-unit id="03d1a9c026074c12ea3f2fb39a34bc6a18fedf05"> | 5263 | <trans-unit id="03d1a9c026074c12ea3f2fb39a34bc6a18fedf05"> |
5017 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification | 5264 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> |
5018 | </source> | ||
5019 | <target> | 5265 | <target> |
5020 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> | 5266 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> |
5021 | <x id="INTERPOLATION" equiv-text="{{ user.pendingEmail }}"/> | 5267 | <x id="INTERPOLATION" equiv-text="{{ user.pendingEmail }}"/> |
5022 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> čeká na ověření emailem | 5268 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> čeká na ověření emailem |
5023 | 5269 | ||
5024 | </target> | 5270 | </target> |
5025 | 5271 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">10</context></context-group> | |
5026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 5272 | </trans-unit> |
5027 | <trans-unit id="d20a2fa4a3360caa8825e49a31b5fd3a442ac219"> | 5273 | <trans-unit id="d20a2fa4a3360caa8825e49a31b5fd3a442ac219"> |
5028 | <source>New email</source> | 5274 | <source>New email</source> |
5029 | <target>Nový email</target> | 5275 | <target>Nový email</target> |
5030 | 5276 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">17</context></context-group> | |
5031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 5277 | </trans-unit> |
5032 | |||
5033 | |||
5034 | |||
5035 | <trans-unit id="820741079d4bc32fb98b7a871a6e507b18b6c85c"> | 5278 | <trans-unit id="820741079d4bc32fb98b7a871a6e507b18b6c85c"> |
5036 | <source>Change email</source> | 5279 | <source>Change email</source> |
5037 | <target>Změnit email</target> | 5280 | <target>Změnit email</target> |
5038 | 5281 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">36</context></context-group> | |
5039 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 5282 | </trans-unit> |
5040 | <trans-unit id="27a56aad79d8b61269ed303f11664cc78bcc2522" datatype="html"> | 5283 | <trans-unit id="27a56aad79d8b61269ed303f11664cc78bcc2522" datatype="html"> |
5041 | <source>Theme</source> | 5284 | <source>Theme</source> |
5042 | <target state="new">Theme</target> | 5285 | <target state="new">Theme</target> |
5043 | 5286 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">4</context></context-group> | |
5044 | 5287 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">255</context></context-group> | |
5045 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">255</context></context-group></trans-unit> | 5288 | </trans-unit> |
5046 | <trans-unit id="2fb6d9783b2c3ce93df9cee3542cda87aa60a808" datatype="html"> | 5289 | <trans-unit id="2fb6d9783b2c3ce93df9cee3542cda87aa60a808" datatype="html"> |
5047 | <source>instance default</source> | 5290 | <source>instance default</source> |
5048 | <target state="new">instance default</target> | 5291 | <target state="new">instance default</target> |
5049 | 5292 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">8</context></context-group> | |
5050 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 5293 | </trans-unit> |
5051 | <trans-unit id="2aad0303b66062ca5fb031b72df15b2cbce6e35d" datatype="html"> | 5294 | <trans-unit id="2aad0303b66062ca5fb031b72df15b2cbce6e35d" datatype="html"> |
5052 | <source>peertube default</source> | 5295 | <source>peertube default</source> |
5053 | <target state="new">peertube default</target> | 5296 | <target state="new">peertube default</target> |
5054 | 5297 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">9</context></context-group> | |
5055 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 5298 | </trans-unit> |
5056 | <trans-unit id="2dc22fcebf6aaa76196d2def33a827a34bf910bf"> | 5299 | <trans-unit id="2dc22fcebf6aaa76196d2def33a827a34bf910bf"> |
5057 | <source>Change ownership</source> | 5300 | <source>Change ownership</source> |
5058 | <target>Změnit vlastnictví</target> | 5301 | <target>Změnit vlastnictví</target> |
5059 | 5302 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">3</context></context-group> | |
5060 | 5303 | </trans-unit> | |
5061 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | ||
5062 | <trans-unit id="046c4fa30411e6b1aa46dc51bf82d07b1adf14d4"> | 5304 | <trans-unit id="046c4fa30411e6b1aa46dc51bf82d07b1adf14d4"> |
5063 | <source>Select the next owner</source> | 5305 | <source>Select the next owner</source> |
5064 | <target>Vyber nového vlastníka</target> | 5306 | <target>Vyber nového vlastníka</target> |
5065 | 5307 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">10</context></context-group> | |
5066 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 5308 | </trans-unit> |
5067 | <trans-unit id="addd26e1d0d8a38fcfceeb76642c6f838f9525e3" datatype="html"> | 5309 | <trans-unit id="addd26e1d0d8a38fcfceeb76642c6f838f9525e3" datatype="html"> |
5068 | <source>Search your videos</source> | 5310 | <source>Search your videos</source> |
5069 | <target state="new">Search your videos</target> | 5311 | <target state="new">Search your videos</target> |
5070 | 5312 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">23</context></context-group> | |
5071 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 5313 | </trans-unit> |
5072 | <trans-unit id="fbc450919a486e8ed311a7e91a41987d47d83804" datatype="html"> | 5314 | <trans-unit id="fbc450919a486e8ed311a7e91a41987d47d83804" datatype="html"> |
5073 | <source>Accept ownership</source> | 5315 | <source>Accept ownership</source> |
5074 | <target state="new">Accept ownership</target> | 5316 | <target state="new">Accept ownership</target> |
5075 | 5317 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">3</context></context-group> | |
5076 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 5318 | </trans-unit> |
5077 | <trans-unit id="765e3847550ed5aab483c2a03f320090aa0a13f2" datatype="html"> | 5319 | <trans-unit id="765e3847550ed5aab483c2a03f320090aa0a13f2" datatype="html"> |
5078 | <source>Select a channel to receive the video</source> | 5320 | <source>Select a channel to receive the video</source> |
5079 | <target state="new">Select a channel to receive the video</target> | 5321 | <target state="new">Select a channel to receive the video</target> |
5080 | 5322 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">10</context></context-group> | |
5081 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 5323 | </trans-unit> |
5082 | <trans-unit id="798f761c8cf39e72ad38f2237dac3a3ad33c6a30" datatype="html"> | 5324 | <trans-unit id="798f761c8cf39e72ad38f2237dac3a3ad33c6a30" datatype="html"> |
5083 | <source>Channel that will receive the video</source> | 5325 | <source>Channel that will receive the video</source> |
5084 | <target state="new">Channel that will receive the video</target> | 5326 | <target state="new">Channel that will receive the video</target> |
5085 | 5327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">13</context></context-group> | |
5086 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 5328 | </trans-unit> |
5087 | <trans-unit id="e03a27ba50b0be207b4d17d044ab5ea300d70b43" datatype="html"> | 5329 | <trans-unit id="e03a27ba50b0be207b4d17d044ab5ea300d70b43" datatype="html"> |
5088 | <source>My ownership changes</source> | 5330 | <source>My ownership changes</source> |
5089 | <target state="new">My ownership changes</target> | 5331 | <target state="new">My ownership changes</target> |
5090 | 5332 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">3</context></context-group> | |
5091 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 5333 | </trans-unit> |
5092 | <trans-unit id="e98239d8a6be1100119ff4b5630c822b82786740"> | 5334 | <trans-unit id="e98239d8a6be1100119ff4b5630c822b82786740"> |
5093 | <source>Initiator</source> | 5335 | <source>Initiator</source> |
5094 | <target>Iniciátor</target> | 5336 | <target>Iniciátor</target> |
5095 | 5337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">19</context></context-group> | |
5096 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 5338 | </trans-unit> |
5097 | <trans-unit id="b08d67fe4e192ea8352bebdc6aabbd1bb7abed02"> | 5339 | <trans-unit id="b08d67fe4e192ea8352bebdc6aabbd1bb7abed02"> |
5098 | <source> Created <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 5340 | <source>Created <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
5099 | <target> | 5341 | <target>Vytvořeno <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> |
5100 | Vytvořeno | 5342 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">22</context></context-group> |
5101 | 5343 | </trans-unit> | |
5102 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | ||
5103 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | ||
5104 | </target> | ||
5105 | |||
5106 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | ||
5107 | <trans-unit id="81b97b8ea996ad1e4f9fca8415021850214884b1"> | 5344 | <trans-unit id="81b97b8ea996ad1e4f9fca8415021850214884b1"> |
5108 | <source>Status</source> | 5345 | <source>Status</source> |
5109 | <target state="new">Status</target> | 5346 | <target state="new">Status</target> |
5110 | 5347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">25</context></context-group> | |
5111 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 5348 | </trans-unit> |
5112 | <trans-unit id="bde01505620f59f773377f94034e4038e6bd50c0" datatype="html"> | 5349 | <trans-unit id="bde01505620f59f773377f94034e4038e6bd50c0" datatype="html"> |
5113 | <source>Account page</source> | 5350 | <source>Account page</source> |
5114 | <target state="new">Account page</target> | 5351 | <target state="new">Account page</target> |
5115 | 5352 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">185</context></context-group> | |
5116 | 5353 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">191</context></context-group> | |
5117 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">185</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">191</context></context-group></trans-unit> | 5354 | </trans-unit> |
5118 | <trans-unit id="e8a34c00da7e95d407a66f33f28943a480dbba82" datatype="html"> | 5355 | <trans-unit id="e8a34c00da7e95d407a66f33f28943a480dbba82" datatype="html"> |
5119 | <source> | 5356 | <source><x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> </source> |
5120 | <x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> | ||
5121 | </source> | ||
5122 | <target state="new"> | 5357 | <target state="new"> |
5123 | <x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> | 5358 | <x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> |
5124 | </target> | 5359 | </target> |
5125 | 5360 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">192</context></context-group> | |
5126 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">192</context></context-group></trans-unit> | 5361 | </trans-unit> |
5127 | <trans-unit id="cee3f34700944cc5786627e1b23073d946644620" datatype="html"> | 5362 | <trans-unit id="cee3f34700944cc5786627e1b23073d946644620" datatype="html"> |
5128 | <source>No ownership change request found.</source> | 5363 | <source>No ownership change request found.</source> |
5129 | <target state="new">No ownership change request found.</target> | 5364 | <target state="new">No ownership change request found.</target> |
5130 | 5365 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">83</context></context-group> | |
5131 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> | 5366 | </trans-unit> |
5132 | <source>Account settings</source><target state="new">Account settings</target> | 5367 | <trans-unit id="4247400351982331798" datatype="html"> |
5133 | 5368 | <source>Account settings</source> | |
5134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="2864486939135008600" datatype="html"> | 5369 | <target state="new">Account settings</target> |
5135 | <source>Playlist elements</source><target state="new">Playlist elements</target> | 5370 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">29</context></context-group> |
5136 | 5371 | </trans-unit> | |
5137 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 5372 | <trans-unit id="2864486939135008600" datatype="html"> |
5373 | <source>Playlist elements</source> | ||
5374 | <target state="new">Playlist elements</target> | ||
5375 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">58</context></context-group> | ||
5376 | </trans-unit> | ||
5138 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 5377 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
5139 | <source>My imports</source> | 5378 | <source>My imports</source> |
5140 | <target state="new">My imports</target> | 5379 | <target state="new">My imports</target> |
5141 | 5380 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">11</context></context-group> | |
5142 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 5381 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">3</context></context-group> |
5382 | </trans-unit> | ||
5143 | <trans-unit id="574cce019fb31925d11095591d4321847ff1c7a5" datatype="html"> | 5383 | <trans-unit id="574cce019fb31925d11095591d4321847ff1c7a5" datatype="html"> |
5144 | <source>Create video channel</source> | 5384 | <source>Create video channel</source> |
5145 | <target state="new">Create video channel</target> | 5385 | <target state="new">Create video channel</target> |
5146 | 5386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">19</context></context-group> | |
5147 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 5387 | </trans-unit> |
5148 | <trans-unit id="8fef247fd0c5bf790151f7661cafc4b7fd0397f3"> | 5388 | <trans-unit id="8fef247fd0c5bf790151f7661cafc4b7fd0397f3"> |
5149 | <source> | 5389 | <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers </source> |
5150 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers | ||
5151 | </source> | ||
5152 | <target> | 5390 | <target> |
5153 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> odběratelů | 5391 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> odběratelů |
5154 | </target> | 5392 | </target> |
5155 | 5393 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">32</context></context-group> | |
5156 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 5394 | </trans-unit> |
5157 | <trans-unit id="915d4704e1649016512cbf5eeac55b4dbf933558"> | 5395 | <trans-unit id="915d4704e1649016512cbf5eeac55b4dbf933558"> |
5158 | <source>Example: my_channel</source> | 5396 | <source>Example: my_channel</source> |
5159 | <target>Příklad: můj_kanál</target> | 5397 | <target>Příklad: můj_kanál</target> |
5160 | 5398 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">35</context></context-group> | |
5161 | 5399 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">35</context></context-group> | |
5162 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 5400 | </trans-unit> |
5163 | <trans-unit id="cc895c3d23ec739ac77d472ff979980195fd30c1" datatype="html"> | 5401 | <trans-unit id="cc895c3d23ec739ac77d472ff979980195fd30c1" datatype="html"> |
5164 | <source>CHANNEL</source> | 5402 | <source>CHANNEL</source> |
5165 | <target state="new">CHANNEL</target> | 5403 | <target state="new">CHANNEL</target> |
5166 | 5404 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">26</context></context-group> | |
5167 | 5405 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">26</context></context-group> | |
5168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 5406 | </trans-unit> |
5169 | <trans-unit id="66ad6eb3f06251c75325b780943a07f94c949df7" datatype="html"> | 5407 | <trans-unit id="66ad6eb3f06251c75325b780943a07f94c949df7" datatype="html"> |
5170 | <source>Short text to tell people how they can support your channel (membership platform...).<br /><br /> | 5408 | <source>Short text to tell people how they can support your channel (membership platform...).<br /><br /> When you will upload a video in this channel, the video support field will be automatically filled by this text.</source> |
5171 | When you will upload a video in this channel, the video support field will be automatically filled by this text.</source> | 5409 | <target state="new">Short text to tell people how they can support your channel (membership platform...).<br /><br /> |
5172 | <target state="new">Short text to tell people how they can support your channel (membership platform...).<br /><br /> | ||
5173 | When you will upload a video in this channel, the video support field will be automatically filled by this text.</target> | 5410 | When you will upload a video in this channel, the video support field will be automatically filled by this text.</target> |
5174 | 5411 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">77</context></context-group> | |
5175 | 5412 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">77</context></context-group> | |
5176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">77</context></context-group></trans-unit> | 5413 | </trans-unit> |
5177 | <trans-unit id="6ff0350d2659cdb4722370bf5dafbad651f441cd" datatype="html"> | 5414 | <trans-unit id="6ff0350d2659cdb4722370bf5dafbad651f441cd" datatype="html"> |
5178 | <source>Overwrite support field of all videos of this channel</source> | 5415 | <source>Overwrite support field of all videos of this channel</source> |
5179 | <target state="new">Overwrite support field of all videos of this channel</target> | 5416 | <target state="new">Overwrite support field of all videos of this channel</target> |
5180 | 5417 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">92</context></context-group> | |
5181 | 5418 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">92</context></context-group> | |
5182 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> | 5419 | </trans-unit> |
5183 | <trans-unit id="4b50f2ef2e8b9a24e674d12012ee310f378a5503"> | 5420 | <trans-unit id="4b50f2ef2e8b9a24e674d12012ee310f378a5503"> |
5184 | <source> | 5421 | <source><x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> subscribers </source> |
5185 | <x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> subscribers | ||
5186 | </source> | ||
5187 | <target> | 5422 | <target> |
5188 | <x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> odběratelů | 5423 | <x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> odběratelů |
5189 | </target> | 5424 | </target> |
5190 | 5425 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.html</context><context context-type="linenumber">28</context></context-group> | |
5191 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit><trans-unit id="82cc4fc020efd482bb931ebd71db5868fc904629" datatype="html"> | 5426 | </trans-unit> |
5192 | <source>Upload a new avatar</source><target state="new">Upload a new avatar</target> | 5427 | <trans-unit id="82cc4fc020efd482bb931ebd71db5868fc904629" datatype="html"> |
5428 | <source>Upload a new avatar</source> | ||
5429 | <target state="new">Upload a new avatar</target> | ||
5193 | <context-group purpose="location"> | 5430 | <context-group purpose="location"> |
5194 | <context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.html</context> | 5431 | <context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.html</context> |
5195 | <context context-type="linenumber">10</context> | 5432 | <context context-type="linenumber">10</context> |
@@ -5202,18 +5439,18 @@ The link will expire within 1 hour.</target> | |||
5202 | <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191" datatype="html"> | 5439 | <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191" datatype="html"> |
5203 | <source>Target</source> | 5440 | <source>Target</source> |
5204 | <target state="new">Target</target> | 5441 | <target state="new">Target</target> |
5205 | 5442 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">17</context></context-group> | |
5206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 5443 | </trans-unit> |
5207 | <trans-unit id="a5707e9905e079605243397ee111b8be449941aa" datatype="html"> | 5444 | <trans-unit id="a5707e9905e079605243397ee111b8be449941aa" datatype="html"> |
5208 | <source>See the error</source> | 5445 | <source>See the error</source> |
5209 | <target state="new">See the error</target> | 5446 | <target state="new">See the error</target> |
5210 | 5447 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">26</context></context-group> | |
5211 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 5448 | </trans-unit> |
5212 | <trans-unit id="842b1f5e4942fb515ef790308ca9ea6a60b4b331" datatype="html"> | 5449 | <trans-unit id="842b1f5e4942fb515ef790308ca9ea6a60b4b331" datatype="html"> |
5213 | <source>This video was deleted</source> | 5450 | <source>This video was deleted</source> |
5214 | <target state="new">This video was deleted</target> | 5451 | <target state="new">This video was deleted</target> |
5215 | 5452 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">49</context></context-group> | |
5216 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 5453 | </trans-unit> |
5217 | <trans-unit id="a86239658c3cf042e7c987bb0df7473a53d7517e" datatype="html"> | 5454 | <trans-unit id="a86239658c3cf042e7c987bb0df7473a53d7517e" datatype="html"> |
5218 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> imports</source> | 5455 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> imports</source> |
5219 | <target state="new">Showing | 5456 | <target state="new">Showing |
@@ -5221,62 +5458,61 @@ The link will expire within 1 hour.</target> | |||
5221 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 5458 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
5222 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> imports | 5459 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> imports |
5223 | </target> | 5460 | </target> |
5224 | 5461 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">10</context></context-group> | |
5225 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 5462 | </trans-unit> |
5226 | <trans-unit id="0b68f86015522b0dbd374822caefe74a62e3470f" datatype="html"> | 5463 | <trans-unit id="0b68f86015522b0dbd374822caefe74a62e3470f" datatype="html"> |
5227 | <source>Once you delete your account, there is no going back. You will be asked to confirm this action.</source> | 5464 | <source>Once you delete your account, there is no going back. You will be asked to confirm this action.</source> |
5228 | <target state="new">Once you delete your account, there is no going back. You will be asked to confirm this action.</target> | 5465 | <target state="new">Once you delete your account, there is no going back. You will be asked to confirm this action.</target> |
5229 | 5466 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context><context context-type="linenumber">2</context></context-group> | |
5230 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit> | 5467 | </trans-unit> |
5231 | <trans-unit id="9a2f889dde4574a6883c853d1034e75891b28c45"> | 5468 | <trans-unit id="9a2f889dde4574a6883c853d1034e75891b28c45"> |
5232 | <source>Delete your account</source> | 5469 | <source>Delete your account</source> |
5233 | <target>Smazat vlastní účet</target> | 5470 | <target>Smazat vlastní účet</target> |
5234 | 5471 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context><context context-type="linenumber">4</context></context-group> | |
5235 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 5472 | </trans-unit> |
5236 | |||
5237 | <trans-unit id="f886abe6ca73a34403dde0578e71173cebe00428" datatype="html"> | 5473 | <trans-unit id="f886abe6ca73a34403dde0578e71173cebe00428" datatype="html"> |
5238 | <source>Channel page</source> | 5474 | <source>Channel page</source> |
5239 | <target state="new">Channel page</target> | 5475 | <target state="new">Channel page</target> |
5240 | 5476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">27</context></context-group> | |
5241 | 5477 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">30</context></context-group> | |
5242 | 5478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">182</context></context-group> | |
5243 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">182</context></context-group></trans-unit> | 5479 | </trans-unit> |
5244 | <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add"> | 5480 | <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add"> |
5245 | <source>Created by <x id="INTERPOLATION"/></source> | 5481 | <source>Created by <x id="INTERPOLATION"/></source> |
5246 | <target>Autor: | 5482 | <target>Vytvořil <x id="INTERPOLATION"/></target> |
5247 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/> | 5483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">35</context></context-group> |
5248 | </target> | 5484 | </trans-unit> |
5249 | |||
5250 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | ||
5251 | <trans-unit id="cd2d9bfd5a5f7bdc1d4f1242e8a35d74830b6ffe" datatype="html"> | 5485 | <trans-unit id="cd2d9bfd5a5f7bdc1d4f1242e8a35d74830b6ffe" datatype="html"> |
5252 | <source>Owner account page</source> | 5486 | <source>Owner account page</source> |
5253 | <target state="new">Owner account page</target> | 5487 | <target state="new">Owner account page</target> |
5254 | 5488 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">34</context></context-group> | |
5255 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 5489 | </trans-unit> |
5256 | <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913"> | 5490 | <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913"> |
5257 | <source>Go the owner account page</source> | 5491 | <source>Go the owner account page</source> |
5258 | <target>Přejít na autorův profil</target> | 5492 | <target>Přejít na autorův profil</target> |
5259 | 5493 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">30</context></context-group> | |
5260 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 5494 | </trans-unit> |
5261 | |||
5262 | <trans-unit id="29c45bf49891748f930ef78b2e09857498b15131"> | 5495 | <trans-unit id="29c45bf49891748f930ef78b2e09857498b15131"> |
5263 | <source><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Delete history </source> | 5496 | <source><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Delete history </source> |
5264 | <target> | 5497 | <target> |
5265 | <x id="START_TAG_MY-GLOBAL-ICON" ctype="x-my-global-icon" equiv-text="<my-global-icon>"/> | 5498 | <x id="START_TAG_MY-GLOBAL-ICON" ctype="x-my-global-icon" equiv-text="<my-global-icon>"/> |
5266 | <x id="CLOSE_TAG_MY-GLOBAL-ICON" ctype="x-my-global-icon" equiv-text="</my-global-icon>"/> | 5499 | <x id="CLOSE_TAG_MY-GLOBAL-ICON" ctype="x-my-global-icon" equiv-text="</my-global-icon>"/> |
5267 | Smazat historii | 5500 | Smazat historii |
5268 | 5501 | ||
5269 | </target> | 5502 | </target> |
5270 | 5503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">24</context></context-group> | |
5271 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit><trans-unit id="945ab39294575b7271dde42240c0806dc4ff5076" datatype="html"> | 5504 | </trans-unit> |
5272 | <source>You don't have any video in your watch history yet.</source><target state="new">You don't have any video in your watch history yet.</target> | 5505 | <trans-unit id="945ab39294575b7271dde42240c0806dc4ff5076" datatype="html"> |
5506 | <source>You don't have any video in your watch history yet.</source> | ||
5507 | <target state="new">You don't have any video in your watch history yet.</target> | ||
5273 | <context-group purpose="location"> | 5508 | <context-group purpose="location"> |
5274 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> | 5509 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> |
5275 | <context context-type="linenumber">30</context> | 5510 | <context context-type="linenumber">30</context> |
5276 | </context-group> | 5511 | </context-group> |
5277 | </trans-unit> | 5512 | </trans-unit> |
5278 | <trans-unit id="4cd6feecd3cc5b969cdff7e217f0582c49118ead" datatype="html"> | 5513 | <trans-unit id="4cd6feecd3cc5b969cdff7e217f0582c49118ead" datatype="html"> |
5279 | <source>Open syndication dropdown</source><target state="new">Open syndication dropdown</target> | 5514 | <source>Open syndication dropdown</source> |
5515 | <target state="new">Open syndication dropdown</target> | ||
5280 | <context-group purpose="location"> | 5516 | <context-group purpose="location"> |
5281 | <context context-type="sourcefile">src/app/shared/shared-main/feeds/feed.component.html</context> | 5517 | <context context-type="sourcefile">src/app/shared/shared-main/feeds/feed.component.html</context> |
5282 | <context context-type="linenumber">3</context> | 5518 | <context context-type="linenumber">3</context> |
@@ -5289,347 +5525,362 @@ The link will expire within 1 hour.</target> | |||
5289 | <trans-unit id="9d2d802fa417a5a3f230cb5bcc975551a252c59c"> | 5525 | <trans-unit id="9d2d802fa417a5a3f230cb5bcc975551a252c59c"> |
5290 | <source><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Notification preferences </source> | 5526 | <source><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Notification preferences </source> |
5291 | <target> | 5527 | <target> |
5292 | <x id="START_TAG_MY-GLOBAL-ICON" ctype="x-my-global-icon" equiv-text="<my-global-icon>"/> | 5528 | <x id="START_TAG_MY-GLOBAL-ICON" ctype="x-my-global-icon" equiv-text="<my-global-icon>"/> |
5293 | <x id="CLOSE_TAG_MY-GLOBAL-ICON" ctype="x-my-global-icon" equiv-text="</my-global-icon>"/> | 5529 | <x id="CLOSE_TAG_MY-GLOBAL-ICON" ctype="x-my-global-icon" equiv-text="</my-global-icon>"/> |
5294 | Nastavení notifikací | 5530 | Nastavení notifikací |
5295 | 5531 | ||
5296 | </target> | 5532 | </target> |
5297 | 5533 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">4</context></context-group> | |
5298 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 5534 | </trans-unit> |
5299 | <trans-unit id="e7f88c481ecdda90467acd3f4dbe934465cee30f" datatype="html"> | 5535 | <trans-unit id="e7f88c481ecdda90467acd3f4dbe934465cee30f" datatype="html"> |
5300 | <source>Newest first</source> | 5536 | <source>Newest first</source> |
5301 | <target state="new">Newest first</target> | 5537 | <target state="new">Newest first</target> |
5302 | 5538 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">11</context></context-group> | |
5303 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 5539 | </trans-unit> |
5304 | <trans-unit id="a05dac5ded54ab304817a823693e2af2ad1cffef" datatype="html"> | 5540 | <trans-unit id="a05dac5ded54ab304817a823693e2af2ad1cffef" datatype="html"> |
5305 | <source>Unread first</source> | 5541 | <source>Unread first</source> |
5306 | <target state="new">Unread first</target> | 5542 | <target state="new">Unread first</target> |
5307 | 5543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">12</context></context-group> | |
5308 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> | 5544 | </trans-unit> |
5309 | <trans-unit id="58479ebfcc980e1ee37a8102bc4f9a35eca2f680" datatype="html"> | 5545 | <trans-unit id="58479ebfcc980e1ee37a8102bc4f9a35eca2f680" datatype="html"> |
5310 | <source>All read</source> | 5546 | <source>All read</source> |
5311 | <target state="new">All read</target> | 5547 | <target state="new">All read</target> |
5312 | 5548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">26</context></context-group> | |
5313 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 5549 | </trans-unit> |
5314 | <trans-unit id="dd3b6c367381ddfa8f317b8e9b31c55368c65136"> | 5550 | <trans-unit id="dd3b6c367381ddfa8f317b8e9b31c55368c65136"> |
5315 | <source>Activities</source> | 5551 | <source>Activities</source> |
5316 | <target>Aktivity</target> | 5552 | <target>Aktivity</target> |
5317 | 5553 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">2</context></context-group> | |
5318 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit> | 5554 | </trans-unit> |
5319 | <trans-unit id="847dffd493abbb2a5c71f3313f0eb730dd88a355"> | 5555 | <trans-unit id="847dffd493abbb2a5c71f3313f0eb730dd88a355"> |
5320 | <source>Web</source> | 5556 | <source>Web</source> |
5321 | <target>Web</target> | 5557 | <target>Web</target> |
5322 | 5558 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">3</context></context-group> | |
5323 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 5559 | </trans-unit> |
5324 | <trans-unit id="9d7a1c199570d42b4cc40d7886fcc7c06b0a35d2" datatype="html"> | 5560 | <trans-unit id="9d7a1c199570d42b4cc40d7886fcc7c06b0a35d2" datatype="html"> |
5325 | <source>My Playlists</source> | 5561 | <source>My Playlists</source> |
5326 | <target state="new">My Playlists</target> | 5562 | <target state="new">My Playlists</target> |
5327 | 5563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">4</context></context-group> | |
5328 | 5564 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">4</context></context-group> | |
5329 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 5565 | </trans-unit> |
5330 | <trans-unit id="b91219836ab865fd8aa041a8d6c3d84dd78115a4" datatype="html"> | 5566 | <trans-unit id="b91219836ab865fd8aa041a8d6c3d84dd78115a4" datatype="html"> |
5331 | <source>NEW PLAYLIST</source> | 5567 | <source>NEW PLAYLIST</source> |
5332 | <target state="new">NEW PLAYLIST</target> | 5568 | <target state="new">NEW PLAYLIST</target> |
5333 | 5569 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">25</context></context-group> | |
5334 | 5570 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">25</context></context-group> | |
5335 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 5571 | </trans-unit> |
5336 | <trans-unit id="33ce1814b1079cb3a0c0605fc5b4e6f439d2b035" datatype="html"> | 5572 | <trans-unit id="33ce1814b1079cb3a0c0605fc5b4e6f439d2b035" datatype="html"> |
5337 | <source>PLAYLIST</source> | 5573 | <source>PLAYLIST</source> |
5338 | <target state="new">PLAYLIST</target> | 5574 | <target state="new">PLAYLIST</target> |
5339 | 5575 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">26</context></context-group> | |
5340 | 5576 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">26</context></context-group> | |
5341 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 5577 | </trans-unit> |
5342 | <trans-unit id="61b31fe7bfae807e3ccc0dbf001c6dc9b72aaf19" datatype="html"> | 5578 | <trans-unit id="61b31fe7bfae807e3ccc0dbf001c6dc9b72aaf19" datatype="html"> |
5343 | <source>Create playlist</source> | 5579 | <source>Create playlist</source> |
5344 | <target state="new">Create playlist</target> | 5580 | <target state="new">Create playlist</target> |
5345 | 5581 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">18</context></context-group> | |
5346 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit><trans-unit id="7040375308762081154" datatype="html"> | 5582 | </trans-unit> |
5347 | <source>My video channels</source><target state="new">My video channels</target> | 5583 | <trans-unit id="7040375308762081154" datatype="html"> |
5348 | 5584 | <source>My video channels</source> | |
5349 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts</context><context context-type="linenumber">13</context></context-group></trans-unit><trans-unit id="7418836785553125957" datatype="html"> | 5585 | <target state="new">My video channels</target> |
5350 | <source>Create a new video channel</source><target state="new">Create a new video channel</target> | 5586 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts</context><context context-type="linenumber">13</context></context-group> |
5351 | 5587 | </trans-unit> | |
5352 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts</context><context context-type="linenumber">22</context></context-group></trans-unit><trans-unit id="8828123061564507501" datatype="html"> | 5588 | <trans-unit id="7418836785553125957" datatype="html"> |
5353 | <source>Playlist <x id="PH"/>} deleted.</source><target state="new">Playlist <x id="PH"/>} deleted.</target> | 5589 | <source>Create a new video channel</source> |
5354 | 5590 | <target state="new">Create a new video channel</target> | |
5355 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 5591 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts</context><context context-type="linenumber">22</context></context-group> |
5592 | </trans-unit> | ||
5593 | <trans-unit id="8828123061564507501" datatype="html"> | ||
5594 | <source>Playlist <x id="PH"/>} deleted.</source> | ||
5595 | <target state="new">Playlist <x id="PH"/>} deleted.</target> | ||
5596 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">60</context></context-group> | ||
5597 | </trans-unit> | ||
5356 | <trans-unit id="88f1b36ea2f7544792f04ee6b58f8c55aaba5c96"> | 5598 | <trans-unit id="88f1b36ea2f7544792f04ee6b58f8c55aaba5c96"> |
5357 | <source>Playlist thumbnail</source> | 5599 | <source>Playlist thumbnail</source> |
5358 | <target>Miniatura playlistu</target> | 5600 | <target>Miniatura playlistu</target> |
5359 | 5601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">82</context></context-group> | |
5360 | 5602 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">82</context></context-group> | |
5361 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">82</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 5603 | </trans-unit> |
5362 | <trans-unit id="a85c7d7a8dcc1ae0d2f945d77f4db36f02ead69b" datatype="html"> | 5604 | <trans-unit id="a85c7d7a8dcc1ae0d2f945d77f4db36f02ead69b" datatype="html"> |
5363 | <source>Search your playlists</source> | 5605 | <source>Search your playlists</source> |
5364 | <target state="new">Search your playlists</target> | 5606 | <target state="new">Search your playlists</target> |
5365 | 5607 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">10</context></context-group> | |
5366 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 5608 | </trans-unit> |
5367 | <trans-unit id="188014887f7188d90b39e41d9606b91c77c17861"> | 5609 | <trans-unit id="188014887f7188d90b39e41d9606b91c77c17861"> |
5368 | <source>No videos in this playlist.</source> | 5610 | <source>No videos in this playlist.</source> |
5369 | <target>Žádná videa v tomto seznamu.</target> | 5611 | <target>Žádná videa v tomto seznamu.</target> |
5370 | 5612 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">25</context></context-group> | |
5371 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 5613 | </trans-unit> |
5372 | <trans-unit id="25837d28a88f93b1fe278ca11099d7489ca0ac4b" datatype="html"> | 5614 | <trans-unit id="25837d28a88f93b1fe278ca11099d7489ca0ac4b" datatype="html"> |
5373 | <source> | 5615 | <source>Browse videos on PeerTube to add them in your playlist.</source> |
5374 | Browse videos on PeerTube to add them in your playlist. | ||
5375 | </source> | ||
5376 | <target state="new"> | 5616 | <target state="new"> |
5377 | Browse videos on PeerTube to add them in your playlist. | 5617 | Browse videos on PeerTube to add them in your playlist. |
5378 | </target> | 5618 | </target> |
5379 | 5619 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">28</context></context-group> | |
5380 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 5620 | </trans-unit> |
5381 | <trans-unit id="28c9f2a23ea8f12710a011a965939a5af6980dd1" datatype="html"> | 5621 | <trans-unit id="28c9f2a23ea8f12710a011a965939a5af6980dd1" datatype="html"> |
5382 | <source> See the <x id="START_LINK"/>documentation<x id="CLOSE_LINK"/> for more information. </source> | 5622 | <source>See the <x id="START_LINK"/>documentation<x id="CLOSE_LINK"/> for more information. </source> |
5383 | <target state="new"> | 5623 | <target state="new"> |
5384 | See the | 5624 | See the |
5385 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>documentation | 5625 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>documentation |
5386 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more information. | 5626 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more information. |
5387 | 5627 | ||
5388 | </target> | 5628 | </target> |
5389 | 5629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">32</context></context-group> | |
5390 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 5630 | </trans-unit> |
5391 | <trans-unit id="3346d8a0bf3dd8c25ddc561ccd5fafb6ee9fadc8" datatype="html"> | 5631 | <trans-unit id="3346d8a0bf3dd8c25ddc561ccd5fafb6ee9fadc8" datatype="html"> |
5392 | <source>Welcome to PeerTube!</source> | 5632 | <source>Welcome to PeerTube!</source> |
5393 | <target state="new">Welcome to PeerTube!</target> | 5633 | <target state="new">Welcome to PeerTube!</target> |
5394 | 5634 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">8</context></context-group> | |
5395 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 5635 | </trans-unit> |
5396 | <trans-unit id="19886846ed573d0a74c61c4e8df073eb4f64acd0" datatype="html"> | 5636 | <trans-unit id="19886846ed573d0a74c61c4e8df073eb4f64acd0" datatype="html"> |
5397 | <source> If you need help to use PeerTube, you can have a look at the <x id="START_LINK"/>documentation<x id="CLOSE_LINK"/>. </source> | 5637 | <source>If you need help to use PeerTube, you can have a look at the <x id="START_LINK"/>documentation<x id="CLOSE_LINK"/>. </source> |
5398 | <target state="new"> | 5638 | <target state="new"> |
5399 | If you need help to use PeerTube, you can have a look at the | 5639 | If you need help to use PeerTube, you can have a look at the |
5400 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>documentation | 5640 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>documentation |
5401 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | 5641 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. |
5402 | 5642 | ||
5403 | </target> | 5643 | </target> |
5404 | 5644 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group> | |
5405 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5645 | </trans-unit> |
5406 | <trans-unit id="09a69cde5889927629e2ac9dc63a71b88252b530" datatype="html"> | 5646 | <trans-unit id="09a69cde5889927629e2ac9dc63a71b88252b530" datatype="html"> |
5407 | <source>Verify account email confirmation</source> | 5647 | <source>Verify account email confirmation</source> |
5408 | <target state="new"> | 5648 | <target state="new"> |
5409 | Verify account email confirmation | 5649 | Verify account email confirmation |
5410 | </target> | 5650 | </target> |
5411 | 5651 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">3</context></context-group> | |
5412 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 5652 | </trans-unit> |
5413 | |||
5414 | <trans-unit id="b734a13448d714b0f68f49353607364ac3571c12" datatype="html"> | 5653 | <trans-unit id="b734a13448d714b0f68f49353607364ac3571c12" datatype="html"> |
5415 | <source>Email updated.</source> | 5654 | <source>Email updated.</source> |
5416 | <target state="new"> | 5655 | <target state="new"> |
5417 | Email updated. | 5656 | Email updated. |
5418 | </target> | 5657 | </target> |
5419 | 5658 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">10</context></context-group> | |
5420 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 5659 | </trans-unit> |
5421 | <trans-unit id="61fd1cffcb763cbfd5829071723cf9b647174bd9" datatype="html"> | 5660 | <trans-unit id="61fd1cffcb763cbfd5829071723cf9b647174bd9" datatype="html"> |
5422 | <source>An error occurred.</source> | 5661 | <source>An error occurred.</source> |
5423 | <target state="new">An error occurred.</target> | 5662 | <target state="new">An error occurred.</target> |
5424 | 5663 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group> | |
5425 | <context-group purpose="location"><context context-type="sourcefile">src/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"> | 5664 | </trans-unit> |
5426 | <source>Video channel videos</source><target state="new">Video channel videos</target> | 5665 | <trans-unit id="9128669621822125729" datatype="html"> |
5427 | 5666 | <source>Video channel videos</source> | |
5428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context><context context-type="linenumber">25</context></context-group></trans-unit><trans-unit id="3193822049276963401" datatype="html"> | 5667 | <target state="new">Video channel videos</target> |
5429 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | 5668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context><context context-type="linenumber">25</context></context-group> |
5430 | 5669 | </trans-unit> | |
5431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="4723526509708949088" datatype="html"> | 5670 | <trans-unit id="3193822049276963401" datatype="html"> |
5432 | <source>About video channel</source><target state="new">About video channel</target> | 5671 | <source>Video channel playlists</source> |
5433 | 5672 | <target state="new">Video channel playlists</target> | |
5434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 5673 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context><context context-type="linenumber">38</context></context-group> |
5674 | </trans-unit> | ||
5675 | <trans-unit id="4723526509708949088" datatype="html"> | ||
5676 | <source>About video channel</source> | ||
5677 | <target state="new">About video channel</target> | ||
5678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context><context context-type="linenumber">47</context></context-group> | ||
5679 | </trans-unit> | ||
5435 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5680 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
5436 | <source>Request email for account verification</source> | 5681 | <source>Request email for account verification</source> |
5437 | <target state="new"> | 5682 | <target state="new"> |
5438 | Request email for account verification | 5683 | Request email for account verification |
5439 | </target> | 5684 | </target> |
5440 | 5685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">3</context></context-group> | |
5441 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 5686 | </trans-unit> |
5442 | <trans-unit id="eb539ec6941044e284f237f5b40d6a0159afe7af" datatype="html"> | 5687 | <trans-unit id="eb539ec6941044e284f237f5b40d6a0159afe7af" datatype="html"> |
5443 | <source>Send verification email</source> | 5688 | <source>Send verification email</source> |
5444 | <target state="new">Send verification email</target> | 5689 | <target state="new">Send verification email</target> |
5445 | 5690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">17</context></context-group> | |
5446 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 5691 | </trans-unit> |
5447 | <trans-unit id="a08080316e052053fd20647731a6de826dc8072f" datatype="html"> | 5692 | <trans-unit id="a08080316e052053fd20647731a6de826dc8072f" datatype="html"> |
5448 | <source>This instance does not require email verification.</source> | 5693 | <source>This instance does not require email verification.</source> |
5449 | <target state="new">This instance does not require email verification.</target> | 5694 | <target state="new">This instance does not require email verification.</target> |
5450 | 5695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">20</context></context-group> | |
5451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="248731258067914565" datatype="html"> | 5696 | </trans-unit> |
5452 | <source>Verify account via email</source><target state="new">Verify account via email</target> | 5697 | <trans-unit id="248731258067914565" datatype="html"> |
5453 | 5698 | <source>Verify account via email</source> | |
5454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-routing.module.ts</context><context context-type="linenumber">17</context></context-group></trans-unit><trans-unit id="9197112111252826229" datatype="html"> | 5699 | <target state="new">Verify account via email</target> |
5455 | <source>Ask to send an email to verify you account</source><target state="new">Ask to send an email to verify you account</target> | 5700 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-routing.module.ts</context><context context-type="linenumber">17</context></context-group> |
5456 | 5701 | </trans-unit> | |
5457 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-routing.module.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 5702 | <trans-unit id="9197112111252826229" datatype="html"> |
5703 | <source>Ask to send an email to verify you account</source> | ||
5704 | <target state="new">Ask to send an email to verify you account</target> | ||
5705 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-routing.module.ts</context><context context-type="linenumber">26</context></context-group> | ||
5706 | </trans-unit> | ||
5458 | <trans-unit id="bd2edf99dd6562385ccec19a7ab2d1898e626605"> | 5707 | <trans-unit id="bd2edf99dd6562385ccec19a7ab2d1898e626605"> |
5459 | <source>Banned</source> | 5708 | <source>Banned</source> |
5460 | <target>Zablokován</target> | 5709 | <target>Zablokován</target> |
5461 | 5710 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">18</context></context-group> | |
5462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 5711 | </trans-unit> |
5463 | <trans-unit id="44bd08a7ec1e407356620967d65d8fe2d8639d0a"> | 5712 | <trans-unit id="44bd08a7ec1e407356620967d65d8fe2d8639d0a"> |
5464 | <source>Instance muted</source> | 5713 | <source>Instance muted</source> |
5465 | <target>Instance skryta</target> | 5714 | <target>Instance skryta</target> |
5466 | 5715 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">20</context></context-group> | |
5467 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 5716 | </trans-unit> |
5468 | <trans-unit id="48bbf6dbdb22e0ef4bd257eae2ab356f2ea66c89"> | 5717 | <trans-unit id="48bbf6dbdb22e0ef4bd257eae2ab356f2ea66c89"> |
5469 | <source>Muted by your instance</source> | 5718 | <source>Muted by your instance</source> |
5470 | <target>Skryt vaší instancí</target> | 5719 | <target>Skryt vaší instancí</target> |
5471 | 5720 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">21</context></context-group> | |
5472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 5721 | </trans-unit> |
5473 | <trans-unit id="1a6443bb7ed01046dd83cf78806f795f1204ffa1"> | 5722 | <trans-unit id="1a6443bb7ed01046dd83cf78806f795f1204ffa1"> |
5474 | <source>Instance muted by your instance</source> | 5723 | <source>Instance muted by your instance</source> |
5475 | <target>Instance skryta vaší instancí</target> | 5724 | <target>Instance skryta vaší instancí</target> |
5476 | 5725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">22</context></context-group> | |
5477 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 5726 | </trans-unit> |
5478 | <trans-unit id="1b9099f59dd3baaeeaac2c29fe653dc1b0436157" datatype="html"> | 5727 | <trans-unit id="1b9099f59dd3baaeeaac2c29fe653dc1b0436157" datatype="html"> |
5479 | <source>Manage account</source> | 5728 | <source>Manage account</source> |
5480 | <target state="new">Manage account</target> | 5729 | <target state="new">Manage account</target> |
5481 | 5730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">36</context></context-group> | |
5482 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 5731 | </trans-unit> |
5483 | <trans-unit id="87f77a03c185ea644ed8378a562a2d0225513974"> | 5732 | <trans-unit id="87f77a03c185ea644ed8378a562a2d0225513974"> |
5484 | <source>This account does not have channels.</source> | 5733 | <source>This account does not have channels.</source> |
5485 | <target>Tento účet nemá žádné kanály.</target> | 5734 | <target>Tento účet nemá žádné kanály.</target> |
5486 | 5735 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">4</context></context-group> | |
5487 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 5736 | </trans-unit> |
5488 | <trans-unit id="f15780bbd2d7fa777071975f7445e98a33065e38" datatype="html"> | 5737 | <trans-unit id="f15780bbd2d7fa777071975f7445e98a33065e38" datatype="html"> |
5489 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> | 5738 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> |
5490 | <target state="new">{VAR_PLURAL, plural, =1 {1 subscriber} other { | 5739 | <target state="new">{VAR_PLURAL, plural, =1 {1 subscriber} other { |
5491 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers} } | 5740 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers} } |
5492 | </target> | 5741 | </target> |
5493 | 5742 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">28</context></context-group> | |
5494 | 5743 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">13</context></context-group> | |
5495 | 5744 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">35</context></context-group> | |
5496 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 5745 | </trans-unit> |
5497 | <trans-unit id="21dc89cfca84c2af7fdeb584b34e2529d842b72a" datatype="html"> | 5746 | <trans-unit id="21dc89cfca84c2af7fdeb584b34e2529d842b72a" datatype="html"> |
5498 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 5747 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
5499 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 5748 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { |
5500 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.videosCount }}"/> videos} } | 5749 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.videosCount }}"/> videos} } |
5501 | </target> | 5750 | </target> |
5502 | 5751 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">37</context></context-group> | |
5503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit><trans-unit id="7152797255397280410" datatype="html"> | 5752 | </trans-unit> |
5504 | <source>Do you really want to delete <x id="PH"/>? | 5753 | <trans-unit id="7152797255397280410" datatype="html"> |
5505 | It will delete <x id="PH_1"/> videos uploaded in this channel, and you will not be able to create another | 5754 | <source>Do you really want to delete <x id="PH"/>? It will delete <x id="PH_1"/> videos uploaded in this channel, and you will not be able to create another channel with the same name (<x id="PH_2"/>)!</source> |
5506 | channel with the same name (<x id="PH_2"/>)!</source><target state="new">Do you really want to delete <x id="PH"/>? | 5755 | <target state="new">Do you really want to delete <x id="PH"/>? |
5507 | It will delete <x id="PH_1"/> videos uploaded in this channel, and you will not be able to create another | 5756 | It will delete <x id="PH_1"/> videos uploaded in this channel, and you will not be able to create another |
5508 | channel with the same name (<x id="PH_2"/>)!</target> | 5757 | channel with the same name (<x id="PH_2"/>)!</target> |
5509 | 5758 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">63</context></context-group> | |
5510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 5759 | </trans-unit> |
5511 | <trans-unit id="d5f0913d08d01648d7e6165c168a99ccd06d1f4c" datatype="html"> | 5760 | <trans-unit id="d5f0913d08d01648d7e6165c168a99ccd06d1f4c" datatype="html"> |
5512 | <source>My Channels</source> | 5761 | <source>My Channels</source> |
5513 | <target state="new">My Channels</target> | 5762 | <target state="new">My Channels</target> |
5514 | 5763 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">4</context></context-group> | |
5515 | 5764 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">4</context></context-group> | |
5516 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 5765 | </trans-unit> |
5517 | <trans-unit id="dff0536e48bacc3a4b568f32f9ed8ffc14767cbb" datatype="html"> | 5766 | <trans-unit id="dff0536e48bacc3a4b568f32f9ed8ffc14767cbb" datatype="html"> |
5518 | <source>NEW CHANNEL</source> | 5767 | <source>NEW CHANNEL</source> |
5519 | <target state="new">NEW CHANNEL</target> | 5768 | <target state="new">NEW CHANNEL</target> |
5520 | 5769 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">25</context></context-group> | |
5521 | 5770 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">25</context></context-group> | |
5522 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 5771 | </trans-unit> |
5523 | <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f"> | 5772 | <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f"> |
5524 | <source>See this video channel</source> | 5773 | <source>See this video channel</source> |
5525 | <target>Zobrazit tento videokanál</target> | 5774 | <target>Zobrazit tento videokanál</target> |
5526 | 5775 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">9</context></context-group> | |
5527 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 5776 | </trans-unit> |
5528 | <trans-unit id="7bfe8fdef5d1a90e5bf286ec6ed4c079522a9b44" datatype="html"> | 5777 | <trans-unit id="7bfe8fdef5d1a90e5bf286ec6ed4c079522a9b44" datatype="html"> |
5529 | <source>This channel doesn't have any videos.</source> | 5778 | <source>This channel doesn't have any videos.</source> |
5530 | <target state="new">This channel doesn't have any videos.</target> | 5779 | <target state="new">This channel doesn't have any videos.</target> |
5531 | 5780 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">20</context></context-group> | |
5532 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 5781 | </trans-unit> |
5533 | <trans-unit id="5c2b42818f05eafa2690d5eac6bcde295c713097" datatype="html"> | 5782 | <trans-unit id="5c2b42818f05eafa2690d5eac6bcde295c713097" datatype="html"> |
5534 | <source> | 5783 | <source>SHOW THIS CHANNEL</source> |
5535 | SHOW THIS CHANNEL | ||
5536 | </source> | ||
5537 | <target state="new"> | 5784 | <target state="new"> |
5538 | SHOW THIS CHANNEL | 5785 | SHOW THIS CHANNEL |
5539 | </target> | 5786 | </target> |
5540 | 5787 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">29</context></context-group> | |
5541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 5788 | </trans-unit> |
5542 | <trans-unit id="4af6287e70a4a87329affe109839f14ae598f0ca" datatype="html"> | 5789 | <trans-unit id="4af6287e70a4a87329affe109839f14ae598f0ca" datatype="html"> |
5543 | <source>DESCRIPTION</source> | 5790 | <source>DESCRIPTION</source> |
5544 | <target state="new">DESCRIPTION</target> | 5791 | <target state="new">DESCRIPTION</target> |
5545 | 5792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context><context context-type="linenumber">5</context></context-group> | |
5546 | 5793 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context><context context-type="linenumber">5</context></context-group> | |
5547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context><context context-type="linenumber">5</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 5794 | </trans-unit> |
5548 | <trans-unit id="bfc87613409a6cfae59b79ead5d910d8d3c216f5" datatype="html"> | 5795 | <trans-unit id="bfc87613409a6cfae59b79ead5d910d8d3c216f5" datatype="html"> |
5549 | <source>STATS</source> | 5796 | <source>STATS</source> |
5550 | <target state="new">STATS</target> | 5797 | <target state="new">STATS</target> |
5551 | 5798 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context><context context-type="linenumber">17</context></context-group> | |
5552 | 5799 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context><context context-type="linenumber">10</context></context-group> | |
5553 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 5800 | </trans-unit> |
5554 | <trans-unit id="299f97b8ee9c62d45f2cc01961aa1e5101d6d05a"> | 5801 | <trans-unit id="299f97b8ee9c62d45f2cc01961aa1e5101d6d05a"> |
5555 | <source>Stats</source> | 5802 | <source>Stats</source> |
5556 | <target>Statistiky</target> | 5803 | <target>Statistiky</target> |
5557 | 5804 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group> | |
5558 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> | 5805 | </trans-unit> |
5559 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> | 5806 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> |
5560 | <source>Joined <x id="INTERPOLATION"/></source> | 5807 | <source>Joined <x id="INTERPOLATION"/></source> |
5561 | <target>Registrován/a od | 5808 | <target>Registrován/a od <x id="INTERPOLATION"/></target> |
5562 | <x id="INTERPOLATION" equiv-text="{{ account.createdAt | date }}"/> | 5809 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context><context context-type="linenumber">12</context></context-group> |
5563 | </target> | 5810 | </trans-unit> |
5564 | |||
5565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> | ||
5566 | <trans-unit id="f696d5719a2a79916d44a175743591dc0d5629fe" datatype="html"> | 5811 | <trans-unit id="f696d5719a2a79916d44a175743591dc0d5629fe" datatype="html"> |
5567 | <source> | 5812 | <source>Manage channel</source> |
5568 | Manage channel | ||
5569 | </source> | ||
5570 | <target state="new"> | 5813 | <target state="new"> |
5571 | Manage channel | 5814 | Manage channel |
5572 | </target> | 5815 | </target> |
5573 | 5816 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">22</context></context-group> | |
5574 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 5817 | </trans-unit> |
5575 | <trans-unit id="29b4ae3296e239446fa0dea88a5112de15cffa54" datatype="html"> | 5818 | <trans-unit id="29b4ae3296e239446fa0dea88a5112de15cffa54" datatype="html"> |
5576 | <source>Created by</source> | 5819 | <source>Created by</source> |
5577 | <target state="new">Created by</target> | 5820 | <target state="new">Created by</target> |
5578 | 5821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">31</context></context-group> | |
5579 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 5822 | </trans-unit> |
5580 | <trans-unit id="b8bf6036a9fb05c08cdb190cdf4e3becc6e6fa0a" datatype="html"> | 5823 | <trans-unit id="b8bf6036a9fb05c08cdb190cdf4e3becc6e6fa0a" datatype="html"> |
5581 | <source>SUPPORT THIS CHANNEL</source> | 5824 | <source>SUPPORT THIS CHANNEL</source> |
5582 | <target state="new">SUPPORT THIS CHANNEL</target> | 5825 | <target state="new">SUPPORT THIS CHANNEL</target> |
5583 | 5826 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context><context context-type="linenumber">10</context></context-group> | |
5584 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit><trans-unit id="8177374861384376651" datatype="html"> | 5827 | </trans-unit> |
5585 | <source>Most liked videos</source><target state="new">Most liked videos</target> | 5828 | <trans-unit id="8177374861384376651" datatype="html"> |
5586 | 5829 | <source>Most liked videos</source> | |
5587 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">46</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-most-liked.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit><trans-unit id="2494835943815843060" datatype="html"> | 5830 | <target state="new">Most liked videos</target> |
5588 | <source>Videos that have the most likes.</source><target state="new">Videos that have the most likes.</target> | 5831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">46</context></context-group> |
5589 | 5832 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-most-liked.component.ts</context><context context-type="linenumber">41</context></context-group> | |
5590 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-most-liked.component.ts</context><context context-type="linenumber">42</context></context-group></trans-unit> | 5833 | </trans-unit> |
5834 | <trans-unit id="2494835943815843060" datatype="html"> | ||
5835 | <source>Videos that have the most likes.</source> | ||
5836 | <target state="new">Videos that have the most likes.</target> | ||
5837 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-most-liked.component.ts</context><context context-type="linenumber">42</context></context-group> | ||
5838 | </trans-unit> | ||
5591 | <trans-unit id="5523952d0300c96cfba2ec5a693c95f923e90c40"> | 5839 | <trans-unit id="5523952d0300c96cfba2ec5a693c95f923e90c40"> |
5592 | <source>Created <x id="INTERPOLATION"/></source> | 5840 | <source>Created <x id="INTERPOLATION"/></source> |
5593 | <target>Vytvořeno | 5841 | <target>Vytvořeno <x id="INTERPOLATION"/></target> |
5594 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.createdAt | date }}"/> | 5842 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context><context context-type="linenumber">18</context></context-group> |
5595 | </target> | 5843 | </trans-unit> |
5596 | |||
5597 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | ||
5598 | <trans-unit id="5ebd76e736e1c58a1850234d1d26f1ab8c9ad11f" datatype="html"> | 5844 | <trans-unit id="5ebd76e736e1c58a1850234d1d26f1ab8c9ad11f" datatype="html"> |
5599 | <source> Created <x id="INTERPOLATION"/> playlists </source> | 5845 | <source>Created <x id="INTERPOLATION"/> playlists </source> |
5600 | <target state="new"> | 5846 | <target state="new"> |
5601 | Created | 5847 | Created |
5602 | <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> playlists | 5848 | <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> playlists |
5603 | 5849 | ||
5604 | </target> | 5850 | </target> |
5605 | 5851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context><context context-type="linenumber">2</context></context-group> | |
5606 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit> | 5852 | </trans-unit> |
5607 | <trans-unit id="fbbe62dee434f0521e0dfb8e3957d92fc5fcd76f"> | 5853 | <trans-unit id="fbbe62dee434f0521e0dfb8e3957d92fc5fcd76f"> |
5608 | <source>This channel does not have playlists.</source> | 5854 | <source>This channel does not have playlists.</source> |
5609 | <target>Tento kanál nemá seznamy.</target> | 5855 | <target>Tento kanál nemá seznamy.</target> |
5610 | 5856 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context><context context-type="linenumber">6</context></context-group> | |
5611 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 5857 | </trans-unit> |
5612 | <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390"> | 5858 | <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390"> |
5613 | <source>PeerTube</source> | 5859 | <source>PeerTube</source> |
5614 | <target>PeerTube</target> | 5860 | <target>PeerTube</target> |
5615 | 5861 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">7</context></context-group> | |
5616 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit><trans-unit id="2c7cd7912f61e528f6b38d4bc28733135931042b" datatype="html"> | 5862 | </trans-unit> |
5617 | <source>Network</source><target state="new">Network</target> | 5863 | <trans-unit id="2c7cd7912f61e528f6b38d4bc28733135931042b" datatype="html"> |
5618 | 5864 | <source>Network</source> | |
5619 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 5865 | <target state="new">Network</target> |
5866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">9</context></context-group> | ||
5867 | </trans-unit> | ||
5620 | <trans-unit id="fc978c97e261ee6494db916622339aedb633da3a"> | 5868 | <trans-unit id="fc978c97e261ee6494db916622339aedb633da3a"> |
5621 | <source>Follows</source> | 5869 | <source>Follows</source> |
5622 | <target state="new">Follows</target> | 5870 | <target state="new">Follows</target> |
5623 | 5871 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">2</context></context-group> | |
5624 | 5872 | </trans-unit> | |
5625 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit><trans-unit id="33a9a4343ee46c354d8b716167990efeea654382" datatype="html"> | 5873 | <trans-unit id="33a9a4343ee46c354d8b716167990efeea654382" datatype="html"> |
5626 | <source>Followers instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</source><target state="new">Followers instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</target> | 5874 | <source>Followers instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</source> |
5875 | <target state="new">Followers instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</target> | ||
5627 | <context-group purpose="location"> | 5876 | <context-group purpose="location"> |
5628 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 5877 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
5629 | <context context-type="linenumber">4</context> | 5878 | <context context-type="linenumber">4</context> |
5630 | </context-group> | 5879 | </context-group> |
5631 | </trans-unit><trans-unit id="aed1bb4393932c974d4347ff743a2253cc64ef02" datatype="html"> | 5880 | </trans-unit> |
5632 | <source>Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</source><target state="new">Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</target> | 5881 | <trans-unit id="aed1bb4393932c974d4347ff743a2253cc64ef02" datatype="html"> |
5882 | <source>Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</source> | ||
5883 | <target state="new">Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</target> | ||
5633 | <context-group purpose="location"> | 5884 | <context-group purpose="location"> |
5634 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 5885 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
5635 | <context context-type="linenumber">16</context> | 5886 | <context context-type="linenumber">16</context> |
@@ -5637,217 +5888,201 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5637 | </trans-unit> | 5888 | </trans-unit> |
5638 | <trans-unit id="5fea66be16da46ed7a0775e9a62b7b5e94b77473"> | 5889 | <trans-unit id="5fea66be16da46ed7a0775e9a62b7b5e94b77473"> |
5639 | <source>Contact <x id="INTERPOLATION"/> administrator</source> | 5890 | <source>Contact <x id="INTERPOLATION"/> administrator</source> |
5640 | <target>Kontaktujte administrátora | 5891 | <target>Kontaktovat správce <x id="INTERPOLATION"/></target> |
5641 | <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> | 5892 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">3</context></context-group> |
5642 | </target> | 5893 | </trans-unit> |
5643 | |||
5644 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | ||
5645 | <trans-unit id="533b2b9a76ee1335cb44c01f0bfd50d43e9400b0"> | 5894 | <trans-unit id="533b2b9a76ee1335cb44c01f0bfd50d43e9400b0"> |
5646 | <source>Your name</source> | 5895 | <source>Your name</source> |
5647 | <target>Vaše jméno</target> | 5896 | <target>Vaše jméno</target> |
5648 | 5897 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">11</context></context-group> | |
5649 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 5898 | </trans-unit> |
5650 | <trans-unit id="0b892c7805a1c5afc0b7c21c3449760860fe7f3d"> | 5899 | <trans-unit id="0b892c7805a1c5afc0b7c21c3449760860fe7f3d"> |
5651 | <source>Your email</source> | 5900 | <source>Your email</source> |
5652 | <target>Váš e-mail</target> | 5901 | <target>Váš e-mail</target> |
5653 | 5902 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">20</context></context-group> | |
5654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 5903 | </trans-unit> |
5655 | <trans-unit id="4b0ca852bafa5037c4e64c7b18f9cd1e14b799de"> | 5904 | <trans-unit id="4b0ca852bafa5037c4e64c7b18f9cd1e14b799de"> |
5656 | <source>Subject</source> | 5905 | <source>Subject</source> |
5657 | <target state="new">Subject</target> | 5906 | <target state="new">Subject</target> |
5658 | 5907 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">29</context></context-group> | |
5659 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 5908 | </trans-unit> |
5660 | <trans-unit id="d2815c9b510b8172d8cac4008b9709df69d636df"> | 5909 | <trans-unit id="d2815c9b510b8172d8cac4008b9709df69d636df"> |
5661 | <source>Your message</source> | 5910 | <source>Your message</source> |
5662 | <target>Vaše zpráva</target> | 5911 | <target>Vaše zpráva</target> |
5663 | 5912 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">38</context></context-group> | |
5664 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 5913 | </trans-unit> |
5665 | <trans-unit id="ce301bc59085d13cf569fb7a97f073148435ec27" datatype="html"> | 5914 | <trans-unit id="ce301bc59085d13cf569fb7a97f073148435ec27" datatype="html"> |
5666 | <source>About <x id="INTERPOLATION"/></source> | 5915 | <source>About <x id="INTERPOLATION"/></source> |
5667 | <target state="new">About | 5916 | <target state="new">About |
5668 | <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> | 5917 | <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> |
5669 | </target> | 5918 | </target> |
5670 | 5919 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">5</context></context-group> | |
5671 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 5920 | </trans-unit> |
5672 | <trans-unit id="3c1aff50472b313c70a72ee02c081b8eeb1c616c"> | 5921 | <trans-unit id="3c1aff50472b313c70a72ee02c081b8eeb1c616c"> |
5673 | <source>Contact administrator</source> | 5922 | <source>Contact administrator</source> |
5674 | <target>Kontaktovat administrátora</target> | 5923 | <target>Kontaktovat administrátora</target> |
5675 | 5924 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">7</context></context-group> | |
5676 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 5925 | </trans-unit> |
5677 | <trans-unit id="aaa2830aa30a5565ec06c852178ea7f181c693ea" datatype="html"> | 5926 | <trans-unit id="aaa2830aa30a5565ec06c852178ea7f181c693ea" datatype="html"> |
5678 | <source>This instance is dedicated to sensitive/NSFW content.</source> | 5927 | <source>This instance is dedicated to sensitive/NSFW content.</source> |
5679 | <target state="new">This instance is dedicated to sensitive/NSFW content.</target> | 5928 | <target state="new">This instance is dedicated to sensitive/NSFW content.</target> |
5680 | 5929 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">19</context></context-group> | |
5681 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 5930 | </trans-unit> |
5682 | <trans-unit id="5e595f291985655929e0348cf68ead712a081061" datatype="html"> | 5931 | <trans-unit id="5e595f291985655929e0348cf68ead712a081061" datatype="html"> |
5683 | <source> | 5932 | <source>ADMINISTRATORS & SUSTAINABILITY</source> |
5684 | ADMINISTRATORS & SUSTAINABILITY | ||
5685 | </source> | ||
5686 | <target state="new"> | 5933 | <target state="new"> |
5687 | ADMINISTRATORS & SUSTAINABILITY | 5934 | ADMINISTRATORS & SUSTAINABILITY |
5688 | </target> | 5935 | </target> |
5689 | 5936 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">32</context></context-group> | |
5690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 5937 | </trans-unit> |
5691 | <trans-unit id="f6a8cb2287c0c738d3d02ca36e145830c9734db5" datatype="html"> | 5938 | <trans-unit id="f6a8cb2287c0c738d3d02ca36e145830c9734db5" datatype="html"> |
5692 | <source>Who we are</source> | 5939 | <source>Who we are</source> |
5693 | <target state="new">Who we are</target> | 5940 | <target state="new">Who we are</target> |
5694 | 5941 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">44</context></context-group> | |
5695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> | 5942 | </trans-unit> |
5696 | <trans-unit id="911fb379526b62e9a62590722830c146ebd31be8" datatype="html"> | 5943 | <trans-unit id="911fb379526b62e9a62590722830c146ebd31be8" datatype="html"> |
5697 | <source>Why we created this instance</source> | 5944 | <source>Why we created this instance</source> |
5698 | <target state="new">Why we created this instance</target> | 5945 | <target state="new">Why we created this instance</target> |
5699 | 5946 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">58</context></context-group> | |
5700 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 5947 | </trans-unit> |
5701 | <trans-unit id="3f264e961636eb6eff1dbae7e3887447e22be154" datatype="html"> | 5948 | <trans-unit id="3f264e961636eb6eff1dbae7e3887447e22be154" datatype="html"> |
5702 | <source>How long we plan to maintain this instance</source> | 5949 | <source>How long we plan to maintain this instance</source> |
5703 | <target state="new">How long we plan to maintain this instance</target> | 5950 | <target state="new">How long we plan to maintain this instance</target> |
5704 | 5951 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">72</context></context-group> | |
5705 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> | 5952 | </trans-unit> |
5706 | <trans-unit id="2646614e3af5f103885f64e4f097e45569091fd6" datatype="html"> | 5953 | <trans-unit id="2646614e3af5f103885f64e4f097e45569091fd6" datatype="html"> |
5707 | <source>How we will pay for this instance</source> | 5954 | <source>How we will pay for this instance</source> |
5708 | <target state="new">How we will pay for this instance</target> | 5955 | <target state="new">How we will pay for this instance</target> |
5709 | 5956 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">86</context></context-group> | |
5710 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 5957 | </trans-unit> |
5711 | <trans-unit id="2a422d9f181480a3199d18e7d5d616ad4e75530a" datatype="html"> | 5958 | <trans-unit id="2a422d9f181480a3199d18e7d5d616ad4e75530a" datatype="html"> |
5712 | <source> | 5959 | <source>INFORMATION</source> |
5713 | INFORMATION | ||
5714 | </source> | ||
5715 | <target state="new"> | 5960 | <target state="new"> |
5716 | INFORMATION | 5961 | INFORMATION |
5717 | </target> | 5962 | </target> |
5718 | 5963 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">101</context></context-group> | |
5719 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 5964 | </trans-unit> |
5720 | <trans-unit id="c47227276184c2145c8ca1161ce08075df573568" datatype="html"> | 5965 | <trans-unit id="c47227276184c2145c8ca1161ce08075df573568" datatype="html"> |
5721 | <source> | 5966 | <source>MODERATION</source> |
5722 | MODERATION | ||
5723 | </source> | ||
5724 | <target state="new"> | 5967 | <target state="new"> |
5725 | MODERATION | 5968 | MODERATION |
5726 | </target> | 5969 | </target> |
5727 | 5970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">128</context></context-group> | |
5728 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">128</context></context-group></trans-unit> | 5971 | </trans-unit> |
5729 | <trans-unit id="e00d53801f276434a03bbfd4a8443651f46ef91a" datatype="html"> | 5972 | <trans-unit id="e00d53801f276434a03bbfd4a8443651f46ef91a" datatype="html"> |
5730 | <source> | 5973 | <source>OTHER INFORMATION</source> |
5731 | OTHER INFORMATION | ||
5732 | </source> | ||
5733 | <target state="new"> | 5974 | <target state="new"> |
5734 | OTHER INFORMATION | 5975 | OTHER INFORMATION |
5735 | </target> | 5976 | </target> |
5736 | 5977 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">183</context></context-group> | |
5737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">183</context></context-group></trans-unit> | 5978 | </trans-unit> |
5738 | <trans-unit id="3624f527ba5d5ed005a4ff2540d1a210233aa320" datatype="html"> | 5979 | <trans-unit id="3624f527ba5d5ed005a4ff2540d1a210233aa320" datatype="html"> |
5739 | <source>Hardware information</source> | 5980 | <source>Hardware information</source> |
5740 | <target state="new">Hardware information</target> | 5981 | <target state="new">Hardware information</target> |
5741 | 5982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">195</context></context-group> | |
5742 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">195</context></context-group></trans-unit> | 5983 | </trans-unit> |
5743 | <trans-unit id="d84d2cd0e5c2053a4451e7f77b81269e157cc5af" datatype="html"> | 5984 | <trans-unit id="d84d2cd0e5c2053a4451e7f77b81269e157cc5af" datatype="html"> |
5744 | <source>FEATURES</source> | 5985 | <source>FEATURES</source> |
5745 | <target state="new">FEATURES</target> | 5986 | <target state="new">FEATURES</target> |
5746 | 5987 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">203</context></context-group> | |
5747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">203</context></context-group></trans-unit> | 5988 | </trans-unit> |
5748 | <trans-unit id="fa48c3ddc2ef8e40e5c317e68bc05ae62c93b0c1"> | 5989 | <trans-unit id="fa48c3ddc2ef8e40e5c317e68bc05ae62c93b0c1"> |
5749 | <source>Features found on this instance</source> | 5990 | <source>Features found on this instance</source> |
5750 | <target>Funkce podporované touto instancí</target> | 5991 | <target>Funkce podporované touto instancí</target> |
5751 | 5992 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">4</context></context-group> | |
5752 | 5993 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">6</context></context-group> | |
5753 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 5994 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">6</context></context-group> |
5995 | </trans-unit> | ||
5754 | <trans-unit id="92538de0e2f6e64f1d05291132b93c32bed81237" datatype="html"> | 5996 | <trans-unit id="92538de0e2f6e64f1d05291132b93c32bed81237" datatype="html"> |
5755 | <source>STATISTICS</source> | 5997 | <source>STATISTICS</source> |
5756 | <target state="new">STATISTICS</target> | 5998 | <target state="new">STATISTICS</target> |
5757 | 5999 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">215</context></context-group> | |
5758 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">215</context></context-group></trans-unit> | 6000 | </trans-unit> |
5759 | <trans-unit id="6b8b10fedeff64aa441ebedc2b7fbd07f6f246c1" datatype="html"> | 6001 | <trans-unit id="6b8b10fedeff64aa441ebedc2b7fbd07f6f246c1" datatype="html"> |
5760 | <source> | 6002 | <source>What is PeerTube?</source> |
5761 | What is PeerTube? | ||
5762 | </source> | ||
5763 | <target state="new"> | 6003 | <target state="new"> |
5764 | What is PeerTube? | 6004 | What is PeerTube? |
5765 | </target> | 6005 | </target> |
5766 | 6006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">3</context></context-group> | |
5767 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 6007 | </trans-unit> |
5768 | <trans-unit id="49ea58bdafe3b72efaa42bac13d7d9b2f22a2990" datatype="html"> | 6008 | <trans-unit id="49ea58bdafe3b72efaa42bac13d7d9b2f22a2990" datatype="html"> |
5769 | <source> | 6009 | <source>PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser.</source> |
5770 | PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser. | ||
5771 | </source> | ||
5772 | <target state="new"> | 6010 | <target state="new"> |
5773 | PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser. | 6011 | PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser. |
5774 | </target> | 6012 | </target> |
5775 | 6013 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">10</context></context-group> | |
5776 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit><trans-unit id="ccbfd56f7d72ca5055b86a35f66b7a6d0a250d03" datatype="html"> | 6014 | </trans-unit> |
5777 | <source> It is free and open-source software, under <x id="START_LINK"/>AGPLv3 licence<x id="CLOSE_LINK"/>. </source><target state="new"> It is free and open-source software, under <x id="START_LINK"/>AGPLv3 licence<x id="CLOSE_LINK"/>. </target> | 6015 | <trans-unit id="ccbfd56f7d72ca5055b86a35f66b7a6d0a250d03" datatype="html"> |
5778 | 6016 | <source>It is free and open-source software, under <x id="START_LINK"/>AGPLv3 licence<x id="CLOSE_LINK"/>. </source> | |
5779 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 6017 | <target state="new"> It is free and open-source software, under <x id="START_LINK"/>AGPLv3 licence<x id="CLOSE_LINK"/>. </target> |
5780 | 6018 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">14</context></context-group> | |
6019 | </trans-unit> | ||
5781 | <trans-unit id="7b85d0debc419e6c9c390ce02686b57d256cd139" datatype="html"> | 6020 | <trans-unit id="7b85d0debc419e6c9c390ce02686b57d256cd139" datatype="html"> |
5782 | <source> For more information, please visit <x id="START_LINK"/>joinpeertube.org<x id="CLOSE_LINK"/>. </source> | 6021 | <source>For more information, please visit <x id="START_LINK"/>joinpeertube.org<x id="CLOSE_LINK"/>. </source> |
5783 | <target state="new"> | 6022 | <target state="new"> |
5784 | For more information, please visit | 6023 | For more information, please visit |
5785 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>joinpeertube.org | 6024 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>joinpeertube.org |
5786 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | 6025 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. |
5787 | 6026 | ||
5788 | </target> | 6027 | </target> |
5789 | 6028 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">19</context></context-group> | |
5790 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 6029 | </trans-unit> |
5791 | <trans-unit id="0f972eed0e4c81f8006cf8061a400304b2c62b21" datatype="html"> | 6030 | <trans-unit id="0f972eed0e4c81f8006cf8061a400304b2c62b21" datatype="html"> |
5792 | <source>Use PeerTube documentation</source> | 6031 | <source>Use PeerTube documentation</source> |
5793 | <target state="new">Use PeerTube | 6032 | <target state="new">Use PeerTube |
5794 | documentation</target> | 6033 | documentation</target> |
5795 | 6034 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">28</context></context-group> | |
5796 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 6035 | </trans-unit> |
5797 | <trans-unit id="80c7532b45374a38b6c5f3bd5576464660b95b89" datatype="html"> | 6036 | <trans-unit id="80c7532b45374a38b6c5f3bd5576464660b95b89" datatype="html"> |
5798 | <source> | 6037 | <source>Discover how to setup your account, what is a channel, how to create a playlist and more!</source> |
5799 | Discover how to setup your account, what is a channel, how to create a playlist and more! | ||
5800 | </source> | ||
5801 | <target state="new"> | 6038 | <target state="new"> |
5802 | Discover how to setup your account, what is a channel, how to create a playlist and more! | 6039 | Discover how to setup your account, what is a channel, how to create a playlist and more! |
5803 | </target> | 6040 | </target> |
5804 | 6041 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">33</context></context-group> | |
5805 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 6042 | </trans-unit> |
5806 | <trans-unit id="08d65d76b1b4f8b5d802900b539b1d2e16a71756" datatype="html"> | 6043 | <trans-unit id="08d65d76b1b4f8b5d802900b539b1d2e16a71756" datatype="html"> |
5807 | <source>PeerTube Applications</source> | 6044 | <source>PeerTube Applications</source> |
5808 | <target state="new">PeerTube | 6045 | <target state="new">PeerTube |
5809 | Applications</target> | 6046 | Applications</target> |
5810 | 6047 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">41</context></context-group> | |
5811 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 6048 | </trans-unit> |
5812 | <trans-unit id="41d3c1ad1b83498b20d96d74bc14e0a1e9749529" datatype="html"> | 6049 | <trans-unit id="41d3c1ad1b83498b20d96d74bc14e0a1e9749529" datatype="html"> |
5813 | <source> | 6050 | <source>Discover unofficial Android applications or browser addons!</source> |
5814 | Discover unofficial Android applications or browser addons! | ||
5815 | </source> | ||
5816 | <target state="new"> | 6051 | <target state="new"> |
5817 | Discover unofficial Android applications or browser addons! | 6052 | Discover unofficial Android applications or browser addons! |
5818 | </target> | 6053 | </target> |
5819 | 6054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">46</context></context-group> | |
5820 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 6055 | </trans-unit> |
5821 | <trans-unit id="a1b892a310faf2ee74544d659ce968314997d56a" datatype="html"> | 6056 | <trans-unit id="a1b892a310faf2ee74544d659ce968314997d56a" datatype="html"> |
5822 | <source>Contribute on PeerTube</source> | 6057 | <source>Contribute on PeerTube</source> |
5823 | <target state="new">Contribute on | 6058 | <target state="new">Contribute on |
5824 | PeerTube</target> | 6059 | PeerTube</target> |
5825 | 6060 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">54</context></context-group> | |
5826 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> | 6061 | </trans-unit> |
5827 | <trans-unit id="2c4788d7843d80bf5aad6283aba75c8151807e8c" datatype="html"> | 6062 | <trans-unit id="2c4788d7843d80bf5aad6283aba75c8151807e8c" datatype="html"> |
5828 | <source> | 6063 | <source>Want to help to improve PeerTube? You can translate the web interface, give your feedback or directly contribute to the code!</source> |
5829 | Want to help to improve PeerTube? You can translate the web interface, give your feedback or directly contribute to the code! | ||
5830 | </source> | ||
5831 | <target state="new"> | 6064 | <target state="new"> |
5832 | Want to help to improve PeerTube? You can translate the web interface, give your feedback or directly contribute to the code! | 6065 | Want to help to improve PeerTube? You can translate the web interface, give your feedback or directly contribute to the code! |
5833 | </target> | 6066 | </target> |
5834 | 6067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">59</context></context-group> | |
5835 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 6068 | </trans-unit> |
5836 | <trans-unit id="c02493cfa08b82c468233b83069b5baff23890e1"> | 6069 | <trans-unit id="c02493cfa08b82c468233b83069b5baff23890e1"> |
5837 | <source>P2P & Privacy</source> | 6070 | <source>P2P & Privacy</source> |
5838 | <target>P2P & soukromí</target> | 6071 | <target>P2P & soukromí</target> |
5839 | 6072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">71</context></context-group> | |
5840 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit> | 6073 | </trans-unit> |
5841 | <trans-unit id="d0a97e9255fb49b92504d36516f902f440bc8878" datatype="html"> | 6074 | <trans-unit id="d0a97e9255fb49b92504d36516f902f440bc8878" datatype="html"> |
5842 | <source> PeerTube uses the BitTorrent protocol to share bandwidth between users by default to help lower the load on the server, but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What follows applies only if you want to keep using the P2P mode of PeerTube. </source> | 6075 | <source>PeerTube uses the BitTorrent protocol to share bandwidth between users by default to help lower the load on the server, but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What follows applies only if you want to keep using the P2P mode of PeerTube.</source> |
5843 | <target state="new"> | 6076 | <target state="new"> |
5844 | PeerTube uses the BitTorrent protocol to share bandwidth between users by default to help lower the load on the server, | 6077 | PeerTube uses the BitTorrent protocol to share bandwidth between users by default to help lower the load on the server, |
5845 | but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What | 6078 | but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What |
5846 | follows applies only if you want to keep using the P2P mode of PeerTube. | 6079 | follows applies only if you want to keep using the P2P mode of PeerTube. |
5847 | </target> | 6080 | </target> |
5848 | 6081 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">75</context></context-group> | |
5849 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">75</context></context-group></trans-unit><trans-unit id="eb99819c4e231fb1efe7f0856756941908ddf172" datatype="html"> | 6082 | </trans-unit> |
5850 | <source> The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video. </source><target state="new"> The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video. </target> | 6083 | <trans-unit id="eb99819c4e231fb1efe7f0856756941908ddf172" datatype="html"> |
6084 | <source>The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video.</source> | ||
6085 | <target state="new"> The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video. </target> | ||
5851 | <context-group purpose="location"> | 6086 | <context-group purpose="location"> |
5852 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> | 6087 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> |
5853 | <context context-type="linenumber">81,83</context> | 6088 | <context context-type="linenumber">81,83</context> |
@@ -5856,147 +6091,144 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5856 | <trans-unit id="e4ce50f3019e3ebe9a479784c6cb68a31c7a8231"> | 6091 | <trans-unit id="e4ce50f3019e3ebe9a479784c6cb68a31c7a8231"> |
5857 | <source>What are the consequences?</source> | 6092 | <source>What are the consequences?</source> |
5858 | <target>Co to má za následky?</target> | 6093 | <target>Co to má za následky?</target> |
5859 | 6094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">85</context></context-group> | |
5860 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 6095 | </trans-unit> |
5861 | <trans-unit id="14d3bc3dafb4a09f3c79daac07ebf30e76457f63" datatype="html"> | 6096 | <trans-unit id="14d3bc3dafb4a09f3c79daac07ebf30e76457f63" datatype="html"> |
5862 | <source> In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. In practice, this is much more difficult because: </source> | 6097 | <source>In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. In practice, this is much more difficult because:</source> |
5863 | <target state="new"> | 6098 | <target state="new"> |
5864 | In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. | 6099 | In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. |
5865 | In practice, this is much more difficult because: | 6100 | In practice, this is much more difficult because: |
5866 | </target> | 6101 | </target> |
5867 | 6102 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">88</context></context-group> | |
5868 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> | 6103 | </trans-unit> |
5869 | <trans-unit id="fc899a02306f4fd2ce20978136d252dd6eb346cf" datatype="html"> | 6104 | <trans-unit id="fc899a02306f4fd2ce20978136d252dd6eb346cf" datatype="html"> |
5870 | <source> An HTTP request has to be sent on each tracker for each video to spy. If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot) </source> | 6105 | <source>An HTTP request has to be sent on each tracker for each video to spy. If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot)</source> |
5871 | <target state="new"> | 6106 | <target state="new"> |
5872 | An HTTP request has to be sent on each tracker for each video to spy. | 6107 | An HTTP request has to be sent on each tracker for each video to spy. |
5873 | If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot) | 6108 | If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot) |
5874 | </target> | 6109 | </target> |
5875 | 6110 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">94</context></context-group> | |
5876 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">94</context></context-group></trans-unit> | 6111 | </trans-unit> |
5877 | <trans-unit id="278669a7857ee77786cf4578b11bb601002cf7a8" datatype="html"> | 6112 | <trans-unit id="278669a7857ee77786cf4578b11bb601002cf7a8" datatype="html"> |
5878 | <source> For each request sent, the tracker returns random peers at a limited number. For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50 requests sent to know every peer in the swarm </source> | 6113 | <source>For each request sent, the tracker returns random peers at a limited number. For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50 requests sent to know every peer in the swarm</source> |
5879 | <target state="new"> | 6114 | <target state="new"> |
5880 | For each request sent, the tracker returns random peers at a limited number. | 6115 | For each request sent, the tracker returns random peers at a limited number. |
5881 | For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50 | 6116 | For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50 |
5882 | requests sent to know every peer in the swarm | 6117 | requests sent to know every peer in the swarm |
5883 | </target> | 6118 | </target> |
5884 | 6119 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">99</context></context-group> | |
5885 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">99</context></context-group></trans-unit> | 6120 | </trans-unit> |
5886 | <trans-unit id="3f47eec5fb00ae46a0035cc8f9e428e3d549e337" datatype="html"> | 6121 | <trans-unit id="3f47eec5fb00ae46a0035cc8f9e428e3d549e337" datatype="html"> |
5887 | <source> | 6122 | <source>Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour</source> |
5888 | Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour | ||
5889 | </source> | ||
5890 | <target state="new"> | 6123 | <target state="new"> |
5891 | Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour | 6124 | Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour |
5892 | </target> | 6125 | </target> |
5893 | 6126 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">105</context></context-group> | |
5894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">105</context></context-group></trans-unit> | 6127 | </trans-unit> |
5895 | <trans-unit id="a5089b43b2fd8a2639bc7a4cdfaa90e869f51cc3" datatype="html"> | 6128 | <trans-unit id="a5089b43b2fd8a2639bc7a4cdfaa90e869f51cc3" datatype="html"> |
5896 | <source> If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the video </source> | 6129 | <source>If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the video</source> |
5897 | <target state="new"> | 6130 | <target state="new"> |
5898 | If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the | 6131 | If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the |
5899 | video | 6132 | video |
5900 | </target> | 6133 | </target> |
5901 | 6134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">109</context></context-group> | |
5902 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">109</context></context-group></trans-unit> | 6135 | </trans-unit> |
5903 | <trans-unit id="ff5458261525060246f1f49a740c8d094dc4bac4" datatype="html"> | 6136 | <trans-unit id="ff5458261525060246f1f49a740c8d094dc4bac4" datatype="html"> |
5904 | <source> | 6137 | <source>The IP address is a vague information: usually, it regularly changes and can represent many persons or entities</source> |
5905 | The IP address is a vague information: usually, it regularly changes and can represent many persons or entities | ||
5906 | </source> | ||
5907 | <target state="new"> | 6138 | <target state="new"> |
5908 | The IP address is a vague information: usually, it regularly changes and can represent many persons or entities | 6139 | The IP address is a vague information: usually, it regularly changes and can represent many persons or entities |
5909 | </target> | 6140 | </target> |
5910 | 6141 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">114</context></context-group> | |
5911 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">114</context></context-group></trans-unit><trans-unit id="f360bcf79135ae541bdb1bbd419ccc4cb2fb6ab3" datatype="html"> | 6142 | </trans-unit> |
5912 | <source> Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </source><target state="new"> Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </target> | 6143 | <trans-unit id="f360bcf79135ae541bdb1bbd419ccc4cb2fb6ab3" datatype="html"> |
6144 | <source>Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </source> | ||
6145 | <target state="new"> Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </target> | ||
5913 | <context-group purpose="location"> | 6146 | <context-group purpose="location"> |
5914 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> | 6147 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> |
5915 | <context context-type="linenumber">118,122</context> | 6148 | <context context-type="linenumber">118,122</context> |
5916 | </context-group> | 6149 | </context-group> |
5917 | </trans-unit> | 6150 | </trans-unit> |
5918 | |||
5919 | <trans-unit id="e916a82a25fb892f83d2b63ca55594dc7d02f36a" datatype="html"> | 6151 | <trans-unit id="e916a82a25fb892f83d2b63ca55594dc7d02f36a" datatype="html"> |
5920 | <source> The worst-case scenario of an average person spying on their friends is quite unlikely. There are much more effective ways to get that kind of information. </source> | 6152 | <source>The worst-case scenario of an average person spying on their friends is quite unlikely. There are much more effective ways to get that kind of information.</source> |
5921 | <target state="new"> | 6153 | <target state="new"> |
5922 | The worst-case scenario of an average person spying on their friends is quite unlikely. | 6154 | The worst-case scenario of an average person spying on their friends is quite unlikely. |
5923 | There are much more effective ways to get that kind of information. | 6155 | There are much more effective ways to get that kind of information. |
5924 | </target> | 6156 | </target> |
5925 | 6157 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">126</context></context-group> | |
5926 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 6158 | </trans-unit> |
5927 | <trans-unit id="4bf47a1ae952bf42a4682a5ecddb0bfb8c9adfaf"> | 6159 | <trans-unit id="4bf47a1ae952bf42a4682a5ecddb0bfb8c9adfaf"> |
5928 | <source>How does PeerTube compare with YouTube?</source> | 6160 | <source>How does PeerTube compare with YouTube?</source> |
5929 | <target>Jaký je PeerTube v porovnání s YouTubem?</target> | 6161 | <target>Jaký je PeerTube v porovnání s YouTubem?</target> |
5930 | 6162 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">130</context></context-group> | |
5931 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">130</context></context-group></trans-unit> | 6163 | </trans-unit> |
5932 | <trans-unit id="1fd22031e4f7920db2300cc76ee9c8516b25f50d" datatype="html"> | 6164 | <trans-unit id="1fd22031e4f7920db2300cc76ee9c8516b25f50d" datatype="html"> |
5933 | <source> The threats to privacy with YouTube are different from PeerTube's. In YouTube's case, the platform gathers a huge amount of your personal information (not only your IP) to analyze them and track you. Moreover, YouTube is owned by Google/Alphabet, a company that tracks you across many websites (via AdSense or Google Analytics). </source> | 6165 | <source>The threats to privacy with YouTube are different from PeerTube's. In YouTube's case, the platform gathers a huge amount of your personal information (not only your IP) to analyze them and track you. Moreover, YouTube is owned by Google/Alphabet, a company that tracks you across many websites (via AdSense or Google Analytics).</source> |
5934 | <target state="new"> | 6166 | <target state="new"> |
5935 | The threats to privacy with YouTube are different from PeerTube's. | 6167 | The threats to privacy with YouTube are different from PeerTube's. |
5936 | In YouTube's case, the platform gathers a huge amount of your personal information (not only your IP) to analyze them and track you. | 6168 | In YouTube's case, the platform gathers a huge amount of your personal information (not only your IP) to analyze them and track you. |
5937 | Moreover, YouTube is owned by Google/Alphabet, a company that tracks you across many websites (via AdSense or Google Analytics). | 6169 | Moreover, YouTube is owned by Google/Alphabet, a company that tracks you across many websites (via AdSense or Google Analytics). |
5938 | </target> | 6170 | </target> |
5939 | 6171 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">133</context></context-group> | |
5940 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">133</context></context-group></trans-unit> | 6172 | </trans-unit> |
5941 | <trans-unit id="3c2990d5e452bdf2317ff23745db70705d848d99"> | 6173 | <trans-unit id="3c2990d5e452bdf2317ff23745db70705d848d99"> |
5942 | <source>What can I do to limit the exposure of my IP address?</source> | 6174 | <source>What can I do to limit the exposure of my IP address?</source> |
5943 | <target>Co mohu dělat pro zkrácení doby uložení mé IP adresy?</target> | 6175 | <target>Co mohu dělat pro zkrácení doby uložení mé IP adresy?</target> |
5944 | 6176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">138</context></context-group> | |
5945 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">138</context></context-group></trans-unit> | 6177 | </trans-unit> |
5946 | <trans-unit id="301e86f807ed659ff42d3b4bba6e03b88bff7907" datatype="html"> | 6178 | <trans-unit id="301e86f807ed659ff42d3b4bba6e03b88bff7907" datatype="html"> |
5947 | <source> Your IP address is public so every time you consult a website, there is a number of actors (in addition to the final website) seeing your IP in their connection logs: ISP/routers/trackers/CDN and more. PeerTube is transparent about it: we warn you that if you want to keep your IP private, you must use a VPN or Tor Browser. Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense. </source> | 6179 | <source>Your IP address is public so every time you consult a website, there is a number of actors (in addition to the final website) seeing your IP in their connection logs: ISP/routers/trackers/CDN and more. PeerTube is transparent about it: we warn you that if you want to keep your IP private, you must use a VPN or Tor Browser. Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense.</source> |
5948 | <target state="new"> | 6180 | <target state="new"> |
5949 | Your IP address is public so every time you consult a website, there is a number of actors (in addition to the final website) seeing | 6181 | Your IP address is public so every time you consult a website, there is a number of actors (in addition to the final website) seeing |
5950 | your IP in their connection logs: ISP/routers/trackers/CDN and more. | 6182 | your IP in their connection logs: ISP/routers/trackers/CDN and more. |
5951 | PeerTube is transparent about it: we warn you that if you want to keep your IP private, you must use a VPN or Tor Browser. | 6183 | PeerTube is transparent about it: we warn you that if you want to keep your IP private, you must use a VPN or Tor Browser. |
5952 | Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense. | 6184 | Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense. |
5953 | </target> | 6185 | </target> |
5954 | 6186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">141</context></context-group> | |
5955 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">141</context></context-group></trans-unit> | 6187 | </trans-unit> |
5956 | <trans-unit id="8ce78dd287b9a9dde5079916425ea66466530e41"> | 6188 | <trans-unit id="8ce78dd287b9a9dde5079916425ea66466530e41"> |
5957 | <source>What will be done to mitigate this problem?</source> | 6189 | <source>What will be done to mitigate this problem?</source> |
5958 | <target>Co můžete udělat pro zmírnění tohoto problému?</target> | 6190 | <target>Co můžete udělat pro zmírnění tohoto problému?</target> |
5959 | 6191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">147</context></context-group> | |
5960 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">147</context></context-group></trans-unit> | 6192 | </trans-unit> |
5961 | <trans-unit id="db4d65ed605b948169d51eac4c1b2ff662088eb7" datatype="html"> | 6193 | <trans-unit id="db4d65ed605b948169d51eac4c1b2ff662088eb7" datatype="html"> |
5962 | <source> PeerTube wants to deliver the best countermeasures possible, to give you more choice and render attacks less likely. Here is what we put in place so far: </source> | 6194 | <source>PeerTube wants to deliver the best countermeasures possible, to give you more choice and render attacks less likely. Here is what we put in place so far:</source> |
5963 | <target state="new"> | 6195 | <target state="new"> |
5964 | PeerTube wants to deliver the best countermeasures possible, to give you more choice | 6196 | PeerTube wants to deliver the best countermeasures possible, to give you more choice |
5965 | and render attacks less likely. Here is what we put in place so far: | 6197 | and render attacks less likely. Here is what we put in place so far: |
5966 | </target> | 6198 | </target> |
5967 | 6199 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">150</context></context-group> | |
5968 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">150</context></context-group></trans-unit> | 6200 | </trans-unit> |
5969 | <trans-unit id="89c0c2c3150b99bbea20214895df56c8f8d6125d" datatype="html"> | 6201 | <trans-unit id="89c0c2c3150b99bbea20214895df56c8f8d6125d" datatype="html"> |
5970 | <source>We set a limit to the number of peers sent by the tracker</source> | 6202 | <source>We set a limit to the number of peers sent by the tracker</source> |
5971 | <target state="new">We set a limit to the number of peers sent by the tracker</target> | 6203 | <target state="new">We set a limit to the number of peers sent by the tracker</target> |
5972 | 6204 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">155</context></context-group> | |
5973 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">155</context></context-group></trans-unit> | 6205 | </trans-unit> |
5974 | <trans-unit id="b23c2b01db8b09f1a9bc6144d66291e28f02daf4" datatype="html"> | 6206 | <trans-unit id="b23c2b01db8b09f1a9bc6144d66291e28f02daf4" datatype="html"> |
5975 | <source>We set a limit on the request frequency received by the tracker</source> | 6207 | <source>We set a limit on the request frequency received by the tracker</source> |
5976 | <target state="new">We set a limit on the request frequency received by the tracker</target> | 6208 | <target state="new">We set a limit on the request frequency received by the tracker</target> |
5977 | 6209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">156</context></context-group> | |
5978 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 6210 | </trans-unit> |
5979 | <trans-unit id="b6f5d5d1aab25c1e675c66ea5dbb987654e9c0b0" datatype="html"> | 6211 | <trans-unit id="b6f5d5d1aab25c1e675c66ea5dbb987654e9c0b0" datatype="html"> |
5980 | <source>Allow instance admins to disable P2P from the administration interface</source> | 6212 | <source>Allow instance admins to disable P2P from the administration interface</source> |
5981 | <target state="new">Allow instance admins to disable P2P from the administration interface</target> | 6213 | <target state="new">Allow instance admins to disable P2P from the administration interface</target> |
5982 | 6214 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">157</context></context-group> | |
5983 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">157</context></context-group></trans-unit> | 6215 | </trans-unit> |
5984 | |||
5985 | <trans-unit id="a4a403ca6ccc6c4bd590cdfb045474270625ea12" datatype="html"> | 6216 | <trans-unit id="a4a403ca6ccc6c4bd590cdfb045474270625ea12" datatype="html"> |
5986 | <source> Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling WebRTC in your browser. </source> | 6217 | <source>Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling WebRTC in your browser.</source> |
5987 | <target state="new"> | 6218 | <target state="new"> |
5988 | Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling | 6219 | Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling |
5989 | WebRTC in your browser. | 6220 | WebRTC in your browser. |
5990 | </target> | 6221 | </target> |
5991 | 6222 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">161</context></context-group> | |
5992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 6223 | </trans-unit> |
5993 | |||
5994 | <trans-unit id="39dabfebe4a70cc00aa454f790b81cf453d38304" datatype="html"> | 6224 | <trans-unit id="39dabfebe4a70cc00aa454f790b81cf453d38304" datatype="html"> |
5995 | <source>This instance does not have instances followers.</source> | 6225 | <source>This instance does not have instances followers.</source> |
5996 | <target state="new">This instance does not have instances followers.</target> | 6226 | <target state="new">This instance does not have instances followers.</target> |
5997 | 6227 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">6</context></context-group> | |
5998 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="144d423719b19c9f99ee6aaff85aed693d5cdd97" datatype="html"> | 6228 | </trans-unit> |
5999 | <source>Show full list</source><target state="new">Show full list</target> | 6229 | <trans-unit id="144d423719b19c9f99ee6aaff85aed693d5cdd97" datatype="html"> |
6230 | <source>Show full list</source> | ||
6231 | <target state="new">Show full list</target> | ||
6000 | <context-group purpose="location"> | 6232 | <context-group purpose="location"> |
6001 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 6233 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
6002 | <context context-type="linenumber">12</context> | 6234 | <context context-type="linenumber">12</context> |
@@ -6005,307 +6237,341 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6005 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 6237 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
6006 | <context context-type="linenumber">24</context> | 6238 | <context context-type="linenumber">24</context> |
6007 | </context-group> | 6239 | </context-group> |
6008 | </trans-unit><trans-unit id="9a9dcdc62c7e0048f4f4702b0327dda350341abc" datatype="html"> | 6240 | </trans-unit> |
6009 | <source>This instance is not following any other.</source><target state="new">This instance is not following any other.</target> | 6241 | <trans-unit id="9a9dcdc62c7e0048f4f4702b0327dda350341abc" datatype="html"> |
6010 | 6242 | <source>This instance is not following any other.</source> | |
6011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 6243 | <target state="new">This instance is not following any other.</target> |
6012 | 6244 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">18</context></context-group> | |
6245 | </trans-unit> | ||
6013 | <trans-unit id="4195286790385468087" datatype="html"> | 6246 | <trans-unit id="4195286790385468087" datatype="html"> |
6014 | <source>About this instance</source><target state="new">About this instance</target> | 6247 | <source>About this instance</source> |
6015 | 6248 | <target state="new">About this instance</target> | |
6016 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">26</context></context-group></trans-unit><trans-unit id="8773846522957677259" datatype="html"> | 6249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">26</context></context-group> |
6017 | <source>About PeerTube</source><target state="new">About PeerTube</target> | 6250 | </trans-unit> |
6018 | 6251 | <trans-unit id="8773846522957677259" datatype="html"> | |
6019 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="1812900507515561988" datatype="html"> | 6252 | <source>About PeerTube</source> |
6020 | <source>About this instance's network</source><target state="new">About this instance's network</target> | 6253 | <target state="new">About PeerTube</target> |
6021 | 6254 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">38</context></context-group> | |
6022 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">47</context></context-group></trans-unit><trans-unit id="892073694820881630" datatype="html"> | 6255 | </trans-unit> |
6023 | <source>Link copied</source><target state="new">Link copied</target> | 6256 | <trans-unit id="1812900507515561988" datatype="html"> |
6024 | 6257 | <source>About this instance's network</source> | |
6025 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.ts</context><context context-type="linenumber">91</context></context-group></trans-unit> | 6258 | <target state="new">About this instance's network</target> |
6259 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">47</context></context-group> | ||
6260 | </trans-unit> | ||
6261 | <trans-unit id="892073694820881630" datatype="html"> | ||
6262 | <source>Link copied</source> | ||
6263 | <target state="new">Link copied</target> | ||
6264 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.ts</context><context context-type="linenumber">91</context></context-group> | ||
6265 | </trans-unit> | ||
6026 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 6266 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
6027 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 6267 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
6028 | <target state="new">Developed with ❤ by | 6268 | <target state="new">Developed with ❤ by |
6029 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Framasoft | 6269 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Framasoft |
6030 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 6270 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
6031 | </target> | 6271 | </target> |
6032 | 6272 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube-contributors.component.html</context><context context-type="linenumber">3</context></context-group> | |
6033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube-contributors.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 6273 | </trans-unit> |
6034 | <trans-unit id="4499806949402133d08a5029cb5462c5ea25336d"> | 6274 | <trans-unit id="4499806949402133d08a5029cb5462c5ea25336d"> |
6035 | <source>Create an account</source> | 6275 | <source>Create an account</source> |
6036 | <target> | 6276 | <target> |
6037 | Vytvořit účet | 6277 | Vytvořit účet |
6038 | </target> | 6278 | </target> |
6039 | 6279 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">4</context></context-group> | |
6040 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 6280 | </trans-unit> |
6041 | <trans-unit id="9082008222523034483" datatype="html"> | 6281 | <trans-unit id="9082008222523034483" datatype="html"> |
6042 | <source>Get help</source><target state="new">Get help</target> | 6282 | <source>Get help</source> |
6043 | 6283 | <target state="new">Get help</target> | |
6044 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">16</context></context-group></trans-unit> | 6284 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">16</context></context-group> |
6285 | </trans-unit> | ||
6045 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1"> | 6286 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1"> |
6046 | <source>Create my account</source> | 6287 | <source>Create my account</source> |
6047 | <target> | 6288 | <target> |
6048 | Vytvořit můj účet | 6289 | Vytvořit můj účet |
6049 | </target> | 6290 | </target> |
6050 | 6291 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">38</context></context-group> | |
6051 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6292 | </trans-unit> |
6052 | <trans-unit id="cb9d0623f382c9803df997fb30b9a33a5438d919"> | 6293 | <trans-unit id="cb9d0623f382c9803df997fb30b9a33a5438d919"> |
6053 | <source>PeerTube is creating your account...</source> | 6294 | <source>PeerTube is creating your account...</source> |
6054 | <target>PeerTube vytváří Váš účet...</target> | 6295 | <target>PeerTube vytváří Váš účet...</target> |
6055 | 6296 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">46</context></context-group> | |
6056 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 6297 | </trans-unit> |
6057 | <trans-unit id="8dd413cee2228118c536f503709329a4d1a395e2"> | 6298 | <trans-unit id="8dd413cee2228118c536f503709329a4d1a395e2"> |
6058 | <source>Done</source> | 6299 | <source>Done</source> |
6059 | <target>Hotovo</target> | 6300 | <target>Hotovo</target> |
6060 | 6301 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">42</context></context-group> | |
6061 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 6302 | </trans-unit> |
6062 | <trans-unit id="88b19801d99f5dcc4043d6d30dfa32c3f68da5ea" datatype="html"> | 6303 | <trans-unit id="88b19801d99f5dcc4043d6d30dfa32c3f68da5ea" datatype="html"> |
6063 | <source>Who are we?</source> | 6304 | <source>Who are we?</source> |
6064 | <target state="new">Who are we?</target> | 6305 | <target state="new">Who are we?</target> |
6065 | 6306 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">19</context></context-group> | |
6066 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 6307 | </trans-unit> |
6067 | <trans-unit id="05db4afa3e85d23d29fcfacaa5a61f0d2ae02dc0" datatype="html"> | 6308 | <trans-unit id="05db4afa3e85d23d29fcfacaa5a61f0d2ae02dc0" datatype="html"> |
6068 | <source>How long do we plan to maintain this instance?</source> | 6309 | <source>How long do we plan to maintain this instance?</source> |
6069 | <target state="new">How long do we plan to maintain this instance?</target> | 6310 | <target state="new">How long do we plan to maintain this instance?</target> |
6070 | 6311 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">24</context></context-group> | |
6071 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 6312 | </trans-unit> |
6072 | <trans-unit id="b7ad73ca1e5e4a530ca4eaa5285e4fd0c376c089" datatype="html"> | 6313 | <trans-unit id="b7ad73ca1e5e4a530ca4eaa5285e4fd0c376c089" datatype="html"> |
6073 | <source>How will we finance this instance?</source> | 6314 | <source>How will we finance this instance?</source> |
6074 | <target state="new">How will we finance this instance?</target> | 6315 | <target state="new">How will we finance this instance?</target> |
6075 | 6316 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">29</context></context-group> | |
6076 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 6317 | </trans-unit> |
6077 | <trans-unit id="24e4921833f6fff4376e0ec13a33c44a85922355" datatype="html"> | 6318 | <trans-unit id="24e4921833f6fff4376e0ec13a33c44a85922355" datatype="html"> |
6078 | <source>Administrators & Sustainability</source> | 6319 | <source>Administrators & Sustainability</source> |
6079 | <target state="new">Administrators & Sustainability</target> | 6320 | <target state="new">Administrators & Sustainability</target> |
6080 | 6321 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">15</context></context-group> | |
6081 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 6322 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">15</context></context-group> |
6323 | </trans-unit> | ||
6082 | <trans-unit id="041620337eaebda87971d345d05697639dfe78e4" datatype="html"> | 6324 | <trans-unit id="041620337eaebda87971d345d05697639dfe78e4" datatype="html"> |
6083 | <source>Step</source> | 6325 | <source>Step</source> |
6084 | <target state="new">Step</target> | 6326 | <target state="new">Step</target> |
6085 | 6327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/custom-stepper.component.html</context><context context-type="linenumber">9</context></context-group> | |
6086 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/custom-stepper.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 6328 | </trans-unit> |
6087 | <trans-unit id="6c7534a7c0265f2285e952978b4241211199172b" datatype="html"> | 6329 | <trans-unit id="6c7534a7c0265f2285e952978b4241211199172b" datatype="html"> |
6088 | <source> A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content.<x id="LINE_BREAK"/> For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. </source> | 6330 | <source>A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content.<x id="LINE_BREAK"/> For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. </source> |
6089 | <target state="new"> | 6331 | <target state="new"> |
6090 | A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content. | 6332 | A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content. |
6091 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 6333 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
6092 | For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. | 6334 | For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. |
6093 | 6335 | ||
6094 | </target> | 6336 | </target> |
6095 | 6337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">5</context></context-group> | |
6096 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 6338 | </trans-unit> |
6097 | <trans-unit id="df3021e29cbce57c12151ae6e1e0bf8c640e87da" datatype="html"> | 6339 | <trans-unit id="df3021e29cbce57c12151ae6e1e0bf8c640e87da" datatype="html"> |
6098 | <source>Other users can decide to subscribe any channel they want, to be notified when you publish a new video.</source> | 6340 | <source>Other users can decide to subscribe any channel they want, to be notified when you publish a new video.</source> |
6099 | <target state="new"> | 6341 | <target state="new"> |
6100 | Other users can decide to subscribe any channel they want, to be notified when you publish a new video. | 6342 | Other users can decide to subscribe any channel they want, to be notified when you publish a new video. |
6101 | </target> | 6343 | </target> |
6102 | 6344 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">10</context></context-group> | |
6103 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 6345 | </trans-unit> |
6104 | <trans-unit id="79b3619b36af71e5c70394a3a7b31545e32d83f0" datatype="html"> | 6346 | <trans-unit id="79b3619b36af71e5c70394a3a7b31545e32d83f0" datatype="html"> |
6105 | <source>Channel display name</source> | 6347 | <source>Channel display name</source> |
6106 | <target state="new">Channel display name</target> | 6348 | <target state="new">Channel display name</target> |
6107 | 6349 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">15</context></context-group> | |
6108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 6350 | </trans-unit> |
6109 | <trans-unit id="306a2ab7f93c214af3f5579f54bd8b3ad0d5560e" datatype="html"> | 6351 | <trans-unit id="306a2ab7f93c214af3f5579f54bd8b3ad0d5560e" datatype="html"> |
6110 | <source>Channel name</source> | 6352 | <source>Channel name</source> |
6111 | <target state="new">Channel name</target> | 6353 | <target state="new">Channel name</target> |
6112 | 6354 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">30</context></context-group> | |
6113 | 6355 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">94</context></context-group> | |
6114 | 6356 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">94</context></context-group> | |
6115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">94</context></context-group></trans-unit> | 6357 | </trans-unit> |
6116 | <trans-unit id="4ddf54b5beec24b3fe074bfb9cbbc175613634ab" datatype="html"> | 6358 | <trans-unit id="4ddf54b5beec24b3fe074bfb9cbbc175613634ab" datatype="html"> |
6117 | <source>john_channel</source> | 6359 | <source>john_channel</source> |
6118 | <target state="new">john_channel</target> | 6360 | <target state="new">john_channel</target> |
6119 | 6361 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">96</context></context-group> | |
6120 | 6362 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">96</context></context-group> | |
6121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">96</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 6363 | </trans-unit> |
6122 | <trans-unit id="cb4c2c5a4f4b34d3158f2344a3e625d0dc321f4d" datatype="html"> | 6364 | <trans-unit id="cb4c2c5a4f4b34d3158f2344a3e625d0dc321f4d" datatype="html"> |
6123 | <source>Example: my_super_channel</source> | 6365 | <source>Example: my_super_channel</source> |
6124 | <target state="new">Example: my_super_channel</target> | 6366 | <target state="new">Example: my_super_channel</target> |
6125 | 6367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">34</context></context-group> | |
6126 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 6368 | </trans-unit> |
6127 | <trans-unit id="4a935862bd3120d5878e9635a9d46dfc1bcaedb4" datatype="html"> | 6369 | <trans-unit id="4a935862bd3120d5878e9635a9d46dfc1bcaedb4" datatype="html"> |
6128 | <source> | 6370 | <source>The channel name is a unique identifier of your channel on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it.</source> |
6129 | The channel name is a unique identifier of your channel on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it. | ||
6130 | </source> | ||
6131 | <target state="new"> | 6371 | <target state="new"> |
6132 | The channel name is a unique identifier of your channel on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it. | 6372 | The channel name is a unique identifier of your channel on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it. |
6133 | </target> | 6373 | </target> |
6134 | 6374 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">43</context></context-group> | |
6135 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit><trans-unit id="4b84dbfc388651c74c77bba7ee0078b5714baf00" datatype="html"> | 6375 | </trans-unit> |
6136 | <source> Channel name cannot be the same as your account name. You can click on the first step to update your account name. </source><target state="new"> Channel name cannot be the same as your account name. You can click on the first step to update your account name. </target> | 6376 | <trans-unit id="4b84dbfc388651c74c77bba7ee0078b5714baf00" datatype="html"> |
6137 | 6377 | <source>Channel name cannot be the same as your account name. You can click on the first step to update your account name.</source> | |
6138 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 6378 | <target state="new"> Channel name cannot be the same as your account name. You can click on the first step to update your account name. </target> |
6139 | 6379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">51</context></context-group> | |
6140 | 6380 | </trans-unit> | |
6141 | <trans-unit id="095664da04cb19afa1c2bb5992db6e253a664dd6" datatype="html"> | 6381 | <trans-unit id="095664da04cb19afa1c2bb5992db6e253a664dd6" datatype="html"> |
6142 | <source> | 6382 | <source>The username is a unique identifier of your account on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it.</source> |
6143 | The username is a unique identifier of your account on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it. | ||
6144 | </source> | ||
6145 | <target state="new"> | 6383 | <target state="new"> |
6146 | The username is a unique identifier of your account on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it. | 6384 | The username is a unique identifier of your account on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it. |
6147 | </target> | 6385 | </target> |
6148 | 6386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">36</context></context-group> | |
6149 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit><trans-unit id="76118692a327ca6158811d5c3f4e9eeea30dc8b1" datatype="html"> | 6387 | </trans-unit> |
6150 | <source> Video uploads are disabled on this instance, hence your account won't be able to upload videos. </source><target state="new"> Video uploads are disabled on this instance, hence your account won't be able to upload videos. </target> | 6388 | <trans-unit id="76118692a327ca6158811d5c3f4e9eeea30dc8b1" datatype="html"> |
6389 | <source>Video uploads are disabled on this instance, hence your account won't be able to upload videos.</source> | ||
6390 | <target state="new"> Video uploads are disabled on this instance, hence your account won't be able to upload videos. </target> | ||
6151 | <context-group purpose="location"> | 6391 | <context-group purpose="location"> |
6152 | <context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context> | 6392 | <context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context> |
6153 | <context context-type="linenumber">4,5</context> | 6393 | <context context-type="linenumber">4,5</context> |
6154 | </context-group> | 6394 | </context-group> |
6155 | </trans-unit> | 6395 | </trans-unit> |
6156 | <trans-unit id="d315d635144b1104f1c1e9ef80ff3d07fcfa571c" datatype="html"> | 6396 | <trans-unit id="d315d635144b1104f1c1e9ef80ff3d07fcfa571c" datatype="html"> |
6157 | <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> | 6397 | <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> |
6158 | <target state="new"> | 6398 | <target state="new"> |
6159 | I am at least 16 years old and agree | 6399 | I am at least 16 years old and agree |
6160 | to the | 6400 | to the |
6161 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Terms | 6401 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Terms |
6162 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 6402 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
6163 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> and to the | 6403 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> and to the |
6164 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/>Code of Conduct | 6404 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/>Code of Conduct |
6165 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 6405 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
6166 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | 6406 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> |
6167 | of this instance | 6407 | of this instance |
6168 | 6408 | ||
6169 | </target> | 6409 | </target> |
6170 | 6410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-terms.component.html</context><context context-type="linenumber">6</context></context-group> | |
6171 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-terms.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> | 6411 | </trans-unit> |
6172 | <source>Register</source><target state="new">Register</target> | 6412 | <trans-unit id="3301086086650990787" datatype="html"> |
6173 | 6413 | <source>Register</source> | |
6174 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-routing.module.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 6414 | <target state="new">Register</target> |
6175 | 6415 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-routing.module.ts</context><context context-type="linenumber">14</context></context-group> | |
6416 | </trans-unit> | ||
6176 | <trans-unit id="6979021199788941693" datatype="html"> | 6417 | <trans-unit id="6979021199788941693" datatype="html"> |
6177 | <source>Your message has been sent.</source> | 6418 | <source>Your message has been sent.</source> |
6178 | <target state="new">Your message has been sent.</target> | 6419 | <target state="new">Your message has been sent.</target> |
6179 | 6420 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.ts</context><context context-type="linenumber">77</context></context-group> | |
6180 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 6421 | </trans-unit> |
6181 | <trans-unit id="2072135752262464360" datatype="html"> | 6422 | <trans-unit id="2072135752262464360" datatype="html"> |
6182 | <source>You already sent this form recently</source> | 6423 | <source>You already sent this form recently</source> |
6183 | <target state="new">You already sent this form recently</target> | 6424 | <target state="new">You already sent this form recently</target> |
6184 | 6425 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.ts</context><context context-type="linenumber">83</context></context-group> | |
6185 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> | 6426 | </trans-unit> |
6186 | <trans-unit id="3830487495946043372"> | 6427 | <trans-unit id="3830487495946043372"> |
6187 | <source>No description</source> | 6428 | <source>No description</source> |
6188 | <target>Žádný popis</target> | 6429 | <target>Žádný popis</target> |
6189 | 6430 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.ts</context><context context-type="linenumber">41</context></context-group> | |
6190 | 6431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group> | |
6191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.ts</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/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"> | 6432 | </trans-unit> |
6192 | <source>Account videos</source><target state="new">Account videos</target> | 6433 | <trans-unit id="819067926858619041" datatype="html"> |
6193 | 6434 | <source>Account videos</source> | |
6194 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">48</context></context-group></trans-unit><trans-unit id="2131232107132374967" datatype="html"> | 6435 | <target state="new">Account videos</target> |
6195 | <source>Search videos within account</source><target state="new">Search videos within account</target> | 6436 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">48</context></context-group> |
6437 | </trans-unit> | ||
6438 | <trans-unit id="2131232107132374967" datatype="html"> | ||
6439 | <source>Search videos within account</source> | ||
6440 | <target state="new">Search videos within account</target> | ||
6196 | <context-group purpose="location"> | 6441 | <context-group purpose="location"> |
6197 | <context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context> | 6442 | <context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context> |
6198 | <context context-type="linenumber">61</context> | 6443 | <context context-type="linenumber">61</context> |
6199 | </context-group> | 6444 | </context-group> |
6200 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | 6445 | </trans-unit> |
6201 | <source>Account video channels</source><target state="new">Account video channels</target> | 6446 | <trans-unit id="6823616469362610020" datatype="html"> |
6202 | 6447 | <source>Account video channels</source> | |
6203 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">30</context></context-group></trans-unit><trans-unit id="7678273613459026643" datatype="html"> | 6448 | <target state="new">Account video channels</target> |
6204 | <source>About account</source><target state="new">About account</target> | 6449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">30</context></context-group> |
6205 | 6450 | </trans-unit> | |
6206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 6451 | <trans-unit id="7678273613459026643" datatype="html"> |
6452 | <source>About account</source> | ||
6453 | <target state="new">About account</target> | ||
6454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">39</context></context-group> | ||
6455 | </trans-unit> | ||
6207 | <trans-unit id="3755500631176893489" datatype="html"> | 6456 | <trans-unit id="3755500631176893489" datatype="html"> |
6208 | <source>Published <x id="PH"/> videos</source> | 6457 | <source>Published <x id="PH"/> videos</source> |
6209 | <target state="new">Published | 6458 | <target state="translated">Zveřejněno <x id="PH"/> videí</target> |
6210 | <x id="PH"/> videos | 6459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">87</context></context-group> |
6211 | </target> | 6460 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-search/account-search.component.ts</context><context context-type="linenumber">90</context></context-group> |
6212 | 6461 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-videos/account-videos.component.ts</context><context context-type="linenumber">79</context></context-group> | |
6213 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">87</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-search/account-search.component.ts</context><context context-type="linenumber">90</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-videos/account-videos.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit><trans-unit id="e4965e47ed9cd6553d9a87a5112871a2dcbbe132" datatype="html"> | 6462 | </trans-unit> |
6214 | <source>Display all videos (private, unlisted or not yet published)</source><target state="new">Display all videos (private, unlisted or not yet published)</target> | 6463 | <trans-unit id="e4965e47ed9cd6553d9a87a5112871a2dcbbe132" datatype="html"> |
6215 | 6464 | <source>Display all videos (private, unlisted or not yet published)</source> | |
6216 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 6465 | <target state="new">Display all videos (private, unlisted or not yet published)</target> |
6466 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group> | ||
6467 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group> | ||
6468 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group> | ||
6469 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group> | ||
6470 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group> | ||
6471 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group> | ||
6472 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group> | ||
6473 | </trans-unit> | ||
6217 | <trans-unit id="4856575356061361269" datatype="html"> | 6474 | <trans-unit id="4856575356061361269" datatype="html"> |
6218 | <source> | 6475 | <source><x id="PH"/> direct account followers </source> |
6219 | <x id="PH"/> direct account followers | ||
6220 | </source> | ||
6221 | <target state="new"> | 6476 | <target state="new"> |
6222 | <x id="PH"/> direct account followers | 6477 | <x id="PH"/> direct account followers |
6223 | </target> | 6478 | </target> |
6224 | 6479 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">127</context></context-group> | |
6225 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit><trans-unit id="6250999352462648289" datatype="html"> | 6480 | </trans-unit> |
6226 | <source>Report this account</source><target state="new">Report this account</target> | 6481 | <trans-unit id="6250999352462648289" datatype="html"> |
6227 | 6482 | <source>Report this account</source> | |
6228 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit><trans-unit id="230b7aa1bc012b2e5bafc1f24b6aa734a978183c" datatype="html"> | 6483 | <target state="new">Report this account</target> |
6229 | <source>Search videos</source><target state="new">Search videos</target> | 6484 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">133</context></context-group> |
6485 | </trans-unit> | ||
6486 | <trans-unit id="230b7aa1bc012b2e5bafc1f24b6aa734a978183c" datatype="html"> | ||
6487 | <source>Search videos</source> | ||
6488 | <target state="new">Search videos</target> | ||
6230 | <context-group purpose="location"> | 6489 | <context-group purpose="location"> |
6231 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> | 6490 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> |
6232 | <context context-type="linenumber">48</context> | 6491 | <context context-type="linenumber">48</context> |
6233 | </context-group> | 6492 | </context-group> |
6234 | </trans-unit> | 6493 | </trans-unit> |
6235 | |||
6236 | <trans-unit id="424703522835656806" datatype="html"> | 6494 | <trans-unit id="424703522835656806" datatype="html"> |
6237 | <source>VIDEO CHANNELS</source> | 6495 | <source>VIDEO CHANNELS</source> |
6238 | <target state="new">VIDEO CHANNELS</target> | 6496 | <target state="new">VIDEO CHANNELS</target> |
6239 | 6497 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">65</context></context-group> | |
6240 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">65</context></context-group></trans-unit><trans-unit id="1504521795586863905" datatype="html"> | 6498 | </trans-unit> |
6241 | <source>VIDEOS</source><target state="new">VIDEOS</target> | 6499 | <trans-unit id="1504521795586863905" datatype="html"> |
6242 | 6500 | <source>VIDEOS</source> | |
6243 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6501 | <target state="new">VIDEOS</target> |
6502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">69</context></context-group> | ||
6503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">66</context></context-group> | ||
6504 | </trans-unit> | ||
6244 | <trans-unit id="1341921152640000230" datatype="html"> | 6505 | <trans-unit id="1341921152640000230" datatype="html"> |
6245 | <source>ABOUT</source> | 6506 | <source>ABOUT</source> |
6246 | <target state="new">ABOUT</target> | 6507 | <target state="new">ABOUT</target> |
6247 | 6508 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</context></context-group> | |
6248 | 6509 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">67</context></context-group> | |
6249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 6510 | </trans-unit> |
6250 | <trans-unit id="25349740244798533" datatype="html"> | 6511 | <trans-unit id="25349740244798533" datatype="html"> |
6251 | <source>Username copied</source> | 6512 | <source>Username copied</source> |
6252 | <target state="new">Username copied</target> | 6513 | <target state="new">Username copied</target> |
6253 | 6514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">96</context></context-group> | |
6254 | 6515 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">95</context></context-group> | |
6255 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">96</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="9221735175659318025" datatype="html"> | 6516 | </trans-unit> |
6256 | <source>1 subscriber</source><target state="new">1 subscriber</target> | 6517 | <trans-unit id="9221735175659318025" datatype="html"> |
6257 | 6518 | <source>1 subscriber</source> | |
6258 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">99</context></context-group></trans-unit><trans-unit id="4097331874769079975" datatype="html"> | 6519 | <target state="new">1 subscriber</target> |
6259 | <source><x id="PH"/> subscribers</source><target state="new"><x id="PH"/> subscribers</target> | 6520 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">99</context></context-group> |
6260 | 6521 | </trans-unit> | |
6261 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">101</context></context-group></trans-unit> | 6522 | <trans-unit id="4097331874769079975" datatype="html"> |
6262 | 6523 | <source><x id="PH"/> subscribers</source> | |
6524 | <target state="new"><x id="PH"/> subscribers</target> | ||
6525 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">101</context></context-group> | ||
6526 | </trans-unit> | ||
6263 | <trans-unit id="db28493f1be1ed4d0edfea612181d27c9c530270" datatype="html"> | 6527 | <trans-unit id="db28493f1be1ed4d0edfea612181d27c9c530270" datatype="html"> |
6264 | <source>Instances you follow</source> | 6528 | <source>Instances you follow</source> |
6265 | <target state="new">Instances you follow</target> | 6529 | <target state="new">Instances you follow</target> |
6266 | 6530 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
6267 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 6531 | </trans-unit> |
6268 | <trans-unit id="5bd2577f482e8ac75e9fd9970c58b7f4b2995e56" datatype="html"> | 6532 | <trans-unit id="5bd2577f482e8ac75e9fd9970c58b7f4b2995e56" datatype="html"> |
6269 | <source>Instances following you</source> | 6533 | <source>Instances following you</source> |
6270 | <target state="new">Instances following you</target> | 6534 | <target state="new">Instances following you</target> |
6271 | 6535 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
6272 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 6536 | </trans-unit> |
6273 | <trans-unit id="1035838766454786107" datatype="html"> | 6537 | <trans-unit id="1035838766454786107" datatype="html"> |
6274 | <source>Audio-only</source> | 6538 | <source>Audio-only</source> |
6275 | <target state="new">Audio-only</target> | 6539 | <target state="new">Audio-only</target> |
6276 | 6540 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">61</context></context-group> | |
6277 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 6541 | </trans-unit> |
6278 | <trans-unit id="8011855989482474311" datatype="html"> | 6542 | <trans-unit id="8011855989482474311" datatype="html"> |
6279 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> | 6543 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> |
6280 | <target state="new">A <code>.mp4</code> that keeps the original audio track, with no video</target> | 6544 | <target state="new">A <code>.mp4</code> that keeps the original audio track, with no video</target> |
6281 | 6545 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">62</context></context-group> | |
6282 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">62</context></context-group></trans-unit> | 6546 | </trans-unit> |
6283 | <trans-unit id="3768852440495368591" datatype="html"> | 6547 | <trans-unit id="3768852440495368591" datatype="html"> |
6284 | <source>240p</source> | 6548 | <source>240p</source> |
6285 | <target state="new">240p</target> | 6549 | <target state="new">240p</target> |
6286 | 6550 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">66</context></context-group> | |
6287 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6551 | </trans-unit> |
6288 | <trans-unit id="6824490596490222280" datatype="html"> | 6552 | <trans-unit id="6824490596490222280" datatype="html"> |
6289 | <source>360p</source> | 6553 | <source>360p</source> |
6290 | <target state="new">360p</target> | 6554 | <target state="new">360p</target> |
6291 | 6555 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">70</context></context-group> | |
6292 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">70</context></context-group></trans-unit> | 6556 | </trans-unit> |
6293 | <trans-unit id="4039682741786530029" datatype="html"> | 6557 | <trans-unit id="4039682741786530029" datatype="html"> |
6294 | <source>480p</source> | 6558 | <source>480p</source> |
6295 | <target state="new">480p</target> | 6559 | <target state="new">480p</target> |
6296 | 6560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">74</context></context-group> | |
6297 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">74</context></context-group></trans-unit> | 6561 | </trans-unit> |
6298 | <trans-unit id="5165245100010036661" datatype="html"> | 6562 | <trans-unit id="5165245100010036661" datatype="html"> |
6299 | <source>720p</source> | 6563 | <source>720p</source> |
6300 | <target state="new">720p</target> | 6564 | <target state="new">720p</target> |
6301 | 6565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">78</context></context-group> | |
6302 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 6566 | </trans-unit> |
6303 | <trans-unit id="7709767791012306261" datatype="html"> | 6567 | <trans-unit id="7709767791012306261" datatype="html"> |
6304 | <source>1080p</source> | 6568 | <source>1080p</source> |
6305 | <target state="new">1080p</target> | 6569 | <target state="new">1080p</target> |
6306 | 6570 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">82</context></context-group> | |
6307 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3671005503070777897" datatype="html"> | 6571 | </trans-unit> |
6308 | <source>1440p</source><target state="new">1440p</target> | 6572 | <trans-unit id="3671005503070777897" datatype="html"> |
6573 | <source>1440p</source> | ||
6574 | <target state="new">1440p</target> | ||
6309 | <context-group purpose="location"> | 6575 | <context-group purpose="location"> |
6310 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> | 6576 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> |
6311 | <context context-type="linenumber">86</context> | 6577 | <context context-type="linenumber">86</context> |
@@ -6314,836 +6580,875 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6314 | <trans-unit id="597839553814574067" datatype="html"> | 6580 | <trans-unit id="597839553814574067" datatype="html"> |
6315 | <source>2160p</source> | 6581 | <source>2160p</source> |
6316 | <target state="new">2160p</target> | 6582 | <target state="new">2160p</target> |
6317 | 6583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">90</context></context-group> | |
6318 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">90</context></context-group></trans-unit> | 6584 | </trans-unit> |
6319 | <trans-unit id="3957742085471141221" datatype="html"> | 6585 | <trans-unit id="3957742085471141221" datatype="html"> |
6320 | <source>Auto (via ffmpeg)</source> | 6586 | <source>Auto (via ffmpeg)</source> |
6321 | <target state="new">Auto (via ffmpeg)</target> | 6587 | <target state="new">Auto (via ffmpeg)</target> |
6322 | 6588 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">97</context></context-group> | |
6323 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">97</context></context-group></trans-unit><trans-unit id="931255636742351800" datatype="html"> | 6589 | </trans-unit> |
6324 | <source>No limit</source><target state="new">No limit</target> | 6590 | <trans-unit id="931255636742351800" datatype="html"> |
6325 | 6591 | <source>No limit</source> | |
6326 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">105</context></context-group></trans-unit><trans-unit id="5250062810079582285" datatype="html"> | 6592 | <target state="new">No limit</target> |
6327 | <source>1 hour</source><target state="new">1 hour</target> | 6593 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">105</context></context-group> |
6328 | 6594 | </trans-unit> | |
6329 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">106</context></context-group></trans-unit><trans-unit id="8662356672298904015" datatype="html"> | 6595 | <trans-unit id="5250062810079582285" datatype="html"> |
6330 | <source>3 hours</source><target state="new">3 hours</target> | 6596 | <source>1 hour</source> |
6331 | 6597 | <target state="new">1 hour</target> | |
6332 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">107</context></context-group></trans-unit><trans-unit id="1794624538833178491" datatype="html"> | 6598 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">106</context></context-group> |
6333 | <source>5 hours</source><target state="new">5 hours</target> | 6599 | </trans-unit> |
6334 | 6600 | <trans-unit id="8662356672298904015" datatype="html"> | |
6335 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">108</context></context-group></trans-unit><trans-unit id="4941148355486671862" datatype="html"> | 6601 | <source>3 hours</source> |
6336 | <source>10 hours</source><target state="new">10 hours</target> | 6602 | <target state="new">3 hours</target> |
6337 | 6603 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">107</context></context-group> | |
6338 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">109</context></context-group></trans-unit><trans-unit id="1618463615802675111" datatype="html"> | 6604 | </trans-unit> |
6339 | <source>threads</source><target state="new">threads</target> | 6605 | <trans-unit id="1794624538833178491" datatype="html"> |
6340 | 6606 | <source>5 hours</source> | |
6341 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">149</context></context-group></trans-unit><trans-unit id="593234948551881507" datatype="html"> | 6607 | <target state="new">5 hours</target> |
6342 | <source>thread</source><target state="new">thread</target> | 6608 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">108</context></context-group> |
6343 | 6609 | </trans-unit> | |
6344 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">150</context></context-group></trans-unit> | 6610 | <trans-unit id="4941148355486671862" datatype="html"> |
6611 | <source>10 hours</source> | ||
6612 | <target state="new">10 hours</target> | ||
6613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">109</context></context-group> | ||
6614 | </trans-unit> | ||
6615 | <trans-unit id="1618463615802675111" datatype="html"> | ||
6616 | <source>threads</source> | ||
6617 | <target state="new">threads</target> | ||
6618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">149</context></context-group> | ||
6619 | </trans-unit> | ||
6620 | <trans-unit id="593234948551881507" datatype="html"> | ||
6621 | <source>thread</source> | ||
6622 | <target state="new">thread</target> | ||
6623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">150</context></context-group> | ||
6624 | </trans-unit> | ||
6345 | <trans-unit id="2060042292048624940"> | 6625 | <trans-unit id="2060042292048624940"> |
6346 | <source>Configuration updated.</source> | 6626 | <source>Configuration updated.</source> |
6347 | <target>Nastavení aktualizováno.</target> | 6627 | <target>Nastavení aktualizováno.</target> |
6348 | 6628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">380</context></context-group> | |
6349 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">380</context></context-group></trans-unit><trans-unit id="3203902538239082422" datatype="html"> | 6629 | </trans-unit> |
6350 | <source>You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</source><target state="new">You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</target> | 6630 | <trans-unit id="3203902538239082422" datatype="html"> |
6351 | 6631 | <source>You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</source> | |
6352 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">473</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> | 6632 | <target state="new">You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</target> |
6353 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | 6633 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">473</context></context-group> |
6354 | 6634 | </trans-unit> | |
6355 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/config.routes.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 6635 | <trans-unit id="6284468333579755406" datatype="html"> |
6356 | 6636 | <source>Edit custom configuration</source> | |
6357 | 6637 | <target state="new">Edit custom configuration</target> | |
6638 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/config.routes.ts</context><context context-type="linenumber">26</context></context-group> | ||
6639 | </trans-unit> | ||
6358 | <trans-unit id="6549061957433635758" datatype="html"> | 6640 | <trans-unit id="6549061957433635758" datatype="html"> |
6359 | <source>Process domains</source> | 6641 | <source>Process domains</source> |
6360 | <target state="new">Process domains</target> | 6642 | <target state="new">Process domains</target> |
6361 | 6643 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.ts</context><context context-type="linenumber">28</context></context-group> | |
6362 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 6644 | </trans-unit> |
6363 | <trans-unit id="1909009883731319373" datatype="html"> | 6645 | <trans-unit id="1909009883731319373" datatype="html"> |
6364 | <source>Report | 6646 | <source>Report <x id="PH"/> </source> |
6365 | <x id="PH"/> | ||
6366 | </source> | ||
6367 | <target state="new">Report | 6647 | <target state="new">Report |
6368 | <x id="PH"/> | 6648 | <x id="PH"/> |
6369 | </target> | 6649 | </target> |
6370 | 6650 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/account-report.component.ts</context><context context-type="linenumber">51</context></context-group> | |
6371 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/account-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 6651 | </trans-unit> |
6372 | <trans-unit id="5065410539274460415" datatype="html"> | 6652 | <trans-unit id="5065410539274460415" datatype="html"> |
6373 | <source>Account reported.</source> | 6653 | <source>Account reported.</source> |
6374 | <target state="new">Account reported.</target> | 6654 | <target state="new">Account reported.</target> |
6375 | 6655 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/account-report.component.ts</context><context context-type="linenumber">82</context></context-group> | |
6376 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/account-report.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 6656 | </trans-unit> |
6377 | <trans-unit id="6245265026120479954" datatype="html"> | 6657 | <trans-unit id="6245265026120479954" datatype="html"> |
6378 | <source>Comment reported.</source> | 6658 | <source>Comment reported.</source> |
6379 | <target state="new">Comment reported.</target> | 6659 | <target state="new">Comment reported.</target> |
6380 | 6660 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">82</context></context-group> | |
6381 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 6661 | </trans-unit> |
6382 | <trans-unit id="2127446333083057097" datatype="html"> | 6662 | <trans-unit id="2127446333083057097" datatype="html"> |
6383 | <source>Domain is required.</source> | 6663 | <source>Domain is required.</source> |
6384 | <target state="new">Domain is required.</target> | 6664 | <target state="new">Domain is required.</target> |
6385 | 6665 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context><context context-type="linenumber">56</context></context-group> | |
6386 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context><context context-type="linenumber">56</context></context-group></trans-unit> | 6666 | </trans-unit> |
6387 | <trans-unit id="6780793142903080663" datatype="html"> | 6667 | <trans-unit id="6780793142903080663" datatype="html"> |
6388 | <source>Domains entered are invalid.</source> | 6668 | <source>Domains entered are invalid.</source> |
6389 | <target state="new">Domains entered are invalid.</target> | 6669 | <target state="new">Domains entered are invalid.</target> |
6390 | 6670 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context><context context-type="linenumber">57</context></context-group> | |
6391 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> | 6671 | </trans-unit> |
6392 | <trans-unit id="5886492514458202177" datatype="html"> | 6672 | <trans-unit id="5886492514458202177" datatype="html"> |
6393 | <source>Domains entered contain duplicates.</source> | 6673 | <source>Domains entered contain duplicates.</source> |
6394 | <target state="new">Domains entered contain duplicates.</target> | 6674 | <target state="new">Domains entered contain duplicates.</target> |
6395 | 6675 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context><context context-type="linenumber">58</context></context-group> | |
6396 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 6676 | </trans-unit> |
6397 | <trans-unit id="240806681889331244"> | 6677 | <trans-unit id="240806681889331244"> |
6398 | <source>Unlimited</source> | 6678 | <source>Unlimited</source> |
6399 | <target>Neomezeně</target> | 6679 | <target>Neomezeně</target> |
6400 | 6680 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.ts</context><context context-type="linenumber">32</context></context-group> | |
6401 | 6681 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.ts</context><context context-type="linenumber">38</context></context-group> | |
6402 | 6682 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">26</context></context-group> | |
6403 | 6683 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">33</context></context-group> | |
6404 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.ts</context><context context-type="linenumber">32</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 6684 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">21</context></context-group> |
6685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">34</context></context-group> | ||
6686 | </trans-unit> | ||
6405 | <trans-unit id="5504952199515017930" datatype="html"> | 6687 | <trans-unit id="5504952199515017930" datatype="html"> |
6406 | <source>None - no upload possible</source> | 6688 | <source>None - no upload possible</source> |
6407 | <target state="new">None - no upload possible</target> | 6689 | <target state="new">None - no upload possible</target> |
6408 | 6690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">23</context></context-group> | |
6409 | 6691 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">36</context></context-group> | |
6410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">36</context></context-group></trans-unit> | 6692 | </trans-unit> |
6411 | <trans-unit id="616370606803836610" datatype="html"> | 6693 | <trans-unit id="616370606803836610" datatype="html"> |
6412 | <source>100MB</source> | 6694 | <source>100MB</source> |
6413 | <target state="new">100MB</target> | 6695 | <target state="new">100MB</target> |
6414 | 6696 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">24</context></context-group> | |
6415 | 6697 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">39</context></context-group> | |
6416 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 6698 | </trans-unit> |
6417 | <trans-unit id="9162997081789455476" datatype="html"> | 6699 | <trans-unit id="9162997081789455476" datatype="html"> |
6418 | <source>500MB</source> | 6700 | <source>500MB</source> |
6419 | <target state="new">500MB</target> | 6701 | <target state="new">500MB</target> |
6420 | 6702 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">25</context></context-group> | |
6421 | 6703 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">40</context></context-group> | |
6422 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> | 6704 | </trans-unit> |
6423 | <trans-unit id="1541266817985876981" datatype="html"> | 6705 | <trans-unit id="1541266817985876981" datatype="html"> |
6424 | <source>1GB</source> | 6706 | <source>1GB</source> |
6425 | <target state="new">1GB</target> | 6707 | <target state="new">1GB</target> |
6426 | 6708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">26</context></context-group> | |
6427 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 6709 | </trans-unit> |
6428 | <trans-unit id="6075751004411938819" datatype="html"> | 6710 | <trans-unit id="6075751004411938819" datatype="html"> |
6429 | <source>5GB</source> | 6711 | <source>5GB</source> |
6430 | <target state="new">5GB</target> | 6712 | <target state="new">5GB</target> |
6431 | 6713 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">27</context></context-group> | |
6432 | 6714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">42</context></context-group> | |
6433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">42</context></context-group></trans-unit> | 6715 | </trans-unit> |
6434 | <trans-unit id="246811372655482890" datatype="html"> | 6716 | <trans-unit id="246811372655482890" datatype="html"> |
6435 | <source>20GB</source> | 6717 | <source>20GB</source> |
6436 | <target state="new">20GB</target> | 6718 | <target state="new">20GB</target> |
6437 | 6719 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">28</context></context-group> | |
6438 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 6720 | </trans-unit> |
6439 | <trans-unit id="2491910291056632032" datatype="html"> | 6721 | <trans-unit id="2491910291056632032" datatype="html"> |
6440 | <source>50GB</source> | 6722 | <source>50GB</source> |
6441 | <target state="new">50GB</target> | 6723 | <target state="new">50GB</target> |
6442 | 6724 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">29</context></context-group> | |
6443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">29</context></context-group></trans-unit> | 6725 | </trans-unit> |
6444 | <trans-unit id="3977630500122496087" datatype="html"> | 6726 | <trans-unit id="3977630500122496087" datatype="html"> |
6445 | <source>10MB</source> | 6727 | <source>10MB</source> |
6446 | <target state="new">10MB</target> | 6728 | <target state="new">10MB</target> |
6447 | 6729 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">37</context></context-group> | |
6448 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 6730 | </trans-unit> |
6449 | <trans-unit id="2060593120571755546" datatype="html"> | 6731 | <trans-unit id="2060593120571755546" datatype="html"> |
6450 | <source>50MB</source> | 6732 | <source>50MB</source> |
6451 | <target state="new">50MB</target> | 6733 | <target state="new">50MB</target> |
6452 | 6734 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">38</context></context-group> | |
6453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6735 | </trans-unit> |
6454 | <trans-unit id="7653028819867308249" datatype="html"> | 6736 | <trans-unit id="7653028819867308249" datatype="html"> |
6455 | <source>2GB</source> | 6737 | <source>2GB</source> |
6456 | <target state="new">2GB</target> | 6738 | <target state="new">2GB</target> |
6457 | 6739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">41</context></context-group> | |
6458 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> | 6740 | </trans-unit> |
6459 | <trans-unit id="2520968456492632777" datatype="html"> | 6741 | <trans-unit id="2520968456492632777" datatype="html"> |
6460 | <source> | 6742 | <source><x id="PH"/> accepted in instance followers </source> |
6461 | <x id="PH"/> accepted in instance followers | ||
6462 | </source> | ||
6463 | <target state="new"> | 6743 | <target state="new"> |
6464 | <x id="PH"/> accepted in instance followers | 6744 | <x id="PH"/> accepted in instance followers |
6465 | </target> | 6745 | </target> |
6466 | 6746 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">41</context></context-group> | |
6467 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> | 6747 | </trans-unit> |
6468 | <trans-unit id="450530533730658004" datatype="html"> | 6748 | <trans-unit id="450530533730658004" datatype="html"> |
6469 | <source>Do you really want to reject this follower?</source> | 6749 | <source>Do you really want to reject this follower?</source> |
6470 | <target state="new">Do you really want to reject this follower?</target> | 6750 | <target state="new">Do you really want to reject this follower?</target> |
6471 | 6751 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">52</context></context-group> | |
6472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6752 | </trans-unit> |
6473 | <trans-unit id="7378878529334768232" datatype="html"> | 6753 | <trans-unit id="7378878529334768232" datatype="html"> |
6474 | <source>Reject</source> | 6754 | <source>Reject</source> |
6475 | <target state="new">Reject</target> | 6755 | <target state="new">Reject</target> |
6476 | 6756 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">53</context></context-group> | |
6477 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">53</context></context-group></trans-unit> | 6757 | </trans-unit> |
6478 | <trans-unit id="2040902819815401278" datatype="html"> | 6758 | <trans-unit id="2040902819815401278" datatype="html"> |
6479 | <source> | 6759 | <source><x id="PH"/> rejected from instance followers </source> |
6480 | <x id="PH"/> rejected from instance followers | ||
6481 | </source> | ||
6482 | <target state="new"> | 6760 | <target state="new"> |
6483 | <x id="PH"/> rejected from instance followers | 6761 | <x id="PH"/> rejected from instance followers |
6484 | </target> | 6762 | </target> |
6485 | 6763 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">60</context></context-group> | |
6486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 6764 | </trans-unit> |
6487 | <trans-unit id="3620117223790525725" datatype="html"> | 6765 | <trans-unit id="3620117223790525725" datatype="html"> |
6488 | <source>Do you really want to delete this follower?</source> | 6766 | <source>Do you really want to delete this follower?</source> |
6489 | <target state="new">Do you really want to delete this follower?</target> | 6767 | <target state="new">Do you really want to delete this follower?</target> |
6490 | 6768 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">73</context></context-group> | |
6491 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">73</context></context-group></trans-unit><trans-unit id="7022070615528435141" datatype="html"> | 6769 | </trans-unit> |
6492 | <source>Delete</source><target state="new">Delete</target> | 6770 | <trans-unit id="7022070615528435141" datatype="html"> |
6493 | 6771 | <source>Delete</source> | |
6494 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">104</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">131</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">172</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">50</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">127</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">91</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">208</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">308</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">129</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">371</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">406</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">71</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">86</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">158</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">167</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">75</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">79</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">76</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">194</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">74</context></context-group></trans-unit> | 6772 | <target state="new">Delete</target> |
6773 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">104</context></context-group> | ||
6774 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">131</context></context-group> | ||
6775 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">172</context></context-group> | ||
6776 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">50</context></context-group> | ||
6777 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">127</context></context-group> | ||
6778 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">16</context></context-group> | ||
6779 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">21</context></context-group> | ||
6780 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">91</context></context-group> | ||
6781 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">208</context></context-group> | ||
6782 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">308</context></context-group> | ||
6783 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">129</context></context-group> | ||
6784 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">371</context></context-group> | ||
6785 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">406</context></context-group> | ||
6786 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">71</context></context-group> | ||
6787 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">86</context></context-group> | ||
6788 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">158</context></context-group> | ||
6789 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">167</context></context-group> | ||
6790 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">75</context></context-group> | ||
6791 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">79</context></context-group> | ||
6792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">76</context></context-group> | ||
6793 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">194</context></context-group> | ||
6794 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">74</context></context-group> | ||
6795 | </trans-unit> | ||
6495 | <trans-unit id="2452034338905853167" datatype="html"> | 6796 | <trans-unit id="2452034338905853167" datatype="html"> |
6496 | <source> | 6797 | <source><x id="PH"/> removed from instance followers </source> |
6497 | <x id="PH"/> removed from instance followers | ||
6498 | </source> | ||
6499 | <target state="new"> | 6798 | <target state="new"> |
6500 | <x id="PH"/> removed from instance followers | 6799 | <x id="PH"/> removed from instance followers |
6501 | </target> | 6800 | </target> |
6502 | 6801 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">81</context></context-group> | |
6503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 6802 | </trans-unit> |
6504 | <trans-unit id="2740793005745065895"> | 6803 | <trans-unit id="2740793005745065895"> |
6505 | <source> | 6804 | <source><x id="PH"/> is not valid </source> |
6506 | <x id="PH"/> is not valid | ||
6507 | </source> | ||
6508 | <target> | 6805 | <target> |
6509 | <x id="PH"/> není platný | 6806 | <x id="PH"/> není platný |
6510 | </target> | 6807 | </target> |
6511 | 6808 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context><context context-type="linenumber">19</context></context-group> | |
6512 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context><context context-type="linenumber">19</context></context-group></trans-unit> | 6809 | </trans-unit> |
6513 | <trans-unit id="2355066641781598196"> | 6810 | <trans-unit id="2355066641781598196"> |
6514 | <source>Follow request(s) sent!</source> | 6811 | <source>Follow request(s) sent!</source> |
6515 | <target>Požadavek odeslán!</target> | 6812 | <target>Požadavek odeslán!</target> |
6516 | 6813 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">47</context></context-group> | |
6517 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 6814 | </trans-unit> |
6518 | <trans-unit id="4245720728052819482"> | 6815 | <trans-unit id="4245720728052819482"> |
6519 | <source>Do you really want to unfollow <x id="PH"/>?</source> | 6816 | <source>Do you really want to unfollow <x id="PH"/>?</source> |
6520 | <target>Opravdu chcete zrušit odběr kanálu | 6817 | <target>Opravdu chcete zrušit odběr kanálu <x id="PH"/>?</target> |
6521 | <x id="PH"/>? | 6818 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">57</context></context-group> |
6522 | </target> | 6819 | </trans-unit> |
6523 | |||
6524 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> | ||
6525 | <trans-unit id="9160510009013134726"> | 6820 | <trans-unit id="9160510009013134726"> |
6526 | <source>Unfollow</source> | 6821 | <source>Unfollow</source> |
6527 | <target>Zrušit odběr</target> | 6822 | <target>Zrušit odběr</target> |
6528 | 6823 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">58</context></context-group> | |
6529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 6824 | </trans-unit> |
6530 | <trans-unit id="3935234189109112926"> | 6825 | <trans-unit id="3935234189109112926"> |
6531 | <source>You are not following <x id="PH"/> anymore.</source> | 6826 | <source>You are not following <x id="PH"/> anymore.</source> |
6532 | <target>Už dále neodebíráte | 6827 | <target>Už dále neodebíráte <x id="PH"/>.</target> |
6533 | <x id="PH"/>. | 6828 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">64</context></context-group> |
6534 | </target> | 6829 | </trans-unit> |
6535 | |||
6536 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit> | ||
6537 | <trans-unit id="2593763089859685916" datatype="html"> | 6830 | <trans-unit id="2593763089859685916" datatype="html"> |
6538 | <source>enabled</source> | 6831 | <source>enabled</source> |
6539 | <target state="new">enabled</target> | 6832 | <target state="new">enabled</target> |
6540 | 6833 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">23</context></context-group> | |
6541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">23</context></context-group></trans-unit> | 6834 | </trans-unit> |
6542 | <trans-unit id="8444272719785117681" datatype="html"> | 6835 | <trans-unit id="8444272719785117681" datatype="html"> |
6543 | <source>disabled</source> | 6836 | <source>disabled</source> |
6544 | <target state="new">disabled</target> | 6837 | <target state="new">disabled</target> |
6545 | 6838 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">23</context></context-group> | |
6546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">23</context></context-group></trans-unit> | 6839 | </trans-unit> |
6547 | <trans-unit id="135214224090612796" datatype="html"> | 6840 | <trans-unit id="135214224090612796" datatype="html"> |
6548 | <source>Redundancy for <x id="PH"/> is <x id="PH_1"/></source> | 6841 | <source>Redundancy for <x id="PH"/> is <x id="PH_1"/></source> |
6549 | <target state="new">Redundancy for | 6842 | <target state="translated">Nadbytečnost pro <x id="PH"/> je <x id="PH_1"/></target> |
6550 | <x id="PH"/> is | 6843 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">25</context></context-group> |
6551 | <x id="PH_1"/> | 6844 | </trans-unit> |
6552 | </target> | ||
6553 | |||
6554 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | ||
6555 | <trans-unit id="81585474102700882" datatype="html"> | 6845 | <trans-unit id="81585474102700882" datatype="html"> |
6556 | <source>Used</source> | 6846 | <source>Used</source> |
6557 | <target state="new">Used</target> | 6847 | <target state="new">Used</target> |
6558 | 6848 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">101</context></context-group> | |
6559 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">101</context></context-group></trans-unit> | 6849 | </trans-unit> |
6560 | <trans-unit id="3955868613858648955" datatype="html"> | 6850 | <trans-unit id="3955868613858648955" datatype="html"> |
6561 | <source>Available</source> | 6851 | <source>Available</source> |
6562 | <target state="new">Available</target> | 6852 | <target state="new">Available</target> |
6563 | 6853 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">101</context></context-group> | |
6564 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">101</context></context-group></trans-unit> | 6854 | </trans-unit> |
6565 | <trans-unit id="5875705095657098468" datatype="html"> | 6855 | <trans-unit id="5875705095657098468" datatype="html"> |
6566 | <source>Do you really want to remove this video redundancy?</source> | 6856 | <source>Do you really want to remove this video redundancy?</source> |
6567 | <target state="new">Do you really want to remove this video redundancy?</target> | 6857 | <target state="new">Do you really want to remove this video redundancy?</target> |
6568 | 6858 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">140</context></context-group> | |
6569 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">140</context></context-group></trans-unit> | 6859 | </trans-unit> |
6570 | <trans-unit id="9098272570113000349" datatype="html"> | 6860 | <trans-unit id="9098272570113000349" datatype="html"> |
6571 | <source>Remove redundancy</source> | 6861 | <source>Remove redundancy</source> |
6572 | <target state="new">Remove redundancy</target> | 6862 | <target state="new">Remove redundancy</target> |
6573 | 6863 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">141</context></context-group> | |
6574 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">141</context></context-group></trans-unit> | 6864 | </trans-unit> |
6575 | <trans-unit id="6537102123107780785" datatype="html"> | 6865 | <trans-unit id="6537102123107780785" datatype="html"> |
6576 | <source>Video redundancies removed!</source> | 6866 | <source>Video redundancies removed!</source> |
6577 | <target state="new">Video redundancies removed!</target> | 6867 | <target state="new">Video redundancies removed!</target> |
6578 | 6868 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">147</context></context-group> | |
6579 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">147</context></context-group></trans-unit> | 6869 | </trans-unit> |
6580 | <trans-unit id="8639315630141911544" datatype="html"> | 6870 | <trans-unit id="8639315630141911544" datatype="html"> |
6581 | <source>Account <x id="PH"/> unmuted by your instance.</source> | 6871 | <source>Account <x id="PH"/> unmuted by your instance.</source> |
6582 | <target state="new">Account | 6872 | <target state="new">Account |
6583 | <x id="PH"/> unmuted by your instance. | 6873 | <x id="PH"/> unmuted by your instance. |
6584 | </target> | 6874 | </target> |
6585 | 6875 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">48</context></context-group> | |
6586 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 6876 | </trans-unit> |
6587 | <trans-unit id="3371601176452094961" datatype="html"> | 6877 | <trans-unit id="3371601176452094961" datatype="html"> |
6588 | <source>Instance <x id="PH"/> unmuted by your instance.</source> | 6878 | <source>Instance <x id="PH"/> unmuted by your instance.</source> |
6589 | <target state="new">Instance | 6879 | <target state="new">Instance |
6590 | <x id="PH"/> unmuted by your instance. | 6880 | <x id="PH"/> unmuted by your instance. |
6591 | </target> | 6881 | </target> |
6592 | 6882 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">46</context></context-group> | |
6593 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 6883 | </trans-unit> |
6594 | <trans-unit id="1598375456114200087" datatype="html"> | 6884 | <trans-unit id="1598375456114200087" datatype="html"> |
6595 | <source>Instance <x id="PH"/> muted.</source> | 6885 | <source>Instance <x id="PH"/> muted.</source> |
6596 | <target state="new">Instance | 6886 | <target state="translated">Instance <x id="PH"/> ztišena.</target> |
6597 | <x id="PH"/> muted. | 6887 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">147</context></context-group> |
6598 | </target> | 6888 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">68</context></context-group> |
6599 | 6889 | </trans-unit> | |
6600 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">147</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">68</context></context-group></trans-unit> | ||
6601 | <trans-unit id="3096398988891996621" datatype="html"> | 6890 | <trans-unit id="3096398988891996621" datatype="html"> |
6602 | <source>Instance <x id="PH"/> muted by your instance.</source> | 6891 | <source>Instance <x id="PH"/> muted by your instance.</source> |
6603 | <target state="new">Instance | 6892 | <target state="translated">Instance <x id="PH"/> ztišena vaší instancí.</target> |
6604 | <x id="PH"/> muted by your instance. | 6893 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">69</context></context-group> |
6605 | </target> | 6894 | </trans-unit> |
6606 | |||
6607 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> | ||
6608 | <trans-unit id="2393853062458645999" datatype="html"> | 6895 | <trans-unit id="2393853062458645999" datatype="html"> |
6609 | <source>Comment updated.</source> | 6896 | <source>Comment updated.</source> |
6610 | <target state="new">Comment updated.</target> | 6897 | <target state="new">Comment updated.</target> |
6611 | 6898 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts</context><context context-type="linenumber">58</context></context-group> | |
6612 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 6899 | </trans-unit> |
6613 | <trans-unit id="149121389669248117" datatype="html"> | 6900 | <trans-unit id="149121389669248117" datatype="html"> |
6614 | <source>Violent or Repulsive</source> | 6901 | <source>Violent or Repulsive</source> |
6615 | <target state="new">Violent or Repulsive</target> | 6902 | <target state="new">Violent or Repulsive</target> |
6616 | 6903 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">21</context></context-group> | |
6617 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">21</context></context-group></trans-unit> | 6904 | </trans-unit> |
6618 | <trans-unit id="2493388551376623687" datatype="html"> | 6905 | <trans-unit id="2493388551376623687" datatype="html"> |
6619 | <source>Hateful or Abusive</source> | 6906 | <source>Hateful or Abusive</source> |
6620 | <target state="new">Hateful or Abusive</target> | 6907 | <target state="new">Hateful or Abusive</target> |
6621 | 6908 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">22</context></context-group> | |
6622 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">22</context></context-group></trans-unit> | 6909 | </trans-unit> |
6623 | <trans-unit id="5124757565683866220" datatype="html"> | 6910 | <trans-unit id="5124757565683866220" datatype="html"> |
6624 | <source>Spam or Misleading</source> | 6911 | <source>Spam or Misleading</source> |
6625 | <target state="new">Spam or Misleading</target> | 6912 | <target state="new">Spam or Misleading</target> |
6626 | 6913 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">23</context></context-group> | |
6627 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">23</context></context-group></trans-unit><trans-unit id="8440128775129354214" datatype="html"> | 6914 | </trans-unit> |
6628 | <source>Privacy</source><target state="new">Privacy</target> | 6915 | <trans-unit id="8440128775129354214" datatype="html"> |
6629 | 6916 | <source>Privacy</source> | |
6630 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">24</context></context-group></trans-unit> | 6917 | <target state="new">Privacy</target> |
6918 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">24</context></context-group> | ||
6919 | </trans-unit> | ||
6631 | <trans-unit id="8768506950499277937" datatype="html"> | 6920 | <trans-unit id="8768506950499277937" datatype="html"> |
6632 | <source>Copyright</source> | 6921 | <source>Copyright</source> |
6633 | <target state="new">Copyright</target> | 6922 | <target state="new">Copyright</target> |
6634 | 6923 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">159</context></context-group> | |
6635 | 6924 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">25</context></context-group> | |
6636 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">159</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 6925 | </trans-unit> |
6637 | <trans-unit id="3776575731053010580" datatype="html"> | 6926 | <trans-unit id="3776575731053010580" datatype="html"> |
6638 | <source>Server rules</source> | 6927 | <source>Server rules</source> |
6639 | <target state="new">Server rules</target> | 6928 | <target state="new">Server rules</target> |
6640 | 6929 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">26</context></context-group> | |
6641 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 6930 | </trans-unit> |
6642 | <trans-unit id="6907161397537530258" datatype="html"> | 6931 | <trans-unit id="6907161397537530258" datatype="html"> |
6643 | <source>Thumbnails</source> | 6932 | <source>Thumbnails</source> |
6644 | <target state="new">Thumbnails</target> | 6933 | <target state="new">Thumbnails</target> |
6645 | 6934 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">173</context></context-group> | |
6646 | 6935 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">27</context></context-group> | |
6647 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">173</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">27</context></context-group></trans-unit> | 6936 | </trans-unit> |
6648 | <trans-unit id="6473213678768782133" datatype="html"> | 6937 | <trans-unit id="6473213678768782133" datatype="html"> |
6649 | <source>Internal actions</source> | 6938 | <source>Internal actions</source> |
6650 | <target state="new">Internal actions</target> | 6939 | <target state="new">Internal actions</target> |
6651 | 6940 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">239</context></context-group> | |
6652 | 6941 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">43</context></context-group> | |
6653 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">239</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> | 6942 | </trans-unit> |
6654 | <trans-unit id="4559872264406386913" datatype="html"> | 6943 | <trans-unit id="4559872264406386913" datatype="html"> |
6655 | <source>Delete report</source> | 6944 | <source>Delete report</source> |
6656 | <target state="new">Delete report</target> | 6945 | <target state="new">Delete report</target> |
6657 | 6946 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">270</context></context-group> | |
6658 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">270</context></context-group></trans-unit> | 6947 | </trans-unit> |
6659 | <trans-unit id="5793550984155962433" datatype="html"> | 6948 | <trans-unit id="5793550984155962433" datatype="html"> |
6660 | <source>Actions for the flagged account</source> | 6949 | <source>Actions for the flagged account</source> |
6661 | <target state="new">Actions for the flagged account</target> | 6950 | <target state="new">Actions for the flagged account</target> |
6662 | 6951 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">281</context></context-group> | |
6663 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">281</context></context-group></trans-unit> | 6952 | </trans-unit> |
6664 | <trans-unit id="1679841953757186358" datatype="html"> | 6953 | <trans-unit id="1679841953757186358" datatype="html"> |
6665 | <source>Mark as accepted</source> | 6954 | <source>Mark as accepted</source> |
6666 | <target state="new">Mark as accepted</target> | 6955 | <target state="new">Mark as accepted</target> |
6667 | 6956 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">255</context></context-group> | |
6668 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">255</context></context-group></trans-unit> | 6957 | </trans-unit> |
6669 | <trans-unit id="7993358694073742566" datatype="html"> | 6958 | <trans-unit id="7993358694073742566" datatype="html"> |
6670 | <source>Mark as rejected</source> | 6959 | <source>Mark as rejected</source> |
6671 | <target state="new">Mark as rejected</target> | 6960 | <target state="new">Mark as rejected</target> |
6672 | 6961 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">260</context></context-group> | |
6673 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">260</context></context-group></trans-unit> | 6962 | </trans-unit> |
6674 | <trans-unit id="4175703770051343108" datatype="html"> | 6963 | <trans-unit id="4175703770051343108" datatype="html"> |
6675 | <source>Add internal note</source> | 6964 | <source>Add internal note</source> |
6676 | <target state="new">Add internal note</target> | 6965 | <target state="new">Add internal note</target> |
6677 | 6966 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">265</context></context-group> | |
6678 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">265</context></context-group></trans-unit> | 6967 | </trans-unit> |
6679 | <trans-unit id="296166371893775555" datatype="html"> | 6968 | <trans-unit id="296166371893775555" datatype="html"> |
6680 | <source>Actions for the video</source> | 6969 | <source>Actions for the video</source> |
6681 | <target state="new">Actions for the video</target> | 6970 | <target state="new">Actions for the video</target> |
6682 | 6971 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">329</context></context-group> | |
6683 | 6972 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">66</context></context-group> | |
6684 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">329</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6973 | </trans-unit> |
6685 | <trans-unit id="3924877328520650445" datatype="html"> | 6974 | <trans-unit id="3924877328520650445" datatype="html"> |
6686 | <source>Block video</source> | 6975 | <source>Block video</source> |
6687 | <target state="new">Block video</target> | 6976 | <target state="new">Block video</target> |
6688 | 6977 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">334</context></context-group> | |
6689 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">334</context></context-group></trans-unit> | 6978 | </trans-unit> |
6690 | <trans-unit id="4762794934098378428" datatype="html"> | 6979 | <trans-unit id="4762794934098378428" datatype="html"> |
6691 | <source>Video blocked.</source> | 6980 | <source>Video blocked.</source> |
6692 | <target state="new">Video blocked.</target> | 6981 | <target state="new">Video blocked.</target> |
6693 | 6982 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context><context context-type="linenumber">60</context></context-group> | |
6694 | 6983 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">340</context></context-group> | |
6695 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context><context context-type="linenumber">60</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 6984 | </trans-unit> |
6696 | <trans-unit id="4328862996304258770" datatype="html"> | 6985 | <trans-unit id="4328862996304258770" datatype="html"> |
6697 | <source>Unblock video</source> | 6986 | <source>Unblock video</source> |
6698 | <target state="new">Unblock video</target> | 6987 | <target state="new">Unblock video</target> |
6699 | 6988 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">350</context></context-group> | |
6700 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">350</context></context-group></trans-unit> | 6989 | </trans-unit> |
6701 | <trans-unit id="9065327551191479877" datatype="html"> | 6990 | <trans-unit id="9065327551191479877" datatype="html"> |
6702 | <source>Video unblocked.</source> | 6991 | <source>Video unblocked.</source> |
6703 | <target state="new">Video unblocked.</target> | 6992 | <target state="new">Video unblocked.</target> |
6704 | 6993 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">356</context></context-group> | |
6705 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">356</context></context-group></trans-unit> | 6994 | </trans-unit> |
6706 | <trans-unit id="1250415136605923486" datatype="html"> | 6995 | <trans-unit id="1250415136605923486" datatype="html"> |
6707 | <source>Do you really want to delete this abuse report?</source> | 6996 | <source>Do you really want to delete this abuse report?</source> |
6708 | <target state="new">Do you really want to delete this abuse report?</target> | 6997 | <target state="new">Do you really want to delete this abuse report?</target> |
6709 | 6998 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">129</context></context-group> | |
6710 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> | 6999 | </trans-unit> |
6711 | <trans-unit id="3482559157143817408" datatype="html"> | 7000 | <trans-unit id="3482559157143817408" datatype="html"> |
6712 | <source>Abuse deleted.</source> | 7001 | <source>Abuse deleted.</source> |
6713 | <target state="new">Abuse deleted.</target> | 7002 | <target state="new">Abuse deleted.</target> |
6714 | 7003 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">134</context></context-group> | |
6715 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> | 7004 | </trans-unit> |
6716 | <trans-unit id="6282990098351939529" datatype="html"> | 7005 | <trans-unit id="6282990098351939529" datatype="html"> |
6717 | <source>Deleted comment</source> | 7006 | <source>Deleted comment</source> |
6718 | <target state="new">Deleted comment</target> | 7007 | <target state="new">Deleted comment</target> |
6719 | 7008 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">210</context></context-group> | |
6720 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">210</context></context-group></trans-unit> | 7009 | </trans-unit> |
6721 | <trans-unit id="9196775343330824083" datatype="html"> | 7010 | <trans-unit id="9196775343330824083" datatype="html"> |
6722 | <source>Messages with reporter</source> | 7011 | <source>Messages with reporter</source> |
6723 | <target state="new">Messages with reporter</target> | 7012 | <target state="new">Messages with reporter</target> |
6724 | 7013 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">244</context></context-group> | |
6725 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">244</context></context-group></trans-unit> | 7014 | </trans-unit> |
6726 | <trans-unit id="8770468575924421391" datatype="html"> | 7015 | <trans-unit id="8770468575924421391" datatype="html"> |
6727 | <source>Messages with moderators</source> | 7016 | <source>Messages with moderators</source> |
6728 | <target state="new">Messages with moderators</target> | 7017 | <target state="new">Messages with moderators</target> |
6729 | 7018 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">245</context></context-group> | |
6730 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">245</context></context-group></trans-unit> | 7019 | </trans-unit> |
6731 | <trans-unit id="8528549800795985099" datatype="html"> | 7020 | <trans-unit id="8528549800795985099" datatype="html"> |
6732 | <source>Update internal note</source> | 7021 | <source>Update internal note</source> |
6733 | <target state="new">Update internal note</target> | 7022 | <target state="new">Update internal note</target> |
6734 | 7023 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">250</context></context-group> | |
6735 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> | 7024 | </trans-unit> |
6736 | <trans-unit id="3962242315365992494" datatype="html"> | 7025 | <trans-unit id="3962242315365992494" datatype="html"> |
6737 | <source>Switch video block to manual</source> | 7026 | <source>Switch video block to manual</source> |
6738 | <target state="new">Switch video block to manual</target> | 7027 | <target state="new">Switch video block to manual</target> |
6739 | 7028 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">48</context></context-group> | |
6740 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7029 | </trans-unit> |
6741 | <trans-unit id="6906423861055262169" datatype="html"> | 7030 | <trans-unit id="6906423861055262169" datatype="html"> |
6742 | <source>Video <x id="PH"/> switched to manual block.</source> | 7031 | <source>Video <x id="PH"/> switched to manual block.</source> |
6743 | <target state="new">Video | 7032 | <target state="translated">Video <x id="PH"/> přepnuto na ruční blokování.</target> |
6744 | <x id="PH"/> switched to manual block. | 7033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">54</context></context-group> |
6745 | </target> | 7034 | </trans-unit> |
6746 | |||
6747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">54</context></context-group></trans-unit> | ||
6748 | <trans-unit id="7293356040886494773" datatype="html"> | 7035 | <trans-unit id="7293356040886494773" datatype="html"> |
6749 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> | 7036 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> |
6750 | <target state="new">Do you really want to unblock this video? It will be available again in the videos list.</target> | 7037 | <target state="new">Do you really want to unblock this video? It will be available again in the videos list.</target> |
6751 | 7038 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">180</context></context-group> | |
6752 | 7039 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">146</context></context-group> | |
6753 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">180</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">146</context></context-group></trans-unit> | 7040 | </trans-unit> |
6754 | <trans-unit id="4859202148272511129" datatype="html"> | 7041 | <trans-unit id="4859202148272511129" datatype="html"> |
6755 | <source>Unblock</source> | 7042 | <source>Unblock</source> |
6756 | <target state="new">Unblock</target> | 7043 | <target state="new">Unblock</target> |
6757 | 7044 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">182</context></context-group> | |
6758 | 7045 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">296</context></context-group> | |
6759 | 7046 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">70</context></context-group> | |
6760 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">182</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">296</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit> | 7047 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">148</context></context-group> |
7048 | </trans-unit> | ||
6761 | <trans-unit id="4922469417589203720" datatype="html"> | 7049 | <trans-unit id="4922469417589203720" datatype="html"> |
6762 | <source>Video <x id="PH"/> unblocked.</source> | 7050 | <source>Video <x id="PH"/> unblocked.</source> |
6763 | <target state="new">Video | 7051 | <target state="translated">Video <x id="PH"/> odblokováno.</target> |
6764 | <x id="PH"/> unblocked. | 7052 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">188</context></context-group> |
6765 | </target> | 7053 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">153</context></context-group> |
6766 | 7054 | </trans-unit> | |
6767 | |||
6768 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">188</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">153</context></context-group></trans-unit> | ||
6769 | <trans-unit id="0594812d4c50c2adbd1a892a3497c4e5c19e4b32" datatype="html"> | 7055 | <trans-unit id="0594812d4c50c2adbd1a892a3497c4e5c19e4b32" datatype="html"> |
6770 | <source>yes</source> | 7056 | <source>yes</source> |
6771 | <target state="new">yes</target> | 7057 | <target state="new">yes</target> |
6772 | 7058 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">1</context></context-group> | |
6773 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">1</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 7059 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">1</context></context-group> |
7060 | </trans-unit> | ||
6774 | <trans-unit id="6320692861e01fa9c9d4e692d0d27b6c12b21c3b" datatype="html"> | 7061 | <trans-unit id="6320692861e01fa9c9d4e692d0d27b6c12b21c3b" datatype="html"> |
6775 | <source>no</source> | 7062 | <source>no</source> |
6776 | <target state="new">no</target> | 7063 | <target state="new">no</target> |
6777 | 7064 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">2</context></context-group> | |
6778 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">2</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit> | 7065 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">2</context></context-group> |
7066 | </trans-unit> | ||
6779 | <trans-unit id="212615365039028546" datatype="html"> | 7067 | <trans-unit id="212615365039028546" datatype="html"> |
6780 | <source>You don't have plugins installed yet.</source> | 7068 | <source>You don't have plugins installed yet.</source> |
6781 | <target state="new">You don't have plugins installed yet.</target> | 7069 | <target state="new">You don't have plugins installed yet.</target> |
6782 | 7070 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">89</context></context-group> | |
6783 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">89</context></context-group></trans-unit> | 7071 | </trans-unit> |
6784 | <trans-unit id="1710094819987243777" datatype="html"> | 7072 | <trans-unit id="1710094819987243777" datatype="html"> |
6785 | <source>You don't have themes installed yet.</source> | 7073 | <source>You don't have themes installed yet.</source> |
6786 | <target state="new">You don't have themes installed yet.</target> | 7074 | <target state="new">You don't have themes installed yet.</target> |
6787 | 7075 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">92</context></context-group> | |
6788 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 7076 | </trans-unit> |
6789 | <trans-unit id="931472057457682240" datatype="html"> | 7077 | <trans-unit id="931472057457682240" datatype="html"> |
6790 | <source>Update to | 7078 | <source>Update to <x id="PH"/> </source> |
6791 | <x id="PH"/> | ||
6792 | </source> | ||
6793 | <target state="new">Update to | 7079 | <target state="new">Update to |
6794 | <x id="PH"/> | 7080 | <x id="PH"/> |
6795 | </target> | 7081 | </target> |
6796 | 7082 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">100</context></context-group> | |
6797 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">100</context></context-group></trans-unit> | 7083 | </trans-unit> |
6798 | <trans-unit id="9107383323119159110" datatype="html"> | 7084 | <trans-unit id="9107383323119159110" datatype="html"> |
6799 | <source>Do you really want to uninstall <x id="PH"/>?</source> | 7085 | <source>Do you really want to uninstall <x id="PH"/>?</source> |
6800 | <target state="new">Do you really want to uninstall | 7086 | <target state="translated">Opravdu chcete odinstalovat <x id="PH"/>?</target> |
6801 | <x id="PH"/>? | 7087 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">109</context></context-group> |
6802 | </target> | 7088 | </trans-unit> |
6803 | 7089 | <trans-unit id="4474510732215437338" datatype="html"> | |
6804 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">109</context></context-group></trans-unit><trans-unit id="4474510732215437338" datatype="html"> | 7090 | <source>Uninstall</source> |
6805 | <source>Uninstall</source><target state="new">Uninstall</target> | 7091 | <target state="new">Uninstall</target> |
6806 | 7092 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">110</context></context-group> | |
6807 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">110</context></context-group></trans-unit> | 7093 | </trans-unit> |
6808 | <trans-unit id="3773378957693174719" datatype="html"> | 7094 | <trans-unit id="3773378957693174719" datatype="html"> |
6809 | <source> | 7095 | <source><x id="PH"/> uninstalled. </source> |
6810 | <x id="PH"/> uninstalled. | ||
6811 | </source> | ||
6812 | <target state="new"> | 7096 | <target state="new"> |
6813 | <x id="PH"/> uninstalled. | 7097 | <x id="PH"/> uninstalled. |
6814 | </target> | 7098 | </target> |
6815 | 7099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">117</context></context-group> | |
6816 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">117</context></context-group></trans-unit> | 7100 | </trans-unit> |
6817 | <trans-unit id="7830308409197461339" datatype="html"> | 7101 | <trans-unit id="7830308409197461339" datatype="html"> |
6818 | <source> | 7102 | <source><x id="PH"/> updated. </source> |
6819 | <x id="PH"/> updated. | ||
6820 | </source> | ||
6821 | <target state="new"> | 7103 | <target state="new"> |
6822 | <x id="PH"/> updated. | 7104 | <x id="PH"/> updated. |
6823 | </target> | 7105 | </target> |
6824 | 7106 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group> | |
6825 | <context-group purpose="location"><context context-type="sourcefile">src/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"> | 7107 | </trans-unit> |
6826 | <source>Jobs</source><target state="new">Jobs</target> | 7108 | <trans-unit id="3229595422546554334" datatype="html"> |
6827 | 7109 | <source>Jobs</source> | |
6828 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">26</context></context-group></trans-unit><trans-unit id="4804785061014590286" datatype="html"> | 7110 | <target state="new">Jobs</target> |
6829 | <source>Logs</source><target state="new">Logs</target> | 7111 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">26</context></context-group> |
6830 | 7112 | </trans-unit> | |
6831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 7113 | <trans-unit id="4804785061014590286" datatype="html"> |
7114 | <source>Logs</source> | ||
7115 | <target state="new">Logs</target> | ||
7116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">37</context></context-group> | ||
7117 | </trans-unit> | ||
6832 | <trans-unit id="3150704904301058778" datatype="html"> | 7118 | <trans-unit id="3150704904301058778" datatype="html"> |
6833 | <source>The plugin index is not available. Please retry later.</source> | 7119 | <source>The plugin index is not available. Please retry later.</source> |
6834 | <target state="new">The plugin index is not available. Please retry later.</target> | 7120 | <target state="new">The plugin index is not available. Please retry later.</target> |
6835 | 7121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">100</context></context-group> | |
6836 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">100</context></context-group></trans-unit> | 7122 | </trans-unit> |
6837 | <trans-unit id="1387301493234848481" datatype="html"> | 7123 | <trans-unit id="1387301493234848481" datatype="html"> |
6838 | <source>Please only install plugins or themes you trust, since they can execute any code on your instance.</source> | 7124 | <source>Please only install plugins or themes you trust, since they can execute any code on your instance.</source> |
6839 | <target state="new">Please only install plugins or themes you trust, since they can execute any code on your instance.</target> | 7125 | <target state="new">Please only install plugins or themes you trust, since they can execute any code on your instance.</target> |
6840 | 7126 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">126</context></context-group> | |
6841 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 7127 | </trans-unit> |
6842 | <trans-unit id="2994182849694226596" datatype="html"> | 7128 | <trans-unit id="2994182849694226596" datatype="html"> |
6843 | <source>Install <x id="PH"/>?</source> | 7129 | <source>Install <x id="PH"/>?</source> |
6844 | <target state="new">Install | 7130 | <target state="translated">Instalovat <x id="PH"/>?</target> |
6845 | <x id="PH"/>? | 7131 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">127</context></context-group> |
6846 | </target> | 7132 | </trans-unit> |
6847 | |||
6848 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | ||
6849 | <trans-unit id="6703720397495603345" datatype="html"> | 7133 | <trans-unit id="6703720397495603345" datatype="html"> |
6850 | <source> | 7134 | <source><x id="PH"/> installed. </source> |
6851 | <x id="PH"/> installed. | ||
6852 | </source> | ||
6853 | <target state="new"> | 7135 | <target state="new"> |
6854 | <x id="PH"/> installed. | 7136 | <x id="PH"/> installed. |
6855 | </target> | 7137 | </target> |
6856 | 7138 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">139</context></context-group> | |
6857 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 7139 | </trans-unit> |
6858 | <trans-unit id="1875025899004073421" datatype="html"> | 7140 | <trans-unit id="1875025899004073421" datatype="html"> |
6859 | <source>Settings updated.</source> | 7141 | <source>Settings updated.</source> |
6860 | <target state="new">Settings updated.</target> | 7142 | <target state="new">Settings updated.</target> |
6861 | 7143 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts</context><context context-type="linenumber">52</context></context-group> | |
6862 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 7144 | </trans-unit> |
6863 | <trans-unit id="6901018060567164184" datatype="html"> | 7145 | <trans-unit id="6901018060567164184" datatype="html"> |
6864 | <source>Plugins</source> | 7146 | <source>Plugins</source> |
6865 | <target state="new">Plugins</target> | 7147 | <target state="new">Plugins</target> |
6866 | 7148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">33</context></context-group> | |
6867 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">33</context></context-group></trans-unit> | 7149 | </trans-unit> |
6868 | <trans-unit id="2798270190074840767" datatype="html"> | 7150 | <trans-unit id="2798270190074840767" datatype="html"> |
6869 | <source>Themes</source> | 7151 | <source>Themes</source> |
6870 | <target state="new">Themes</target> | 7152 | <target state="new">Themes</target> |
6871 | 7153 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">37</context></context-group> | |
6872 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 7154 | </trans-unit> |
6873 | <trans-unit id="2941409202780782189" datatype="html"> | 7155 | <trans-unit id="2941409202780782189" datatype="html"> |
6874 | <source>plugin</source> | 7156 | <source>plugin</source> |
6875 | <target state="new">plugin</target> | 7157 | <target state="new">plugin</target> |
6876 | 7158 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">45</context></context-group> | |
6877 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7159 | </trans-unit> |
6878 | <trans-unit id="840045833311458646" datatype="html"> | 7160 | <trans-unit id="840045833311458646" datatype="html"> |
6879 | <source>theme</source> | 7161 | <source>theme</source> |
6880 | <target state="new">theme</target> | 7162 | <target state="new">theme</target> |
6881 | 7163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">48</context></context-group> | |
6882 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7164 | </trans-unit> |
6883 | <trans-unit id="7591870443991978948" datatype="html"> | 7165 | <trans-unit id="7591870443991978948" datatype="html"> |
6884 | <source>Last week</source> | 7166 | <source>Last week</source> |
6885 | <target state="new">Last week</target> | 7167 | <target state="new">Last week</target> |
6886 | 7168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">79</context></context-group> | |
6887 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7169 | </trans-unit> |
6888 | <trans-unit id="4981709795568846080" datatype="html"> | 7170 | <trans-unit id="4981709795568846080" datatype="html"> |
6889 | <source>Last day</source> | 7171 | <source>Last day</source> |
6890 | <target state="new">Last day</target> | 7172 | <target state="new">Last day</target> |
6891 | 7173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">84</context></context-group> | |
6892 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> | 7174 | </trans-unit> |
6893 | <trans-unit id="9178360613965745088" datatype="html"> | 7175 | <trans-unit id="9178360613965745088" datatype="html"> |
6894 | <source>Last hour</source> | 7176 | <source>Last hour</source> |
6895 | <target state="new">Last hour</target> | 7177 | <target state="new">Last hour</target> |
6896 | 7178 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">89</context></context-group> | |
6897 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">89</context></context-group></trans-unit><trans-unit id="3164845764519833078" datatype="html"> | 7179 | </trans-unit> |
6898 | <source>debug</source><target state="new">debug</target> | 7180 | <trans-unit id="3164845764519833078" datatype="html"> |
6899 | 7181 | <source>debug</source> | |
6900 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="4279081882680795350" datatype="html"> | 7182 | <target state="new">debug</target> |
6901 | <source>info</source><target state="new">info</target> | 7183 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">101</context></context-group> |
6902 | 7184 | </trans-unit> | |
6903 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">105</context></context-group></trans-unit><trans-unit id="3379167598974960777" datatype="html"> | 7185 | <trans-unit id="4279081882680795350" datatype="html"> |
6904 | <source>warning</source><target state="new">warning</target> | 7186 | <source>info</source> |
6905 | 7187 | <target state="new">info</target> | |
6906 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">109</context></context-group></trans-unit><trans-unit id="8772116786769251214" datatype="html"> | 7188 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">105</context></context-group> |
6907 | <source>error</source><target state="new">error</target> | 7189 | </trans-unit> |
6908 | 7190 | <trans-unit id="3379167598974960777" datatype="html"> | |
6909 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">113</context></context-group></trans-unit><trans-unit id="3422890808980876594" datatype="html"> | 7191 | <source>warning</source> |
6910 | <source>Debug</source><target state="new">Debug</target> | 7192 | <target state="new">warning</target> |
6911 | 7193 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">109</context></context-group> | |
6912 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7194 | </trans-unit> |
7195 | <trans-unit id="8772116786769251214" datatype="html"> | ||
7196 | <source>error</source> | ||
7197 | <target state="new">error</target> | ||
7198 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">113</context></context-group> | ||
7199 | </trans-unit> | ||
7200 | <trans-unit id="3422890808980876594" datatype="html"> | ||
7201 | <source>Debug</source> | ||
7202 | <target state="new">Debug</target> | ||
7203 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">48</context></context-group> | ||
7204 | </trans-unit> | ||
6913 | <trans-unit id="314315645942131479"> | 7205 | <trans-unit id="314315645942131479"> |
6914 | <source>Info</source> | 7206 | <source>Info</source> |
6915 | <target>Info</target> | 7207 | <target>Info</target> |
6916 | 7208 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">11</context></context-group> | |
6917 | 7209 | </trans-unit> | |
6918 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">11</context></context-group></trans-unit> | ||
6919 | <trans-unit id="6759205696902713848"> | 7210 | <trans-unit id="6759205696902713848"> |
6920 | <source>Warning</source> | 7211 | <source>Warning</source> |
6921 | <target>Varování</target> | 7212 | <target>Varování</target> |
6922 | 7213 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/routing/can-deactivate-guard.service.ts</context><context context-type="linenumber">23</context></context-group> | |
6923 | 7214 | </trans-unit> | |
6924 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/routing/can-deactivate-guard.service.ts</context><context context-type="linenumber">23</context></context-group></trans-unit> | ||
6925 | <trans-unit id="1519954996184640001"> | 7215 | <trans-unit id="1519954996184640001"> |
6926 | <source>Error</source> | 7216 | <source>Error</source> |
6927 | <target>Chyba</target> | 7217 | <target>Chyba</target> |
6928 | 7218 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">104</context></context-group> | |
6929 | 7219 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">18</context></context-group> | |
6930 | 7220 | </trans-unit> | |
6931 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">104</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">18</context></context-group></trans-unit> | ||
6932 | <trans-unit id="5076187961693950167" datatype="html"> | 7221 | <trans-unit id="5076187961693950167" datatype="html"> |
6933 | <source>Standard logs</source> | 7222 | <source>Standard logs</source> |
6934 | <target state="new">Standard logs</target> | 7223 | <target state="new">Standard logs</target> |
6935 | 7224 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">124</context></context-group> | |
6936 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7225 | </trans-unit> |
6937 | <trans-unit id="4737341634746310376" datatype="html"> | 7226 | <trans-unit id="4737341634746310376" datatype="html"> |
6938 | <source>Audit logs</source> | 7227 | <source>Audit logs</source> |
6939 | <target state="new">Audit logs</target> | 7228 | <target state="new">Audit logs</target> |
6940 | 7229 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">128</context></context-group> | |
6941 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 7230 | </trans-unit> |
6942 | <trans-unit id="1886888801485703107"> | 7231 | <trans-unit id="1886888801485703107"> |
6943 | <source>User <x id="PH"/> created.</source> | 7232 | <source>User <x id="PH"/> created.</source> |
6944 | <target>Uživatel | 7233 | <target>Uživatel <x id="PH"/> vytvořen.</target> |
6945 | <x id="PH"/> vytvořen. | 7234 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">77</context></context-group> |
6946 | </target> | 7235 | </trans-unit> |
6947 | 7236 | <trans-unit id="8286337167859377104" datatype="html"> | |
6948 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit><trans-unit id="8286337167859377104" datatype="html"> | 7237 | <source>Create user</source> |
6949 | <source>Create user</source><target state="new">Create user</target> | 7238 | <target state="new">Create user</target> |
6950 | 7239 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">95</context></context-group> | |
6951 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="7098180453085889026" datatype="html"> | 7240 | </trans-unit> |
6952 | <source>Blocked videos</source><target state="new">Blocked videos</target> | 7241 | <trans-unit id="7098180453085889026" datatype="html"> |
6953 | 7242 | <source>Blocked videos</source> | |
6954 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">69</context></context-group></trans-unit><trans-unit id="7805059636749367886" datatype="html"> | 7243 | <target state="new">Blocked videos</target> |
6955 | <source>Muted instances</source><target state="new">Muted instances</target> | 7244 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">69</context></context-group> |
6956 | 7245 | </trans-unit> | |
6957 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">109</context></context-group></trans-unit> | 7246 | <trans-unit id="7805059636749367886" datatype="html"> |
7247 | <source>Muted instances</source> | ||
7248 | <target state="new">Muted instances</target> | ||
7249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">109</context></context-group> | ||
7250 | </trans-unit> | ||
6958 | <trans-unit id="5974506725502681113" datatype="html"> | 7251 | <trans-unit id="5974506725502681113" datatype="html"> |
6959 | <source>Password changed for user <x id="PH"/>.</source> | 7252 | <source>Password changed for user <x id="PH"/>.</source> |
6960 | <target state="new">Password changed for user | 7253 | <target state="translated">Heslo uživatele <x id="PH"/> změněno.</target> |
6961 | <x id="PH"/>. | 7254 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">40</context></context-group> |
6962 | </target> | 7255 | </trans-unit> |
6963 | |||
6964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> | ||
6965 | <trans-unit id="149953821752893163" datatype="html"> | 7256 | <trans-unit id="149953821752893163" datatype="html"> |
6966 | <source>Update user password</source> | 7257 | <source>Update user password</source> |
6967 | <target state="new">Update user password</target> | 7258 | <target state="new">Update user password</target> |
6968 | 7259 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group> | |
6969 | <context-group purpose="location"><context context-type="sourcefile">src/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"> | 7260 | </trans-unit> |
6970 | <source>Following list</source><target state="new">Following list</target> | 7261 | <trans-unit id="177544274549739411" datatype="html"> |
6971 | 7262 | <source>Following list</source> | |
6972 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">28</context></context-group></trans-unit><trans-unit id="8092429110007204784" datatype="html"> | 7263 | <target state="new">Following list</target> |
6973 | <source>Followers list</source><target state="new">Followers list</target> | 7264 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">28</context></context-group> |
6974 | 7265 | </trans-unit> | |
6975 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 7266 | <trans-unit id="8092429110007204784" datatype="html"> |
7267 | <source>Followers list</source> | ||
7268 | <target state="new">Followers list</target> | ||
7269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">37</context></context-group> | ||
7270 | </trans-unit> | ||
6976 | <trans-unit id="780323526182667308" datatype="html"> | 7271 | <trans-unit id="780323526182667308" datatype="html"> |
6977 | <source>User <x id="PH"/> updated.</source> | 7272 | <source>User <x id="PH"/> updated.</source> |
6978 | <target state="new">User | 7273 | <target state="translated">Uživatel <x id="PH"/> aktualizován.</target> |
6979 | <x id="PH"/> updated. | 7274 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">85</context></context-group> |
6980 | </target> | 7275 | </trans-unit> |
6981 | |||
6982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> | ||
6983 | <trans-unit id="1349763489797682899"> | 7276 | <trans-unit id="1349763489797682899"> |
6984 | <source>Update user</source> | 7277 | <source>Update user</source> |
6985 | <target>Aktualizovat uživatele</target> | 7278 | <target>Aktualizovat uživatele</target> |
6986 | 7279 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">102</context></context-group> | |
6987 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">102</context></context-group></trans-unit> | 7280 | </trans-unit> |
6988 | <trans-unit id="8819563010322372715" datatype="html"> | 7281 | <trans-unit id="8819563010322372715" datatype="html"> |
6989 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> | 7282 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> |
6990 | <target state="new">An email asking for password reset has been sent to | 7283 | <target state="new">An email asking for password reset has been sent to |
6991 | <x id="PH"/>. | 7284 | <x id="PH"/>. |
6992 | </target> | 7285 | </target> |
6993 | 7286 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">108</context></context-group> | |
6994 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">108</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> | 7287 | </trans-unit> |
6995 | <source>Users list</source><target state="new">Users list</target> | 7288 | <trans-unit id="7483807629538115183" datatype="html"> |
6996 | 7289 | <source>Users list</source> | |
6997 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">27</context></context-group></trans-unit><trans-unit id="1525334987774465166" datatype="html"> | 7290 | <target state="new">Users list</target> |
6998 | <source>Create a user</source><target state="new">Create a user</target> | 7291 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">27</context></context-group> |
6999 | 7292 | </trans-unit> | |
7000 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">36</context></context-group></trans-unit><trans-unit id="5552039423287890133" datatype="html"> | 7293 | <trans-unit id="1525334987774465166" datatype="html"> |
7001 | <source>Update a user</source><target state="new">Update a user</target> | 7294 | <source>Create a user</source> |
7002 | 7295 | <target state="new">Create a user</target> | |
7003 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">48</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 7296 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">36</context></context-group> |
7004 | <source>Federation</source><target state="new">Federation</target> | 7297 | </trans-unit> |
7005 | 7298 | <trans-unit id="5552039423287890133" datatype="html"> | |
7006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group></trans-unit><trans-unit id="4682675125751819107" datatype="html"> | 7299 | <source>Update a user</source> |
7007 | <source>Instances you follow</source><target state="new">Instances you follow</target> | 7300 | <target state="new">Update a user</target> |
7008 | 7301 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">48</context></context-group> | |
7009 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8899833753704589712" datatype="html"> | 7302 | </trans-unit> |
7010 | <source>Instances following you</source><target state="new">Instances following you</target> | 7303 | <trans-unit id="8564701209009684429" datatype="html"> |
7011 | 7304 | <source>Federation</source> | |
7012 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 7305 | <target state="new">Federation</target> |
7306 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group> | ||
7307 | </trans-unit> | ||
7308 | <trans-unit id="4682675125751819107" datatype="html"> | ||
7309 | <source>Instances you follow</source> | ||
7310 | <target state="new">Instances you follow</target> | ||
7311 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">29</context></context-group> | ||
7312 | </trans-unit> | ||
7313 | <trans-unit id="8899833753704589712" datatype="html"> | ||
7314 | <source>Instances following you</source> | ||
7315 | <target state="new">Instances following you</target> | ||
7316 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">34</context></context-group> | ||
7317 | </trans-unit> | ||
7013 | <trans-unit id="3767259920053407667" datatype="html"> | 7318 | <trans-unit id="3767259920053407667" datatype="html"> |
7014 | <source>Videos will be deleted, comments will be tombstoned.</source> | 7319 | <source>Videos will be deleted, comments will be tombstoned.</source> |
7015 | <target state="new">Videos will be deleted, comments will be tombstoned.</target> | 7320 | <target state="new">Videos will be deleted, comments will be tombstoned.</target> |
7016 | 7321 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">269</context></context-group> | |
7017 | 7322 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">77</context></context-group> | |
7018 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">269</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit><trans-unit id="4209525355702493436" datatype="html"> | 7323 | </trans-unit> |
7019 | <source>Ban</source><target state="new">Ban</target> | 7324 | <trans-unit id="4209525355702493436" datatype="html"> |
7020 | 7325 | <source>Ban</source> | |
7021 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">273</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7326 | <target state="new">Ban</target> |
7327 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">273</context></context-group> | ||
7328 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">82</context></context-group> | ||
7329 | </trans-unit> | ||
7022 | <trans-unit id="3855396975723886053" datatype="html"> | 7330 | <trans-unit id="3855396975723886053" datatype="html"> |
7023 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> | 7331 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> |
7024 | <target state="new">User won't be able to login anymore, but videos and comments will be kept as is.</target> | 7332 | <target state="new">User won't be able to login anymore, but videos and comments will be kept as is.</target> |
7025 | 7333 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group> | |
7026 | 7334 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">83</context></context-group> | |
7027 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> | 7335 | </trans-unit> |
7028 | <trans-unit id="4451482225013335720"> | 7336 | <trans-unit id="4451482225013335720"> |
7029 | <source>Unban</source> | 7337 | <source>Unban</source> |
7030 | <target>Odblokovat</target> | 7338 | <target>Odblokovat</target> |
7031 | 7339 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">70</context></context-group> | |
7032 | 7340 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">88</context></context-group> | |
7033 | 7341 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">171</context></context-group> | |
7034 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">88</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit> | 7342 | </trans-unit> |
7035 | <trans-unit id="7210277223053877333" datatype="html"> | 7343 | <trans-unit id="7210277223053877333" datatype="html"> |
7036 | <source>Set Email as Verified</source> | 7344 | <source>Set Email as Verified</source> |
7037 | <target state="new">Set Email as Verified</target> | 7345 | <target state="new">Set Email as Verified</target> |
7038 | 7346 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">285</context></context-group> | |
7039 | 7347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">95</context></context-group> | |
7040 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">285</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">95</context></context-group></trans-unit> | 7348 | </trans-unit> |
7041 | <trans-unit id="3403978719736970622" datatype="html"> | 7349 | <trans-unit id="3403978719736970622" datatype="html"> |
7042 | <source>You cannot ban root.</source> | 7350 | <source>You cannot ban root.</source> |
7043 | <target state="new">You cannot ban root.</target> | 7351 | <target state="new">You cannot ban root.</target> |
7044 | 7352 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">58</context></context-group> | |
7045 | 7353 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">154</context></context-group> | |
7046 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">154</context></context-group></trans-unit> | 7354 | </trans-unit> |
7047 | <trans-unit id="4884272193574287483"> | 7355 | <trans-unit id="4884272193574287483"> |
7048 | <source>Do you really want to unban <x id="PH"/> users?</source> | 7356 | <source>Do you really want to unban <x id="PH"/> users?</source> |
7049 | <target>Opravdu chcete odblokovat | 7357 | <target>Opravdu chcete odblokovat <x id="PH"/> uživatelů?</target> |
7050 | <x id="PH"/> uživatelů? | 7358 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">171</context></context-group> |
7051 | </target> | 7359 | </trans-unit> |
7052 | |||
7053 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit> | ||
7054 | <trans-unit id="8712248120167780385"> | 7360 | <trans-unit id="8712248120167780385"> |
7055 | <source> | 7361 | <source><x id="PH"/> users unbanned. </source> |
7056 | <x id="PH"/> users unbanned. | ||
7057 | </source> | ||
7058 | <target> | 7362 | <target> |
7059 | <x id="PH"/> uživatelů odblokováno. | 7363 | <x id="PH"/> uživatelů odblokováno. |
7060 | </target> | 7364 | </target> |
7061 | 7365 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">177</context></context-group> | |
7062 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">177</context></context-group></trans-unit> | 7366 | </trans-unit> |
7063 | <trans-unit id="5325873477837320044"> | 7367 | <trans-unit id="5325873477837320044"> |
7064 | <source>You cannot delete root.</source> | 7368 | <source>You cannot delete root.</source> |
7065 | <target>Uživatel root nelze odstranit.</target> | 7369 | <target>Uživatel root nelze odstranit.</target> |
7066 | 7370 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">86</context></context-group> | |
7067 | 7371 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">188</context></context-group> | |
7068 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">86</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">188</context></context-group></trans-unit> | 7372 | </trans-unit> |
7069 | <trans-unit id="4086135983283545219" datatype="html"> | 7373 | <trans-unit id="4086135983283545219" datatype="html"> |
7070 | <source>If you remove these users, you will not be able to create others with the same username!</source> | 7374 | <source>If you remove these users, you will not be able to create others with the same username!</source> |
7071 | <target state="new">If you remove these users, you will not be able to create others with the same username!</target> | 7375 | <target state="new">If you remove these users, you will not be able to create others with the same username!</target> |
7072 | 7376 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">193</context></context-group> | |
7073 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> | 7377 | </trans-unit> |
7074 | <trans-unit id="7166936623843420016" datatype="html"> | 7378 | <trans-unit id="7166936623843420016" datatype="html"> |
7075 | <source> | 7379 | <source><x id="PH"/> users deleted. </source> |
7076 | <x id="PH"/> users deleted. | ||
7077 | </source> | ||
7078 | <target state="new"> | 7380 | <target state="new"> |
7079 | <x id="PH"/> users deleted. | 7381 | <x id="PH"/> users deleted. |
7080 | </target> | 7382 | </target> |
7081 | 7383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">199</context></context-group> | |
7082 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">199</context></context-group></trans-unit> | 7384 | </trans-unit> |
7083 | <trans-unit id="8360664597512051242" datatype="html"> | 7385 | <trans-unit id="8360664597512051242" datatype="html"> |
7084 | <source> | 7386 | <source><x id="PH"/> users email set as verified. </source> |
7085 | <x id="PH"/> users email set as verified. | ||
7086 | </source> | ||
7087 | <target state="new"> | 7387 | <target state="new"> |
7088 | <x id="PH"/> users email set as verified. | 7388 | <x id="PH"/> users email set as verified. |
7089 | </target> | 7389 | </target> |
7090 | 7390 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">210</context></context-group> | |
7091 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">210</context></context-group></trans-unit> | 7391 | </trans-unit> |
7092 | <trans-unit id="7390990800435887351" datatype="html"> | 7392 | <trans-unit id="7390990800435887351" datatype="html"> |
7093 | <source>Account <x id="PH"/> unmuted.</source> | 7393 | <source>Account <x id="PH"/> unmuted.</source> |
7094 | <target state="new">Account | 7394 | <target state="new">Account |
7095 | <x id="PH"/> unmuted. | 7395 | <x id="PH"/> unmuted. |
7096 | </target> | 7396 | </target> |
7097 | 7397 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">133</context></context-group> | |
7098 | 7398 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">47</context></context-group> | |
7099 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">133</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 7399 | </trans-unit> |
7100 | <trans-unit id="7246356397085094208" datatype="html"> | 7400 | <trans-unit id="7246356397085094208" datatype="html"> |
7101 | <source>Instance <x id="PH"/> unmuted.</source> | 7401 | <source>Instance <x id="PH"/> unmuted.</source> |
7102 | <target state="new">Instance | 7402 | <target state="new">Instance |
7103 | <x id="PH"/> unmuted. | 7403 | <x id="PH"/> unmuted. |
7104 | </target> | 7404 | </target> |
7105 | 7405 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">161</context></context-group> | |
7106 | 7406 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">45</context></context-group> | |
7107 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">161</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7407 | </trans-unit> |
7108 | |||
7109 | <trans-unit id="5551551295632950210" datatype="html"> | 7408 | <trans-unit id="5551551295632950210" datatype="html"> |
7110 | <source>Videos history is enabled</source> | 7409 | <source>Videos history is enabled</source> |
7111 | <target state="new">Videos history is enabled</target> | 7410 | <target state="new">Videos history is enabled</target> |
7112 | 7411 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">106</context></context-group> | |
7113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">106</context></context-group></trans-unit> | 7412 | </trans-unit> |
7114 | <trans-unit id="9136227503281311926" datatype="html"> | 7413 | <trans-unit id="9136227503281311926" datatype="html"> |
7115 | <source>Videos history is disabled</source> | 7414 | <source>Videos history is disabled</source> |
7116 | <target state="new">Videos history is disabled</target> | 7415 | <target state="new">Videos history is disabled</target> |
7117 | 7416 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">107</context></context-group> | |
7118 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">107</context></context-group></trans-unit> | 7417 | </trans-unit> |
7119 | <trans-unit id="8966726118414892732" datatype="html"> | 7418 | <trans-unit id="8966726118414892732" datatype="html"> |
7120 | <source>Delete videos history</source> | 7419 | <source>Delete videos history</source> |
7121 | <target state="new">Delete videos history</target> | 7420 | <target state="new">Delete videos history</target> |
7122 | 7421 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">119</context></context-group> | |
7123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">119</context></context-group></trans-unit> | 7422 | </trans-unit> |
7124 | <trans-unit id="2482543433481435105" datatype="html"> | 7423 | <trans-unit id="2482543433481435105" datatype="html"> |
7125 | <source>Are you sure you want to delete all your videos history?</source> | 7424 | <source>Are you sure you want to delete all your videos history?</source> |
7126 | <target state="new">Are you sure you want to delete all your videos history?</target> | 7425 | <target state="new">Are you sure you want to delete all your videos history?</target> |
7127 | 7426 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">120</context></context-group> | |
7128 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">120</context></context-group></trans-unit> | 7427 | </trans-unit> |
7129 | <trans-unit id="4051606152827088952" datatype="html"> | 7428 | <trans-unit id="4051606152827088952" datatype="html"> |
7130 | <source>Videos history deleted</source> | 7429 | <source>Videos history deleted</source> |
7131 | <target state="new">Videos history deleted</target> | 7430 | <target state="new">Videos history deleted</target> |
7132 | 7431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">128</context></context-group> | |
7133 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit><trans-unit id="192815f43d0d7337dbf99f84281f5a4c3155af8f" datatype="html"> | 7432 | </trans-unit> |
7134 | <source>My watch history</source><target state="new">My watch history</target> | 7433 | <trans-unit id="192815f43d0d7337dbf99f84281f5a4c3155af8f" datatype="html"> |
7434 | <source>My watch history</source> | ||
7435 | <target state="new">My watch history</target> | ||
7135 | <context-group purpose="location"> | 7436 | <context-group purpose="location"> |
7136 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> | 7437 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> |
7137 | <context context-type="linenumber">3</context> | 7438 | <context context-type="linenumber">3</context> |
7138 | </context-group> | 7439 | </context-group> |
7139 | </trans-unit><trans-unit id="f2540f4ffc5bbb12e034a4c9e118bbc680c62e61" datatype="html"> | 7440 | </trans-unit> |
7140 | <source>Search your history</source><target state="new">Search your history</target> | 7441 | <trans-unit id="f2540f4ffc5bbb12e034a4c9e118bbc680c62e61" datatype="html"> |
7442 | <source>Search your history</source> | ||
7443 | <target state="new">Search your history</target> | ||
7141 | <context-group purpose="location"> | 7444 | <context-group purpose="location"> |
7142 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> | 7445 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> |
7143 | <context context-type="linenumber">10</context> | 7446 | <context context-type="linenumber">10</context> |
7144 | </context-group> | 7447 | </context-group> |
7145 | </trans-unit><trans-unit id="777ef31e4dfcb08a00e23b586a50f0ffe94f0c72" datatype="html"> | 7448 | </trans-unit> |
7146 | <source>Track watch history</source><target state="new">Track watch history</target> | 7449 | <trans-unit id="777ef31e4dfcb08a00e23b586a50f0ffe94f0c72" datatype="html"> |
7450 | <source>Track watch history</source> | ||
7451 | <target state="new">Track watch history</target> | ||
7147 | <context-group purpose="location"> | 7452 | <context-group purpose="location"> |
7148 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> | 7453 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> |
7149 | <context context-type="linenumber">20</context> | 7454 | <context context-type="linenumber">20</context> |
@@ -7152,20 +7457,21 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7152 | <trans-unit id="3183245287221165928" datatype="html"> | 7457 | <trans-unit id="3183245287221165928" datatype="html"> |
7153 | <source>Ownership accepted</source> | 7458 | <source>Ownership accepted</source> |
7154 | <target state="new">Ownership accepted</target> | 7459 | <target state="new">Ownership accepted</target> |
7155 | 7460 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts</context><context context-type="linenumber">71</context></context-group> | |
7156 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts</context><context context-type="linenumber">71</context></context-group></trans-unit> | 7461 | </trans-unit> |
7157 | <trans-unit id="6012072687166259654" datatype="html"> | 7462 | <trans-unit id="6012072687166259654" datatype="html"> |
7158 | <source>Please check your emails to verify your new email.</source> | 7463 | <source>Please check your emails to verify your new email.</source> |
7159 | <target state="new">Please check your emails to verify your new email.</target> | 7464 | <target state="new">Please check your emails to verify your new email.</target> |
7160 | 7465 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">53</context></context-group> | |
7161 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">53</context></context-group></trans-unit> | 7466 | </trans-unit> |
7162 | <trans-unit id="6585766371605707311" datatype="html"> | 7467 | <trans-unit id="6585766371605707311" datatype="html"> |
7163 | <source>Email updated.</source> | 7468 | <source>Email updated.</source> |
7164 | <target state="new">Email updated.</target> | 7469 | <target state="new">Email updated.</target> |
7165 | 7470 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">55</context></context-group> | |
7166 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit><trans-unit id="73fc884417b68de6671fbab6e72e054c38a1990a" datatype="html"> | 7471 | </trans-unit> |
7167 | <source> Your current email is <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.email }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/>. It is never shown to the public. | 7472 | <trans-unit id="73fc884417b68de6671fbab6e72e054c38a1990a" datatype="html"> |
7168 | </source><target state="new"> Your current email is <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.email }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/>. It is never shown to the public. | 7473 | <source>Your current email is <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.email }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/>. It is never shown to the public. </source> |
7474 | <target state="new"> Your current email is <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.email }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/>. It is never shown to the public. | ||
7169 | </target> | 7475 | </target> |
7170 | <context-group purpose="location"> | 7476 | <context-group purpose="location"> |
7171 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> | 7477 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> |
@@ -7175,124 +7481,128 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7175 | <trans-unit id="853586874765134886" datatype="html"> | 7481 | <trans-unit id="853586874765134886" datatype="html"> |
7176 | <source>You current password is invalid.</source> | 7482 | <source>You current password is invalid.</source> |
7177 | <target state="new">You current password is invalid.</target> | 7483 | <target state="new">You current password is invalid.</target> |
7178 | 7484 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context><context context-type="linenumber">56</context></context-group> | |
7179 | 7485 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">61</context></context-group> | |
7180 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 7486 | </trans-unit> |
7181 | <trans-unit id="6159571046971090595"> | 7487 | <trans-unit id="6159571046971090595"> |
7182 | <source>Password updated.</source> | 7488 | <source>Password updated.</source> |
7183 | <target>Heslo aktualizováno.</target> | 7489 | <target>Heslo aktualizováno.</target> |
7184 | 7490 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context><context context-type="linenumber">48</context></context-group> | |
7185 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7491 | </trans-unit> |
7186 | <trans-unit id="5179099584732142331" datatype="html"> | 7492 | <trans-unit id="5179099584732142331" datatype="html"> |
7187 | <source>Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</source> | 7493 | <source>Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</source> |
7188 | <target state="new">Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</target> | 7494 | <target state="new">Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</target> |
7189 | 7495 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">22</context></context-group> | |
7190 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">22</context></context-group></trans-unit> | 7496 | </trans-unit> |
7191 | <trans-unit id="6897292459203320054" datatype="html"> | 7497 | <trans-unit id="6897292459203320054" datatype="html"> |
7192 | <source>Type your username to confirm</source> | 7498 | <source>Type your username to confirm</source> |
7193 | <target state="new">Type your username to confirm</target> | 7499 | <target state="new">Type your username to confirm</target> |
7194 | 7500 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">23</context></context-group> | |
7195 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">23</context></context-group></trans-unit><trans-unit id="3122895472333547524" datatype="html"> | 7501 | </trans-unit> |
7196 | <source>Delete your account</source><target state="new">Delete your account</target> | 7502 | <trans-unit id="3122895472333547524" datatype="html"> |
7197 | 7503 | <source>Delete your account</source> | |
7198 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 7504 | <target state="new">Delete your account</target> |
7505 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">25</context></context-group> | ||
7506 | </trans-unit> | ||
7199 | <trans-unit id="2520605306994744004" datatype="html"> | 7507 | <trans-unit id="2520605306994744004" datatype="html"> |
7200 | <source>Delete my account</source> | 7508 | <source>Delete my account</source> |
7201 | <target state="new">Delete my account</target> | 7509 | <target state="new">Delete my account</target> |
7202 | 7510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">26</context></context-group> | |
7203 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 7511 | </trans-unit> |
7204 | <trans-unit id="3902597758945766483" datatype="html"> | 7512 | <trans-unit id="3902597758945766483" datatype="html"> |
7205 | <source>Your account is deleted.</source> | 7513 | <source>Your account is deleted.</source> |
7206 | <target state="new">Your account is deleted.</target> | 7514 | <target state="new">Your account is deleted.</target> |
7207 | 7515 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">32</context></context-group> | |
7208 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 7516 | </trans-unit> |
7209 | <trans-unit id="4776289814033837037" datatype="html"> | 7517 | <trans-unit id="4776289814033837037" datatype="html"> |
7210 | <source>Interface settings updated.</source> | 7518 | <source>Interface settings updated.</source> |
7211 | <target state="new">Interface settings updated.</target> | 7519 | <target state="new">Interface settings updated.</target> |
7212 | 7520 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">74</context></context-group> | |
7213 | 7521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">81</context></context-group> | |
7214 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 7522 | </trans-unit> |
7215 | <trans-unit id="77907918814566205"> | 7523 | <trans-unit id="77907918814566205"> |
7216 | <source>New video from your subscriptions</source> | 7524 | <source>New video from your subscriptions</source> |
7217 | <target>Nové video od sledovaných kanálů</target> | 7525 | <target>Nové video od sledovaných kanálů</target> |
7218 | 7526 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">32</context></context-group> | |
7219 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 7527 | </trans-unit> |
7220 | <trans-unit id="4343589211916204486"> | 7528 | <trans-unit id="4343589211916204486"> |
7221 | <source>New comment on your video</source> | 7529 | <source>New comment on your video</source> |
7222 | <target>Nový komentář u Vašeho videa</target> | 7530 | <target>Nový komentář u Vašeho videa</target> |
7223 | 7531 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">33</context></context-group> | |
7224 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">33</context></context-group></trans-unit> | 7532 | </trans-unit> |
7225 | <trans-unit id="7130088765428829942" datatype="html"> | 7533 | <trans-unit id="7130088765428829942" datatype="html"> |
7226 | <source>New abuse</source> | 7534 | <source>New abuse</source> |
7227 | <target state="new">New abuse</target> | 7535 | <target state="new">New abuse</target> |
7228 | 7536 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">34</context></context-group> | |
7229 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 7537 | </trans-unit> |
7230 | <trans-unit id="2265829846010085268" datatype="html"> | 7538 | <trans-unit id="2265829846010085268" datatype="html"> |
7231 | <source>Video blocked automatically waiting review</source> | 7539 | <source>Video blocked automatically waiting review</source> |
7232 | <target state="new">Video blocked automatically waiting review</target> | 7540 | <target state="new">Video blocked automatically waiting review</target> |
7233 | 7541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">35</context></context-group> | |
7234 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 7542 | </trans-unit> |
7235 | <trans-unit id="5671547068905553663" datatype="html"> | 7543 | <trans-unit id="5671547068905553663" datatype="html"> |
7236 | <source>One of your video is blocked/unblocked</source> | 7544 | <source>One of your video is blocked/unblocked</source> |
7237 | <target state="new">One of your video is blocked/unblocked</target> | 7545 | <target state="new">One of your video is blocked/unblocked</target> |
7238 | 7546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">36</context></context-group> | |
7239 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">36</context></context-group></trans-unit> | 7547 | </trans-unit> |
7240 | <trans-unit id="1158912204255103651"> | 7548 | <trans-unit id="1158912204255103651"> |
7241 | <source>Video published (after transcoding/scheduled update)</source> | 7549 | <source>Video published (after transcoding/scheduled update)</source> |
7242 | <target>Video bude po překódování a/nebo naplánované aktualizaci publikováno</target> | 7550 | <target>Video bude po překódování a/nebo naplánované aktualizaci publikováno</target> |
7243 | 7551 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">37</context></context-group> | |
7244 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 7552 | </trans-unit> |
7245 | <trans-unit id="3809414664640924954"> | 7553 | <trans-unit id="3809414664640924954"> |
7246 | <source>Video import finished</source> | 7554 | <source>Video import finished</source> |
7247 | <target>Import videa byl dokončen</target> | 7555 | <target>Import videa byl dokončen</target> |
7248 | 7556 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">38</context></context-group> | |
7249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 7557 | </trans-unit> |
7250 | <trans-unit id="3268838889659873892"> | 7558 | <trans-unit id="3268838889659873892"> |
7251 | <source>A new user registered on your instance</source> | 7559 | <source>A new user registered on your instance</source> |
7252 | <target>Ve Vaší instanci je nově registrovaný uživatel</target> | 7560 | <target>Ve Vaší instanci je nově registrovaný uživatel</target> |
7253 | 7561 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">39</context></context-group> | |
7254 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 7562 | </trans-unit> |
7255 | <trans-unit id="7373104725413001009"> | 7563 | <trans-unit id="7373104725413001009"> |
7256 | <source>You or your channel(s) has a new follower</source> | 7564 | <source>You or your channel(s) has a new follower</source> |
7257 | <target>Vy nebo Vaše kanály mají nového sledujícího</target> | 7565 | <target>Vy nebo Vaše kanály mají nového sledujícího</target> |
7258 | 7566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">40</context></context-group> | |
7259 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> | 7567 | </trans-unit> |
7260 | <trans-unit id="5315689532659759332"> | 7568 | <trans-unit id="5315689532659759332"> |
7261 | <source>Someone mentioned you in video comments</source> | 7569 | <source>Someone mentioned you in video comments</source> |
7262 | <target>Někdo Vás označil v komentáři pod některém z videí</target> | 7570 | <target>Někdo Vás označil v komentáři pod některém z videí</target> |
7263 | 7571 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">41</context></context-group> | |
7264 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> | 7572 | </trans-unit> |
7265 | <trans-unit id="2018794201569157817"> | 7573 | <trans-unit id="2018794201569157817"> |
7266 | <source>Your instance has a new follower</source> | 7574 | <source>Your instance has a new follower</source> |
7267 | <target>Vaše instance má nového sledujícího</target> | 7575 | <target>Vaše instance má nového sledujícího</target> |
7268 | 7576 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">42</context></context-group> | |
7269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">42</context></context-group></trans-unit> | 7577 | </trans-unit> |
7270 | <trans-unit id="773085434165307906" datatype="html"> | 7578 | <trans-unit id="773085434165307906" datatype="html"> |
7271 | <source>Your instance automatically followed another instance</source> | 7579 | <source>Your instance automatically followed another instance</source> |
7272 | <target state="new">Your instance automatically followed another instance</target> | 7580 | <target state="new">Your instance automatically followed another instance</target> |
7273 | 7581 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">43</context></context-group> | |
7274 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> | 7582 | </trans-unit> |
7275 | <trans-unit id="900099988467638766" datatype="html"> | 7583 | <trans-unit id="900099988467638766" datatype="html"> |
7276 | <source>An abuse report received a new message</source> | 7584 | <source>An abuse report received a new message</source> |
7277 | <target state="new">An abuse report received a new message</target> | 7585 | <target state="new">An abuse report received a new message</target> |
7278 | 7586 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">44</context></context-group> | |
7279 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">44</context></context-group></trans-unit> | 7587 | </trans-unit> |
7280 | <trans-unit id="2326816287669585542" datatype="html"> | 7588 | <trans-unit id="2326816287669585542" datatype="html"> |
7281 | <source>One of your abuse reports has been accepted or rejected by moderators</source> | 7589 | <source>One of your abuse reports has been accepted or rejected by moderators</source> |
7282 | <target state="new">One of your abuse reports has been accepted or rejected by moderators</target> | 7590 | <target state="new">One of your abuse reports has been accepted or rejected by moderators</target> |
7283 | 7591 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">45</context></context-group> | |
7284 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7592 | </trans-unit> |
7285 | <trans-unit id="5095562193296630034" datatype="html"> | 7593 | <trans-unit id="5095562193296630034" datatype="html"> |
7286 | <source>Preferences saved</source> | 7594 | <source>Preferences saved</source> |
7287 | <target state="new">Preferences saved</target> | 7595 | <target state="new">Preferences saved</target> |
7288 | 7596 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">92</context></context-group> | |
7289 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 7597 | </trans-unit> |
7290 | <trans-unit id="4967231969832964676"> | 7598 | <trans-unit id="4967231969832964676"> |
7291 | <source>Profile updated.</source> | 7599 | <source>Profile updated.</source> |
7292 | <target>Profil aktualizován.</target> | 7600 | <target>Profil aktualizován.</target> |
7293 | 7601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts</context><context context-type="linenumber">58</context></context-group> | |
7294 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts</context><context context-type="linenumber">58</context></context-group></trans-unit><trans-unit id="d2ade8ba2e32c6fe467932b6b156025fe50da7c3" datatype="html"> | 7602 | </trans-unit> |
7295 | <source> People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source><target state="new"> People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </target> | 7603 | <trans-unit id="d2ade8ba2e32c6fe467932b6b156025fe50da7c3" datatype="html"> |
7604 | <source>People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source> | ||
7605 | <target state="new"> People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </target> | ||
7296 | <context-group purpose="location"> | 7606 | <context-group purpose="location"> |
7297 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context> | 7607 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context> |
7298 | <context context-type="linenumber">11,13</context> | 7608 | <context context-type="linenumber">11,13</context> |
@@ -7301,13 +7611,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7301 | <trans-unit id="3525866160632851851"> | 7611 | <trans-unit id="3525866160632851851"> |
7302 | <source>Avatar changed.</source> | 7612 | <source>Avatar changed.</source> |
7303 | <target>Avatar změněn.</target> | 7613 | <target>Avatar změněn.</target> |
7304 | 7614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">44</context></context-group> | |
7305 | 7615 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">107</context></context-group> | |
7306 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">107</context></context-group></trans-unit><trans-unit id="8920809083620698740" datatype="html"> | 7616 | </trans-unit> |
7307 | <source>avatar</source><target state="new">avatar</target> | 7617 | <trans-unit id="8920809083620698740" datatype="html"> |
7308 | 7618 | <source>avatar</source> | |
7309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">51</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">114</context></context-group></trans-unit><trans-unit id="2775050991871557896" datatype="html"> | 7619 | <target state="new">avatar</target> |
7310 | <source>Avatar deleted.</source><target state="new">Avatar deleted.</target> | 7620 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">51</context></context-group> |
7621 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">114</context></context-group> | ||
7622 | </trans-unit> | ||
7623 | <trans-unit id="2775050991871557896" datatype="html"> | ||
7624 | <source>Avatar deleted.</source> | ||
7625 | <target state="new">Avatar deleted.</target> | ||
7311 | <context-group purpose="location"> | 7626 | <context-group purpose="location"> |
7312 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context> | 7627 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context> |
7313 | <context context-type="linenumber">61</context> | 7628 | <context context-type="linenumber">61</context> |
@@ -7317,89 +7632,92 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7317 | <context context-type="linenumber">124</context> | 7632 | <context context-type="linenumber">124</context> |
7318 | </context-group> | 7633 | </context-group> |
7319 | </trans-unit> | 7634 | </trans-unit> |
7320 | |||
7321 | <trans-unit id="1233062525939746039" datatype="html"> | 7635 | <trans-unit id="1233062525939746039" datatype="html"> |
7322 | <source>Unknown language</source> | 7636 | <source>Unknown language</source> |
7323 | <target state="new">Unknown language</target> | 7637 | <target state="new">Unknown language</target> |
7324 | 7638 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">57</context></context-group> | |
7325 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> | 7639 | </trans-unit> |
7326 | <trans-unit id="3761504852202418603" datatype="html"> | 7640 | <trans-unit id="3761504852202418603" datatype="html"> |
7327 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> | 7641 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> |
7328 | <target state="new">Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</target> | 7642 | <target state="new">Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</target> |
7329 | 7643 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">102</context></context-group> | |
7330 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">102</context></context-group></trans-unit> | 7644 | </trans-unit> |
7331 | <trans-unit id="1904720062363293328" datatype="html"> | 7645 | <trans-unit id="1904720062363293328" datatype="html"> |
7332 | <source>You need to enable at least 1 video language.</source> | 7646 | <source>You need to enable at least 1 video language.</source> |
7333 | <target state="new">You need to enable at least 1 video language.</target> | 7647 | <target state="new">You need to enable at least 1 video language.</target> |
7334 | 7648 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">107</context></context-group> | |
7335 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">107</context></context-group></trans-unit> | 7649 | </trans-unit> |
7336 | <trans-unit id="3960396487495291449" datatype="html"> | 7650 | <trans-unit id="3960396487495291449" datatype="html"> |
7337 | <source>Video settings updated.</source> | 7651 | <source>Video settings updated.</source> |
7338 | <target state="new">Video settings updated.</target> | 7652 | <target state="new">Video settings updated.</target> |
7339 | 7653 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">133</context></context-group> | |
7340 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 7654 | </trans-unit> |
7341 | <trans-unit id="3326446048041727269" datatype="html"> | 7655 | <trans-unit id="3326446048041727269" datatype="html"> |
7342 | <source>Display/Video settings updated.</source> | 7656 | <source>Display/Video settings updated.</source> |
7343 | <target state="new">Display/Video settings updated.</target> | 7657 | <target state="new">Display/Video settings updated.</target> |
7344 | 7658 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">140</context></context-group> | |
7345 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">140</context></context-group></trans-unit> | 7659 | </trans-unit> |
7346 | <trans-unit id="1137937154872046253"> | 7660 | <trans-unit id="1137937154872046253"> |
7347 | <source>Video channel <x id="PH"/> created.</source> | 7661 | <source>Video channel <x id="PH"/> created.</source> |
7348 | <target>Videokanál | 7662 | <target>Videokanál <x id="PH"/> vytvořen.</target> |
7349 | <x id="PH"/> vytvořen. | 7663 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">57</context></context-group> |
7350 | </target> | 7664 | </trans-unit> |
7351 | |||
7352 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> | ||
7353 | <trans-unit id="8723777130353305761" datatype="html"> | 7665 | <trans-unit id="8723777130353305761" datatype="html"> |
7354 | <source>This name already exists on this instance.</source> | 7666 | <source>This name already exists on this instance.</source> |
7355 | <target state="new">This name already exists on this instance.</target> | 7667 | <target state="new">This name already exists on this instance.</target> |
7356 | 7668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">63</context></context-group> | |
7357 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 7669 | </trans-unit> |
7358 | <trans-unit id="7589345916094713536"> | 7670 | <trans-unit id="7589345916094713536"> |
7359 | <source>Video channel <x id="PH"/> updated.</source> | 7671 | <source>Video channel <x id="PH"/> updated.</source> |
7360 | <target>Videokanál | 7672 | <target>Videokanál <x id="PH"/> aktualizován.</target> |
7361 | <x id="PH"/> aktualizován. | 7673 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">94</context></context-group> |
7362 | </target> | 7674 | </trans-unit> |
7363 | |||
7364 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> | ||
7365 | <trans-unit id="2575302837003821736" datatype="html"> | 7675 | <trans-unit id="2575302837003821736" datatype="html"> |
7366 | <source>Please type the display name of the video channel (<x id="PH"/>) to confirm</source> | 7676 | <source>Please type the display name of the video channel (<x id="PH"/>) to confirm</source> |
7367 | <target state="new">Please type the display name of the video channel ( | 7677 | <target state="new">Please type the display name of the video channel ( |
7368 | <x id="PH"/>) to confirm | 7678 | <x id="PH"/>) to confirm |
7369 | </target> | 7679 | </target> |
7370 | 7680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">67</context></context-group> | |
7371 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 7681 | </trans-unit> |
7372 | <trans-unit id="624066830180032195"> | 7682 | <trans-unit id="624066830180032195"> |
7373 | <source>Video channel <x id="PH"/> deleted.</source> | 7683 | <source>Video channel <x id="PH"/> deleted.</source> |
7374 | <target>Videokanál | 7684 | <target>Videokanál <x id="PH"/> odstraněn.</target> |
7375 | <x id="PH"/> odstraněn. | 7685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">79</context></context-group> |
7376 | </target> | 7686 | </trans-unit> |
7377 | |||
7378 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | ||
7379 | <trans-unit id="6450826648284332649" datatype="html"> | 7687 | <trans-unit id="6450826648284332649" datatype="html"> |
7380 | <source>Views for the day</source> | 7688 | <source>Views for the day</source> |
7381 | <target state="new">Views for the day</target> | 7689 | <target state="new">Views for the day</target> |
7382 | 7690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">98</context></context-group> | |
7383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">98</context></context-group></trans-unit><trans-unit id="6059091237492573541" datatype="html"> | 7691 | </trans-unit> |
7384 | <source>Update video channel</source><target state="new">Update video channel</target> | 7692 | <trans-unit id="6059091237492573541" datatype="html"> |
7385 | 7693 | <source>Update video channel</source> | |
7386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts</context><context context-type="linenumber">31</context></context-group></trans-unit><trans-unit id="6595008830732269870" datatype="html"> | 7694 | <target state="new">Update video channel</target> |
7387 | <source>Not found</source><target state="new">Not found</target> | 7695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts</context><context context-type="linenumber">31</context></context-group> |
7388 | 7696 | </trans-unit> | |
7389 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found-routing.module.ts</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="1009095940160473792" datatype="html"> | 7697 | <trans-unit id="6595008830732269870" datatype="html"> |
7390 | <source>URL parameter is missing in URL parameters</source><target state="new">URL parameter is missing in URL parameters</target> | 7698 | <source>Not found</source> |
7699 | <target state="new">Not found</target> | ||
7700 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found-routing.module.ts</context><context context-type="linenumber">14</context></context-group> | ||
7701 | </trans-unit> | ||
7702 | <trans-unit id="1009095940160473792" datatype="html"> | ||
7703 | <source>URL parameter is missing in URL parameters</source> | ||
7704 | <target state="new">URL parameter is missing in URL parameters</target> | ||
7391 | <context-group purpose="location"> | 7705 | <context-group purpose="location"> |
7392 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> | 7706 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> |
7393 | <context context-type="linenumber">25</context> | 7707 | <context context-type="linenumber">25</context> |
7394 | </context-group> | 7708 | </context-group> |
7395 | </trans-unit><trans-unit id="7553172329217243895" datatype="html"> | 7709 | </trans-unit> |
7396 | <source>Cannot access to the remote resource</source><target state="new">Cannot access to the remote resource</target> | 7710 | <trans-unit id="7553172329217243895" datatype="html"> |
7711 | <source>Cannot access to the remote resource</source> | ||
7712 | <target state="new">Cannot access to the remote resource</target> | ||
7397 | <context-group purpose="location"> | 7713 | <context-group purpose="location"> |
7398 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> | 7714 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> |
7399 | <context context-type="linenumber">48</context> | 7715 | <context context-type="linenumber">48</context> |
7400 | </context-group> | 7716 | </context-group> |
7401 | </trans-unit><trans-unit id="3851357780293085233" datatype="html"> | 7717 | </trans-unit> |
7402 | <source>Remote interaction</source><target state="new">Remote interaction</target> | 7718 | <trans-unit id="3851357780293085233" datatype="html"> |
7719 | <source>Remote interaction</source> | ||
7720 | <target state="new">Remote interaction</target> | ||
7403 | <context-group purpose="location"> | 7721 | <context-group purpose="location"> |
7404 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction-routing.module.ts</context> | 7722 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction-routing.module.ts</context> |
7405 | <context context-type="linenumber">13</context> | 7723 | <context context-type="linenumber">13</context> |
@@ -7407,84 +7725,84 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7407 | </trans-unit> | 7725 | </trans-unit> |
7408 | <trans-unit id="5032453707232754344"> | 7726 | <trans-unit id="5032453707232754344"> |
7409 | <source>Playlist <x id="PH"/> created.</source> | 7727 | <source>Playlist <x id="PH"/> created.</source> |
7410 | <target>Seznam | 7728 | <target>Seznam <x id="PH"/> vytvořen.</target> |
7411 | <x id="PH"/> vytvořen. | 7729 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts</context><context context-type="linenumber">76</context></context-group> |
7412 | </target> | 7730 | </trans-unit> |
7413 | 7731 | <trans-unit id="5674286808255988565" datatype="html"> | |
7414 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="5674286808255988565" datatype="html"> | 7732 | <source>Create</source> |
7415 | <source>Create</source><target state="new">Create</target> | 7733 | <target state="new">Create</target> |
7416 | 7734 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts</context><context context-type="linenumber">89</context></context-group> | |
7417 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts</context><context context-type="linenumber">89</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 7735 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">77</context></context-group> |
7736 | </trans-unit> | ||
7418 | <trans-unit id="8869957234869568361" datatype="html"> | 7737 | <trans-unit id="8869957234869568361" datatype="html"> |
7419 | <source>Update playlist</source> | 7738 | <source>Update playlist</source> |
7420 | <target state="new">Update playlist</target> | 7739 | <target state="new">Update playlist</target> |
7421 | 7740 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">67</context></context-group> | |
7422 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit><trans-unit id="5851560788527570644" datatype="html"> | 7741 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">47</context></context-group> |
7423 | <source>Notifications</source><target state="new">Notifications</target> | 7742 | </trans-unit> |
7424 | 7743 | <trans-unit id="5851560788527570644" datatype="html"> | |
7425 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">109</context></context-group></trans-unit><trans-unit id="6658000829978978023" datatype="html"> | 7744 | <source>Notifications</source> |
7426 | <source>Applications</source><target state="new">Applications</target> | 7745 | <target state="new">Notifications</target> |
7427 | 7746 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">55</context></context-group> | |
7428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">60</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 7747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">109</context></context-group> |
7748 | </trans-unit> | ||
7749 | <trans-unit id="6658000829978978023" datatype="html"> | ||
7750 | <source>Applications</source> | ||
7751 | <target state="new">Applications</target> | ||
7752 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">60</context></context-group> | ||
7753 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">127</context></context-group> | ||
7754 | </trans-unit> | ||
7429 | <trans-unit id="104404386496394770" datatype="html"> | 7755 | <trans-unit id="104404386496394770" datatype="html"> |
7430 | <source>Delete playlist</source> | 7756 | <source>Delete playlist</source> |
7431 | <target state="new">Delete playlist</target> | 7757 | <target state="new">Delete playlist</target> |
7432 | 7758 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">52</context></context-group> | |
7433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 7759 | </trans-unit> |
7434 | <trans-unit id="1431617394009162547"> | 7760 | <trans-unit id="1431617394009162547"> |
7435 | <source>Playlist <x id="PH"/> updated.</source> | 7761 | <source>Playlist <x id="PH"/> updated.</source> |
7436 | <target>Seznam | 7762 | <target>Seznam <x id="PH"/> aktualizován.</target> |
7437 | <x id="PH"/> aktualizován. | 7763 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">97</context></context-group> |
7438 | </target> | 7764 | </trans-unit> |
7439 | |||
7440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">97</context></context-group></trans-unit> | ||
7441 | <trans-unit id="2027805873922338635"> | 7765 | <trans-unit id="2027805873922338635"> |
7442 | <source>Do you really want to delete <x id="PH"/>?</source> | 7766 | <source>Do you really want to delete <x id="PH"/>?</source> |
7443 | <target>Opravdu chcete smazat seznam | 7767 | <target>Opravdu chcete smazat seznam <x id="PH"/>?</target> |
7444 | <x id="PH"/>? | 7768 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">130</context></context-group> |
7445 | </target> | 7769 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">49</context></context-group> |
7446 | 7770 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">126</context></context-group> | |
7447 | 7771 | </trans-unit> | |
7448 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">130</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">49</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit><trans-unit id="4844578664427956129" datatype="html"> | 7772 | <trans-unit id="4844578664427956129" datatype="html"> |
7449 | <source>Change ownership</source><target state="new">Change ownership</target> | 7773 | <source>Change ownership</source> |
7450 | 7774 | <target state="new">Change ownership</target> | |
7451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">167</context></context-group></trans-unit> | 7775 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">167</context></context-group> |
7776 | </trans-unit> | ||
7452 | <trans-unit id="3380608219513805292"> | 7777 | <trans-unit id="3380608219513805292"> |
7453 | <source>Playlist <x id="PH"/> deleted.</source> | 7778 | <source>Playlist <x id="PH"/> deleted.</source> |
7454 | <target>Seznam | 7779 | <target>Seznam <x id="PH"/> smazán.</target> |
7455 | <x id="PH"/> smazán. | 7780 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">135</context></context-group> |
7456 | </target> | 7781 | </trans-unit> |
7457 | |||
7458 | |||
7459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | ||
7460 | <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894"> | 7782 | <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894"> |
7461 | <source>My videos</source> | 7783 | <source>My videos</source> |
7462 | <target>Moje videa</target> | 7784 | <target>Moje videa</target> |
7463 | 7785 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">4</context></context-group> | |
7464 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit><trans-unit id="73022f1676784c4f9b8cdbb322e52b02ccc800b7" datatype="html"> | 7786 | </trans-unit> |
7465 | <source>Ownership changes</source><target state="new">Ownership changes</target> | 7787 | <trans-unit id="73022f1676784c4f9b8cdbb322e52b02ccc800b7" datatype="html"> |
7466 | 7788 | <source>Ownership changes</source> | |
7467 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 7789 | <target state="new">Ownership changes</target> |
7790 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">16</context></context-group> | ||
7791 | </trans-unit> | ||
7468 | <trans-unit id="8197117721861453263"> | 7792 | <trans-unit id="8197117721861453263"> |
7469 | <source>Do you really want to delete <x id="PH"/> videos?</source> | 7793 | <source>Do you really want to delete <x id="PH"/> videos?</source> |
7470 | <target>Opravdu chcete odstranit | 7794 | <target>Opravdu chcete odstranit <x id="PH"/> videí?</target> |
7471 | <x id="PH"/> videí? | 7795 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">103</context></context-group> |
7472 | </target> | 7796 | </trans-unit> |
7473 | |||
7474 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | ||
7475 | <trans-unit id="2728855911908920537"> | 7797 | <trans-unit id="2728855911908920537"> |
7476 | <source> | 7798 | <source><x id="PH"/> videos deleted. </source> |
7477 | <x id="PH"/> videos deleted. | ||
7478 | </source> | ||
7479 | <target> | 7799 | <target> |
7480 | <x id="PH"/> videí odstraněno. | 7800 | <x id="PH"/> videí odstraněno. |
7481 | </target> | 7801 | </target> |
7482 | 7802 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">120</context></context-group> | |
7483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">120</context></context-group></trans-unit> | 7803 | </trans-unit> |
7484 | <trans-unit id="2027805873922338635"> | 7804 | <trans-unit id="2027805873922338635"> |
7485 | <source>Do you really want to delete | 7805 | <source>Do you really want to delete <x id="PH"/>? </source> |
7486 | <x id="PH"/>? | ||
7487 | </source> | ||
7488 | <target>Opravdu chcete odstranit | 7806 | <target>Opravdu chcete odstranit |
7489 | <x id="PH"/>? | 7807 | <x id="PH"/>? |
7490 | </target> | 7808 | </target> |
@@ -7495,87 +7813,95 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7495 | </trans-unit> | 7813 | </trans-unit> |
7496 | <trans-unit id="2767660806989176400"> | 7814 | <trans-unit id="2767660806989176400"> |
7497 | <source>Video <x id="PH"/> deleted.</source> | 7815 | <source>Video <x id="PH"/> deleted.</source> |
7498 | <target>Video | 7816 | <target>Video <x id="PH"/> odstraněno.</target> |
7499 | <x id="PH"/> odstraněno. | 7817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">138</context></context-group> |
7500 | </target> | 7818 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">214</context></context-group> |
7501 | 7819 | </trans-unit> | |
7502 | |||
7503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">138</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">214</context></context-group></trans-unit> | ||
7504 | <trans-unit id="6810714890760227072" datatype="html"> | 7820 | <trans-unit id="6810714890760227072" datatype="html"> |
7505 | <source>Ownership change request sent.</source> | 7821 | <source>Ownership change request sent.</source> |
7506 | <target state="new">Ownership change request sent.</target> | 7822 | <target state="new">Ownership change request sent.</target> |
7507 | 7823 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.ts</context><context context-type="linenumber">64</context></context-group> | |
7508 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit> | 7824 | </trans-unit> |
7509 | <trans-unit id="8dd18d9047c4b2dc9786550dfd8fa99f3b14e17f"> | 7825 | <trans-unit id="8dd18d9047c4b2dc9786550dfd8fa99f3b14e17f"> |
7510 | <source>My channels</source> | 7826 | <source>My channels</source> |
7511 | <target>Moje kanály</target> | 7827 | <target>Moje kanály</target> |
7512 | 7828 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">4</context></context-group> | |
7513 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 7829 | </trans-unit> |
7514 | <trans-unit id="6749bdfd88a223fd464a9b09541342fbf42a0ad6" datatype="html"> | 7830 | <trans-unit id="6749bdfd88a223fd464a9b09541342fbf42a0ad6" datatype="html"> |
7515 | <source>Search your channels</source> | 7831 | <source>Search your channels</source> |
7516 | <target state="new">Search your channels</target> | 7832 | <target state="new">Search your channels</target> |
7517 | 7833 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">11</context></context-group> | |
7518 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 7834 | </trans-unit> |
7519 | <trans-unit id="1d3408919f4d08414721cc22c4be39d93d6691d2"> | 7835 | <trans-unit id="1d3408919f4d08414721cc22c4be39d93d6691d2"> |
7520 | <source>My playlists</source> | 7836 | <source>My playlists</source> |
7521 | <target>Moje seznamy</target> | 7837 | <target>Moje seznamy</target> |
7522 | 7838 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">4</context></context-group> | |
7523 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 7839 | </trans-unit> |
7524 | <trans-unit id="29038e66547b3ba70701fb34eda68834a56f17d9"> | 7840 | <trans-unit id="29038e66547b3ba70701fb34eda68834a56f17d9"> |
7525 | <source>My subscriptions</source> | 7841 | <source>My subscriptions</source> |
7526 | <target>Moje odběry</target> | 7842 | <target>Moje odběry</target> |
7527 | 7843 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">4</context></context-group> | |
7528 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 7844 | </trans-unit> |
7529 | <trans-unit id="31e313e20810b296cb7cc389fd7a3736cff7df44" datatype="html"> | 7845 | <trans-unit id="31e313e20810b296cb7cc389fd7a3736cff7df44" datatype="html"> |
7530 | <source>Search your subscriptions</source> | 7846 | <source>Search your subscriptions</source> |
7531 | <target state="new">Search your subscriptions</target> | 7847 | <target state="new">Search your subscriptions</target> |
7532 | 7848 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">11</context></context-group> | |
7533 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit><trans-unit id="61cb418b053c4b1099a9c7e5a34a9cf52c87f8dd" datatype="html"> | 7849 | </trans-unit> |
7534 | <source>You don't have any subscription yet.</source><target state="new">You don't have any subscription yet.</target> | 7850 | <trans-unit id="61cb418b053c4b1099a9c7e5a34a9cf52c87f8dd" datatype="html"> |
7851 | <source>You don't have any subscription yet.</source> | ||
7852 | <target state="new">You don't have any subscription yet.</target> | ||
7535 | <context-group purpose="location"> | 7853 | <context-group purpose="location"> |
7536 | <context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context> | 7854 | <context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context> |
7537 | <context context-type="linenumber">18</context> | 7855 | <context context-type="linenumber">18</context> |
7538 | </context-group> | 7856 | </context-group> |
7539 | </trans-unit> | 7857 | </trans-unit> |
7540 | |||
7541 | |||
7542 | <trans-unit id="1991904494976135035" datatype="html"> | 7858 | <trans-unit id="1991904494976135035" datatype="html"> |
7543 | <source>My abuse reports</source> | 7859 | <source>My abuse reports</source> |
7544 | <target state="new">My abuse reports</target> | 7860 | <target state="new">My abuse reports</target> |
7545 | 7861 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">118</context></context-group> | |
7546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7862 | </trans-unit> |
7547 | <trans-unit id="5752861278140673787" datatype="html"> | 7863 | <trans-unit id="5752861278140673787" datatype="html"> |
7548 | <source>Ownership changes</source> | 7864 | <source>Ownership changes</source> |
7549 | <target state="new">Ownership changes</target> | 7865 | <target state="new">Ownership changes</target> |
7550 | 7866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">108</context></context-group> | |
7551 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">108</context></context-group></trans-unit><trans-unit id="5983006734882925930" datatype="html"> | 7867 | </trans-unit> |
7552 | <source>My video history</source><target state="new">My video history</target> | 7868 | <trans-unit id="5983006734882925930" datatype="html"> |
7553 | 7869 | <source>My video history</source> | |
7554 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">118</context></context-group></trans-unit><trans-unit id="8181077408762380407" datatype="html"> | 7870 | <target state="new">My video history</target> |
7555 | <source>Channels</source><target state="new">Channels</target> | 7871 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">118</context></context-group> |
7556 | 7872 | </trans-unit> | |
7557 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit><trans-unit id="8936704404804793618" datatype="html"> | 7873 | <trans-unit id="8181077408762380407" datatype="html"> |
7558 | <source>Videos</source><target state="new">Videos</target> | 7874 | <source>Channels</source> |
7559 | 7875 | <target state="new">Channels</target> | |
7560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">54</context></context-group></trans-unit><trans-unit id="1823843876735462104" datatype="html"> | 7876 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">47</context></context-group> |
7561 | <source>Playlists</source><target state="new">Playlists</target> | 7877 | </trans-unit> |
7562 | 7878 | <trans-unit id="8936704404804793618" datatype="html"> | |
7563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 7879 | <source>Videos</source> |
7564 | 7880 | <target state="new">Videos</target> | |
7565 | 7881 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">54</context></context-group> | |
7882 | </trans-unit> | ||
7883 | <trans-unit id="1823843876735462104" datatype="html"> | ||
7884 | <source>Playlists</source> | ||
7885 | <target state="new">Playlists</target> | ||
7886 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">61</context></context-group> | ||
7887 | </trans-unit> | ||
7566 | <trans-unit id="7916647920967632052" datatype="html"> | 7888 | <trans-unit id="7916647920967632052" datatype="html"> |
7567 | <source>max size</source> | 7889 | <source>max size</source> |
7568 | <target state="new">max size</target> | 7890 | <target state="new">max size</target> |
7569 | 7891 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/preview-upload.component.ts</context><context context-type="linenumber">39</context></context-group> | |
7570 | 7892 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.ts</context><context context-type="linenumber">40</context></context-group> | |
7571 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/preview-upload.component.ts</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.ts</context><context context-type="linenumber">40</context></context-group></trans-unit><trans-unit id="6489275254908395777" datatype="html"> | 7893 | </trans-unit> |
7572 | <source>Maximize editor</source><target state="new">Maximize editor</target> | 7894 | <trans-unit id="6489275254908395777" datatype="html"> |
7895 | <source>Maximize editor</source> | ||
7896 | <target state="new">Maximize editor</target> | ||
7573 | <context-group purpose="location"> | 7897 | <context-group purpose="location"> |
7574 | <context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context> | 7898 | <context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context> |
7575 | <context context-type="linenumber">38</context> | 7899 | <context context-type="linenumber">38</context> |
7576 | </context-group> | 7900 | </context-group> |
7577 | </trans-unit><trans-unit id="4243591013849340688" datatype="html"> | 7901 | </trans-unit> |
7578 | <source>Exit maximized editor</source><target state="new">Exit maximized editor</target> | 7902 | <trans-unit id="4243591013849340688" datatype="html"> |
7903 | <source>Exit maximized editor</source> | ||
7904 | <target state="new">Exit maximized editor</target> | ||
7579 | <context-group purpose="location"> | 7905 | <context-group purpose="location"> |
7580 | <context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context> | 7906 | <context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context> |
7581 | <context context-type="linenumber">39</context> | 7907 | <context context-type="linenumber">39</context> |
@@ -7584,492 +7910,488 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7584 | <trans-unit id="6537885755702623401" datatype="html"> | 7910 | <trans-unit id="6537885755702623401" datatype="html"> |
7585 | <source>Now please check your emails to verify your account and complete signup.</source> | 7911 | <source>Now please check your emails to verify your account and complete signup.</source> |
7586 | <target state="new">Now please check your emails to verify your account and complete signup.</target> | 7912 | <target state="new">Now please check your emails to verify your account and complete signup.</target> |
7587 | 7913 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">126</context></context-group> | |
7588 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 7914 | </trans-unit> |
7589 | <trans-unit id="2847376451647729886"> | 7915 | <trans-unit id="2847376451647729886"> |
7590 | <source>You are now logged in as <x id="PH"/>!</source> | 7916 | <source>You are now logged in as <x id="PH"/>!</source> |
7591 | <target>Nyní jste přihlášen/a jako | 7917 | <target>Nyní jste přihlášen/a jako <x id="PH"/>!</target> |
7592 | <x id="PH"/>! | 7918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">134</context></context-group> |
7593 | </target> | 7919 | </trans-unit> |
7594 | |||
7595 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> | ||
7596 | <trans-unit id="2687679787442328897" datatype="html"> | 7920 | <trans-unit id="2687679787442328897" datatype="html"> |
7597 | <source>An email with verification link will be sent to <x id="PH"/>.</source> | 7921 | <source>An email with verification link will be sent to <x id="PH"/>.</source> |
7598 | <target state="new">An email with verification link will be sent to | 7922 | <target state="translated">Email s ověřovacím odkazem zaslán na <x id="PH"/>.</target> |
7599 | <x id="PH"/>. | 7923 | <context-group purpose="location"><context context-type="sourcefile">src/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> |
7600 | </target> | 7924 | </trans-unit> |
7601 | |||
7602 | <context-group purpose="location"><context context-type="sourcefile">src/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> | ||
7603 | <trans-unit id="4180693983967989981"> | 7925 | <trans-unit id="4180693983967989981"> |
7604 | <source>Unable to find user id or verification string.</source> | 7926 | <source>Unable to find user id or verification string.</source> |
7605 | <target>Nelze najít uživatelovo id nebo verifikační řetězec.</target> | 7927 | <target>Nelze najít uživatelovo id nebo verifikační řetězec.</target> |
7606 | 7928 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.ts</context><context context-type="linenumber">38</context></context-group> | |
7607 | 7929 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts</context><context context-type="linenumber">33</context></context-group> | |
7608 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts</context><context context-type="linenumber">33</context></context-group></trans-unit> | 7930 | </trans-unit> |
7609 | <trans-unit id="4802465052975340965"> | 7931 | <trans-unit id="4802465052975340965"> |
7610 | <source>Published videos</source> | 7932 | <source>Published videos</source> |
7611 | <target>Publikovaná videa</target> | 7933 | <target>Publikovaná videa</target> |
7612 | 7934 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">42</context></context-group> | |
7613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">42</context></context-group></trans-unit><trans-unit id="4263581847463492016" datatype="html"> | 7935 | </trans-unit> |
7614 | <source>Published 1 video</source><target state="new">Published 1 video</target> | 7936 | <trans-unit id="4263581847463492016" datatype="html"> |
7615 | 7937 | <source>Published 1 video</source> | |
7616 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">86</context></context-group></trans-unit> | 7938 | <target state="new">Published 1 video</target> |
7617 | 7939 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">86</context></context-group> | |
7940 | </trans-unit> | ||
7618 | <trans-unit id="1783173774503340906"> | 7941 | <trans-unit id="1783173774503340906"> |
7619 | <source>Subscribe to the account</source> | 7942 | <source>Subscribe to the account</source> |
7620 | <target>Odebírat účet</target> | 7943 | <target>Odebírat účet</target> |
7621 | 7944 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">64</context></context-group> | |
7622 | 7945 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">953</context></context-group> | |
7623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">953</context></context-group></trans-unit> | 7946 | </trans-unit> |
7624 | <trans-unit id="4014335318155107533" datatype="html"> | 7947 | <trans-unit id="4014335318155107533" datatype="html"> |
7625 | <source>VIDEO PLAYLISTS</source> | 7948 | <source>VIDEO PLAYLISTS</source> |
7626 | <target state="new">VIDEO PLAYLISTS</target> | 7949 | <target state="new">VIDEO PLAYLISTS</target> |
7627 | 7950 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">70</context></context-group> | |
7628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">70</context></context-group></trans-unit> | 7951 | </trans-unit> |
7629 | <trans-unit id="7709367721354853232"> | 7952 | <trans-unit id="7709367721354853232"> |
7630 | <source>Focus the search bar</source> | 7953 | <source>Focus the search bar</source> |
7631 | <target>Zaměřit na vyhledávací pole</target> | 7954 | <target>Zaměřit na vyhledávací pole</target> |
7632 | 7955 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">313</context></context-group> | |
7633 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">313</context></context-group></trans-unit> | 7956 | </trans-unit> |
7634 | <trans-unit id="4049262826107502276" datatype="html"> | 7957 | <trans-unit id="4049262826107502276" datatype="html"> |
7635 | <source>Toggle the left menu</source> | 7958 | <source>Toggle the left menu</source> |
7636 | <target state="new">Toggle the left menu</target> | 7959 | <target state="new">Toggle the left menu</target> |
7637 | 7960 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">318</context></context-group> | |
7638 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">318</context></context-group></trans-unit> | 7961 | </trans-unit> |
7639 | <trans-unit id="5409372033656550095" datatype="html"> | 7962 | <trans-unit id="5409372033656550095" datatype="html"> |
7640 | <source>Go to the discover videos page</source> | 7963 | <source>Go to the discover videos page</source> |
7641 | <target state="new">Go to the discover videos page</target> | 7964 | <target state="new">Go to the discover videos page</target> |
7642 | 7965 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">323</context></context-group> | |
7643 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">323</context></context-group></trans-unit> | 7966 | </trans-unit> |
7644 | <trans-unit id="4278050445961255445" datatype="html"> | 7967 | <trans-unit id="4278050445961255445" datatype="html"> |
7645 | <source>Go to the trending videos page</source> | 7968 | <source>Go to the trending videos page</source> |
7646 | <target state="new">Go to the trending videos page</target> | 7969 | <target state="new">Go to the trending videos page</target> |
7647 | 7970 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">328</context></context-group> | |
7648 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">328</context></context-group></trans-unit> | 7971 | </trans-unit> |
7649 | <trans-unit id="3242234958443825475" datatype="html"> | 7972 | <trans-unit id="3242234958443825475" datatype="html"> |
7650 | <source>Go to the recently added videos page</source> | 7973 | <source>Go to the recently added videos page</source> |
7651 | <target state="new">Go to the recently added videos page</target> | 7974 | <target state="new">Go to the recently added videos page</target> |
7652 | 7975 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">333</context></context-group> | |
7653 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">333</context></context-group></trans-unit> | 7976 | </trans-unit> |
7654 | <trans-unit id="2887122197778293919" datatype="html"> | 7977 | <trans-unit id="2887122197778293919" datatype="html"> |
7655 | <source>Go to the local videos page</source> | 7978 | <source>Go to the local videos page</source> |
7656 | <target state="new">Go to the local videos page</target> | 7979 | <target state="new">Go to the local videos page</target> |
7657 | 7980 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">338</context></context-group> | |
7658 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">338</context></context-group></trans-unit> | 7981 | </trans-unit> |
7659 | <trans-unit id="8009065619559214982" datatype="html"> | 7982 | <trans-unit id="8009065619559214982" datatype="html"> |
7660 | <source>Go to the videos upload page</source> | 7983 | <source>Go to the videos upload page</source> |
7661 | <target state="new">Go to the videos upload page</target> | 7984 | <target state="new">Go to the videos upload page</target> |
7662 | 7985 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">343</context></context-group> | |
7663 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">343</context></context-group></trans-unit> | 7986 | </trans-unit> |
7664 | <trans-unit id="3779524668013120370" datatype="html"> | 7987 | <trans-unit id="3779524668013120370" datatype="html"> |
7665 | <source>Go to my subscriptions</source> | 7988 | <source>Go to my subscriptions</source> |
7666 | <target state="new">Go to my subscriptions</target> | 7989 | <target state="new">Go to my subscriptions</target> |
7667 | 7990 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">64</context></context-group> | |
7668 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">64</context></context-group></trans-unit> | 7991 | </trans-unit> |
7669 | <trans-unit id="1136469849928650779" datatype="html"> | 7992 | <trans-unit id="1136469849928650779" datatype="html"> |
7670 | <source>Go to my videos</source> | 7993 | <source>Go to my videos</source> |
7671 | <target state="new">Go to my videos</target> | 7994 | <target state="new">Go to my videos</target> |
7672 | 7995 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">68</context></context-group> | |
7673 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">68</context></context-group></trans-unit> | 7996 | </trans-unit> |
7674 | <trans-unit id="7836683738999600376" datatype="html"> | 7997 | <trans-unit id="7836683738999600376" datatype="html"> |
7675 | <source>Go to my imports</source> | 7998 | <source>Go to my imports</source> |
7676 | <target state="new">Go to my imports</target> | 7999 | <target state="new">Go to my imports</target> |
7677 | 8000 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">72</context></context-group> | |
7678 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 8001 | </trans-unit> |
7679 | <trans-unit id="7511292153332773503" datatype="html"> | 8002 | <trans-unit id="7511292153332773503" datatype="html"> |
7680 | <source>Go to my channels</source> | 8003 | <source>Go to my channels</source> |
7681 | <target state="new">Go to my channels</target> | 8004 | <target state="new">Go to my channels</target> |
7682 | 8005 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">76</context></context-group> | |
7683 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="2013324644839511073" datatype="html"> | 8006 | </trans-unit> |
7684 | <source>Cannot retrieve OAuth Client credentials: <x id="PH"/>. | 8007 | <trans-unit id="2013324644839511073" datatype="html"> |
7685 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source><target state="new">Cannot retrieve OAuth Client credentials: <x id="PH"/>. | 8008 | <source>Cannot retrieve OAuth Client credentials: <x id="PH"/>. Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> |
8009 | <target state="new">Cannot retrieve OAuth Client credentials: <x id="PH"/>. | ||
7686 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</target> | 8010 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</target> |
7687 | 8011 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">99</context></context-group> | |
7688 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">99</context></context-group></trans-unit> | 8012 | </trans-unit> |
7689 | |||
7690 | |||
7691 | <trans-unit id="375263728166936544"> | 8013 | <trans-unit id="375263728166936544"> |
7692 | <source>You need to reconnect.</source> | 8014 | <source>You need to reconnect.</source> |
7693 | <target>Musíte se znovu připojit.</target> | 8015 | <target>Musíte se znovu připojit.</target> |
7694 | 8016 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">220</context></context-group> | |
7695 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">220</context></context-group></trans-unit> | 8017 | </trans-unit> |
7696 | <trans-unit id="2206638022166154361" datatype="html"> | 8018 | <trans-unit id="2206638022166154361" datatype="html"> |
7697 | <source>Keyboard Shortcuts:</source> | 8019 | <source>Keyboard Shortcuts:</source> |
7698 | <target state="new">Keyboard Shortcuts:</target> | 8020 | <target state="new">Keyboard Shortcuts:</target> |
7699 | 8021 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/hotkeys/hotkeys.component.ts</context><context context-type="linenumber">11</context></context-group> | |
7700 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/hotkeys/hotkeys.component.ts</context><context context-type="linenumber">11</context></context-group></trans-unit> | 8022 | </trans-unit> |
7701 | <trans-unit id="4648900870671159218"> | 8023 | <trans-unit id="4648900870671159218"> |
7702 | <source>Success</source> | 8024 | <source>Success</source> |
7703 | <target>Úspěšně</target> | 8025 | <target>Úspěšně</target> |
7704 | 8026 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">25</context></context-group> | |
7705 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 8027 | </trans-unit> |
7706 | <trans-unit id="1266887509445371246" datatype="html"> | 8028 | <trans-unit id="1266887509445371246" datatype="html"> |
7707 | <source>Incorrect username or password.</source> | 8029 | <source>Incorrect username or password.</source> |
7708 | <target state="new">Incorrect username or password.</target> | 8030 | <target state="new">Incorrect username or password.</target> |
7709 | 8031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">164</context></context-group> | |
7710 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">164</context></context-group></trans-unit> | 8032 | </trans-unit> |
7711 | <trans-unit id="6974874606619467663" datatype="html"> | 8033 | <trans-unit id="6974874606619467663" datatype="html"> |
7712 | <source>Your account is blocked.</source> | 8034 | <source>Your account is blocked.</source> |
7713 | <target state="new">Your account is blocked.</target> | 8035 | <target state="new">Your account is blocked.</target> |
7714 | 8036 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">165</context></context-group> | |
7715 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit> | 8037 | </trans-unit> |
7716 | |||
7717 | <trans-unit id="7939914198003891823" datatype="html"> | 8038 | <trans-unit id="7939914198003891823" datatype="html"> |
7718 | <source>any language</source> | 8039 | <source>any language</source> |
7719 | <target state="new">any language</target> | 8040 | <target state="new">any language</target> |
7720 | 8041 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">251</context></context-group> | |
7721 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">251</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 8042 | </trans-unit> |
7722 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 8043 | <trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7723 | 8044 | <source>ON <x id="INTERPOLATION"/></source> | |
7724 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">123</context></context-group></trans-unit> | 8045 | <target state="new">ON <x id="INTERPOLATION"/></target> |
8046 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">123</context></context-group> | ||
8047 | </trans-unit> | ||
7725 | <trans-unit id="5633144232269377096" datatype="html"> | 8048 | <trans-unit id="5633144232269377096" datatype="html"> |
7726 | <source>hide</source> | 8049 | <source>hide</source> |
7727 | <target state="new">hide</target> | 8050 | <target state="new">hide</target> |
7728 | 8051 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">284</context></context-group> | |
7729 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">284</context></context-group></trans-unit> | 8052 | </trans-unit> |
7730 | <trans-unit id="8603861867909474404" datatype="html"> | 8053 | <trans-unit id="8603861867909474404" datatype="html"> |
7731 | <source>blur</source> | 8054 | <source>blur</source> |
7732 | <target state="new">blur</target> | 8055 | <target state="new">blur</target> |
7733 | 8056 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">288</context></context-group> | |
7734 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">288</context></context-group></trans-unit> | 8057 | </trans-unit> |
7735 | <trans-unit id="4534458451100881847" datatype="html"> | 8058 | <trans-unit id="4534458451100881847" datatype="html"> |
7736 | <source>display</source> | 8059 | <source>display</source> |
7737 | <target state="new">display</target> | 8060 | <target state="new">display</target> |
7738 | 8061 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">292</context></context-group> | |
7739 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">292</context></context-group></trans-unit> | 8062 | </trans-unit> |
7740 | <trans-unit id="4467323362722952678" datatype="html"> | 8063 | <trans-unit id="4467323362722952678" datatype="html"> |
7741 | <source>Unknown</source> | 8064 | <source>Unknown</source> |
7742 | <target state="new">Unknown</target> | 8065 | <target state="new">Unknown</target> |
7743 | 8066 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">197</context></context-group> | |
7744 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">197</context></context-group></trans-unit> | 8067 | </trans-unit> |
7745 | <trans-unit id="8781423666414310853"> | 8068 | <trans-unit id="8781423666414310853"> |
7746 | <source>Your password has been successfully reset!</source> | 8069 | <source>Your password has been successfully reset!</source> |
7747 | <target>Vaše heslo bylo úspěšně resetováno!</target> | 8070 | <target>Vaše heslo bylo úspěšně resetováno!</target> |
7748 | 8071 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.ts</context><context context-type="linenumber">47</context></context-group> | |
7749 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 8072 | </trans-unit> |
7750 | <trans-unit id="3184700926171002527" datatype="html"> | 8073 | <trans-unit id="3184700926171002527" datatype="html"> |
7751 | <source>Any</source> | 8074 | <source>Any</source> |
7752 | <target state="new">Any</target> | 8075 | <target state="new">Any</target> |
7753 | 8076 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">38</context></context-group> | |
7754 | 8077 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">61</context></context-group> | |
7755 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 8078 | </trans-unit> |
7756 | <trans-unit id="6048892649018070225"> | 8079 | <trans-unit id="6048892649018070225"> |
7757 | <source>Today</source> | 8080 | <source>Today</source> |
7758 | <target>Dnes</target> | 8081 | <target>Dnes</target> |
7759 | 8082 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">42</context></context-group> | |
7760 | 8083 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">116</context></context-group> | |
7761 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">116</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="4498682414491138092" datatype="html"> | 8084 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">70</context></context-group> |
7762 | <source>Yesterday</source><target state="new">Yesterday</target> | 8085 | </trans-unit> |
7763 | 8086 | <trans-unit id="4498682414491138092" datatype="html"> | |
7764 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">117</context></context-group></trans-unit><trans-unit id="5073473933031004097" datatype="html"> | 8087 | <source>Yesterday</source> |
7765 | <source>This week</source><target state="new">This week</target> | 8088 | <target state="new">Yesterday</target> |
7766 | 8089 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">117</context></context-group> | |
7767 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">118</context></context-group></trans-unit><trans-unit id="842657237693374355" datatype="html"> | 8090 | </trans-unit> |
7768 | <source>This month</source><target state="new">This month</target> | 8091 | <trans-unit id="5073473933031004097" datatype="html"> |
7769 | 8092 | <source>This week</source> | |
7770 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">119</context></context-group></trans-unit><trans-unit id="4463380307954693363" datatype="html"> | 8093 | <target state="new">This week</target> |
7771 | <source>Last month</source><target state="new">Last month</target> | 8094 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">118</context></context-group> |
7772 | 8095 | </trans-unit> | |
7773 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">120</context></context-group></trans-unit><trans-unit id="7473676707373218484" datatype="html"> | 8096 | <trans-unit id="842657237693374355" datatype="html"> |
7774 | <source>Older</source><target state="new">Older</target> | 8097 | <source>This month</source> |
7775 | 8098 | <target state="new">This month</target> | |
7776 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">121</context></context-group></trans-unit><trans-unit id="5036991421517255667" datatype="html"> | 8099 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">119</context></context-group> |
7777 | <source>Cannot load more videos. Try again later.</source><target state="new">Cannot load more videos. Try again later.</target> | 8100 | </trans-unit> |
7778 | 8101 | <trans-unit id="4463380307954693363" datatype="html"> | |
7779 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">198</context></context-group></trans-unit> | 8102 | <source>Last month</source> |
8103 | <target state="new">Last month</target> | ||
8104 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">120</context></context-group> | ||
8105 | </trans-unit> | ||
8106 | <trans-unit id="7473676707373218484" datatype="html"> | ||
8107 | <source>Older</source> | ||
8108 | <target state="new">Older</target> | ||
8109 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">121</context></context-group> | ||
8110 | </trans-unit> | ||
8111 | <trans-unit id="5036991421517255667" datatype="html"> | ||
8112 | <source>Cannot load more videos. Try again later.</source> | ||
8113 | <target state="new">Cannot load more videos. Try again later.</target> | ||
8114 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">198</context></context-group> | ||
8115 | </trans-unit> | ||
7780 | <trans-unit id="4873149362496451858" datatype="html"> | 8116 | <trans-unit id="4873149362496451858" datatype="html"> |
7781 | <source>Last 7 days</source> | 8117 | <source>Last 7 days</source> |
7782 | <target state="new">Last 7 days</target> | 8118 | <target state="new">Last 7 days</target> |
7783 | 8119 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">46</context></context-group> | |
7784 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 8120 | </trans-unit> |
7785 | <trans-unit id="2949150997160654358" datatype="html"> | 8121 | <trans-unit id="2949150997160654358" datatype="html"> |
7786 | <source>Last 30 days</source> | 8122 | <source>Last 30 days</source> |
7787 | <target state="new">Last 30 days</target> | 8123 | <target state="new">Last 30 days</target> |
7788 | 8124 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">50</context></context-group> | |
7789 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 8125 | </trans-unit> |
7790 | <trans-unit id="5328600704510694984" datatype="html"> | 8126 | <trans-unit id="5328600704510694984" datatype="html"> |
7791 | <source>Last 365 days</source> | 8127 | <source>Last 365 days</source> |
7792 | <target state="new">Last 365 days</target> | 8128 | <target state="new">Last 365 days</target> |
7793 | 8129 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">54</context></context-group> | |
7794 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">54</context></context-group></trans-unit> | 8130 | </trans-unit> |
7795 | <trans-unit id="8487565500496466433" datatype="html"> | 8131 | <trans-unit id="8487565500496466433" datatype="html"> |
7796 | <source>Short (< 4 min)</source> | 8132 | <source>Short (< 4 min)</source> |
7797 | <target state="new">Short (< 4 min)</target> | 8133 | <target state="new">Short (< 4 min)</target> |
7798 | 8134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">65</context></context-group> | |
7799 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">65</context></context-group></trans-unit> | 8135 | </trans-unit> |
7800 | <trans-unit id="3642535017283477339" datatype="html"> | 8136 | <trans-unit id="3642535017283477339" datatype="html"> |
7801 | <source>Medium (4-10 min)</source> | 8137 | <source>Medium (4-10 min)</source> |
7802 | <target state="new">Medium (4-10 min)</target> | 8138 | <target state="new">Medium (4-10 min)</target> |
7803 | 8139 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">69</context></context-group> | |
7804 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> | 8140 | </trans-unit> |
7805 | <trans-unit id="6613870447286561244" datatype="html"> | 8141 | <trans-unit id="6613870447286561244" datatype="html"> |
7806 | <source>Long (> 10 min)</source> | 8142 | <source>Long (> 10 min)</source> |
7807 | <target state="new">Long (> 10 min)</target> | 8143 | <target state="new">Long (> 10 min)</target> |
7808 | 8144 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">73</context></context-group> | |
7809 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">73</context></context-group></trans-unit> | 8145 | </trans-unit> |
7810 | <trans-unit id="1787083504545967" datatype="html"> | 8146 | <trans-unit id="1787083504545967" datatype="html"> |
7811 | <source>Relevance</source> | 8147 | <source>Relevance</source> |
7812 | <target state="new">Relevance</target> | 8148 | <target state="new">Relevance</target> |
7813 | 8149 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">80</context></context-group> | |
7814 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8150 | </trans-unit> |
7815 | <trans-unit id="7944277186358179990" datatype="html"> | 8151 | <trans-unit id="7944277186358179990" datatype="html"> |
7816 | <source>Publish date</source> | 8152 | <source>Publish date</source> |
7817 | <target state="new">Publish date</target> | 8153 | <target state="new">Publish date</target> |
7818 | 8154 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">84</context></context-group> | |
7819 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> | 8155 | </trans-unit> |
7820 | <trans-unit id="2123659921722214537" datatype="html"> | 8156 | <trans-unit id="2123659921722214537" datatype="html"> |
7821 | <source>Views</source> | 8157 | <source>Views</source> |
7822 | <target state="new">Views</target> | 8158 | <target state="new">Views</target> |
7823 | 8159 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">88</context></context-group> | |
7824 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">88</context></context-group></trans-unit> | 8160 | </trans-unit> |
7825 | <trans-unit id="3208627574396957172" datatype="html"> | 8161 | <trans-unit id="3208627574396957172" datatype="html"> |
7826 | <source>Search index is unavailable. Retrying with instance results instead.</source> | 8162 | <source>Search index is unavailable. Retrying with instance results instead.</source> |
7827 | <target state="new">Search index is unavailable. Retrying with instance results instead.</target> | 8163 | <target state="new">Search index is unavailable. Retrying with instance results instead.</target> |
7828 | 8164 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">171</context></context-group> | |
7829 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit> | 8165 | </trans-unit> |
7830 | <trans-unit id="307702206382241469" datatype="html"> | 8166 | <trans-unit id="307702206382241469" datatype="html"> |
7831 | <source>Search error</source> | 8167 | <source>Search error</source> |
7832 | <target state="new">Search error</target> | 8168 | <target state="new">Search error</target> |
7833 | 8169 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">172</context></context-group> | |
7834 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">172</context></context-group></trans-unit><trans-unit id="4580988005648117665" datatype="html"> | 8170 | </trans-unit> |
7835 | <source>Search</source><target state="new">Search</target> | 8171 | <trans-unit id="4580988005648117665" datatype="html"> |
7836 | 8172 | <source>Search</source> | |
7837 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">230</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">15</context></context-group></trans-unit> | 8173 | <target state="new">Search</target> |
8174 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">15</context></context-group> | ||
8175 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">230</context></context-group> | ||
8176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">15</context></context-group> | ||
8177 | </trans-unit> | ||
7838 | <trans-unit id="5891040073345002614"> | 8178 | <trans-unit id="5891040073345002614"> |
7839 | <source> | 8179 | <source><x id="PH"/> years ago </source> |
7840 | <x id="PH"/> years ago | ||
7841 | </source> | ||
7842 | <target>před | 8180 | <target>před |
7843 | <x id="PH"/> lety | 8181 | <x id="PH"/> lety |
7844 | </target> | 8182 | </target> |
7845 | 8183 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">12</context></context-group> | |
7846 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">12</context></context-group></trans-unit> | 8184 | </trans-unit> |
7847 | <trans-unit id="6852474139781331706" datatype="html"> | 8185 | <trans-unit id="6852474139781331706" datatype="html"> |
7848 | <source> | 8186 | <source><x id="PH"/> year ago </source> |
7849 | <x id="PH"/> year ago | ||
7850 | </source> | ||
7851 | <target state="new"> | 8187 | <target state="new"> |
7852 | <x id="PH"/> year ago | 8188 | <x id="PH"/> year ago |
7853 | </target> | 8189 | </target> |
7854 | 8190 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">13</context></context-group> | |
7855 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">13</context></context-group></trans-unit> | 8191 | </trans-unit> |
7856 | <trans-unit id="9022576335789205254"> | 8192 | <trans-unit id="9022576335789205254"> |
7857 | <source> | 8193 | <source><x id="PH"/> months ago </source> |
7858 | <x id="PH"/> months ago | ||
7859 | </source> | ||
7860 | <target>před | 8194 | <target>před |
7861 | <x id="PH"/> měsíci | 8195 | <x id="PH"/> měsíci |
7862 | </target> | 8196 | </target> |
7863 | 8197 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">16</context></context-group> | |
7864 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">16</context></context-group></trans-unit> | 8198 | </trans-unit> |
7865 | <trans-unit id="9139359498077914820"> | 8199 | <trans-unit id="9139359498077914820"> |
7866 | <source> | 8200 | <source><x id="PH"/> month ago </source> |
7867 | <x id="PH"/> month ago | ||
7868 | </source> | ||
7869 | <target>před | 8201 | <target>před |
7870 | <x id="PH"/> měsícem | 8202 | <x id="PH"/> měsícem |
7871 | </target> | 8203 | </target> |
7872 | 8204 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">17</context></context-group> | |
7873 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">17</context></context-group></trans-unit> | 8205 | </trans-unit> |
7874 | <trans-unit id="6473426250245763193"> | 8206 | <trans-unit id="6473426250245763193"> |
7875 | <source> | 8207 | <source><x id="PH"/> weeks ago </source> |
7876 | <x id="PH"/> weeks ago | ||
7877 | </source> | ||
7878 | <target>před | 8208 | <target>před |
7879 | <x id="PH"/> týdny | 8209 | <x id="PH"/> týdny |
7880 | </target> | 8210 | </target> |
7881 | 8211 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">20</context></context-group> | |
7882 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">20</context></context-group></trans-unit> | 8212 | </trans-unit> |
7883 | <trans-unit id="3334373857036457679"> | 8213 | <trans-unit id="3334373857036457679"> |
7884 | <source> | 8214 | <source><x id="PH"/> week ago </source> |
7885 | <x id="PH"/> week ago | ||
7886 | </source> | ||
7887 | <target>před | 8215 | <target>před |
7888 | <x id="PH"/> týdnem | 8216 | <x id="PH"/> týdnem |
7889 | </target> | 8217 | </target> |
7890 | 8218 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">21</context></context-group> | |
7891 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">21</context></context-group></trans-unit> | 8219 | </trans-unit> |
7892 | <trans-unit id="5186107770140555014"> | 8220 | <trans-unit id="5186107770140555014"> |
7893 | <source> | 8221 | <source><x id="PH"/> days ago </source> |
7894 | <x id="PH"/> days ago | ||
7895 | </source> | ||
7896 | <target>před | 8222 | <target>před |
7897 | <x id="PH"/> dny | 8223 | <x id="PH"/> dny |
7898 | </target> | 8224 | </target> |
7899 | 8225 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">24</context></context-group> | |
7900 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">24</context></context-group></trans-unit> | 8226 | </trans-unit> |
7901 | <trans-unit id="5968335347732866388"> | 8227 | <trans-unit id="5968335347732866388"> |
7902 | <source> | 8228 | <source><x id="PH"/> day ago </source> |
7903 | <x id="PH"/> day ago | ||
7904 | </source> | ||
7905 | <target>před | 8229 | <target>před |
7906 | <x id="PH"/> dnem | 8230 | <x id="PH"/> dnem |
7907 | </target> | 8231 | </target> |
7908 | 8232 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">25</context></context-group> | |
7909 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 8233 | </trans-unit> |
7910 | <trans-unit id="6522428509564266583"> | 8234 | <trans-unit id="6522428509564266583"> |
7911 | <source> | 8235 | <source><x id="PH"/> hours ago </source> |
7912 | <x id="PH"/> hours ago | ||
7913 | </source> | ||
7914 | <target>před | 8236 | <target>před |
7915 | <x id="PH"/> hodinami | 8237 | <x id="PH"/> hodinami |
7916 | </target> | 8238 | </target> |
7917 | 8239 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">28</context></context-group> | |
7918 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 8240 | </trans-unit> |
7919 | <trans-unit id="1791228261125511283"> | 8241 | <trans-unit id="1791228261125511283"> |
7920 | <source> | 8242 | <source><x id="PH"/> hour ago </source> |
7921 | <x id="PH"/> hour ago | ||
7922 | </source> | ||
7923 | <target>před | 8243 | <target>před |
7924 | <x id="PH"/> hodinou | 8244 | <x id="PH"/> hodinou |
7925 | </target> | 8245 | </target> |
7926 | 8246 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">29</context></context-group> | |
7927 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">29</context></context-group></trans-unit> | 8247 | </trans-unit> |
7928 | <trans-unit id="8256466313580256940"> | 8248 | <trans-unit id="8256466313580256940"> |
7929 | <source> | 8249 | <source><x id="PH"/> min ago </source> |
7930 | <x id="PH"/> min ago | ||
7931 | </source> | ||
7932 | <target>před | 8250 | <target>před |
7933 | <x id="PH"/> minutami | 8251 | <x id="PH"/> minutami |
7934 | </target> | 8252 | </target> |
7935 | 8253 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">32</context></context-group> | |
7936 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 8254 | </trans-unit> |
7937 | <trans-unit id="4733690367258997247" datatype="html"> | 8255 | <trans-unit id="4733690367258997247" datatype="html"> |
7938 | <source>just now</source> | 8256 | <source>just now</source> |
7939 | <target state="new">just now</target> | 8257 | <target state="new">just now</target> |
7940 | 8258 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">34</context></context-group> | |
7941 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 8259 | </trans-unit> |
7942 | |||
7943 | |||
7944 | <trans-unit id="2222108104954671970" datatype="html"> | 8260 | <trans-unit id="2222108104954671970" datatype="html"> |
7945 | <source> | 8261 | <source><x id="PH"/> sec </source> |
7946 | <x id="PH"/> sec | ||
7947 | </source> | ||
7948 | <target state="new"> | 8262 | <target state="new"> |
7949 | <x id="PH"/> sec | 8263 | <x id="PH"/> sec |
7950 | </target> | 8264 | </target> |
7951 | 8265 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">30</context></context-group> | |
7952 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">30</context></context-group></trans-unit><trans-unit id="6499699285816188400" datatype="html"> | 8266 | </trans-unit> |
7953 | <source>Abuse reports</source><target state="new">Abuse reports</target> | 8267 | <trans-unit id="6499699285816188400" datatype="html"> |
7954 | 8268 | <source>Abuse reports</source> | |
7955 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit><trans-unit id="4930506384627295710" datatype="html"> | 8269 | <target state="new">Abuse reports</target> |
7956 | <source>Settings</source><target state="new">Settings</target> | 8270 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">41</context></context-group> |
7957 | 8271 | </trans-unit> | |
7958 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 8272 | <trans-unit id="4930506384627295710" datatype="html"> |
8273 | <source>Settings</source> | ||
8274 | <target state="new">Settings</target> | ||
8275 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">50</context></context-group> | ||
8276 | </trans-unit> | ||
7959 | <trans-unit id="9178182467454450952"> | 8277 | <trans-unit id="9178182467454450952"> |
7960 | <source>Confirm</source> | 8278 | <source>Confirm</source> |
7961 | <target>Potvrdit</target> | 8279 | <target>Potvrdit</target> |
7962 | 8280 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.ts</context><context context-type="linenumber">39</context></context-group> | |
7963 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 8281 | </trans-unit> |
7964 | <trans-unit id="7784486624424057376"> | 8282 | <trans-unit id="7784486624424057376"> |
7965 | <source>Instance name is required.</source> | 8283 | <source>Instance name is required.</source> |
7966 | <target>Jméno instance je vyžadováno.</target> | 8284 | <target>Jméno instance je vyžadováno.</target> |
7967 | 8285 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">7</context></context-group> | |
7968 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">7</context></context-group></trans-unit> | 8286 | </trans-unit> |
7969 | <trans-unit id="3281212084219111058"> | 8287 | <trans-unit id="3281212084219111058"> |
7970 | <source>Short description should not be longer than 250 characters.</source> | 8288 | <source>Short description should not be longer than 250 characters.</source> |
7971 | <target>Krátký popis by neměl přesahovat 250 znaků.</target> | 8289 | <target>Krátký popis by neměl přesahovat 250 znaků.</target> |
7972 | 8290 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">14</context></context-group> | |
7973 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 8291 | </trans-unit> |
7974 | <trans-unit id="6033463036257195528"> | 8292 | <trans-unit id="6033463036257195528"> |
7975 | <source>Twitter username is required.</source> | 8293 | <source>Twitter username is required.</source> |
7976 | <target>Uživatelské jméno pro Twitter je vyžadováno.</target> | 8294 | <target>Uživatelské jméno pro Twitter je vyžadováno.</target> |
7977 | 8295 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">21</context></context-group> | |
7978 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">21</context></context-group></trans-unit> | 8296 | </trans-unit> |
7979 | <trans-unit id="8198703669620791633"> | 8297 | <trans-unit id="8198703669620791633"> |
7980 | <source>Previews cache size is required.</source> | 8298 | <source>Previews cache size is required.</source> |
7981 | <target>Mezipaměť pro náhledy je vyžadována.</target> | 8299 | <target>Mezipaměť pro náhledy je vyžadována.</target> |
7982 | 8300 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">28</context></context-group> | |
7983 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 8301 | </trans-unit> |
7984 | <trans-unit id="3971192070835972256"> | 8302 | <trans-unit id="3971192070835972256"> |
7985 | <source>Previews cache size must be greater than 1.</source> | 8303 | <source>Previews cache size must be greater than 1.</source> |
7986 | <target>Velikost nezipaměti pro náhledy musí být větší než 1.</target> | 8304 | <target>Velikost nezipaměti pro náhledy musí být větší než 1.</target> |
7987 | 8305 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">29</context></context-group> | |
7988 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">29</context></context-group></trans-unit> | 8306 | </trans-unit> |
7989 | <trans-unit id="2903453036126968504"> | 8307 | <trans-unit id="2903453036126968504"> |
7990 | <source>Previews cache size must be a number.</source> | 8308 | <source>Previews cache size must be a number.</source> |
7991 | <target>Velikost mezipaměti pro náhledy musí být číslo.</target> | 8309 | <target>Velikost mezipaměti pro náhledy musí být číslo.</target> |
7992 | 8310 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">30</context></context-group> | |
7993 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">30</context></context-group></trans-unit> | 8311 | </trans-unit> |
7994 | <trans-unit id="6941976540222684735" datatype="html"> | 8312 | <trans-unit id="6941976540222684735" datatype="html"> |
7995 | <source>Captions cache size is required.</source> | 8313 | <source>Captions cache size is required.</source> |
7996 | <target state="new">Captions cache size is required.</target> | 8314 | <target state="new">Captions cache size is required.</target> |
7997 | 8315 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">37</context></context-group> | |
7998 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 8316 | </trans-unit> |
7999 | <trans-unit id="780869536819343075" datatype="html"> | 8317 | <trans-unit id="780869536819343075" datatype="html"> |
8000 | <source>Captions cache size must be greater than 1.</source> | 8318 | <source>Captions cache size must be greater than 1.</source> |
8001 | <target state="new">Captions cache size must be greater than 1.</target> | 8319 | <target state="new">Captions cache size must be greater than 1.</target> |
8002 | 8320 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">38</context></context-group> | |
8003 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 8321 | </trans-unit> |
8004 | <trans-unit id="2498218540197718478" datatype="html"> | 8322 | <trans-unit id="2498218540197718478" datatype="html"> |
8005 | <source>Captions cache size must be a number.</source> | 8323 | <source>Captions cache size must be a number.</source> |
8006 | <target state="new">Captions cache size must be a number.</target> | 8324 | <target state="new">Captions cache size must be a number.</target> |
8007 | 8325 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">39</context></context-group> | |
8008 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 8326 | </trans-unit> |
8009 | <trans-unit id="818392297325723982"> | 8327 | <trans-unit id="818392297325723982"> |
8010 | <source>Signup limit is required.</source> | 8328 | <source>Signup limit is required.</source> |
8011 | <target>Limit registrací je vyžadován.</target> | 8329 | <target>Limit registrací je vyžadován.</target> |
8012 | 8330 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">46</context></context-group> | |
8013 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 8331 | </trans-unit> |
8014 | <trans-unit id="2582606912307765585"> | 8332 | <trans-unit id="2582606912307765585"> |
8015 | <source>Signup limit must be greater than 1.</source> | 8333 | <source>Signup limit must be greater than 1.</source> |
8016 | <target>Limit registrací musí být větší než 1.</target> | 8334 | <target>Limit registrací musí být větší než 1.</target> |
8017 | 8335 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">47</context></context-group> | |
8018 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 8336 | </trans-unit> |
8019 | <trans-unit id="2555843408410000965"> | 8337 | <trans-unit id="2555843408410000965"> |
8020 | <source>Signup limit must be a number.</source> | 8338 | <source>Signup limit must be a number.</source> |
8021 | <target>Limit registrací musí být číslo.</target> | 8339 | <target>Limit registrací musí být číslo.</target> |
8022 | 8340 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">48</context></context-group> | |
8023 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 8341 | </trans-unit> |
8024 | <trans-unit id="240096858386658337"> | 8342 | <trans-unit id="240096858386658337"> |
8025 | <source>Admin email is required.</source> | 8343 | <source>Admin email is required.</source> |
8026 | <target>E-mail administrátora je vyžadován.</target> | 8344 | <target>E-mail administrátora je vyžadován.</target> |
8027 | 8345 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">55</context></context-group> | |
8028 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> | 8346 | </trans-unit> |
8029 | <trans-unit id="4392533896009432078"> | 8347 | <trans-unit id="4392533896009432078"> |
8030 | <source>Admin email must be valid.</source> | 8348 | <source>Admin email must be valid.</source> |
8031 | <target>E-mail administrátora musí být platný.</target> | 8349 | <target>E-mail administrátora musí být platný.</target> |
8032 | 8350 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">56</context></context-group> | |
8033 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">56</context></context-group></trans-unit> | 8351 | </trans-unit> |
8034 | <trans-unit id="6172217783476989430"> | 8352 | <trans-unit id="6172217783476989430"> |
8035 | <source>Transcoding threads is required.</source> | 8353 | <source>Transcoding threads is required.</source> |
8036 | <target>Počet vláken pro překódování je vyžadován.</target> | 8354 | <target>Počet vláken pro překódování je vyžadován.</target> |
8037 | 8355 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">63</context></context-group> | |
8038 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 8356 | </trans-unit> |
8039 | <trans-unit id="5320424292625586941" datatype="html"> | 8357 | <trans-unit id="5320424292625586941" datatype="html"> |
8040 | <source>Transcoding threads must be greater or equal to 0.</source> | 8358 | <source>Transcoding threads must be greater or equal to 0.</source> |
8041 | <target state="new">Transcoding threads must be greater or equal to 0.</target> | 8359 | <target state="new">Transcoding threads must be greater or equal to 0.</target> |
8042 | 8360 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">64</context></context-group> | |
8043 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">64</context></context-group></trans-unit> | 8361 | </trans-unit> |
8044 | <trans-unit id="75589896034107743" datatype="html"> | 8362 | <trans-unit id="75589896034107743" datatype="html"> |
8045 | <source>Index URL should be a URL</source> | 8363 | <source>Index URL should be a URL</source> |
8046 | <target state="new">Index URL should be a URL</target> | 8364 | <target state="new">Index URL should be a URL</target> |
8047 | 8365 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">71</context></context-group> | |
8048 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">71</context></context-group></trans-unit> | 8366 | </trans-unit> |
8049 | <trans-unit id="3964961007325702684" datatype="html"> | 8367 | <trans-unit id="3964961007325702684" datatype="html"> |
8050 | <source>Search index URL should be a URL</source> | 8368 | <source>Search index URL should be a URL</source> |
8051 | <target state="new">Search index URL should be a URL</target> | 8369 | <target state="new">Search index URL should be a URL</target> |
8052 | 8370 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">78</context></context-group> | |
8053 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8371 | </trans-unit> |
8054 | <trans-unit id="8602814243662345124"> | 8372 | <trans-unit id="8602814243662345124"> |
8055 | <source>Email is required.</source> | 8373 | <source>Email is required.</source> |
8056 | <target>E-mail je vyžadován.</target> | 8374 | <target>E-mail je vyžadován.</target> |
8057 | 8375 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">37</context></context-group> | |
8058 | 8376 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">7</context></context-group> | |
8059 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">7</context></context-group></trans-unit> | 8377 | </trans-unit> |
8060 | <trans-unit id="4591482207344282590"> | 8378 | <trans-unit id="4591482207344282590"> |
8061 | <source>Email must be valid.</source> | 8379 | <source>Email must be valid.</source> |
8062 | <target>E-mail musí být platný.</target> | 8380 | <target>E-mail musí být platný.</target> |
8063 | 8381 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">38</context></context-group> | |
8064 | 8382 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">8</context></context-group> | |
8065 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">8</context></context-group></trans-unit><trans-unit id="544279804045883862" datatype="html"> | 8383 | </trans-unit> |
8066 | <source>Handle is required.</source><target state="new">Handle is required.</target> | 8384 | <trans-unit id="544279804045883862" datatype="html"> |
8385 | <source>Handle is required.</source> | ||
8386 | <target state="new">Handle is required.</target> | ||
8067 | <context-group purpose="location"> | 8387 | <context-group purpose="location"> |
8068 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> | 8388 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> |
8069 | <context context-type="linenumber">48</context> | 8389 | <context context-type="linenumber">48</context> |
8070 | </context-group> | 8390 | </context-group> |
8071 | </trans-unit><trans-unit id="4415706443503032539" datatype="html"> | 8391 | </trans-unit> |
8072 | <source>Handle must be valid (chocobozzz@example.com).</source><target state="new">Handle must be valid (chocobozzz@example.com).</target> | 8392 | <trans-unit id="4415706443503032539" datatype="html"> |
8393 | <source>Handle must be valid (chocobozzz@example.com).</source> | ||
8394 | <target state="new">Handle must be valid (chocobozzz@example.com).</target> | ||
8073 | <context-group purpose="location"> | 8395 | <context-group purpose="location"> |
8074 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> | 8396 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> |
8075 | <context context-type="linenumber">49</context> | 8397 | <context context-type="linenumber">49</context> |
@@ -8078,358 +8400,375 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8078 | <trans-unit id="4968369344159400023" datatype="html"> | 8400 | <trans-unit id="4968369344159400023" datatype="html"> |
8079 | <source>Your name is required.</source> | 8401 | <source>Your name is required.</source> |
8080 | <target state="new">Your name is required.</target> | 8402 | <target state="new">Your name is required.</target> |
8081 | 8403 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">19</context></context-group> | |
8082 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">19</context></context-group></trans-unit> | 8404 | </trans-unit> |
8083 | <trans-unit id="5799695548385507586" datatype="html"> | 8405 | <trans-unit id="5799695548385507586" datatype="html"> |
8084 | <source>Your name must be at least 1 character long.</source> | 8406 | <source>Your name must be at least 1 character long.</source> |
8085 | <target state="new">Your name must be at least 1 character long.</target> | 8407 | <target state="new">Your name must be at least 1 character long.</target> |
8086 | 8408 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">20</context></context-group> | |
8087 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">20</context></context-group></trans-unit> | 8409 | </trans-unit> |
8088 | <trans-unit id="3600004643604731577" datatype="html"> | 8410 | <trans-unit id="3600004643604731577" datatype="html"> |
8089 | <source>Your name cannot be more than 120 characters long.</source> | 8411 | <source>Your name cannot be more than 120 characters long.</source> |
8090 | <target state="new">Your name cannot be more than 120 characters long.</target> | 8412 | <target state="new">Your name cannot be more than 120 characters long.</target> |
8091 | 8413 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">21</context></context-group> | |
8092 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">21</context></context-group></trans-unit> | 8414 | </trans-unit> |
8093 | <trans-unit id="3981804692726336204" datatype="html"> | 8415 | <trans-unit id="3981804692726336204" datatype="html"> |
8094 | <source>A subject is required.</source> | 8416 | <source>A subject is required.</source> |
8095 | <target state="new">A subject is required.</target> | 8417 | <target state="new">A subject is required.</target> |
8096 | 8418 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">32</context></context-group> | |
8097 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 8419 | </trans-unit> |
8098 | <trans-unit id="7787099349830266861" datatype="html"> | 8420 | <trans-unit id="7787099349830266861" datatype="html"> |
8099 | <source>The subject must be at least 1 character long.</source> | 8421 | <source>The subject must be at least 1 character long.</source> |
8100 | <target state="new">The subject must be at least 1 character long.</target> | 8422 | <target state="new">The subject must be at least 1 character long.</target> |
8101 | 8423 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">33</context></context-group> | |
8102 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">33</context></context-group></trans-unit> | 8424 | </trans-unit> |
8103 | <trans-unit id="5905189237950302829" datatype="html"> | 8425 | <trans-unit id="5905189237950302829" datatype="html"> |
8104 | <source>The subject cannot be more than 120 characters long.</source> | 8426 | <source>The subject cannot be more than 120 characters long.</source> |
8105 | <target state="new">The subject cannot be more than 120 characters long.</target> | 8427 | <target state="new">The subject cannot be more than 120 characters long.</target> |
8106 | 8428 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">34</context></context-group> | |
8107 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 8429 | </trans-unit> |
8108 | <trans-unit id="847704400962945123" datatype="html"> | 8430 | <trans-unit id="847704400962945123" datatype="html"> |
8109 | <source>A message is required.</source> | 8431 | <source>A message is required.</source> |
8110 | <target state="new">A message is required.</target> | 8432 | <target state="new">A message is required.</target> |
8111 | 8433 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">45</context></context-group> | |
8112 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 8434 | </trans-unit> |
8113 | <trans-unit id="3871842658394273178" datatype="html"> | 8435 | <trans-unit id="3871842658394273178" datatype="html"> |
8114 | <source>The message must be at least 3 characters long.</source> | 8436 | <source>The message must be at least 3 characters long.</source> |
8115 | <target state="new">The message must be at least 3 characters long.</target> | 8437 | <target state="new">The message must be at least 3 characters long.</target> |
8116 | 8438 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">46</context></context-group> | |
8117 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 8439 | </trans-unit> |
8118 | <trans-unit id="3731145759205895653" datatype="html"> | 8440 | <trans-unit id="3731145759205895653" datatype="html"> |
8119 | <source>The message cannot be more than 5000 characters long.</source> | 8441 | <source>The message cannot be more than 5000 characters long.</source> |
8120 | <target state="new">The message cannot be more than 5000 characters long.</target> | 8442 | <target state="new">The message cannot be more than 5000 characters long.</target> |
8121 | 8443 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">47</context></context-group> | |
8122 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 8444 | </trans-unit> |
8123 | <trans-unit id="3868123820758341861"> | 8445 | <trans-unit id="3868123820758341861"> |
8124 | <source>Username is required.</source> | 8446 | <source>Username is required.</source> |
8125 | <target>Uživatelské jméno je vyžadováno.</target> | 8447 | <target>Uživatelské jméno je vyžadováno.</target> |
8126 | 8448 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">12</context></context-group> | |
8127 | 8449 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/login-validators.ts</context><context context-type="linenumber">9</context></context-group> | |
8128 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/login-validators.ts</context><context context-type="linenumber">9</context></context-group></trans-unit> | 8450 | </trans-unit> |
8129 | <trans-unit id="3577237269587081090"> | 8451 | <trans-unit id="3577237269587081090"> |
8130 | <source>Password is required.</source> | 8452 | <source>Password is required.</source> |
8131 | <target>Heslo je vyžadováno.</target> | 8453 | <target>Heslo je vyžadováno.</target> |
8132 | 8454 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">58</context></context-group> | |
8133 | 8455 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">69</context></context-group> | |
8134 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/login-validators.ts</context><context context-type="linenumber">18</context></context-group></trans-unit> | 8456 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/login-validators.ts</context><context context-type="linenumber">18</context></context-group> |
8457 | </trans-unit> | ||
8135 | <trans-unit id="3152303769378345477"> | 8458 | <trans-unit id="3152303769378345477"> |
8136 | <source>Confirmation of the password is required.</source> | 8459 | <source>Confirmation of the password is required.</source> |
8137 | <target>Potvrzení hesla je vyžadováno.</target> | 8460 | <target>Potvrzení hesla je vyžadováno.</target> |
8138 | 8461 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/reset-password-validators.ts</context><context context-type="linenumber">9</context></context-group> | |
8139 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/reset-password-validators.ts</context><context context-type="linenumber">9</context></context-group></trans-unit> | 8462 | </trans-unit> |
8140 | <trans-unit id="4786141633412279939" datatype="html"> | 8463 | <trans-unit id="4786141633412279939" datatype="html"> |
8141 | <source>Username must be at least 1 character long.</source> | 8464 | <source>Username must be at least 1 character long.</source> |
8142 | <target state="new">Username must be at least 1 character long.</target> | 8465 | <target state="new">Username must be at least 1 character long.</target> |
8143 | 8466 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">13</context></context-group> | |
8144 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">13</context></context-group></trans-unit> | 8467 | </trans-unit> |
8145 | <trans-unit id="1019755749203839300" datatype="html"> | 8468 | <trans-unit id="1019755749203839300" datatype="html"> |
8146 | <source>Username cannot be more than 50 characters long.</source> | 8469 | <source>Username cannot be more than 50 characters long.</source> |
8147 | <target state="new">Username cannot be more than 50 characters long.</target> | 8470 | <target state="new">Username cannot be more than 50 characters long.</target> |
8148 | 8471 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">14</context></context-group> | |
8149 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 8472 | </trans-unit> |
8150 | <trans-unit id="5621067256208426608" datatype="html"> | 8473 | <trans-unit id="5621067256208426608" datatype="html"> |
8151 | <source>Username should be lowercase alphanumeric; dots and underscores are allowed.</source> | 8474 | <source>Username should be lowercase alphanumeric; dots and underscores are allowed.</source> |
8152 | <target state="new">Username should be lowercase alphanumeric; dots and underscores are allowed.</target> | 8475 | <target state="new">Username should be lowercase alphanumeric; dots and underscores are allowed.</target> |
8153 | 8476 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">15</context></context-group> | |
8154 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">15</context></context-group></trans-unit> | 8477 | </trans-unit> |
8155 | <trans-unit id="6288154707582132676" datatype="html"> | 8478 | <trans-unit id="6288154707582132676" datatype="html"> |
8156 | <source>Channel name is required.</source> | 8479 | <source>Channel name is required.</source> |
8157 | <target state="new">Channel name is required.</target> | 8480 | <target state="new">Channel name is required.</target> |
8158 | 8481 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">27</context></context-group> | |
8159 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">27</context></context-group></trans-unit> | 8482 | </trans-unit> |
8160 | <trans-unit id="8178814467139959283" datatype="html"> | 8483 | <trans-unit id="8178814467139959283" datatype="html"> |
8161 | <source>Channel name must be at least 1 character long.</source> | 8484 | <source>Channel name must be at least 1 character long.</source> |
8162 | <target state="new">Channel name must be at least 1 character long.</target> | 8485 | <target state="new">Channel name must be at least 1 character long.</target> |
8163 | 8486 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">28</context></context-group> | |
8164 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 8487 | </trans-unit> |
8165 | <trans-unit id="8602785819772117007" datatype="html"> | 8488 | <trans-unit id="8602785819772117007" datatype="html"> |
8166 | <source>Channel name cannot be more than 50 characters long.</source> | 8489 | <source>Channel name cannot be more than 50 characters long.</source> |
8167 | <target state="new">Channel name cannot be more than 50 characters long.</target> | 8490 | <target state="new">Channel name cannot be more than 50 characters long.</target> |
8168 | 8491 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">29</context></context-group> | |
8169 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="3419415520566928243" datatype="html"> | 8492 | </trans-unit> |
8170 | <source>Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.</source><target state="new">Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.</target> | 8493 | <trans-unit id="3419415520566928243" datatype="html"> |
8171 | 8494 | <source>Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.</source> | |
8172 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">30</context></context-group></trans-unit> | 8495 | <target state="new">Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.</target> |
8173 | 8496 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">30</context></context-group> | |
8497 | </trans-unit> | ||
8174 | <trans-unit id="525871656034789056"> | 8498 | <trans-unit id="525871656034789056"> |
8175 | <source>Password must be at least 6 characters long.</source> | 8499 | <source>Password must be at least 6 characters long.</source> |
8176 | <target>Heslo musí mít délku minimálně 6 znaků.</target> | 8500 | <target>Heslo musí mít délku minimálně 6 znaků.</target> |
8177 | 8501 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">70</context></context-group> | |
8178 | 8502 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">81</context></context-group> | |
8179 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8503 | </trans-unit> |
8180 | <trans-unit id="1099684476181448167"> | 8504 | <trans-unit id="1099684476181448167"> |
8181 | <source>Password cannot be more than 255 characters long.</source> | 8505 | <source>Password cannot be more than 255 characters long.</source> |
8182 | <target>Heslo nemůže být delší než 255 znaků.</target> | 8506 | <target>Heslo nemůže být delší než 255 znaků.</target> |
8183 | 8507 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">71</context></context-group> | |
8184 | 8508 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">82</context></context-group> | |
8185 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">71</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 8509 | </trans-unit> |
8186 | <trans-unit id="3392630942539073768"> | 8510 | <trans-unit id="3392630942539073768"> |
8187 | <source>The new password and the confirmed password do not correspond.</source> | 8511 | <source>The new password and the confirmed password do not correspond.</source> |
8188 | <target>Nové heslo a jeho potvrzení nesouhlasí.</target> | 8512 | <target>Nové heslo a jeho potvrzení nesouhlasí.</target> |
8189 | 8513 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">89</context></context-group> | |
8190 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">89</context></context-group></trans-unit> | 8514 | </trans-unit> |
8191 | <trans-unit id="2027337371129904473"> | 8515 | <trans-unit id="2027337371129904473"> |
8192 | <source>Video quota is required.</source> | 8516 | <source>Video quota is required.</source> |
8193 | <target>Limit na videa je vyžadován.</target> | 8517 | <target>Limit na videa je vyžadován.</target> |
8194 | 8518 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">96</context></context-group> | |
8195 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">96</context></context-group></trans-unit> | 8519 | </trans-unit> |
8196 | <trans-unit id="267386529333143660"> | 8520 | <trans-unit id="267386529333143660"> |
8197 | <source>Quota must be greater than -1.</source> | 8521 | <source>Quota must be greater than -1.</source> |
8198 | <target>Limit na videa musí být větší než -1.</target> | 8522 | <target>Limit na videa musí být větší než -1.</target> |
8199 | 8523 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">97</context></context-group> | |
8200 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">97</context></context-group></trans-unit> | 8524 | </trans-unit> |
8201 | <trans-unit id="1220179061234048936" datatype="html"> | 8525 | <trans-unit id="1220179061234048936" datatype="html"> |
8202 | <source>Daily upload limit is required.</source> | 8526 | <source>Daily upload limit is required.</source> |
8203 | <target state="new">Daily upload limit is required.</target> | 8527 | <target state="new">Daily upload limit is required.</target> |
8204 | 8528 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">103</context></context-group> | |
8205 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | 8529 | </trans-unit> |
8206 | <trans-unit id="8959404382357999234" datatype="html"> | 8530 | <trans-unit id="8959404382357999234" datatype="html"> |
8207 | <source>Daily upload limit must be greater than -1.</source> | 8531 | <source>Daily upload limit must be greater than -1.</source> |
8208 | <target state="new">Daily upload limit must be greater than -1.</target> | 8532 | <target state="new">Daily upload limit must be greater than -1.</target> |
8209 | 8533 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">104</context></context-group> | |
8210 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">104</context></context-group></trans-unit> | 8534 | </trans-unit> |
8211 | <trans-unit id="4796798537475457493"> | 8535 | <trans-unit id="4796798537475457493"> |
8212 | <source>User role is required.</source> | 8536 | <source>User role is required.</source> |
8213 | <target>Role uživatele je vyžadována.</target> | 8537 | <target>Role uživatele je vyžadována.</target> |
8214 | 8538 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">111</context></context-group> | |
8215 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">111</context></context-group></trans-unit> | 8539 | </trans-unit> |
8216 | <trans-unit id="2761226139624435788"> | 8540 | <trans-unit id="2761226139624435788"> |
8217 | <source>Description must be at least 3 characters long.</source> | 8541 | <source>Description must be at least 3 characters long.</source> |
8218 | <target>Popis musí mít délku minimálně 3 znaky.</target> | 8542 | <target>Popis musí mít délku minimálně 3 znaky.</target> |
8219 | 8543 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">123</context></context-group> | |
8220 | 8544 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">38</context></context-group> | |
8221 | 8545 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">33</context></context-group> | |
8222 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">123</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">33</context></context-group></trans-unit> | 8546 | </trans-unit> |
8223 | <trans-unit id="4717982586356605243" datatype="html"> | 8547 | <trans-unit id="4717982586356605243" datatype="html"> |
8224 | <source>Description cannot be more than 1000 characters long.</source> | 8548 | <source>Description cannot be more than 1000 characters long.</source> |
8225 | <target state="new">Description cannot be more than 1000 characters long.</target> | 8549 | <target state="new">Description cannot be more than 1000 characters long.</target> |
8226 | 8550 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">124</context></context-group> | |
8227 | 8551 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">39</context></context-group> | |
8228 | 8552 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">34</context></context-group> | |
8229 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">124</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 8553 | </trans-unit> |
8230 | <trans-unit id="1814372869868173571" datatype="html"> | 8554 | <trans-unit id="1814372869868173571" datatype="html"> |
8231 | <source>You must agree with the instance terms in order to register on it.</source> | 8555 | <source>You must agree with the instance terms in order to register on it.</source> |
8232 | <target state="new">You must agree with the instance terms in order to register on it.</target> | 8556 | <target state="new">You must agree with the instance terms in order to register on it.</target> |
8233 | 8557 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">131</context></context-group> | |
8234 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">131</context></context-group></trans-unit> | 8558 | </trans-unit> |
8235 | <trans-unit id="7803960725351649605" datatype="html"> | 8559 | <trans-unit id="7803960725351649605" datatype="html"> |
8236 | <source>Ban reason must be at least 3 characters long.</source> | 8560 | <source>Ban reason must be at least 3 characters long.</source> |
8237 | <target state="new">Ban reason must be at least 3 characters long.</target> | 8561 | <target state="new">Ban reason must be at least 3 characters long.</target> |
8238 | 8562 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">141</context></context-group> | |
8239 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">141</context></context-group></trans-unit> | 8563 | </trans-unit> |
8240 | <trans-unit id="3851609012243698179" datatype="html"> | 8564 | <trans-unit id="3851609012243698179" datatype="html"> |
8241 | <source>Ban reason cannot be more than 250 characters long.</source> | 8565 | <source>Ban reason cannot be more than 250 characters long.</source> |
8242 | <target state="new">Ban reason cannot be more than 250 characters long.</target> | 8566 | <target state="new">Ban reason cannot be more than 250 characters long.</target> |
8243 | 8567 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">142</context></context-group> | |
8244 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">142</context></context-group></trans-unit> | 8568 | </trans-unit> |
8245 | <trans-unit id="6632896893630378443"> | 8569 | <trans-unit id="6632896893630378443"> |
8246 | <source>Display name is required.</source> | 8570 | <source>Display name is required.</source> |
8247 | <target>Zobrazované jméno je vyžadováno.</target> | 8571 | <target>Zobrazované jméno je vyžadováno.</target> |
8248 | 8572 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">153</context></context-group> | |
8249 | 8573 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">26</context></context-group> | |
8250 | 8574 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">12</context></context-group> | |
8251 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">153</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">12</context></context-group></trans-unit> | 8575 | </trans-unit> |
8252 | <trans-unit id="1303578752658966736" datatype="html"> | 8576 | <trans-unit id="1303578752658966736" datatype="html"> |
8253 | <source>Display name must be at least 1 character long.</source> | 8577 | <source>Display name must be at least 1 character long.</source> |
8254 | <target state="new">Display name must be at least 1 character long.</target> | 8578 | <target state="new">Display name must be at least 1 character long.</target> |
8255 | 8579 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">154</context></context-group> | |
8256 | 8580 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">27</context></context-group> | |
8257 | 8581 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">13</context></context-group> | |
8258 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">154</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">13</context></context-group></trans-unit> | 8582 | </trans-unit> |
8259 | <trans-unit id="4613240543124934954" datatype="html"> | 8583 | <trans-unit id="4613240543124934954" datatype="html"> |
8260 | <source>Display name cannot be more than 50 characters long.</source> | 8584 | <source>Display name cannot be more than 50 characters long.</source> |
8261 | <target state="new">Display name cannot be more than 50 characters long.</target> | 8585 | <target state="new">Display name cannot be more than 50 characters long.</target> |
8262 | 8586 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">155</context></context-group> | |
8263 | 8587 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">28</context></context-group> | |
8264 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">155</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 8588 | </trans-unit> |
8265 | <trans-unit id="1000468652492651683"> | 8589 | <trans-unit id="1000468652492651683"> |
8266 | <source>Report reason is required.</source> | 8590 | <source>Report reason is required.</source> |
8267 | <target>Důvod nahlášení je vyžadován.</target> | 8591 | <target>Důvod nahlášení je vyžadován.</target> |
8268 | 8592 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">7</context></context-group> | |
8269 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">7</context></context-group></trans-unit> | 8593 | </trans-unit> |
8270 | <trans-unit id="1109780973109145433"> | 8594 | <trans-unit id="1109780973109145433"> |
8271 | <source>Report reason must be at least 2 characters long.</source> | 8595 | <source>Report reason must be at least 2 characters long.</source> |
8272 | <target>Důvod nahlášení musí mít délku minimálně 2 znaky.</target> | 8596 | <target>Důvod nahlášení musí mít délku minimálně 2 znaky.</target> |
8273 | 8597 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">8</context></context-group> | |
8274 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">8</context></context-group></trans-unit> | 8598 | </trans-unit> |
8275 | <trans-unit id="5414573937278525654" datatype="html"> | 8599 | <trans-unit id="5414573937278525654" datatype="html"> |
8276 | <source>Report reason cannot be more than 3000 characters long.</source> | 8600 | <source>Report reason cannot be more than 3000 characters long.</source> |
8277 | <target state="new">Report reason cannot be more than 3000 characters long.</target> | 8601 | <target state="new">Report reason cannot be more than 3000 characters long.</target> |
8278 | 8602 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">9</context></context-group> | |
8279 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">9</context></context-group></trans-unit> | 8603 | </trans-unit> |
8280 | <trans-unit id="8779567454442277762" datatype="html"> | 8604 | <trans-unit id="8779567454442277762" datatype="html"> |
8281 | <source>Moderation comment is required.</source> | 8605 | <source>Moderation comment is required.</source> |
8282 | <target state="new">Moderation comment is required.</target> | 8606 | <target state="new">Moderation comment is required.</target> |
8283 | 8607 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">16</context></context-group> | |
8284 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">16</context></context-group></trans-unit> | 8608 | </trans-unit> |
8285 | <trans-unit id="8954765410376245909" datatype="html"> | 8609 | <trans-unit id="8954765410376245909" datatype="html"> |
8286 | <source>Moderation comment must be at least 2 characters long.</source> | 8610 | <source>Moderation comment must be at least 2 characters long.</source> |
8287 | <target state="new">Moderation comment must be at least 2 characters long.</target> | 8611 | <target state="new">Moderation comment must be at least 2 characters long.</target> |
8288 | 8612 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">17</context></context-group> | |
8289 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">17</context></context-group></trans-unit> | 8613 | </trans-unit> |
8290 | <trans-unit id="6316804467108244906" datatype="html"> | 8614 | <trans-unit id="6316804467108244906" datatype="html"> |
8291 | <source>Moderation comment cannot be more than 3000 characters long.</source> | 8615 | <source>Moderation comment cannot be more than 3000 characters long.</source> |
8292 | <target state="new">Moderation comment cannot be more than 3000 characters long.</target> | 8616 | <target state="new">Moderation comment cannot be more than 3000 characters long.</target> |
8293 | 8617 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">18</context></context-group> | |
8294 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">18</context></context-group></trans-unit> | 8618 | </trans-unit> |
8295 | <trans-unit id="8835075531528610034" datatype="html"> | 8619 | <trans-unit id="8835075531528610034" datatype="html"> |
8296 | <source>Abuse message is required.</source> | 8620 | <source>Abuse message is required.</source> |
8297 | <target state="new">Abuse message is required.</target> | 8621 | <target state="new">Abuse message is required.</target> |
8298 | 8622 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">25</context></context-group> | |
8299 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 8623 | </trans-unit> |
8300 | <trans-unit id="9034042966936514516" datatype="html"> | 8624 | <trans-unit id="9034042966936514516" datatype="html"> |
8301 | <source>Abuse message must be at least 2 characters long.</source> | 8625 | <source>Abuse message must be at least 2 characters long.</source> |
8302 | <target state="new">Abuse message must be at least 2 characters long.</target> | 8626 | <target state="new">Abuse message must be at least 2 characters long.</target> |
8303 | 8627 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">26</context></context-group> | |
8304 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 8628 | </trans-unit> |
8305 | <trans-unit id="7989186574443390119" datatype="html"> | 8629 | <trans-unit id="7989186574443390119" datatype="html"> |
8306 | <source>Abuse message cannot be more than 3000 characters long.</source> | 8630 | <source>Abuse message cannot be more than 3000 characters long.</source> |
8307 | <target state="new">Abuse message cannot be more than 3000 characters long.</target> | 8631 | <target state="new">Abuse message cannot be more than 3000 characters long.</target> |
8308 | 8632 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">27</context></context-group> | |
8309 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">27</context></context-group></trans-unit> | 8633 | </trans-unit> |
8310 | <trans-unit id="6700357678556223012" datatype="html"> | 8634 | <trans-unit id="6700357678556223012" datatype="html"> |
8311 | <source>The channel is required.</source> | 8635 | <source>The channel is required.</source> |
8312 | <target state="new">The channel is required.</target> | 8636 | <target state="new">The channel is required.</target> |
8313 | 8637 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-ownership-change-validators.ts</context><context context-type="linenumber">7</context></context-group> | |
8314 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-ownership-change-validators.ts</context><context context-type="linenumber">7</context></context-group></trans-unit> | 8638 | </trans-unit> |
8315 | <trans-unit id="9191505323045740697" datatype="html"> | 8639 | <trans-unit id="9191505323045740697" datatype="html"> |
8316 | <source>Block reason must be at least 2 characters long.</source> | 8640 | <source>Block reason must be at least 2 characters long.</source> |
8317 | <target state="new">Block reason must be at least 2 characters long.</target> | 8641 | <target state="new">Block reason must be at least 2 characters long.</target> |
8318 | 8642 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-block-validators.ts</context><context context-type="linenumber">7</context></context-group> | |
8319 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-block-validators.ts</context><context context-type="linenumber">7</context></context-group></trans-unit> | 8643 | </trans-unit> |
8320 | <trans-unit id="8581623418602419755" datatype="html"> | 8644 | <trans-unit id="8581623418602419755" datatype="html"> |
8321 | <source>Block reason cannot be more than 300 characters long.</source> | 8645 | <source>Block reason cannot be more than 300 characters long.</source> |
8322 | <target state="new">Block reason cannot be more than 300 characters long.</target> | 8646 | <target state="new">Block reason cannot be more than 300 characters long.</target> |
8323 | 8647 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-block-validators.ts</context><context context-type="linenumber">8</context></context-group> | |
8324 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-block-validators.ts</context><context context-type="linenumber">8</context></context-group></trans-unit> | 8648 | </trans-unit> |
8325 | <trans-unit id="1099619384694370156" datatype="html"> | 8649 | <trans-unit id="1099619384694370156" datatype="html"> |
8326 | <source>Video caption language is required.</source> | 8650 | <source>Video caption language is required.</source> |
8327 | <target state="new">Video caption language is required.</target> | 8651 | <target state="new">Video caption language is required.</target> |
8328 | 8652 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context><context context-type="linenumber">7</context></context-group> | |
8329 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context><context context-type="linenumber">7</context></context-group></trans-unit> | 8653 | </trans-unit> |
8330 | <trans-unit id="3438639650276868976" datatype="html"> | 8654 | <trans-unit id="3438639650276868976" datatype="html"> |
8331 | <source>Video caption file is required.</source> | 8655 | <source>Video caption file is required.</source> |
8332 | <target state="new">Video caption file is required.</target> | 8656 | <target state="new">Video caption file is required.</target> |
8333 | 8657 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context><context context-type="linenumber">14</context></context-group> | |
8334 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 8658 | </trans-unit> |
8335 | <trans-unit id="7365924714339585574" datatype="html"> | 8659 | <trans-unit id="7365924714339585574" datatype="html"> |
8336 | <source>The username is required.</source> | 8660 | <source>The username is required.</source> |
8337 | <target state="new">The username is required.</target> | 8661 | <target state="new">The username is required.</target> |
8338 | 8662 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-ownership-change-validators.ts</context><context context-type="linenumber">14</context></context-group> | |
8339 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-ownership-change-validators.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 8663 | </trans-unit> |
8340 | <trans-unit id="3954099618513992825" datatype="html"> | 8664 | <trans-unit id="3954099618513992825" datatype="html"> |
8341 | <source>You can only transfer ownership to a local account</source> | 8665 | <source>You can only transfer ownership to a local account</source> |
8342 | <target state="new">You can only transfer ownership to a local account</target> | 8666 | <target state="new">You can only transfer ownership to a local account</target> |
8343 | 8667 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-ownership-change-validators.ts</context><context context-type="linenumber">15</context></context-group> | |
8344 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-ownership-change-validators.ts</context><context context-type="linenumber">15</context></context-group></trans-unit> | 8668 | </trans-unit> |
8345 | <trans-unit id="4444753420973870540" datatype="html"> | 8669 | <trans-unit id="4444753420973870540" datatype="html"> |
8346 | <source>Name is required.</source> | 8670 | <source>Name is required.</source> |
8347 | <target state="new">Name is required.</target> | 8671 | <target state="new">Name is required.</target> |
8348 | 8672 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">12</context></context-group> | |
8349 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">12</context></context-group></trans-unit> | 8673 | </trans-unit> |
8350 | <trans-unit id="4006797705713167676" datatype="html"> | 8674 | <trans-unit id="4006797705713167676" datatype="html"> |
8351 | <source>Name must be at least 1 character long.</source> | 8675 | <source>Name must be at least 1 character long.</source> |
8352 | <target state="new">Name must be at least 1 character long.</target> | 8676 | <target state="new">Name must be at least 1 character long.</target> |
8353 | 8677 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">13</context></context-group> | |
8354 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">13</context></context-group></trans-unit> | 8678 | </trans-unit> |
8355 | <trans-unit id="2233809696503670883" datatype="html"> | 8679 | <trans-unit id="2233809696503670883" datatype="html"> |
8356 | <source>Name cannot be more than 50 characters long.</source> | 8680 | <source>Name cannot be more than 50 characters long.</source> |
8357 | <target state="new">Name cannot be more than 50 characters long.</target> | 8681 | <target state="new">Name cannot be more than 50 characters long.</target> |
8358 | 8682 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">14</context></context-group> | |
8359 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 8683 | </trans-unit> |
8360 | <trans-unit id="7915656854942800659" datatype="html"> | 8684 | <trans-unit id="7915656854942800659" datatype="html"> |
8361 | <source>Name should be lowercase alphanumeric; dots and underscores are allowed.</source> | 8685 | <source>Name should be lowercase alphanumeric; dots and underscores are allowed.</source> |
8362 | <target state="new">Name should be lowercase alphanumeric; dots and underscores are allowed.</target> | 8686 | <target state="new">Name should be lowercase alphanumeric; dots and underscores are allowed.</target> |
8363 | 8687 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">15</context></context-group> | |
8364 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">15</context></context-group></trans-unit> | 8688 | </trans-unit> |
8365 | <trans-unit id="6880459830525364741"> | 8689 | <trans-unit id="6880459830525364741"> |
8366 | <source>Support text must be at least 3 characters long.</source> | 8690 | <source>Support text must be at least 3 characters long.</source> |
8367 | <target>Text pro podporu musí mít délku minimálně 3 znaky.</target> | 8691 | <target>Text pro podporu musí mít délku minimálně 3 znaky.</target> |
8368 | 8692 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">49</context></context-group> | |
8369 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">49</context></context-group></trans-unit><trans-unit id="6461548560008228165" datatype="html"> | 8693 | </trans-unit> |
8370 | <source>Support text cannot be more than 1000 characters long</source><target state="new">Support text cannot be more than 1000 characters long</target> | 8694 | <trans-unit id="6461548560008228165" datatype="html"> |
8371 | 8695 | <source>Support text cannot be more than 1000 characters long</source> | |
8372 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">50</context></context-group></trans-unit><trans-unit id="8c9434491bf113074890c9c975d89d5f7727d2d9" datatype="html"> | 8696 | <target state="new">Support text cannot be more than 1000 characters long</target> |
8373 | <source> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> | 8697 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">50</context></context-group> |
8374 | "/> to learn how to use the PeerTube live streaming feature. | 8698 | </trans-unit> |
8375 | </source><target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> | 8699 | <trans-unit id="8c9434491bf113074890c9c975d89d5f7727d2d9" datatype="html"> |
8376 | "/> to learn how to use the PeerTube live streaming feature. | 8700 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. </source> |
8701 | <target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. | ||
8377 | </target> | 8702 | </target> |
8378 | <context-group purpose="location"> | 8703 | <context-group purpose="location"> |
8379 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-documentation-link.component.html</context> | 8704 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-documentation-link.component.html</context> |
8380 | <context context-type="linenumber">2,4</context> | 8705 | <context context-type="linenumber">2,4</context> |
8381 | </context-group> | 8706 | </context-group> |
8382 | </trans-unit> | 8707 | </trans-unit> |
8383 | |||
8384 | <trans-unit id="4267638333776227701"> | 8708 | <trans-unit id="4267638333776227701"> |
8385 | <source>Comment is required.</source> | 8709 | <source>Comment is required.</source> |
8386 | <target>Komentář je vyžadován.</target> | 8710 | <target>Komentář je vyžadován.</target> |
8387 | 8711 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-comment-validators.ts</context><context context-type="linenumber">7</context></context-group> | |
8388 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-comment-validators.ts</context><context context-type="linenumber">7</context></context-group></trans-unit> | 8712 | </trans-unit> |
8389 | <trans-unit id="71132671234491945"> | 8713 | <trans-unit id="71132671234491945"> |
8390 | <source>Comment must be at least 2 characters long.</source> | 8714 | <source>Comment must be at least 2 characters long.</source> |
8391 | <target>Komentář musí mít délku minimálně 2 znaky.</target> | 8715 | <target>Komentář musí mít délku minimálně 2 znaky.</target> |
8392 | 8716 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-comment-validators.ts</context><context context-type="linenumber">8</context></context-group> | |
8393 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-comment-validators.ts</context><context context-type="linenumber">8</context></context-group></trans-unit> | 8717 | </trans-unit> |
8394 | <trans-unit id="4148250392704331190"> | 8718 | <trans-unit id="4148250392704331190"> |
8395 | <source>Comment cannot be more than 3000 characters long.</source> | 8719 | <source>Comment cannot be more than 3000 characters long.</source> |
8396 | <target>Komentář nesmí být delší než 3000 znaků.</target> | 8720 | <target>Komentář nesmí být delší než 3000 znaků.</target> |
8397 | 8721 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-comment-validators.ts</context><context context-type="linenumber">9</context></context-group> | |
8398 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-comment-validators.ts</context><context context-type="linenumber">9</context></context-group></trans-unit> | 8722 | </trans-unit> |
8399 | <trans-unit id="6854100952145697527"> | 8723 | <trans-unit id="6854100952145697527"> |
8400 | <source>Display name cannot be more than 120 characters long.</source> | 8724 | <source>Display name cannot be more than 120 characters long.</source> |
8401 | <target>Zobrazované jméno nesmí být delší než 120 znaků.</target> | 8725 | <target>Zobrazované jméno nesmí být delší než 120 znaků.</target> |
8402 | 8726 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">14</context></context-group> | |
8403 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 8727 | </trans-unit> |
8404 | <trans-unit id="6198895122092095739" datatype="html"> | 8728 | <trans-unit id="6198895122092095739" datatype="html"> |
8405 | <source>Privacy is required.</source> | 8729 | <source>Privacy is required.</source> |
8406 | <target state="new">Privacy is required.</target> | 8730 | <target state="new">Privacy is required.</target> |
8407 | 8731 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">23</context></context-group> | |
8408 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">23</context></context-group></trans-unit> | 8732 | </trans-unit> |
8409 | <trans-unit id="1276238402004616037" datatype="html"> | 8733 | <trans-unit id="1276238402004616037" datatype="html"> |
8410 | <source>The channel is required when the playlist is public.</source> | 8734 | <source>The channel is required when the playlist is public.</source> |
8411 | <target state="new">The channel is required when the playlist is public.</target> | 8735 | <target state="new">The channel is required when the playlist is public.</target> |
8412 | 8736 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">41</context></context-group> | |
8413 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">41</context></context-group></trans-unit><trans-unit id="d8ae45f6eb0e2d78efd70b4e80e132784aa65cf1" datatype="html"> | 8737 | </trans-unit> |
8414 | <source>Live information</source><target state="new">Live information</target> | 8738 | <trans-unit id="d8ae45f6eb0e2d78efd70b4e80e132784aa65cf1" datatype="html"> |
8415 | 8739 | <source>Live information</source> | |
8416 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit><trans-unit id="fc840cbc744829dee0c0d50e8d32e45beb731c36" datatype="html"> | 8740 | <target state="new">Live information</target> |
8417 | <source>Live RTMP Url</source><target state="new">Live RTMP Url</target> | 8741 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">3</context></context-group> |
8418 | 8742 | </trans-unit> | |
8419 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">19</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">218</context></context-group></trans-unit><trans-unit id="39d142e6915c4f2d0f9b45e76c176eec6a48c1c1" datatype="html"> | 8743 | <trans-unit id="fc840cbc744829dee0c0d50e8d32e45beb731c36" datatype="html"> |
8420 | <source>Live stream key</source><target state="new">Live stream key</target> | 8744 | <source>Live RTMP Url</source> |
8421 | 8745 | <target state="new">Live RTMP Url</target> | |
8422 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">223</context></context-group></trans-unit><trans-unit id="930826dd8818902aaf1300253dbee4717ceb35ee" datatype="html"> | 8746 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">19</context></context-group> |
8423 | <source>⚠️ Never share your stream key with anyone.</source><target state="new">⚠️ Never share your stream key with anyone.</target> | 8747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">218</context></context-group> |
8424 | 8748 | </trans-unit> | |
8425 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">226</context></context-group></trans-unit><trans-unit id="5b5759ae8d3274fdc904e1ef5bb4a52c2251de66" datatype="html"> | 8749 | <trans-unit id="39d142e6915c4f2d0f9b45e76c176eec6a48c1c1" datatype="html"> |
8426 | <source>Permanent live</source><target state="new">Permanent live</target> | 8750 | <source>Live stream key</source> |
8751 | <target state="new">Live stream key</target> | ||
8752 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">24</context></context-group> | ||
8753 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">223</context></context-group> | ||
8754 | </trans-unit> | ||
8755 | <trans-unit id="930826dd8818902aaf1300253dbee4717ceb35ee" datatype="html"> | ||
8756 | <source>⚠️ Never share your stream key with anyone.</source> | ||
8757 | <target state="new">⚠️ Never share your stream key with anyone.</target> | ||
8758 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">27</context></context-group> | ||
8759 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">226</context></context-group> | ||
8760 | </trans-unit> | ||
8761 | <trans-unit id="5b5759ae8d3274fdc904e1ef5bb4a52c2251de66" datatype="html"> | ||
8762 | <source>Permanent live</source> | ||
8763 | <target state="new">Permanent live</target> | ||
8427 | <context-group purpose="location"> | 8764 | <context-group purpose="location"> |
8428 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> | 8765 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> |
8429 | <context context-type="linenumber">10</context> | 8766 | <context context-type="linenumber">10</context> |
8430 | </context-group> | 8767 | </context-group> |
8431 | </trans-unit><trans-unit id="6bf2a2b88df254434e6a415bfd44c8efb5fe40a7" datatype="html"> | 8768 | </trans-unit> |
8432 | <source>Replay will be saved</source><target state="new">Replay will be saved</target> | 8769 | <trans-unit id="6bf2a2b88df254434e6a415bfd44c8efb5fe40a7" datatype="html"> |
8770 | <source>Replay will be saved</source> | ||
8771 | <target state="new">Replay will be saved</target> | ||
8433 | <context-group purpose="location"> | 8772 | <context-group purpose="location"> |
8434 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> | 8773 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> |
8435 | <context context-type="linenumber">11</context> | 8774 | <context context-type="linenumber">11</context> |
@@ -8438,518 +8777,497 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8438 | <trans-unit id="5437132245714159662"> | 8777 | <trans-unit id="5437132245714159662"> |
8439 | <source>Video name is required.</source> | 8778 | <source>Video name is required.</source> |
8440 | <target>Jméno videa je vyžadováno.</target> | 8779 | <target>Jméno videa je vyžadováno.</target> |
8441 | 8780 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">7</context></context-group> | |
8442 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">7</context></context-group></trans-unit> | 8781 | </trans-unit> |
8443 | <trans-unit id="2807676084745266104"> | 8782 | <trans-unit id="2807676084745266104"> |
8444 | <source>Video name must be at least 3 characters long.</source> | 8783 | <source>Video name must be at least 3 characters long.</source> |
8445 | <target>Jméno videa musí mít délku minimálně 3 znaky.</target> | 8784 | <target>Jméno videa musí mít délku minimálně 3 znaky.</target> |
8446 | 8785 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">8</context></context-group> | |
8447 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">8</context></context-group></trans-unit> | 8786 | </trans-unit> |
8448 | <trans-unit id="2155414141025589556"> | 8787 | <trans-unit id="2155414141025589556"> |
8449 | <source>Video name cannot be more than 120 characters long.</source> | 8788 | <source>Video name cannot be more than 120 characters long.</source> |
8450 | <target>Jméno videa nesmí být delší než 120 znaků.</target> | 8789 | <target>Jméno videa nesmí být delší než 120 znaků.</target> |
8451 | 8790 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">9</context></context-group> | |
8452 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">9</context></context-group></trans-unit> | 8791 | </trans-unit> |
8453 | <trans-unit id="9115337161597088460"> | 8792 | <trans-unit id="9115337161597088460"> |
8454 | <source>Video privacy is required.</source> | 8793 | <source>Video privacy is required.</source> |
8455 | <target>Ochrana soukromí videa je vyžadována.</target> | 8794 | <target>Ochrana soukromí videa je vyžadována.</target> |
8456 | 8795 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">16</context></context-group> | |
8457 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">16</context></context-group></trans-unit> | 8796 | </trans-unit> |
8458 | <trans-unit id="7309902991450450996"> | 8797 | <trans-unit id="7309902991450450996"> |
8459 | <source>Video channel is required.</source> | 8798 | <source>Video channel is required.</source> |
8460 | <target>Video kanál je vyžadován.</target> | 8799 | <target>Video kanál je vyžadován.</target> |
8461 | 8800 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">43</context></context-group> | |
8462 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> | 8801 | </trans-unit> |
8463 | <trans-unit id="3959376623771116873"> | 8802 | <trans-unit id="3959376623771116873"> |
8464 | <source>Video description must be at least 3 characters long.</source> | 8803 | <source>Video description must be at least 3 characters long.</source> |
8465 | <target>Popis videa musí mít délku minimálně 3 znaky.</target> | 8804 | <target>Popis videa musí mít délku minimálně 3 znaky.</target> |
8466 | 8805 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">50</context></context-group> | |
8467 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 8806 | </trans-unit> |
8468 | <trans-unit id="725195891739570830"> | 8807 | <trans-unit id="725195891739570830"> |
8469 | <source>Video description cannot be more than 10000 characters long.</source> | 8808 | <source>Video description cannot be more than 10000 characters long.</source> |
8470 | <target>Popis videa nesmí být delší než 10000 znaků.</target> | 8809 | <target>Popis videa nesmí být delší než 10000 znaků.</target> |
8471 | 8810 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">51</context></context-group> | |
8472 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 8811 | </trans-unit> |
8473 | <trans-unit id="142488285332434408"> | 8812 | <trans-unit id="142488285332434408"> |
8474 | <source>A tag should be more than 2 characters long.</source> | 8813 | <source>A tag should be more than 2 characters long.</source> |
8475 | <target>Tag musí mít délku minimálně 2 znaky.</target> | 8814 | <target>Tag musí mít délku minimálně 2 znaky.</target> |
8476 | 8815 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">58</context></context-group> | |
8477 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 8816 | </trans-unit> |
8478 | <trans-unit id="691846635236293620"> | 8817 | <trans-unit id="691846635236293620"> |
8479 | <source>A tag should be less than 30 characters long.</source> | 8818 | <source>A tag should be less than 30 characters long.</source> |
8480 | <target>Tag nesmí být delší než 30 znaků.</target> | 8819 | <target>Tag nesmí být delší než 30 znaků.</target> |
8481 | 8820 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">59</context></context-group> | |
8482 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">59</context></context-group></trans-unit> | 8821 | </trans-unit> |
8483 | <trans-unit id="4146790476782316573" datatype="html"> | 8822 | <trans-unit id="4146790476782316573" datatype="html"> |
8484 | <source>A maximum of 5 tags can be used on a video.</source> | 8823 | <source>A maximum of 5 tags can be used on a video.</source> |
8485 | <target state="new">A maximum of 5 tags can be used on a video.</target> | 8824 | <target state="new">A maximum of 5 tags can be used on a video.</target> |
8486 | 8825 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">66</context></context-group> | |
8487 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="2389667090302909529" datatype="html"> | 8826 | </trans-unit> |
8488 | <source>A tag should be more than 1 and less than 30 characters long.</source><target state="new">A tag should be more than 1 and less than 30 characters long.</target> | 8827 | <trans-unit id="2389667090302909529" datatype="html"> |
8828 | <source>A tag should be more than 1 and less than 30 characters long.</source> | ||
8829 | <target state="new">A tag should be more than 1 and less than 30 characters long.</target> | ||
8489 | <context-group purpose="location"> | 8830 | <context-group purpose="location"> |
8490 | <context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context> | 8831 | <context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context> |
8491 | <context context-type="linenumber">67</context> | 8832 | <context context-type="linenumber">67</context> |
8492 | </context-group> | 8833 | </context-group> |
8493 | </trans-unit> | 8834 | </trans-unit> |
8494 | |||
8495 | <trans-unit id="4806300480558315727"> | 8835 | <trans-unit id="4806300480558315727"> |
8496 | <source>Video support must be at least 3 characters long.</source> | 8836 | <source>Video support must be at least 3 characters long.</source> |
8497 | <target>Text pro podporu videa musí mít délku minimálně 3 znaky.</target> | 8837 | <target>Text pro podporu videa musí mít délku minimálně 3 znaky.</target> |
8498 | 8838 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">74</context></context-group> | |
8499 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">74</context></context-group></trans-unit> | 8839 | </trans-unit> |
8500 | <trans-unit id="6655773021893755977" datatype="html"> | 8840 | <trans-unit id="6655773021893755977" datatype="html"> |
8501 | <source>Video support cannot be more than 1000 characters long.</source> | 8841 | <source>Video support cannot be more than 1000 characters long.</source> |
8502 | <target state="new">Video support cannot be more than 1000 characters long.</target> | 8842 | <target state="new">Video support cannot be more than 1000 characters long.</target> |
8503 | 8843 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">75</context></context-group> | |
8504 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> | 8844 | </trans-unit> |
8505 | <trans-unit id="4246579596585402255"> | 8845 | <trans-unit id="4246579596585402255"> |
8506 | <source>A date is required to schedule video update.</source> | 8846 | <source>A date is required to schedule video update.</source> |
8507 | <target>Datum k naplánování aktualizace videa je vyžadováno.</target> | 8847 | <target>Datum k naplánování aktualizace videa je vyžadováno.</target> |
8508 | 8848 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">82</context></context-group> | |
8509 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 8849 | </trans-unit> |
8510 | <trans-unit id="8728283516316752593" datatype="html"> | 8850 | <trans-unit id="8728283516316752593" datatype="html"> |
8511 | <source>This file is too large.</source> | 8851 | <source>This file is too large.</source> |
8512 | <target state="new">This file is too large.</target> | 8852 | <target state="new">This file is too large.</target> |
8513 | 8853 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/reactive-file.component.ts</context><context context-type="linenumber">50</context></context-group> | |
8514 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/reactive-file.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit><trans-unit id="6360987759186261451" datatype="html"> | 8854 | </trans-unit> |
8515 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source><target state="new">PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</target> | 8855 | <trans-unit id="6360987759186261451" datatype="html"> |
8516 | 8856 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> | |
8517 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/reactive-file.component.ts</context><context context-type="linenumber">56</context></context-group></trans-unit> | 8857 | <target state="new">PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</target> |
8518 | 8858 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/reactive-file.component.ts</context><context context-type="linenumber">56</context></context-group> | |
8859 | </trans-unit> | ||
8519 | <trans-unit id="6708273825233539746" datatype="html"> | 8860 | <trans-unit id="6708273825233539746" datatype="html"> |
8520 | <source>Add a new option</source> | 8861 | <source>Add a new option</source> |
8521 | <target state="new">Add a new option</target> | 8862 | <target state="new">Add a new option</target> |
8522 | 8863 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">28</context></context-group> | |
8523 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 8864 | </trans-unit> |
8524 | <trans-unit id="4670312387769733978"> | 8865 | <trans-unit id="4670312387769733978"> |
8525 | <source>All unsaved data will be lost, are you sure you want to leave this page?</source> | 8866 | <source>All unsaved data will be lost, are you sure you want to leave this page?</source> |
8526 | <target>Všechna neuložená data budou ztracena, opravdu chcete opustit tuto stránku?</target> | 8867 | <target>Všechna neuložená data budou ztracena, opravdu chcete opustit tuto stránku?</target> |
8527 | 8868 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/routing/can-deactivate-guard.service.ts</context><context context-type="linenumber">19</context></context-group> | |
8528 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/routing/can-deactivate-guard.service.ts</context><context context-type="linenumber">19</context></context-group></trans-unit> | 8869 | </trans-unit> |
8529 | <trans-unit id="6950140976689343775"> | 8870 | <trans-unit id="6950140976689343775"> |
8530 | <source>Sunday</source> | 8871 | <source>Sunday</source> |
8531 | <target>neděle</target> | 8872 | <target>neděle</target> |
8532 | 8873 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">11</context></context-group> | |
8533 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">11</context></context-group></trans-unit> | 8874 | </trans-unit> |
8534 | <trans-unit id="8739442281958563044"> | 8875 | <trans-unit id="8739442281958563044"> |
8535 | <source>Monday</source> | 8876 | <source>Monday</source> |
8536 | <target>pondělí</target> | 8877 | <target>pondělí</target> |
8537 | 8878 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">12</context></context-group> | |
8538 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">12</context></context-group></trans-unit> | 8879 | </trans-unit> |
8539 | <trans-unit id="9176037901730521018"> | 8880 | <trans-unit id="9176037901730521018"> |
8540 | <source>Tuesday</source> | 8881 | <source>Tuesday</source> |
8541 | <target>úterý</target> | 8882 | <target>úterý</target> |
8542 | 8883 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">13</context></context-group> | |
8543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">13</context></context-group></trans-unit> | 8884 | </trans-unit> |
8544 | <trans-unit id="8798932904948432529"> | 8885 | <trans-unit id="8798932904948432529"> |
8545 | <source>Wednesday</source> | 8886 | <source>Wednesday</source> |
8546 | <target>středa</target> | 8887 | <target>středa</target> |
8547 | 8888 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">14</context></context-group> | |
8548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 8889 | </trans-unit> |
8549 | <trans-unit id="1433683192825895947"> | 8890 | <trans-unit id="1433683192825895947"> |
8550 | <source>Thursday</source> | 8891 | <source>Thursday</source> |
8551 | <target>čtvrtek</target> | 8892 | <target>čtvrtek</target> |
8552 | 8893 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">15</context></context-group> | |
8553 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">15</context></context-group></trans-unit> | 8894 | </trans-unit> |
8554 | <trans-unit id="3730139500618908668"> | 8895 | <trans-unit id="3730139500618908668"> |
8555 | <source>Friday</source> | 8896 | <source>Friday</source> |
8556 | <target>pátek</target> | 8897 | <target>pátek</target> |
8557 | 8898 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">16</context></context-group> | |
8558 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">16</context></context-group></trans-unit> | 8899 | </trans-unit> |
8559 | <trans-unit id="1830554030016307335"> | 8900 | <trans-unit id="1830554030016307335"> |
8560 | <source>Saturday</source> | 8901 | <source>Saturday</source> |
8561 | <target>sobota</target> | 8902 | <target>sobota</target> |
8562 | 8903 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">17</context></context-group> | |
8563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">17</context></context-group></trans-unit> | 8904 | </trans-unit> |
8564 | <trans-unit id="4921929243068857081"> | 8905 | <trans-unit id="4921929243068857081"> |
8565 | <source>Sun</source> | 8906 | <source>Sun</source> |
8566 | <target>Ne</target> | 8907 | <target>Ne</target> |
8567 | <note from="description" priority="1">Day name short</note> | 8908 | <note from="description" priority="1">Day name short</note> |
8568 | 8909 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">21</context></context-group> | |
8569 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">21</context></context-group></trans-unit> | 8910 | </trans-unit> |
8570 | <trans-unit id="8563137213157122993"> | 8911 | <trans-unit id="8563137213157122993"> |
8571 | <source>Mon</source> | 8912 | <source>Mon</source> |
8572 | <target>Po</target> | 8913 | <target>Po</target> |
8573 | <note from="description" priority="1">Day name short</note> | 8914 | <note from="description" priority="1">Day name short</note> |
8574 | 8915 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">22</context></context-group> | |
8575 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">22</context></context-group></trans-unit> | 8916 | </trans-unit> |
8576 | <trans-unit id="8502240922750617054"> | 8917 | <trans-unit id="8502240922750617054"> |
8577 | <source>Tue</source> | 8918 | <source>Tue</source> |
8578 | <target>Út</target> | 8919 | <target>Út</target> |
8579 | <note from="description" priority="1">Day name short</note> | 8920 | <note from="description" priority="1">Day name short</note> |
8580 | 8921 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">23</context></context-group> | |
8581 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">23</context></context-group></trans-unit> | 8922 | </trans-unit> |
8582 | <trans-unit id="7421778640995344715"> | 8923 | <trans-unit id="7421778640995344715"> |
8583 | <source>Wed</source> | 8924 | <source>Wed</source> |
8584 | <target>St</target> | 8925 | <target>St</target> |
8585 | <note from="description" priority="1">Day name short</note> | 8926 | <note from="description" priority="1">Day name short</note> |
8586 | 8927 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">24</context></context-group> | |
8587 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">24</context></context-group></trans-unit> | 8928 | </trans-unit> |
8588 | <trans-unit id="4409954796361883558"> | 8929 | <trans-unit id="4409954796361883558"> |
8589 | <source>Thu</source> | 8930 | <source>Thu</source> |
8590 | <target>Čt</target> | 8931 | <target>Čt</target> |
8591 | <note from="description" priority="1">Day name short</note> | 8932 | <note from="description" priority="1">Day name short</note> |
8592 | 8933 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">25</context></context-group> | |
8593 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 8934 | </trans-unit> |
8594 | <trans-unit id="5651951128882735477"> | 8935 | <trans-unit id="5651951128882735477"> |
8595 | <source>Fri</source> | 8936 | <source>Fri</source> |
8596 | <target>Pá</target> | 8937 | <target>Pá</target> |
8597 | <note from="description" priority="1">Day name short</note> | 8938 | <note from="description" priority="1">Day name short</note> |
8598 | 8939 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">26</context></context-group> | |
8599 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 8940 | </trans-unit> |
8600 | <trans-unit id="93026920674143073"> | 8941 | <trans-unit id="93026920674143073"> |
8601 | <source>Sat</source> | 8942 | <source>Sat</source> |
8602 | <target>So</target> | 8943 | <target>So</target> |
8603 | <note from="description" priority="1">Day name short</note> | 8944 | <note from="description" priority="1">Day name short</note> |
8604 | 8945 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">27</context></context-group> | |
8605 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">27</context></context-group></trans-unit> | 8946 | </trans-unit> |
8606 | <trans-unit id="8349763432924710200"> | 8947 | <trans-unit id="8349763432924710200"> |
8607 | <source>Su</source> | 8948 | <source>Su</source> |
8608 | <target>ne</target> | 8949 | <target>ne</target> |
8609 | <note from="description" priority="1">Day name min</note> | 8950 | <note from="description" priority="1">Day name min</note> |
8610 | 8951 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">31</context></context-group> | |
8611 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">31</context></context-group></trans-unit> | 8952 | </trans-unit> |
8612 | <trans-unit id="4197236438302165051"> | 8953 | <trans-unit id="4197236438302165051"> |
8613 | <source>Mo</source> | 8954 | <source>Mo</source> |
8614 | <target>po</target> | 8955 | <target>po</target> |
8615 | <note from="description" priority="1">Day name min</note> | 8956 | <note from="description" priority="1">Day name min</note> |
8616 | 8957 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">32</context></context-group> | |
8617 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 8958 | </trans-unit> |
8618 | <trans-unit id="6034455877220674404"> | 8959 | <trans-unit id="6034455877220674404"> |
8619 | <source>Tu</source> | 8960 | <source>Tu</source> |
8620 | <target>út</target> | 8961 | <target>út</target> |
8621 | <note from="description" priority="1">Day name min</note> | 8962 | <note from="description" priority="1">Day name min</note> |
8622 | 8963 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">33</context></context-group> | |
8623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">33</context></context-group></trans-unit> | 8964 | </trans-unit> |
8624 | <trans-unit id="3221670730445125135"> | 8965 | <trans-unit id="3221670730445125135"> |
8625 | <source>We</source> | 8966 | <source>We</source> |
8626 | <target>st</target> | 8967 | <target>st</target> |
8627 | <note from="description" priority="1">Day name min</note> | 8968 | <note from="description" priority="1">Day name min</note> |
8628 | 8969 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">34</context></context-group> | |
8629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 8970 | </trans-unit> |
8630 | <trans-unit id="772466829681972216"> | 8971 | <trans-unit id="772466829681972216"> |
8631 | <source>Th</source> | 8972 | <source>Th</source> |
8632 | <target>čt</target> | 8973 | <target>čt</target> |
8633 | <note from="description" priority="1">Day name min</note> | 8974 | <note from="description" priority="1">Day name min</note> |
8634 | 8975 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">35</context></context-group> | |
8635 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 8976 | </trans-unit> |
8636 | <trans-unit id="8598262708800132669"> | 8977 | <trans-unit id="8598262708800132669"> |
8637 | <source>Fr</source> | 8978 | <source>Fr</source> |
8638 | <target>pá</target> | 8979 | <target>pá</target> |
8639 | <note from="description" priority="1">Day name min</note> | 8980 | <note from="description" priority="1">Day name min</note> |
8640 | 8981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">36</context></context-group> | |
8641 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">36</context></context-group></trans-unit> | 8982 | </trans-unit> |
8642 | <trans-unit id="569007902695332072"> | 8983 | <trans-unit id="569007902695332072"> |
8643 | <source>Sa</source> | 8984 | <source>Sa</source> |
8644 | <target>so</target> | 8985 | <target>so</target> |
8645 | <note from="description" priority="1">Day name min</note> | 8986 | <note from="description" priority="1">Day name min</note> |
8646 | 8987 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">37</context></context-group> | |
8647 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 8988 | </trans-unit> |
8648 | <trans-unit id="3913843642962116845"> | 8989 | <trans-unit id="3913843642962116845"> |
8649 | <source>January</source> | 8990 | <source>January</source> |
8650 | <target>leden</target> | 8991 | <target>leden</target> |
8651 | 8992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">41</context></context-group> | |
8652 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> | 8993 | </trans-unit> |
8653 | <trans-unit id="6642324138857419870"> | 8994 | <trans-unit id="6642324138857419870"> |
8654 | <source>February</source> | 8995 | <source>February</source> |
8655 | <target>únor</target> | 8996 | <target>únor</target> |
8656 | 8997 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">42</context></context-group> | |
8657 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">42</context></context-group></trans-unit> | 8998 | </trans-unit> |
8658 | <trans-unit id="7918954644624211958"> | 8999 | <trans-unit id="7918954644624211958"> |
8659 | <source>March</source> | 9000 | <source>March</source> |
8660 | <target>březen</target> | 9001 | <target>březen</target> |
8661 | 9002 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">43</context></context-group> | |
8662 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> | 9003 | </trans-unit> |
8663 | <trans-unit id="1809521303476565743"> | 9004 | <trans-unit id="1809521303476565743"> |
8664 | <source>April</source> | 9005 | <source>April</source> |
8665 | <target>duben</target> | 9006 | <target>duben</target> |
8666 | 9007 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">44</context></context-group> | |
8667 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">44</context></context-group></trans-unit> | 9008 | </trans-unit> |
8668 | <trans-unit id="8469692700277617405"> | 9009 | <trans-unit id="8469692700277617405"> |
8669 | <source>May</source> | 9010 | <source>May</source> |
8670 | <target>květen</target> | 9011 | <target>květen</target> |
8671 | 9012 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">45</context></context-group> | |
8672 | 9013 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">60</context></context-group> | |
8673 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 9014 | </trans-unit> |
8674 | <trans-unit id="9055297580745330415"> | 9015 | <trans-unit id="9055297580745330415"> |
8675 | <source>June</source> | 9016 | <source>June</source> |
8676 | <target>červen</target> | 9017 | <target>červen</target> |
8677 | 9018 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">46</context></context-group> | |
8678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 9019 | </trans-unit> |
8679 | <trans-unit id="9087113544612471348"> | 9020 | <trans-unit id="9087113544612471348"> |
8680 | <source>July</source> | 9021 | <source>July</source> |
8681 | <target>červenec</target> | 9022 | <target>červenec</target> |
8682 | 9023 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">47</context></context-group> | |
8683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 9024 | </trans-unit> |
8684 | <trans-unit id="3984618989093293779"> | 9025 | <trans-unit id="3984618989093293779"> |
8685 | <source>August</source> | 9026 | <source>August</source> |
8686 | <target>srpen</target> | 9027 | <target>srpen</target> |
8687 | 9028 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">48</context></context-group> | |
8688 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 9029 | </trans-unit> |
8689 | <trans-unit id="5872622085239011307"> | 9030 | <trans-unit id="5872622085239011307"> |
8690 | <source>September</source> | 9031 | <source>September</source> |
8691 | <target>září</target> | 9032 | <target>září</target> |
8692 | 9033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">49</context></context-group> | |
8693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 9034 | </trans-unit> |
8694 | <trans-unit id="1491482705364427867"> | 9035 | <trans-unit id="1491482705364427867"> |
8695 | <source>October</source> | 9036 | <source>October</source> |
8696 | <target>říjen</target> | 9037 | <target>říjen</target> |
8697 | 9038 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">50</context></context-group> | |
8698 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 9039 | </trans-unit> |
8699 | <trans-unit id="1109977718843277527"> | 9040 | <trans-unit id="1109977718843277527"> |
8700 | <source>November</source> | 9041 | <source>November</source> |
8701 | <target>listopad</target> | 9042 | <target>listopad</target> |
8702 | 9043 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">51</context></context-group> | |
8703 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 9044 | </trans-unit> |
8704 | <trans-unit id="124191049522509365"> | 9045 | <trans-unit id="124191049522509365"> |
8705 | <source>December</source> | 9046 | <source>December</source> |
8706 | <target>prosinec</target> | 9047 | <target>prosinec</target> |
8707 | 9048 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">52</context></context-group> | |
8708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 9049 | </trans-unit> |
8709 | <trans-unit id="7595747576974676670"> | 9050 | <trans-unit id="7595747576974676670"> |
8710 | <source>Jan</source> | 9051 | <source>Jan</source> |
8711 | <target>led</target> | 9052 | <target>led</target> |
8712 | <note from="description" priority="1">Month name short</note> | 9053 | <note from="description" priority="1">Month name short</note> |
8713 | 9054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">56</context></context-group> | |
8714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">56</context></context-group></trans-unit> | 9055 | </trans-unit> |
8715 | <trans-unit id="4916040996255005712"> | 9056 | <trans-unit id="4916040996255005712"> |
8716 | <source>Feb</source> | 9057 | <source>Feb</source> |
8717 | <target>úno</target> | 9058 | <target>úno</target> |
8718 | <note from="description" priority="1">Month name short</note> | 9059 | <note from="description" priority="1">Month name short</note> |
8719 | 9060 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">57</context></context-group> | |
8720 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> | 9061 | </trans-unit> |
8721 | <trans-unit id="6438827956918137617"> | 9062 | <trans-unit id="6438827956918137617"> |
8722 | <source>Mar</source> | 9063 | <source>Mar</source> |
8723 | <target>bře</target> | 9064 | <target>bře</target> |
8724 | <note from="description" priority="1">Month name short</note> | 9065 | <note from="description" priority="1">Month name short</note> |
8725 | 9066 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">58</context></context-group> | |
8726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 9067 | </trans-unit> |
8727 | <trans-unit id="5507326650332881991"> | 9068 | <trans-unit id="5507326650332881991"> |
8728 | <source>Apr</source> | 9069 | <source>Apr</source> |
8729 | <target>dub</target> | 9070 | <target>dub</target> |
8730 | <note from="description" priority="1">Month name short</note> | 9071 | <note from="description" priority="1">Month name short</note> |
8731 | 9072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">59</context></context-group> | |
8732 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">59</context></context-group></trans-unit> | 9073 | </trans-unit> |
8733 | <trans-unit id="2113470244260512015"> | 9074 | <trans-unit id="2113470244260512015"> |
8734 | <source>Jun</source> | 9075 | <source>Jun</source> |
8735 | <target>čer</target> | 9076 | <target>čer</target> |
8736 | <note from="description" priority="1">Month name short</note> | 9077 | <note from="description" priority="1">Month name short</note> |
8737 | 9078 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">61</context></context-group> | |
8738 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 9079 | </trans-unit> |
8739 | <trans-unit id="53176888553719239"> | 9080 | <trans-unit id="53176888553719239"> |
8740 | <source>Jul</source> | 9081 | <source>Jul</source> |
8741 | <target>čvc</target> | 9082 | <target>čvc</target> |
8742 | <note from="description" priority="1">Month name short</note> | 9083 | <note from="description" priority="1">Month name short</note> |
8743 | 9084 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">62</context></context-group> | |
8744 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">62</context></context-group></trans-unit> | 9085 | </trans-unit> |
8745 | <trans-unit id="5648574669404659458"> | 9086 | <trans-unit id="5648574669404659458"> |
8746 | <source>Aug</source> | 9087 | <source>Aug</source> |
8747 | <target>srp</target> | 9088 | <target>srp</target> |
8748 | <note from="description" priority="1">Month name short</note> | 9089 | <note from="description" priority="1">Month name short</note> |
8749 | 9090 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">63</context></context-group> | |
8750 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 9091 | </trans-unit> |
8751 | <trans-unit id="4354095055982674918"> | 9092 | <trans-unit id="4354095055982674918"> |
8752 | <source>Sep</source> | 9093 | <source>Sep</source> |
8753 | <target>zář</target> | 9094 | <target>zář</target> |
8754 | <note from="description" priority="1">Month name short</note> | 9095 | <note from="description" priority="1">Month name short</note> |
8755 | 9096 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">64</context></context-group> | |
8756 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">64</context></context-group></trans-unit> | 9097 | </trans-unit> |
8757 | <trans-unit id="6207754626941051341"> | 9098 | <trans-unit id="6207754626941051341"> |
8758 | <source>Oct</source> | 9099 | <source>Oct</source> |
8759 | <target>říj</target> | 9100 | <target>říj</target> |
8760 | <note from="description" priority="1">Month name short</note> | 9101 | <note from="description" priority="1">Month name short</note> |
8761 | 9102 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">65</context></context-group> | |
8762 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">65</context></context-group></trans-unit> | 9103 | </trans-unit> |
8763 | <trans-unit id="8269261039058575292"> | 9104 | <trans-unit id="8269261039058575292"> |
8764 | <source>Nov</source> | 9105 | <source>Nov</source> |
8765 | <target>lis</target> | 9106 | <target>lis</target> |
8766 | <note from="description" priority="1">Month name short</note> | 9107 | <note from="description" priority="1">Month name short</note> |
8767 | 9108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">66</context></context-group> | |
8768 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 9109 | </trans-unit> |
8769 | <trans-unit id="7777579586760423636"> | 9110 | <trans-unit id="7777579586760423636"> |
8770 | <source>Dec</source> | 9111 | <source>Dec</source> |
8771 | <target>pro</target> | 9112 | <target>pro</target> |
8772 | <note from="description" priority="1">Month name short</note> | 9113 | <note from="description" priority="1">Month name short</note> |
8773 | 9114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">67</context></context-group> | |
8774 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 9115 | </trans-unit> |
8775 | <trans-unit id="8700121026680200191"> | 9116 | <trans-unit id="8700121026680200191"> |
8776 | <source>Clear</source> | 9117 | <source>Clear</source> |
8777 | <target>Vymazat</target> | 9118 | <target>Vymazat</target> |
8778 | 9119 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">72</context></context-group> | |
8779 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 9120 | </trans-unit> |
8780 | <trans-unit id="5922757127987546008"> | 9121 | <trans-unit id="5922757127987546008"> |
8781 | <source>yy-mm-dd</source> | 9122 | <source>yy-mm-dd</source> |
8782 | <target>dd. mm. yyyy</target> | 9123 | <target>dd. mm. yyyy</target> |
8783 | <note from="description" priority="1">Date format in this locale.</note> | 9124 | <note from="description" priority="1">Date format in this locale.</note> |
8784 | 9125 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">88</context></context-group> | |
8785 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">88</context></context-group></trans-unit> | 9126 | </trans-unit> |
8786 | <trans-unit id="2830831449226931729" datatype="html"> | 9127 | <trans-unit id="2830831449226931729" datatype="html"> |
8787 | <source>Instance languages</source> | 9128 | <source>Instance languages</source> |
8788 | <target state="new">Instance languages</target> | 9129 | <target state="new">Instance languages</target> |
8789 | 9130 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group> | |
8790 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 9131 | </trans-unit> |
8791 | <trans-unit id="40119547597591062" datatype="html"> | 9132 | <trans-unit id="40119547597591062" datatype="html"> |
8792 | <source>All languages</source> | 9133 | <source>All languages</source> |
8793 | <target state="new">All languages</target> | 9134 | <target state="new">All languages</target> |
8794 | 9135 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group> | |
8795 | 9136 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group> | |
8796 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 9137 | </trans-unit> |
8797 | <trans-unit id="996392855508119363" datatype="html"> | 9138 | <trans-unit id="996392855508119363" datatype="html"> |
8798 | <source>Hidden</source> | 9139 | <source>Hidden</source> |
8799 | <target state="new">Hidden</target> | 9140 | <target state="new">Hidden</target> |
8800 | 9141 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">50</context></context-group> | |
8801 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 9142 | </trans-unit> |
8802 | <trans-unit id="2173989454916398137" datatype="html"> | 9143 | <trans-unit id="2173989454916398137" datatype="html"> |
8803 | <source>Blurred with confirmation request</source> | 9144 | <source>Blurred with confirmation request</source> |
8804 | <target state="new">Blurred with confirmation request</target> | 9145 | <target state="new">Blurred with confirmation request</target> |
8805 | 9146 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">51</context></context-group> | |
8806 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 9147 | </trans-unit> |
8807 | <trans-unit id="8929218224642530466" datatype="html"> | 9148 | <trans-unit id="8929218224642530466" datatype="html"> |
8808 | <source>Displayed</source> | 9149 | <source>Displayed</source> |
8809 | <target state="new">Displayed</target> | 9150 | <target state="new">Displayed</target> |
8810 | 9151 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">52</context></context-group> | |
8811 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="6291055174438137560" datatype="html"> | 9152 | </trans-unit> |
8812 | <source>~ 1 minute</source><target state="new">~ 1 minute</target> | 9153 | <trans-unit id="6291055174438137560" datatype="html"> |
8813 | 9154 | <source>~ 1 minute</source> | |
8814 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit><trans-unit id="189524047518780716" datatype="html"> | 9155 | <target state="new">~ 1 minute</target> |
8815 | <source>~ <x id="PH"/> minutes</source><target state="new">~ <x id="PH"/> minutes</target> | 9156 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">67</context></context-group> |
8816 | 9157 | </trans-unit> | |
8817 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> | 9158 | <trans-unit id="189524047518780716" datatype="html"> |
8818 | 9159 | <source>~ <x id="PH"/> minutes</source> | |
8819 | 9160 | <target state="new">~ <x id="PH"/> minutes</target> | |
9161 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">69</context></context-group> | ||
9162 | </trans-unit> | ||
8820 | <trans-unit id="6028521920505655348"> | 9163 | <trans-unit id="6028521920505655348"> |
8821 | <source> | 9164 | <source><x id="PH"/> of full HD videos </source> |
8822 | <x id="PH"/> of full HD videos | ||
8823 | </source> | ||
8824 | <target> | 9165 | <target> |
8825 | <x id="PH"/> FullHD videí | 9166 | <x id="PH"/> FullHD videí |
8826 | </target> | 9167 | </target> |
8827 | 9168 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">85</context></context-group> | |
8828 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> | 9169 | </trans-unit> |
8829 | <trans-unit id="117588083391484998"> | 9170 | <trans-unit id="117588083391484998"> |
8830 | <source> | 9171 | <source><x id="PH"/> of HD videos </source> |
8831 | <x id="PH"/> of HD videos | ||
8832 | </source> | ||
8833 | <target> | 9172 | <target> |
8834 | <x id="PH"/> HD videí | 9173 | <x id="PH"/> HD videí |
8835 | </target> | 9174 | </target> |
8836 | 9175 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">86</context></context-group> | |
8837 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">86</context></context-group></trans-unit> | 9176 | </trans-unit> |
8838 | <trans-unit id="6636555695556123073"> | 9177 | <trans-unit id="6636555695556123073"> |
8839 | <source> | 9178 | <source><x id="PH"/> of average quality videos </source> |
8840 | <x id="PH"/> of average quality videos | ||
8841 | </source> | ||
8842 | <target> | 9179 | <target> |
8843 | <x id="PH"/> videí průměrné kvality | 9180 | <x id="PH"/> videí průměrné kvality |
8844 | </target> | 9181 | </target> |
8845 | 9182 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">87</context></context-group> | |
8846 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">87</context></context-group></trans-unit> | 9183 | </trans-unit> |
8847 | <trans-unit id="6952960992592445535" datatype="html"> | 9184 | <trans-unit id="6952960992592445535" datatype="html"> |
8848 | <source> | 9185 | <source><x id="PH"/> (channel page) </source> |
8849 | <x id="PH"/> (channel page) | ||
8850 | </source> | ||
8851 | <target state="new"> | 9186 | <target state="new"> |
8852 | <x id="PH"/> (channel page) | 9187 | <x id="PH"/> (channel page) |
8853 | </target> | 9188 | </target> |
8854 | 9189 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.ts</context><context context-type="linenumber">20</context></context-group> | |
8855 | 9190 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">117</context></context-group> | |
8856 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.ts</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">117</context></context-group></trans-unit> | 9191 | </trans-unit> |
8857 | <trans-unit id="1209500590333005801" datatype="html"> | 9192 | <trans-unit id="1209500590333005801" datatype="html"> |
8858 | <source> | 9193 | <source><x id="PH"/> (account page) </source> |
8859 | <x id="PH"/> (account page) | ||
8860 | </source> | ||
8861 | <target state="new"> | 9194 | <target state="new"> |
8862 | <x id="PH"/> (account page) | 9195 | <x id="PH"/> (account page) |
8863 | </target> | 9196 | </target> |
8864 | 9197 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.ts</context><context context-type="linenumber">21</context></context-group> | |
8865 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.ts</context><context context-type="linenumber">21</context></context-group></trans-unit> | 9198 | </trans-unit> |
8866 | |||
8867 | <trans-unit id="2516633974298697807"> | 9199 | <trans-unit id="2516633974298697807"> |
8868 | <source>Emphasis</source> | 9200 | <source>Emphasis</source> |
8869 | <target>Styly písma</target> | 9201 | <target>Styly písma</target> |
8870 | 9202 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group> | |
8871 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 9203 | </trans-unit> |
8872 | <trans-unit id="7565716024468232322"> | 9204 | <trans-unit id="7565716024468232322"> |
8873 | <source>Links</source> | 9205 | <source>Links</source> |
8874 | <target>Odkazy</target> | 9206 | <target>Odkazy</target> |
8875 | 9207 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group> | |
8876 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 9208 | </trans-unit> |
8877 | <trans-unit id="7838476952710404110"> | 9209 | <trans-unit id="7838476952710404110"> |
8878 | <source>New lines</source> | 9210 | <source>New lines</source> |
8879 | <target>Odřádkování</target> | 9211 | <target>Odřádkování</target> |
8880 | 9212 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group> | |
8881 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> | 9213 | </trans-unit> |
8882 | <trans-unit id="8756167649220050929"> | 9214 | <trans-unit id="8756167649220050929"> |
8883 | <source>Lists</source> | 9215 | <source>Lists</source> |
8884 | <target>Seznamy</target> | 9216 | <target>Seznamy</target> |
8885 | 9217 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group> | |
8886 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> | 9218 | </trans-unit> |
8887 | <trans-unit id="414887388288176527"> | 9219 | <trans-unit id="414887388288176527"> |
8888 | <source>Images</source> | 9220 | <source>Images</source> |
8889 | <target>Obrázky</target> | 9221 | <target>Obrázky</target> |
8890 | 9222 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group> | |
8891 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> | 9223 | </trans-unit> |
8892 | <trans-unit id="5708680277917691451"> | 9224 | <trans-unit id="5708680277917691451"> |
8893 | <source> | 9225 | <source><x id="PH"/> users banned. </source> |
8894 | <x id="PH"/> users banned. | ||
8895 | </source> | ||
8896 | <target> | 9226 | <target> |
8897 | <x id="PH"/> uživatelů zablokováno. | 9227 | <x id="PH"/> uživatelů zablokováno. |
8898 | </target> | 9228 | </target> |
8899 | 9229 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">53</context></context-group> | |
8900 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">53</context></context-group></trans-unit> | 9230 | </trans-unit> |
8901 | <trans-unit id="2448281151916042849"> | 9231 | <trans-unit id="2448281151916042849"> |
8902 | <source>User <x id="PH"/> banned.</source> | 9232 | <source>User <x id="PH"/> banned.</source> |
8903 | <target>Uživatel | 9233 | <target>Uživatel <x id="PH"/> zablokován.</target> |
8904 | <x id="PH"/> zablokován. | 9234 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">54</context></context-group> |
8905 | </target> | 9235 | </trans-unit> |
8906 | |||
8907 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">54</context></context-group></trans-unit> | ||
8908 | <trans-unit id="8269144351796756896"> | 9236 | <trans-unit id="8269144351796756896"> |
8909 | <source>Do you really want to unban <x id="PH"/>?</source> | 9237 | <source>Do you really want to unban <x id="PH"/>?</source> |
8910 | <target>Opravdu chcete odblokovat uživatele | 9238 | <target>Opravdu chcete odblokovat uživatele <x id="PH"/>?</target> |
8911 | <x id="PH"/>? | 9239 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">70</context></context-group> |
8912 | </target> | 9240 | </trans-unit> |
8913 | |||
8914 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">70</context></context-group></trans-unit> | ||
8915 | <trans-unit id="1794219875546376069"> | 9241 | <trans-unit id="1794219875546376069"> |
8916 | <source>User <x id="PH"/> unbanned.</source> | 9242 | <source>User <x id="PH"/> unbanned.</source> |
8917 | <target>Uživatel | 9243 | <target>Uživatel <x id="PH"/> odblokován.</target> |
8918 | <x id="PH"/> odblokován. | 9244 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">76</context></context-group> |
8919 | </target> | 9245 | </trans-unit> |
8920 | |||
8921 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | ||
8922 | <trans-unit id="4885683604826993045" datatype="html"> | 9246 | <trans-unit id="4885683604826993045" datatype="html"> |
8923 | <source>If you remove this user, you will not be able to create another with the same username!</source> | 9247 | <source>If you remove this user, you will not be able to create another with the same username!</source> |
8924 | <target state="new">If you remove this user, you will not be able to create another with the same username!</target> | 9248 | <target state="new">If you remove this user, you will not be able to create another with the same username!</target> |
8925 | 9249 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">90</context></context-group> | |
8926 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">90</context></context-group></trans-unit> | 9250 | </trans-unit> |
8927 | <trans-unit id="6301381219225831298"> | 9251 | <trans-unit id="6301381219225831298"> |
8928 | <source>User <x id="PH"/> deleted.</source> | 9252 | <source>User <x id="PH"/> deleted.</source> |
8929 | <target>Uživatel | 9253 | <target>Uživatel <x id="PH"/> odstraněn.</target> |
8930 | <x id="PH"/> odstraněn. | 9254 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">96</context></context-group> |
8931 | </target> | 9255 | </trans-unit> |
8932 | |||
8933 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">96</context></context-group></trans-unit> | ||
8934 | <trans-unit id="3896582359861826661" datatype="html"> | 9256 | <trans-unit id="3896582359861826661" datatype="html"> |
8935 | <source>User <x id="PH"/> email set as verified</source> | 9257 | <source>User <x id="PH"/> email set as verified</source> |
8936 | <target state="new">User | 9258 | <target state="new">User |
8937 | <x id="PH"/> email set as verified | 9259 | <x id="PH"/> email set as verified |
8938 | </target> | 9260 | </target> |
8939 | 9261 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">107</context></context-group> | |
8940 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">107</context></context-group></trans-unit> | 9262 | </trans-unit> |
8941 | <trans-unit id="8150022485860412528" datatype="html"> | 9263 | <trans-unit id="8150022485860412528" datatype="html"> |
8942 | <source>Account <x id="PH"/> muted.</source> | 9264 | <source>Account <x id="PH"/> muted.</source> |
8943 | <target state="new">Account | 9265 | <target state="translated">Účet <x id="PH"/> ztišen.</target> |
8944 | <x id="PH"/> muted. | 9266 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">240</context></context-group> |
8945 | </target> | 9267 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">119</context></context-group> |
8946 | 9268 | </trans-unit> | |
8947 | |||
8948 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">240</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">119</context></context-group></trans-unit> | ||
8949 | <trans-unit id="1598375456114200087" datatype="html"> | 9269 | <trans-unit id="1598375456114200087" datatype="html"> |
8950 | <source>Instance | 9270 | <source>Instance <x id="PH"/> muted. </source> |
8951 | <x id="PH"/> muted. | ||
8952 | </source> | ||
8953 | <target state="new">Instance | 9271 | <target state="new">Instance |
8954 | <x id="PH"/> muted. | 9272 | <x id="PH"/> muted. |
8955 | </target> | 9273 | </target> |
@@ -8960,324 +9278,326 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8960 | </trans-unit> | 9278 | </trans-unit> |
8961 | <trans-unit id="2558977494773636050" datatype="html"> | 9279 | <trans-unit id="2558977494773636050" datatype="html"> |
8962 | <source>Account <x id="PH"/> muted by the instance.</source> | 9280 | <source>Account <x id="PH"/> muted by the instance.</source> |
8963 | <target state="new">Account | 9281 | <target state="translated">Účet <x id="PH"/> ztišen instancí.</target> |
8964 | <x id="PH"/> muted by the instance. | 9282 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">175</context></context-group> |
8965 | </target> | 9283 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">429</context></context-group> |
8966 | 9284 | </trans-unit> | |
8967 | |||
8968 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">175</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">429</context></context-group></trans-unit> | ||
8969 | <trans-unit id="1595779426198793580" datatype="html"> | 9285 | <trans-unit id="1595779426198793580" datatype="html"> |
8970 | <source>Mute server</source> | 9286 | <source>Mute server</source> |
8971 | <target state="new">Mute server</target> | 9287 | <target state="new">Mute server</target> |
8972 | 9288 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">317</context></context-group> | |
8973 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">317</context></context-group></trans-unit> | 9289 | </trans-unit> |
8974 | <trans-unit id="8014491157078444256" datatype="html"> | 9290 | <trans-unit id="8014491157078444256" datatype="html"> |
8975 | <source>Server <x id="PH"/> muted by the instance.</source> | 9291 | <source>Server <x id="PH"/> muted by the instance.</source> |
8976 | <target state="new">Server | 9292 | <target state="translated">Server <x id="PH"/> ztišen instancí.</target> |
8977 | <x id="PH"/> muted by the instance. | 9293 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">441</context></context-group> |
8978 | </target> | 9294 | </trans-unit> |
8979 | |||
8980 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">441</context></context-group></trans-unit> | ||
8981 | <trans-unit id="2044813052587776285" datatype="html"> | 9295 | <trans-unit id="2044813052587776285" datatype="html"> |
8982 | <source>Add a message to communicate with the reporter</source> | 9296 | <source>Add a message to communicate with the reporter</source> |
8983 | <target state="new">Add a message to communicate with the reporter</target> | 9297 | <target state="new">Add a message to communicate with the reporter</target> |
8984 | 9298 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.ts</context><context context-type="linenumber">100</context></context-group> | |
8985 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.ts</context><context context-type="linenumber">100</context></context-group></trans-unit> | 9299 | </trans-unit> |
8986 | <trans-unit id="4117663541503607703" datatype="html"> | 9300 | <trans-unit id="4117663541503607703" datatype="html"> |
8987 | <source>Add a message to communicate with the moderation team</source> | 9301 | <source>Add a message to communicate with the moderation team</source> |
8988 | <target state="new">Add a message to communicate with the moderation team</target> | 9302 | <target state="new">Add a message to communicate with the moderation team</target> |
8989 | 9303 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.ts</context><context context-type="linenumber">103</context></context-group> | |
8990 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | 9304 | </trans-unit> |
8991 | <trans-unit id="3085641638748358969" datatype="html"> | 9305 | <trans-unit id="3085641638748358969" datatype="html"> |
8992 | <source>Account <x id="PH"/> unmuted by the instance.</source> | 9306 | <source>Account <x id="PH"/> unmuted by the instance.</source> |
8993 | <target state="new">Account | 9307 | <target state="new">Account |
8994 | <x id="PH"/> unmuted by the instance. | 9308 | <x id="PH"/> unmuted by the instance. |
8995 | </target> | 9309 | </target> |
8996 | 9310 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">189</context></context-group> | |
8997 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">189</context></context-group></trans-unit> | 9311 | </trans-unit> |
8998 | <trans-unit id="4991892477258601737" datatype="html"> | 9312 | <trans-unit id="4991892477258601737" datatype="html"> |
8999 | <source>Instance <x id="PH"/> muted by the instance.</source> | 9313 | <source>Instance <x id="PH"/> muted by the instance.</source> |
9000 | <target state="new">Instance | 9314 | <target state="new">Instance |
9001 | <x id="PH"/> muted by the instance. | 9315 | <x id="PH"/> muted by the instance. |
9002 | </target> | 9316 | </target> |
9003 | 9317 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">203</context></context-group> | |
9004 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">203</context></context-group></trans-unit> | 9318 | </trans-unit> |
9005 | <trans-unit id="4379430340167561220" datatype="html"> | 9319 | <trans-unit id="4379430340167561220" datatype="html"> |
9006 | <source>Instance <x id="PH"/> unmuted by the instance.</source> | 9320 | <source>Instance <x id="PH"/> unmuted by the instance.</source> |
9007 | <target state="new">Instance | 9321 | <target state="new">Instance |
9008 | <x id="PH"/> unmuted by the instance. | 9322 | <x id="PH"/> unmuted by the instance. |
9009 | </target> | 9323 | </target> |
9010 | 9324 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">217</context></context-group> | |
9011 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">217</context></context-group></trans-unit> | 9325 | </trans-unit> |
9012 | <trans-unit id="8173437618471379044" datatype="html"> | 9326 | <trans-unit id="8173437618471379044" datatype="html"> |
9013 | <source>Are you sure you want to remove all the comments of this account?</source> | 9327 | <source>Are you sure you want to remove all the comments of this account?</source> |
9014 | <target state="new">Are you sure you want to remove all the comments of this account?</target> | 9328 | <target state="new">Are you sure you want to remove all the comments of this account?</target> |
9015 | 9329 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">228</context></context-group> | |
9016 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">228</context></context-group></trans-unit> | 9330 | </trans-unit> |
9017 | <trans-unit id="6315346579373254461" datatype="html"> | 9331 | <trans-unit id="6315346579373254461" datatype="html"> |
9018 | <source>Delete account comments</source> | 9332 | <source>Delete account comments</source> |
9019 | <target state="new">Delete account comments</target> | 9333 | <target state="new">Delete account comments</target> |
9020 | 9334 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">229</context></context-group> | |
9021 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> | 9335 | </trans-unit> |
9022 | <trans-unit id="8559170154828316298" datatype="html"> | 9336 | <trans-unit id="8559170154828316298" datatype="html"> |
9023 | <source>Will remove comments of this account (may take several minutes).</source> | 9337 | <source>Will remove comments of this account (may take several minutes).</source> |
9024 | <target state="new">Will remove comments of this account (may take several minutes).</target> | 9338 | <target state="new">Will remove comments of this account (may take several minutes).</target> |
9025 | 9339 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">235</context></context-group> | |
9026 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">235</context></context-group></trans-unit> | 9340 | </trans-unit> |
9027 | <trans-unit id="7187838764371214919" datatype="html"> | 9341 | <trans-unit id="7187838764371214919" datatype="html"> |
9028 | <source>Edit user</source> | 9342 | <source>Edit user</source> |
9029 | <target state="new">Edit user</target> | 9343 | <target state="new">Edit user</target> |
9030 | 9344 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">263</context></context-group> | |
9031 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">263</context></context-group></trans-unit> | 9345 | </trans-unit> |
9032 | <trans-unit id="4728427543536046034" datatype="html"> | 9346 | <trans-unit id="4728427543536046034" datatype="html"> |
9033 | <source>Change quota, role, and more.</source> | 9347 | <source>Change quota, role, and more.</source> |
9034 | <target state="new">Change quota, role, and more.</target> | 9348 | <target state="new">Change quota, role, and more.</target> |
9035 | 9349 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">264</context></context-group> | |
9036 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">264</context></context-group></trans-unit> | 9350 | </trans-unit> |
9037 | <trans-unit id="7913022656086109932" datatype="html"> | 9351 | <trans-unit id="7913022656086109932" datatype="html"> |
9038 | <source>Delete user</source> | 9352 | <source>Delete user</source> |
9039 | <target state="new">Delete user</target> | 9353 | <target state="new">Delete user</target> |
9040 | 9354 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">268</context></context-group> | |
9041 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">268</context></context-group></trans-unit> | 9355 | </trans-unit> |
9042 | <trans-unit id="7577876364431026966" datatype="html"> | 9356 | <trans-unit id="7577876364431026966" datatype="html"> |
9043 | <source>Unban user</source> | 9357 | <source>Unban user</source> |
9044 | <target state="new">Unban user</target> | 9358 | <target state="new">Unban user</target> |
9045 | 9359 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">279</context></context-group> | |
9046 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">279</context></context-group></trans-unit> | 9360 | </trans-unit> |
9047 | <trans-unit id="3508163549683020253" datatype="html"> | 9361 | <trans-unit id="3508163549683020253" datatype="html"> |
9048 | <source>Allow the user to login and create videos/comments again</source> | 9362 | <source>Allow the user to login and create videos/comments again</source> |
9049 | <target state="new">Allow the user to login and create videos/comments again</target> | 9363 | <target state="new">Allow the user to login and create videos/comments again</target> |
9050 | 9364 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">280</context></context-group> | |
9051 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">280</context></context-group></trans-unit> | 9365 | </trans-unit> |
9052 | <trans-unit id="1888272455383898478" datatype="html"> | 9366 | <trans-unit id="1888272455383898478" datatype="html"> |
9053 | <source>Mute this account</source> | 9367 | <source>Mute this account</source> |
9054 | <target state="new">Mute this account</target> | 9368 | <target state="new">Mute this account</target> |
9055 | 9369 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">297</context></context-group> | |
9056 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">297</context></context-group></trans-unit><trans-unit id="2365286519320230773" datatype="html"> | 9370 | </trans-unit> |
9057 | <source>Hide any content from that user from you.</source><target state="new">Hide any content from that user from you.</target> | 9371 | <trans-unit id="2365286519320230773" datatype="html"> |
9058 | 9372 | <source>Hide any content from that user from you.</source> | |
9059 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">298</context></context-group></trans-unit> | 9373 | <target state="new">Hide any content from that user from you.</target> |
9060 | 9374 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">298</context></context-group> | |
9375 | </trans-unit> | ||
9061 | <trans-unit id="4043508901590508211" datatype="html"> | 9376 | <trans-unit id="4043508901590508211" datatype="html"> |
9062 | <source>Unmute this account</source> | 9377 | <source>Unmute this account</source> |
9063 | <target state="new">Unmute this account</target> | 9378 | <target state="new">Unmute this account</target> |
9064 | 9379 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">303</context></context-group> | |
9065 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">303</context></context-group></trans-unit> | 9380 | </trans-unit> |
9066 | <trans-unit id="2843593344827160627" datatype="html"> | 9381 | <trans-unit id="2843593344827160627" datatype="html"> |
9067 | <source>Show back content from that user for you.</source> | 9382 | <source>Show back content from that user for you.</source> |
9068 | <target state="new">Show back content from that user for you.</target> | 9383 | <target state="new">Show back content from that user for you.</target> |
9069 | 9384 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">304</context></context-group> | |
9070 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">304</context></context-group></trans-unit> | 9385 | </trans-unit> |
9071 | <trans-unit id="6198109035280957164" datatype="html"> | 9386 | <trans-unit id="6198109035280957164" datatype="html"> |
9072 | <source>Mute the instance</source> | 9387 | <source>Mute the instance</source> |
9073 | <target state="new">Mute the instance</target> | 9388 | <target state="new">Mute the instance</target> |
9074 | 9389 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">309</context></context-group> | |
9075 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">309</context></context-group></trans-unit> | 9390 | </trans-unit> |
9076 | <trans-unit id="4537735378779630558" datatype="html"> | 9391 | <trans-unit id="4537735378779630558" datatype="html"> |
9077 | <source>Hide any content from that instance for you.</source> | 9392 | <source>Hide any content from that instance for you.</source> |
9078 | <target state="new">Hide any content from that instance for you.</target> | 9393 | <target state="new">Hide any content from that instance for you.</target> |
9079 | 9394 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">310</context></context-group> | |
9080 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">310</context></context-group></trans-unit> | 9395 | </trans-unit> |
9081 | <trans-unit id="6247487021683085858" datatype="html"> | 9396 | <trans-unit id="6247487021683085858" datatype="html"> |
9082 | <source>Unmute the instance</source> | 9397 | <source>Unmute the instance</source> |
9083 | <target state="new">Unmute the instance</target> | 9398 | <target state="new">Unmute the instance</target> |
9084 | 9399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">315</context></context-group> | |
9085 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">315</context></context-group></trans-unit> | 9400 | </trans-unit> |
9086 | <trans-unit id="4024846984475742259" datatype="html"> | 9401 | <trans-unit id="4024846984475742259" datatype="html"> |
9087 | <source>Show back content from that instance for you.</source> | 9402 | <source>Show back content from that instance for you.</source> |
9088 | <target state="new">Show back content from that instance for you.</target> | 9403 | <target state="new">Show back content from that instance for you.</target> |
9089 | 9404 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">316</context></context-group> | |
9090 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">316</context></context-group></trans-unit> | 9405 | </trans-unit> |
9091 | <trans-unit id="3108200185023875257" datatype="html"> | 9406 | <trans-unit id="3108200185023875257" datatype="html"> |
9092 | <source>Remove comments from your videos</source> | 9407 | <source>Remove comments from your videos</source> |
9093 | <target state="new">Remove comments from your videos</target> | 9408 | <target state="new">Remove comments from your videos</target> |
9094 | 9409 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">321</context></context-group> | |
9095 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">321</context></context-group></trans-unit><trans-unit id="4810478487244286994" datatype="html"> | 9410 | </trans-unit> |
9096 | <source>Remove comments made by this account on your videos.</source><target state="new">Remove comments made by this account on your videos.</target> | 9411 | <trans-unit id="4810478487244286994" datatype="html"> |
9097 | 9412 | <source>Remove comments made by this account on your videos.</source> | |
9098 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">322</context></context-group></trans-unit> | 9413 | <target state="new">Remove comments made by this account on your videos.</target> |
9099 | 9414 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">322</context></context-group> | |
9415 | </trans-unit> | ||
9100 | <trans-unit id="81452583525574033" datatype="html"> | 9416 | <trans-unit id="81452583525574033" datatype="html"> |
9101 | <source>Mute this account by your instance</source> | 9417 | <source>Mute this account by your instance</source> |
9102 | <target state="new">Mute this account by your instance</target> | 9418 | <target state="new">Mute this account by your instance</target> |
9103 | 9419 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">333</context></context-group> | |
9104 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">333</context></context-group></trans-unit><trans-unit id="2077144178298031252" datatype="html"> | 9420 | </trans-unit> |
9105 | <source>Hide any content from that user from you, your instance and its users.</source><target state="new">Hide any content from that user from you, your instance and its users.</target> | 9421 | <trans-unit id="2077144178298031252" datatype="html"> |
9106 | 9422 | <source>Hide any content from that user from you, your instance and its users.</source> | |
9107 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">334</context></context-group></trans-unit> | 9423 | <target state="new">Hide any content from that user from you, your instance and its users.</target> |
9108 | 9424 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">334</context></context-group> | |
9425 | </trans-unit> | ||
9109 | <trans-unit id="884942914962310163" datatype="html"> | 9426 | <trans-unit id="884942914962310163" datatype="html"> |
9110 | <source>Unmute this account by your instance</source> | 9427 | <source>Unmute this account by your instance</source> |
9111 | <target state="new">Unmute this account by your instance</target> | 9428 | <target state="new">Unmute this account by your instance</target> |
9112 | 9429 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">339</context></context-group> | |
9113 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">339</context></context-group></trans-unit><trans-unit id="7675070596643104983" datatype="html"> | 9430 | </trans-unit> |
9114 | <source>Show this user's content to the users of this instance again.</source><target state="new">Show this user's content to the users of this instance again.</target> | 9431 | <trans-unit id="7675070596643104983" datatype="html"> |
9115 | 9432 | <source>Show this user's content to the users of this instance again.</source> | |
9116 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9433 | <target state="new">Show this user's content to the users of this instance again.</target> |
9117 | 9434 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">340</context></context-group> | |
9435 | </trans-unit> | ||
9118 | <trans-unit id="3191211873505538654" datatype="html"> | 9436 | <trans-unit id="3191211873505538654" datatype="html"> |
9119 | <source>Mute the instance by your instance</source> | 9437 | <source>Mute the instance by your instance</source> |
9120 | <target state="new">Mute the instance by your instance</target> | 9438 | <target state="new">Mute the instance by your instance</target> |
9121 | 9439 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">351</context></context-group> | |
9122 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">351</context></context-group></trans-unit><trans-unit id="525915681688649453" datatype="html"> | 9440 | </trans-unit> |
9123 | <source>Hide any content from that instance from you, your instance and its users.</source><target state="new">Hide any content from that instance from you, your instance and its users.</target> | 9441 | <trans-unit id="525915681688649453" datatype="html"> |
9124 | 9442 | <source>Hide any content from that instance from you, your instance and its users.</source> | |
9125 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9443 | <target state="new">Hide any content from that instance from you, your instance and its users.</target> |
9126 | 9444 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">352</context></context-group> | |
9445 | </trans-unit> | ||
9127 | <trans-unit id="5325628963747139770" datatype="html"> | 9446 | <trans-unit id="5325628963747139770" datatype="html"> |
9128 | <source>Unmute the instance by your instance</source> | 9447 | <source>Unmute the instance by your instance</source> |
9129 | <target state="new">Unmute the instance by your instance</target> | 9448 | <target state="new">Unmute the instance by your instance</target> |
9130 | 9449 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">357</context></context-group> | |
9131 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">357</context></context-group></trans-unit> | 9450 | </trans-unit> |
9132 | <trans-unit id="758471033841077314" datatype="html"> | 9451 | <trans-unit id="758471033841077314" datatype="html"> |
9133 | <source>Show back content from that instance for you, your instance and its users.</source> | 9452 | <source>Show back content from that instance for you, your instance and its users.</source> |
9134 | <target state="new">Show back content from that instance for you, your instance and its users.</target> | 9453 | <target state="new">Show back content from that instance for you, your instance and its users.</target> |
9135 | 9454 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">358</context></context-group> | |
9136 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">358</context></context-group></trans-unit> | 9455 | </trans-unit> |
9137 | <trans-unit id="3785095284194008197" datatype="html"> | 9456 | <trans-unit id="3785095284194008197" datatype="html"> |
9138 | <source>Remove comments from your instance</source> | 9457 | <source>Remove comments from your instance</source> |
9139 | <target state="new">Remove comments from your instance</target> | 9458 | <target state="new">Remove comments from your instance</target> |
9140 | 9459 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">368</context></context-group> | |
9141 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">368</context></context-group></trans-unit><trans-unit id="4809327075591089709" datatype="html"> | 9460 | </trans-unit> |
9142 | <source>Remove comments made by this account from your instance.</source><target state="new">Remove comments made by this account from your instance.</target> | 9461 | <trans-unit id="4809327075591089709" datatype="html"> |
9143 | 9462 | <source>Remove comments made by this account from your instance.</source> | |
9144 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">369</context></context-group></trans-unit> | 9463 | <target state="new">Remove comments made by this account from your instance.</target> |
9145 | 9464 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">369</context></context-group> | |
9465 | </trans-unit> | ||
9146 | <trans-unit id="6746743143272021955" datatype="html"> | 9466 | <trans-unit id="6746743143272021955" datatype="html"> |
9147 | <source>Violent or repulsive</source> | 9467 | <source>Violent or repulsive</source> |
9148 | <target state="new">Violent or repulsive</target> | 9468 | <target state="new">Violent or repulsive</target> |
9149 | 9469 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">139</context></context-group> | |
9150 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9470 | </trans-unit> |
9151 | <trans-unit id="5272553814105457319" datatype="html"> | 9471 | <trans-unit id="5272553814105457319" datatype="html"> |
9152 | <source>Contains offensive, violent, or coarse language or iconography.</source> | 9472 | <source>Contains offensive, violent, or coarse language or iconography.</source> |
9153 | <target state="new">Contains offensive, violent, or coarse language or iconography.</target> | 9473 | <target state="new">Contains offensive, violent, or coarse language or iconography.</target> |
9154 | 9474 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">140</context></context-group> | |
9155 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">140</context></context-group></trans-unit> | 9475 | </trans-unit> |
9156 | <trans-unit id="6979166468838302269" datatype="html"> | 9476 | <trans-unit id="6979166468838302269" datatype="html"> |
9157 | <source>Hateful or abusive</source> | 9477 | <source>Hateful or abusive</source> |
9158 | <target state="new">Hateful or abusive</target> | 9478 | <target state="new">Hateful or abusive</target> |
9159 | 9479 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">144</context></context-group> | |
9160 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 9480 | </trans-unit> |
9161 | <trans-unit id="8006612645824137458" datatype="html"> | 9481 | <trans-unit id="8006612645824137458" datatype="html"> |
9162 | <source>Contains abusive, racist or sexist language or iconography.</source> | 9482 | <source>Contains abusive, racist or sexist language or iconography.</source> |
9163 | <target state="new">Contains abusive, racist or sexist language or iconography.</target> | 9483 | <target state="new">Contains abusive, racist or sexist language or iconography.</target> |
9164 | 9484 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">145</context></context-group> | |
9165 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">145</context></context-group></trans-unit> | 9485 | </trans-unit> |
9166 | <trans-unit id="5413552012131573970" datatype="html"> | 9486 | <trans-unit id="5413552012131573970" datatype="html"> |
9167 | <source>Spam, ad or false news</source> | 9487 | <source>Spam, ad or false news</source> |
9168 | <target state="new">Spam, ad or false news</target> | 9488 | <target state="new">Spam, ad or false news</target> |
9169 | 9489 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">149</context></context-group> | |
9170 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">149</context></context-group></trans-unit> | 9490 | </trans-unit> |
9171 | <trans-unit id="6374940465448453212" datatype="html"> | 9491 | <trans-unit id="6374940465448453212" datatype="html"> |
9172 | <source>Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</source> | 9492 | <source>Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</source> |
9173 | <target state="new">Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</target> | 9493 | <target state="new">Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</target> |
9174 | 9494 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">150</context></context-group> | |
9175 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">150</context></context-group></trans-unit> | 9495 | </trans-unit> |
9176 | <trans-unit id="7401289443263903223" datatype="html"> | 9496 | <trans-unit id="7401289443263903223" datatype="html"> |
9177 | <source>Privacy breach or doxxing</source> | 9497 | <source>Privacy breach or doxxing</source> |
9178 | <target state="new">Privacy breach or doxxing</target> | 9498 | <target state="new">Privacy breach or doxxing</target> |
9179 | 9499 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">154</context></context-group> | |
9180 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">154</context></context-group></trans-unit> | 9500 | </trans-unit> |
9181 | <trans-unit id="8363008638081993167" datatype="html"> | 9501 | <trans-unit id="8363008638081993167" datatype="html"> |
9182 | <source>Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).</source> | 9502 | <source>Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).</source> |
9183 | <target state="new">Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).</target> | 9503 | <target state="new">Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).</target> |
9184 | 9504 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">155</context></context-group> | |
9185 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">155</context></context-group></trans-unit> | 9505 | </trans-unit> |
9186 | <trans-unit id="380450014369168564" datatype="html"> | 9506 | <trans-unit id="380450014369168564" datatype="html"> |
9187 | <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> | 9507 | <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> |
9188 | <target state="new">Infringes your copyright wrt. the regional laws with which the server must comply.</target> | 9508 | <target state="new">Infringes your copyright wrt. the regional laws with which the server must comply.</target> |
9189 | 9509 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">160</context></context-group> | |
9190 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">160</context></context-group></trans-unit> | 9510 | </trans-unit> |
9191 | <trans-unit id="1378933246324202613" datatype="html"> | 9511 | <trans-unit id="1378933246324202613" datatype="html"> |
9192 | <source>Breaks server rules</source> | 9512 | <source>Breaks server rules</source> |
9193 | <target state="new">Breaks server rules</target> | 9513 | <target state="new">Breaks server rules</target> |
9194 | 9514 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">164</context></context-group> | |
9195 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">164</context></context-group></trans-unit> | 9515 | </trans-unit> |
9196 | <trans-unit id="7930601470861156366" datatype="html"> | 9516 | <trans-unit id="7930601470861156366" datatype="html"> |
9197 | <source>Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.</source> | 9517 | <source>Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.</source> |
9198 | <target state="new">Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.</target> | 9518 | <target state="new">Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.</target> |
9199 | 9519 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">165</context></context-group> | |
9200 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">165</context></context-group></trans-unit> | 9520 | </trans-unit> |
9201 | <trans-unit id="8700771664729810984" datatype="html"> | 9521 | <trans-unit id="8700771664729810984" datatype="html"> |
9202 | <source>The above can only be seen in thumbnails.</source> | 9522 | <source>The above can only be seen in thumbnails.</source> |
9203 | <target state="new">The above can only be seen in thumbnails.</target> | 9523 | <target state="new">The above can only be seen in thumbnails.</target> |
9204 | 9524 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">174</context></context-group> | |
9205 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">174</context></context-group></trans-unit><trans-unit id="2602773901491715295" datatype="html"> | 9525 | </trans-unit> |
9206 | <source>Captions</source><target state="new">Captions</target> | 9526 | <trans-unit id="2602773901491715295" datatype="html"> |
9207 | 9527 | <source>Captions</source> | |
9208 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">178</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 9528 | <target state="new">Captions</target> |
9529 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">178</context></context-group> | ||
9530 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">28</context></context-group> | ||
9531 | </trans-unit> | ||
9209 | <trans-unit id="5779804235244672536" datatype="html"> | 9532 | <trans-unit id="5779804235244672536" datatype="html"> |
9210 | <source>The above can only be seen in captions (please describe which).</source> | 9533 | <source>The above can only be seen in captions (please describe which).</source> |
9211 | <target state="new">The above can only be seen in captions (please describe which).</target> | 9534 | <target state="new">The above can only be seen in captions (please describe which).</target> |
9212 | 9535 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">179</context></context-group> | |
9213 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">179</context></context-group></trans-unit> | 9536 | </trans-unit> |
9214 | |||
9215 | <trans-unit id="968295009933361070"> | 9537 | <trans-unit id="968295009933361070"> |
9216 | <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> | 9538 | <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> |
9217 | <target>Příliš mnoho pokusů, zkuste to prosím znovu za | 9539 | <target>Příliš mnoho pokusů, zkuste to prosím znovu za <x id="PH"/> minut.</target> |
9218 | <x id="PH"/> minut. | 9540 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">67</context></context-group> |
9219 | </target> | 9541 | </trans-unit> |
9220 | |||
9221 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | ||
9222 | <trans-unit id="4965472196059235310"> | 9542 | <trans-unit id="4965472196059235310"> |
9223 | <source>Too many attempts, please try again later.</source> | 9543 | <source>Too many attempts, please try again later.</source> |
9224 | <target>Příliš mnoho pokusů, zkuste to prosím později.</target> | 9544 | <target>Příliš mnoho pokusů, zkuste to prosím později.</target> |
9225 | 9545 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">69</context></context-group> | |
9226 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> | 9546 | </trans-unit> |
9227 | <trans-unit id="1693549688987384699"> | 9547 | <trans-unit id="1693549688987384699"> |
9228 | <source>Server error. Please retry later.</source> | 9548 | <source>Server error. Please retry later.</source> |
9229 | <target>Chyba serveru. Zkuste to prosím později.</target> | 9549 | <target>Chyba serveru. Zkuste to prosím později.</target> |
9230 | 9550 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">72</context></context-group> | |
9231 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 9551 | </trans-unit> |
9232 | <trans-unit id="5927402622550505067" datatype="html"> | 9552 | <trans-unit id="5927402622550505067" datatype="html"> |
9233 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> | 9553 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> |
9234 | <target state="new">Subscribed to all current channels of | 9554 | <target state="new">Subscribed to all current channels of |
9235 | <x id="PH"/>. You will be notified of all their new videos. | 9555 | <x id="PH"/>. You will be notified of all their new videos. |
9236 | </target> | 9556 | </target> |
9237 | 9557 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">109</context></context-group> | |
9238 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">109</context></context-group></trans-unit> | 9558 | </trans-unit> |
9239 | <trans-unit id="2780460651686172544" datatype="html"> | 9559 | <trans-unit id="2780460651686172544" datatype="html"> |
9240 | <source>Subscribed to <x id="PH"/>. You will be notified of all their new videos.</source> | 9560 | <source>Subscribed to <x id="PH"/>. You will be notified of all their new videos.</source> |
9241 | <target state="new">Subscribed to | 9561 | <target state="new">Subscribed to |
9242 | <x id="PH"/>. You will be notified of all their new videos. | 9562 | <x id="PH"/>. You will be notified of all their new videos. |
9243 | </target> | 9563 | </target> |
9244 | 9564 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">110</context></context-group> | |
9245 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">110</context></context-group></trans-unit> | 9565 | </trans-unit> |
9246 | <trans-unit id="7019115336138470191"> | 9566 | <trans-unit id="7019115336138470191"> |
9247 | <source>Subscribed</source> | 9567 | <source>Subscribed</source> |
9248 | <target>Odebíráte</target> | 9568 | <target>Odebíráte</target> |
9249 | 9569 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">112</context></context-group> | |
9250 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">112</context></context-group></trans-unit> | 9570 | </trans-unit> |
9251 | <trans-unit id="7070823964189404459" datatype="html"> | 9571 | <trans-unit id="7070823964189404459" datatype="html"> |
9252 | <source>Unsubscribed from all channels of | 9572 | <source>Unsubscribed from all channels of <x id="PH"/> </source> |
9253 | <x id="PH"/> | ||
9254 | </source> | ||
9255 | <target state="new">Unsubscribed from all channels of | 9573 | <target state="new">Unsubscribed from all channels of |
9256 | <x id="PH"/> | 9574 | <x id="PH"/> |
9257 | </target> | 9575 | </target> |
9258 | 9576 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">139</context></context-group> | |
9259 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9577 | </trans-unit> |
9260 | <trans-unit id="9201562016527884133"> | 9578 | <trans-unit id="9201562016527884133"> |
9261 | <source>Unsubscribed from | 9579 | <source>Unsubscribed from <x id="PH"/> </source> |
9262 | <x id="PH"/> | ||
9263 | </source> | ||
9264 | <target>Již neodebíráte kanál | 9580 | <target>Již neodebíráte kanál |
9265 | <x id="PH"/> | 9581 | <x id="PH"/> |
9266 | </target> | 9582 | </target> |
9267 | 9583 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">140</context></context-group> | |
9268 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">140</context></context-group></trans-unit> | 9584 | </trans-unit> |
9269 | <trans-unit id="516954136005961440"> | 9585 | <trans-unit id="516954136005961440"> |
9270 | <source>Unsubscribed</source> | 9586 | <source>Unsubscribed</source> |
9271 | <target>Odběr zrušen</target> | 9587 | <target>Odběr zrušen</target> |
9272 | 9588 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">142</context></context-group> | |
9273 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">142</context></context-group></trans-unit><trans-unit id="0713f058de1d239f503a974e384eda384d35ad2b" datatype="html"> | 9589 | </trans-unit> |
9274 | <source>Multiple ways to subscribe to the current channel</source><target state="new">Multiple ways to subscribe to the current channel</target> | 9590 | <trans-unit id="0713f058de1d239f503a974e384eda384d35ad2b" datatype="html"> |
9591 | <source>Multiple ways to subscribe to the current channel</source> | ||
9592 | <target state="new">Multiple ways to subscribe to the current channel</target> | ||
9275 | <context-group purpose="location"> | 9593 | <context-group purpose="location"> |
9276 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 9594 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
9277 | <context context-type="linenumber">44</context> | 9595 | <context context-type="linenumber">44</context> |
9278 | </context-group> | 9596 | </context-group> |
9279 | </trans-unit><trans-unit id="29e51bac84b50b9a58ba54122663f31c82a504d5" datatype="html"> | 9597 | </trans-unit> |
9280 | <source>Open subscription dropdown</source><target state="new">Open subscription dropdown</target> | 9598 | <trans-unit id="29e51bac84b50b9a58ba54122663f31c82a504d5" datatype="html"> |
9599 | <source>Open subscription dropdown</source> | ||
9600 | <target state="new">Open subscription dropdown</target> | ||
9281 | <context-group purpose="location"> | 9601 | <context-group purpose="location"> |
9282 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 9602 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
9283 | <context context-type="linenumber">46</context> | 9603 | <context context-type="linenumber">46</context> |
@@ -9286,190 +9606,212 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9286 | <trans-unit id="4968151111061046122" datatype="html"> | 9606 | <trans-unit id="4968151111061046122" datatype="html"> |
9287 | <source>Moderator</source> | 9607 | <source>Moderator</source> |
9288 | <target state="new">Moderator</target> | 9608 | <target state="new">Moderator</target> |
9289 | 9609 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">394</context></context-group> | |
9290 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">394</context></context-group></trans-unit> | 9610 | </trans-unit> |
9291 | <trans-unit id="3723085768598852106" datatype="html"> | 9611 | <trans-unit id="3723085768598852106" datatype="html"> |
9292 | <source>Video removed from | 9612 | <source>Video removed from <x id="PH"/> </source> |
9293 | <x id="PH"/> | ||
9294 | </source> | ||
9295 | <target state="new">Video removed from | 9613 | <target state="new">Video removed from |
9296 | <x id="PH"/> | 9614 | <x id="PH"/> |
9297 | </target> | 9615 | </target> |
9298 | 9616 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">98</context></context-group> | |
9299 | 9617 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">307</context></context-group> | |
9300 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">98</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">307</context></context-group></trans-unit> | 9618 | </trans-unit> |
9301 | <trans-unit id="1056145626640340519" datatype="html"> | 9619 | <trans-unit id="1056145626640340519" datatype="html"> |
9302 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> | 9620 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> |
9303 | <target state="new">Video added in | 9621 | <target state="translated">Video přidáno do <x id="PH"/> v časových známkách <x id="PH_1"/></target> |
9304 | <x id="PH"/> at timestamps | 9622 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">377</context></context-group> |
9305 | <x id="PH_1"/> | 9623 | </trans-unit> |
9306 | </target> | ||
9307 | |||
9308 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">377</context></context-group></trans-unit> | ||
9309 | <trans-unit id="7754186870520534716" datatype="html"> | 9624 | <trans-unit id="7754186870520534716" datatype="html"> |
9310 | <source>Video added in | 9625 | <source>Video added in <x id="PH"/> </source> |
9311 | <x id="PH"/> | ||
9312 | </source> | ||
9313 | <target state="new">Video added in | 9626 | <target state="new">Video added in |
9314 | <x id="PH"/> | 9627 | <x id="PH"/> |
9315 | </target> | 9628 | </target> |
9316 | 9629 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">378</context></context-group> | |
9317 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">378</context></context-group></trans-unit> | 9630 | </trans-unit> |
9318 | <trans-unit id="985751964589921228" datatype="html"> | 9631 | <trans-unit id="985751964589921228" datatype="html"> |
9319 | <source>Timestamps updated</source> | 9632 | <source>Timestamps updated</source> |
9320 | <target state="new">Timestamps updated</target> | 9633 | <target state="new">Timestamps updated</target> |
9321 | 9634 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">117</context></context-group> | |
9322 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">273</context></context-group></trans-unit><trans-unit id="6421445850411984665" datatype="html"> | 9635 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">273</context></context-group> |
9323 | <source>Starts at </source><target state="new">Starts at </target> | 9636 | </trans-unit> |
9324 | 9637 | <trans-unit id="6421445850411984665" datatype="html"> | |
9325 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">140</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">143</context></context-group></trans-unit><trans-unit id="7145200412085189912" datatype="html"> | 9638 | <source>Starts at</source> |
9326 | <source>Stops at </source><target state="new">Stops at </target> | 9639 | <target state="new">Starts at </target> |
9327 | 9640 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">140</context></context-group> | |
9328 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">141</context></context-group></trans-unit><trans-unit id="921225940108335688" datatype="html"> | 9641 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">143</context></context-group> |
9329 | <source> and stops at </source><target state="new"> and stops at </target> | 9642 | </trans-unit> |
9330 | 9643 | <trans-unit id="7145200412085189912" datatype="html"> | |
9331 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">143</context></context-group></trans-unit> | 9644 | <source>Stops at</source> |
9332 | 9645 | <target state="new">Stops at </target> | |
9333 | 9646 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">141</context></context-group> | |
9334 | 9647 | </trans-unit> | |
9648 | <trans-unit id="921225940108335688" datatype="html"> | ||
9649 | <source>and stops at</source> | ||
9650 | <target state="new"> and stops at </target> | ||
9651 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">143</context></context-group> | ||
9652 | </trans-unit> | ||
9335 | <trans-unit id="2909684945706361544" datatype="html"> | 9653 | <trans-unit id="2909684945706361544" datatype="html"> |
9336 | <source>Delete video</source> | 9654 | <source>Delete video</source> |
9337 | <target state="new">Delete video</target> | 9655 | <target state="new">Delete video</target> |
9338 | 9656 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">366</context></context-group> | |
9339 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">366</context></context-group></trans-unit> | 9657 | </trans-unit> |
9340 | <trans-unit id="2210418817778733727" datatype="html"> | 9658 | <trans-unit id="2210418817778733727" datatype="html"> |
9341 | <source>Actions for the comment</source> | 9659 | <source>Actions for the comment</source> |
9342 | <target state="new">Actions for the comment</target> | 9660 | <target state="new">Actions for the comment</target> |
9343 | 9661 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">395</context></context-group> | |
9344 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">395</context></context-group></trans-unit> | 9662 | </trans-unit> |
9345 | <trans-unit id="7978668497183230348" datatype="html"> | 9663 | <trans-unit id="7978668497183230348" datatype="html"> |
9346 | <source>Delete comment</source> | 9664 | <source>Delete comment</source> |
9347 | <target state="new">Delete comment</target> | 9665 | <target state="new">Delete comment</target> |
9348 | 9666 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">401</context></context-group> | |
9349 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">401</context></context-group></trans-unit> | 9667 | </trans-unit> |
9350 | <trans-unit id="6747218355168080191" datatype="html"> | 9668 | <trans-unit id="6747218355168080191" datatype="html"> |
9351 | <source>Do you really want to delete this comment?</source> | 9669 | <source>Do you really want to delete this comment?</source> |
9352 | <target state="new">Do you really want to delete this comment?</target> | 9670 | <target state="new">Do you really want to delete this comment?</target> |
9353 | 9671 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">405</context></context-group> | |
9354 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">405</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit> | 9672 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">168</context></context-group> |
9673 | </trans-unit> | ||
9355 | <trans-unit id="7837272126865175984" datatype="html"> | 9674 | <trans-unit id="7837272126865175984" datatype="html"> |
9356 | <source>Comment deleted.</source> | 9675 | <source>Comment deleted.</source> |
9357 | <target state="new">Comment deleted.</target> | 9676 | <target state="new">Comment deleted.</target> |
9358 | 9677 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">413</context></context-group> | |
9359 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">413</context></context-group></trans-unit> | 9678 | </trans-unit> |
9360 | <trans-unit id="346270517625845962" datatype="html"> | 9679 | <trans-unit id="346270517625845962" datatype="html"> |
9361 | <source>Encoder</source> | 9680 | <source>Encoder</source> |
9362 | <target state="new">Encoder</target> | 9681 | <target state="new">Encoder</target> |
9363 | 9682 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">145</context></context-group> | |
9364 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">145</context></context-group></trans-unit> | 9683 | </trans-unit> |
9365 | <trans-unit id="2331557444464201331" datatype="html"> | 9684 | <trans-unit id="2331557444464201331" datatype="html"> |
9366 | <source>Format name</source> | 9685 | <source>Format name</source> |
9367 | <target state="new">Format name</target> | 9686 | <target state="new">Format name</target> |
9368 | 9687 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">146</context></context-group> | |
9369 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">146</context></context-group></trans-unit> | 9688 | </trans-unit> |
9370 | <trans-unit id="45739481977493163" datatype="html"> | 9689 | <trans-unit id="45739481977493163" datatype="html"> |
9371 | <source>Size</source> | 9690 | <source>Size</source> |
9372 | <target state="new">Size</target> | 9691 | <target state="new">Size</target> |
9373 | 9692 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">147</context></context-group> | |
9374 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">147</context></context-group></trans-unit> | 9693 | </trans-unit> |
9375 | <trans-unit id="7742520815129539114" datatype="html"> | 9694 | <trans-unit id="7742520815129539114" datatype="html"> |
9376 | <source>Bitrate</source> | 9695 | <source>Bitrate</source> |
9377 | <target state="new">Bitrate</target> | 9696 | <target state="new">Bitrate</target> |
9378 | 9697 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">149</context></context-group> | |
9379 | 9698 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">172</context></context-group> | |
9380 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">149</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">172</context></context-group></trans-unit> | 9699 | </trans-unit> |
9381 | <trans-unit id="4094960161662677662" datatype="html"> | 9700 | <trans-unit id="4094960161662677662" datatype="html"> |
9382 | <source>Codec</source> | 9701 | <source>Codec</source> |
9383 | <target state="new">Codec</target> | 9702 | <target state="new">Codec</target> |
9384 | 9703 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">169</context></context-group> | |
9385 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit> | 9704 | </trans-unit> |
9386 | <trans-unit id="2115592966120408375"> | 9705 | <trans-unit id="2115592966120408375"> |
9387 | <source>Copied</source> | 9706 | <source>Copied</source> |
9388 | <target>Zkopírováno</target> | 9707 | <target>Zkopírováno</target> |
9389 | 9708 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">47</context></context-group> | |
9390 | 9709 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">136</context></context-group> | |
9391 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit><trans-unit id="1979da7460819153e11d2078244645d94291b69c" datatype="html"> | 9710 | </trans-unit> |
9392 | <source>Copy</source><target state="new">Copy</target> | 9711 | <trans-unit id="1979da7460819153e11d2078244645d94291b69c" datatype="html"> |
9393 | 9712 | <source>Copy</source> | |
9394 | 9713 | <target state="new">Copy</target> | |
9395 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.html</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 9714 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.html</context><context context-type="linenumber">15</context></context-group> |
9715 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.html</context><context context-type="linenumber">15</context></context-group> | ||
9716 | </trans-unit> | ||
9396 | <trans-unit id="1472171759957681533"> | 9717 | <trans-unit id="1472171759957681533"> |
9397 | <source>Video reported.</source> | 9718 | <source>Video reported.</source> |
9398 | <target>Video nahlášeno.</target> | 9719 | <target>Video nahlášeno.</target> |
9399 | 9720 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.ts</context><context context-type="linenumber">110</context></context-group> | |
9400 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.ts</context><context context-type="linenumber">110</context></context-group></trans-unit> | 9721 | </trans-unit> |
9401 | <trans-unit id="3622946684246476652"> | 9722 | <trans-unit id="3622946684246476652"> |
9402 | <source>Do you really want to delete this video?</source> | 9723 | <source>Do you really want to delete this video?</source> |
9403 | <target>Opravdu chcete odstranit toto video?</target> | 9724 | <target>Opravdu chcete odstranit toto video?</target> |
9404 | 9725 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">203</context></context-group> | |
9405 | 9726 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">370</context></context-group> | |
9406 | 9727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">78</context></context-group> | |
9407 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">203</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">370</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 9728 | </trans-unit> |
9408 | <trans-unit id="3941342949736653028" datatype="html"> | 9729 | <trans-unit id="3941342949736653028" datatype="html"> |
9409 | <source>Video deleted.</source> | 9730 | <source>Video deleted.</source> |
9410 | <target state="new">Video deleted.</target> | 9731 | <target state="new">Video deleted.</target> |
9411 | 9732 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">378</context></context-group> | |
9412 | 9733 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">86</context></context-group> | |
9413 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">378</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">86</context></context-group></trans-unit> | 9734 | </trans-unit> |
9414 | <trans-unit id="5072091387445907742" datatype="html"> | 9735 | <trans-unit id="5072091387445907742" datatype="html"> |
9415 | <source>Actions for the reporter</source> | 9736 | <source>Actions for the reporter</source> |
9416 | <target state="new">Actions for the reporter</target> | 9737 | <target state="new">Actions for the reporter</target> |
9417 | 9738 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">305</context></context-group> | |
9418 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">305</context></context-group></trans-unit> | 9739 | </trans-unit> |
9419 | <trans-unit id="6599069899275412095" datatype="html"> | 9740 | <trans-unit id="6599069899275412095" datatype="html"> |
9420 | <source>Mute reporter</source> | 9741 | <source>Mute reporter</source> |
9421 | <target state="new">Mute reporter</target> | 9742 | <target state="new">Mute reporter</target> |
9422 | 9743 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">311</context></context-group> | |
9423 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">311</context></context-group></trans-unit> | 9744 | </trans-unit> |
9424 | <trans-unit id="2990849907502572301" datatype="html"> | 9745 | <trans-unit id="2990849907502572301" datatype="html"> |
9425 | <source>This video will be duplicated by your instance.</source> | 9746 | <source>This video will be duplicated by your instance.</source> |
9426 | <target state="new">This video will be duplicated by your instance.</target> | 9747 | <target state="new">This video will be duplicated by your instance.</target> |
9427 | 9748 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group> | |
9428 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group></trans-unit><trans-unit id="3099741642167775297" datatype="html"> | 9749 | </trans-unit> |
9429 | <source>Download</source><target state="new">Download</target> | 9750 | <trans-unit id="3099741642167775297" datatype="html"> |
9430 | 9751 | <source>Download</source> | |
9431 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">272</context></context-group></trans-unit><trans-unit id="7672331870004528654" datatype="html"> | 9752 | <target state="new">Download</target> |
9432 | <source>Display live information</source><target state="new">Display live information</target> | 9753 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">272</context></context-group> |
9433 | 9754 | </trans-unit> | |
9434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">161</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group></trans-unit><trans-unit id="4021752662928002901" datatype="html"> | 9755 | <trans-unit id="7672331870004528654" datatype="html"> |
9435 | <source>Update</source><target state="new">Update</target> | 9756 | <source>Display live information</source> |
9436 | 9757 | <target state="new">Display live information</target> | |
9437 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">110</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">284</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">146</context></context-group></trans-unit> | 9758 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">161</context></context-group> |
9759 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group> | ||
9760 | </trans-unit> | ||
9761 | <trans-unit id="4021752662928002901" datatype="html"> | ||
9762 | <source>Update</source> | ||
9763 | <target state="new">Update</target> | ||
9764 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">110</context></context-group> | ||
9765 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">17</context></context-group> | ||
9766 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">22</context></context-group> | ||
9767 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">284</context></context-group> | ||
9768 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">146</context></context-group> | ||
9769 | </trans-unit> | ||
9438 | <trans-unit id="420763834450076269" datatype="html"> | 9770 | <trans-unit id="420763834450076269" datatype="html"> |
9439 | <source>Block</source> | 9771 | <source>Block</source> |
9440 | <target state="new">Block</target> | 9772 | <target state="new">Block</target> |
9441 | 9773 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">290</context></context-group> | |
9442 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">290</context></context-group></trans-unit> | 9774 | </trans-unit> |
9443 | <trans-unit id="1950057220179636309" datatype="html"> | 9775 | <trans-unit id="1950057220179636309" datatype="html"> |
9444 | <source>Save to playlist</source> | 9776 | <source>Save to playlist</source> |
9445 | <target state="new">Save to playlist</target> | 9777 | <target state="new">Save to playlist</target> |
9446 | 9778 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">264</context></context-group> | |
9447 | 9779 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">135</context></context-group> | |
9448 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">264</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit><trans-unit id="8272123190776748811" datatype="html"> | 9780 | </trans-unit> |
9449 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source><target state="new">You need to be <a href="/login">logged in</a> to rate this video.</target> | 9781 | <trans-unit id="8272123190776748811" datatype="html"> |
9450 | 9782 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> | |
9451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">220</context></context-group></trans-unit> | 9783 | <target state="new">You need to be <a href="/login">logged in</a> to rate this video.</target> |
9784 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">220</context></context-group> | ||
9785 | </trans-unit> | ||
9452 | <trans-unit id="4503408361537553733" datatype="html"> | 9786 | <trans-unit id="4503408361537553733" datatype="html"> |
9453 | <source>Mirror</source> | 9787 | <source>Mirror</source> |
9454 | <target state="new">Mirror</target> | 9788 | <target state="new">Mirror</target> |
9455 | 9789 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">302</context></context-group> | |
9456 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">302</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9790 | </trans-unit> |
9457 | <source>Report</source><target state="new">Report</target> | 9791 | <trans-unit id="7008439939460403347" datatype="html"> |
9458 | 9792 | <source>Report</source> | |
9459 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">314</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | 9793 | <target state="new">Report</target> |
9460 | <source>Remove</source><target state="new">Remove</target> | 9794 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">314</context></context-group> |
9461 | 9795 | </trans-unit> | |
9462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">181</context></context-group></trans-unit><trans-unit id="6871668720687277843" datatype="html"> | 9796 | <trans-unit id="4814285799071780083" datatype="html"> |
9463 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | 9797 | <source>Remove</source> |
9464 | 9798 | <target state="new">Remove</target> | |
9465 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">189</context></context-group></trans-unit> | 9799 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">181</context></context-group> |
9800 | </trans-unit> | ||
9801 | <trans-unit id="6871668720687277843" datatype="html"> | ||
9802 | <source>Remove & re-draft</source> | ||
9803 | <target state="new">Remove & re-draft</target> | ||
9804 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">189</context></context-group> | ||
9805 | </trans-unit> | ||
9466 | <trans-unit id="4903651219400691248" datatype="html"> | 9806 | <trans-unit id="4903651219400691248" datatype="html"> |
9467 | <source>Mute account</source> | 9807 | <source>Mute account</source> |
9468 | <target state="new">Mute account</target> | 9808 | <target state="new">Mute account</target> |
9469 | 9809 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">322</context></context-group> | |
9470 | 9810 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">287</context></context-group> | |
9471 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">322</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">287</context></context-group></trans-unit><trans-unit id="9faa7899e515045c650407ca7263db6c7b6a90f9" datatype="html"> | 9811 | </trans-unit> |
9472 | <source>Open video actions</source><target state="new">Open video actions</target> | 9812 | <trans-unit id="9faa7899e515045c650407ca7263db6c7b6a90f9" datatype="html"> |
9813 | <source>Open video actions</source> | ||
9814 | <target state="new">Open video actions</target> | ||
9473 | <context-group purpose="location"> | 9815 | <context-group purpose="location"> |
9474 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.html</context> | 9816 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.html</context> |
9475 | <context context-type="linenumber">4</context> | 9817 | <context context-type="linenumber">4</context> |
@@ -9482,507 +9824,615 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9482 | <trans-unit id="3719503424625455635" datatype="html"> | 9824 | <trans-unit id="3719503424625455635" datatype="html"> |
9483 | <source>Mute server account</source> | 9825 | <source>Mute server account</source> |
9484 | <target state="new">Mute server account</target> | 9826 | <target state="new">Mute server account</target> |
9485 | 9827 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">293</context></context-group> | |
9486 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">293</context></context-group></trans-unit> | 9828 | </trans-unit> |
9487 | <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a"> | 9829 | <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a"> |
9488 | <source>Report</source> | 9830 | <source>Report</source> |
9489 | <target>Nahlásit</target> | 9831 | <target>Nahlásit</target> |
9490 | 9832 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">65</context></context-group> | |
9491 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> | 9833 | </trans-unit> |
9492 | <trans-unit id="08a52c67462389568cf14a021ddecc0aedaa9613" datatype="html"> | 9834 | <trans-unit id="08a52c67462389568cf14a021ddecc0aedaa9613" datatype="html"> |
9493 | <source>Reported part</source> | 9835 | <source>Reported part</source> |
9494 | <target state="new">Reported part</target> | 9836 | <target state="new">Reported part</target> |
9495 | 9837 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">83</context></context-group> | |
9496 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 9838 | </trans-unit> |
9497 | <trans-unit id="5c54befce78d70e20c215f10a00e617245f53bc9" datatype="html"> | 9839 | <trans-unit id="5c54befce78d70e20c215f10a00e617245f53bc9" datatype="html"> |
9498 | <source>Note</source> | 9840 | <source>Note</source> |
9499 | <target state="new">Note</target> | 9841 | <target state="new">Note</target> |
9500 | 9842 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">90</context></context-group> | |
9501 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> | 9843 | </trans-unit> |
9502 | <trans-unit id="1d3402b0e60154aaa071f390c63437b701d9048c" datatype="html"> | 9844 | <trans-unit id="1d3402b0e60154aaa071f390c63437b701d9048c" datatype="html"> |
9503 | <source>The video was deleted</source> | 9845 | <source>The video was deleted</source> |
9504 | <target state="new">The video was deleted</target> | 9846 | <target state="new">The video was deleted</target> |
9505 | 9847 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">99</context></context-group> | |
9506 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">99</context></context-group></trans-unit> | 9848 | </trans-unit> |
9507 | <trans-unit id="96e41129ef5d2fa12b7a6ffcab608e9af04d8cbd" datatype="html"> | 9849 | <trans-unit id="96e41129ef5d2fa12b7a6ffcab608e9af04d8cbd" datatype="html"> |
9508 | <source>Comment:</source> | 9850 | <source>Comment:</source> |
9509 | <target state="new">Comment:</target> | 9851 | <target state="new">Comment:</target> |
9510 | 9852 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">105</context></context-group> | |
9511 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">105</context></context-group></trans-unit> | 9853 | </trans-unit> |
9512 | <trans-unit id="91e073459fc31b0fc1f6384aa9ad816f9f796de8" datatype="html"> | 9854 | <trans-unit id="91e073459fc31b0fc1f6384aa9ad816f9f796de8" datatype="html"> |
9513 | <source>Messages with the reporter</source> | 9855 | <source>Messages with the reporter</source> |
9514 | <target state="new">Messages with the reporter</target> | 9856 | <target state="new">Messages with the reporter</target> |
9515 | 9857 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context><context context-type="linenumber">4</context></context-group> | |
9516 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 9858 | </trans-unit> |
9517 | <trans-unit id="f0327abdde923ab7f56cf036a5bf6bc2546126c0" datatype="html"> | 9859 | <trans-unit id="f0327abdde923ab7f56cf036a5bf6bc2546126c0" datatype="html"> |
9518 | <source>Messages with the moderation team</source> | 9860 | <source>Messages with the moderation team</source> |
9519 | <target state="new">Messages with the moderation team</target> | 9861 | <target state="new">Messages with the moderation team</target> |
9520 | 9862 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context><context context-type="linenumber">5</context></context-group> | |
9521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 9863 | </trans-unit> |
9522 | <trans-unit id="158f56a96d95d4ddcfe506aca64f754d01fa11b6" datatype="html"> | 9864 | <trans-unit id="158f56a96d95d4ddcfe506aca64f754d01fa11b6" datatype="html"> |
9523 | <source> | 9865 | <source>No messages for now.</source> |
9524 | No messages for now. | ||
9525 | </source> | ||
9526 | <target state="new"> | 9866 | <target state="new"> |
9527 | No messages for now. | 9867 | No messages for now. |
9528 | </target> | 9868 | </target> |
9529 | 9869 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context><context context-type="linenumber">28</context></context-group> | |
9530 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 9870 | </trans-unit> |
9531 | <trans-unit id="7d1344e3d4e8b1b30abaaf383945b4543d70b303" datatype="html"> | 9871 | <trans-unit id="7d1344e3d4e8b1b30abaaf383945b4543d70b303" datatype="html"> |
9532 | <source>Add a message</source> | 9872 | <source>Add a message</source> |
9533 | <target state="new">Add a message</target> | 9873 | <target state="new">Add a message</target> |
9534 | 9874 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context><context context-type="linenumber">44</context></context-group> | |
9535 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> | 9875 | </trans-unit> |
9536 | <trans-unit id="4058575476871566236"> | 9876 | <trans-unit id="4058575476871566236"> |
9537 | <source>Published</source> | 9877 | <source>Published</source> |
9538 | <target>Publikováno</target> | 9878 | <target>Publikováno</target> |
9539 | 9879 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">162</context></context-group> | |
9540 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">162</context></context-group></trans-unit><trans-unit id="1747928867514972971" datatype="html"> | 9880 | </trans-unit> |
9541 | <source>Publication scheduled on </source><target state="new">Publication scheduled on </target> | 9881 | <trans-unit id="1747928867514972971" datatype="html"> |
9542 | 9882 | <source>Publication scheduled on</source> | |
9543 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">167</context></context-group></trans-unit> | 9883 | <target state="new">Publication scheduled on </target> |
9544 | 9884 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">167</context></context-group> | |
9885 | </trans-unit> | ||
9545 | <trans-unit id="4887724548587271148"> | 9886 | <trans-unit id="4887724548587271148"> |
9546 | <source>Waiting transcoding</source> | 9887 | <source>Waiting transcoding</source> |
9547 | <target>Čekající překódování</target> | 9888 | <target>Čekající překódování</target> |
9548 | 9889 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">171</context></context-group> | |
9549 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit> | 9890 | </trans-unit> |
9550 | <trans-unit id="4517785179607945981"> | 9891 | <trans-unit id="4517785179607945981"> |
9551 | <source>To transcode</source> | 9892 | <source>To transcode</source> |
9552 | <target>K překódování</target> | 9893 | <target>K překódování</target> |
9553 | 9894 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">175</context></context-group> | |
9554 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">175</context></context-group></trans-unit> | 9895 | </trans-unit> |
9555 | <trans-unit id="3299576663551440736"> | 9896 | <trans-unit id="3299576663551440736"> |
9556 | <source>To import</source> | 9897 | <source>To import</source> |
9557 | <target>K importování</target> | 9898 | <target>K importování</target> |
9558 | 9899 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">179</context></context-group> | |
9559 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">179</context></context-group></trans-unit> | 9900 | </trans-unit> |
9560 | <trans-unit id="1795705931707209785" datatype="html"> | 9901 | <trans-unit id="1795705931707209785" datatype="html"> |
9561 | <source>Add to watch later</source> | 9902 | <source>Add to watch later</source> |
9562 | <target state="new">Add to watch later</target> | 9903 | <target state="new">Add to watch later</target> |
9563 | 9904 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.ts</context><context context-type="linenumber">29</context></context-group> | |
9564 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.ts</context><context context-type="linenumber">29</context></context-group></trans-unit> | 9905 | </trans-unit> |
9565 | <trans-unit id="8498940878158860248" datatype="html"> | 9906 | <trans-unit id="8498940878158860248" datatype="html"> |
9566 | <source>Remove from watch later</source> | 9907 | <source>Remove from watch later</source> |
9567 | <target state="new">Remove from watch later</target> | 9908 | <target state="new">Remove from watch later</target> |
9568 | 9909 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.ts</context><context context-type="linenumber">30</context></context-group> | |
9569 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.ts</context><context context-type="linenumber">30</context></context-group></trans-unit><trans-unit id="a2adc8b3bb63e13ff7adf65469f356b692bd294b" datatype="html"> | 9910 | </trans-unit> |
9570 | <source>LIVE ENDED</source><target state="new">LIVE ENDED</target> | 9911 | <trans-unit id="a2adc8b3bb63e13ff7adf65469f356b692bd294b" datatype="html"> |
9571 | 9912 | <source>LIVE ENDED</source> | |
9572 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 9913 | <target state="new">LIVE ENDED</target> |
9914 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">32</context></context-group> | ||
9915 | </trans-unit> | ||
9573 | <trans-unit id="2439066254855913806" datatype="html"> | 9916 | <trans-unit id="2439066254855913806" datatype="html"> |
9574 | <source>Only I can see this video</source> | 9917 | <source>Only I can see this video</source> |
9575 | <target state="new">Only I can see this video</target> | 9918 | <target state="new">Only I can see this video</target> |
9576 | 9919 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">375</context></context-group> | |
9577 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">375</context></context-group></trans-unit> | 9920 | </trans-unit> |
9578 | <trans-unit id="6767380569816110388" datatype="html"> | 9921 | <trans-unit id="6767380569816110388" datatype="html"> |
9579 | <source>Only shareable via a private link</source> | 9922 | <source>Only shareable via a private link</source> |
9580 | <target state="new">Only shareable via a private link</target> | 9923 | <target state="new">Only shareable via a private link</target> |
9581 | 9924 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">379</context></context-group> | |
9582 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">379</context></context-group></trans-unit> | 9925 | </trans-unit> |
9583 | <trans-unit id="6828965264297239528"> | 9926 | <trans-unit id="6828965264297239528"> |
9584 | <source>Anyone can see this video</source> | 9927 | <source>Anyone can see this video</source> |
9585 | <target>Kdokoliv může vidět toto video</target> | 9928 | <target>Kdokoliv může vidět toto video</target> |
9586 | 9929 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">383</context></context-group> | |
9587 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> | 9930 | </trans-unit> |
9588 | <trans-unit id="1425933035739773115" datatype="html"> | 9931 | <trans-unit id="1425933035739773115" datatype="html"> |
9589 | <source>Only users of this instance can see this video</source> | 9932 | <source>Only users of this instance can see this video</source> |
9590 | <target state="new">Only users of this instance can see this video</target> | 9933 | <target state="new">Only users of this instance can see this video</target> |
9591 | 9934 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">387</context></context-group> | |
9592 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">387</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> | 9935 | </trans-unit> |
9593 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | 9936 | <trans-unit id="8312101634344200207" datatype="html"> |
9937 | <source><x id="PH" equiv-text="this.views"/> viewers</source> | ||
9938 | <target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9594 | <context-group purpose="location"> | 9939 | <context-group purpose="location"> |
9595 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | 9940 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> |
9596 | <context context-type="linenumber">211</context> | 9941 | <context context-type="linenumber">211</context> |
9597 | </context-group> | 9942 | </context-group> |
9598 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | 9943 | </trans-unit> |
9599 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | 9944 | <trans-unit id="7756087706411154095" datatype="html"> |
9945 | <source><x id="PH" equiv-text="this.views"/> views</source> | ||
9946 | <target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9600 | <context-group purpose="location"> | 9947 | <context-group purpose="location"> |
9601 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | 9948 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> |
9602 | <context context-type="linenumber">214</context> | 9949 | <context context-type="linenumber">214</context> |
9603 | </context-group> | 9950 | </context-group> |
9604 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | 9951 | </trans-unit> |
9605 | <source>Close</source><target state="new">Close</target> | 9952 | <trans-unit id="ngb.alert.close" datatype="html"> |
9606 | 9953 | <source>Close</source> | |
9607 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9954 | <target state="new">Close</target> |
9608 | <source> Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); | 9955 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group> |
9609 | p"/> </source><target state="new"> Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); | 9956 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group> |
9610 | p"/> </target> | 9957 | </trans-unit> |
9958 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> | ||
9959 | <source>Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </source> | ||
9960 | <target state="new"> Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </target> | ||
9611 | <context-group purpose="location"> | 9961 | <context-group purpose="location"> |
9612 | <context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context> | 9962 | <context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context> |
9613 | <context context-type="linenumber">114,118</context> | 9963 | <context context-type="linenumber">114,118</context> |
9614 | </context-group> | 9964 | </context-group> |
9615 | <note priority="1" from="description">Currently selected slide number read by screen reader</note> | 9965 | <note priority="1" from="description">Currently selected slide number read by screen reader</note> |
9616 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | 9966 | </trans-unit> |
9617 | <source>Previous</source><target state="new">Previous</target> | 9967 | <trans-unit id="ngb.carousel.previous" datatype="html"> |
9618 | 9968 | <source>Previous</source> | |
9619 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">132</context></context-group></trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | 9969 | <target state="new">Previous</target> |
9620 | <source>Next</source><target state="new">Next</target> | 9970 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">132</context></context-group> |
9621 | 9971 | </trans-unit> | |
9622 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">147</context></context-group></trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | 9972 | <trans-unit id="ngb.carousel.next" datatype="html"> |
9623 | <source>Previous month</source><target state="new">Previous month</target> | 9973 | <source>Next</source> |
9624 | 9974 | <target state="new">Next</target> | |
9625 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">34</context></context-group></trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | 9975 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">147</context></context-group> |
9626 | <source>Next month</source><target state="new">Next month</target> | 9976 | </trans-unit> |
9627 | 9977 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> | |
9628 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">57</context></context-group></trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | 9978 | <source>Previous month</source> |
9629 | <source>Select month</source><target state="new">Select month</target> | 9979 | <target state="new">Previous month</target> |
9630 | 9980 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">24</context></context-group> | |
9631 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">49</context></context-group></trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | 9981 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">34</context></context-group> |
9632 | <source>Select year</source><target state="new">Select year</target> | 9982 | </trans-unit> |
9633 | 9983 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> | |
9634 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">59</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">72</context></context-group></trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | 9984 | <source>Next month</source> |
9635 | <source>««</source><target state="new">««</target> | 9985 | <target state="new">Next month</target> |
9636 | 9986 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">44</context></context-group> | |
9637 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">147</context></context-group></trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | 9987 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">57</context></context-group> |
9638 | <source>«</source><target state="new">«</target> | 9988 | </trans-unit> |
9639 | 9989 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> | |
9640 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">153</context></context-group></trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | 9990 | <source>Select month</source> |
9641 | <source>»</source><target state="new">»</target> | 9991 | <target state="new">Select month</target> |
9642 | 9992 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">44</context></context-group> | |
9643 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">158</context></context-group></trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | 9993 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">49</context></context-group> |
9644 | <source>»»</source><target state="new">»»</target> | 9994 | </trans-unit> |
9645 | 9995 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> | |
9646 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">164</context></context-group></trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | 9996 | <source>Select year</source> |
9647 | <source>First</source><target state="new">First</target> | 9997 | <target state="new">Select year</target> |
9648 | 9998 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">59</context></context-group> | |
9649 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">168</context></context-group></trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | 9999 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">72</context></context-group> |
9650 | <source>Previous</source><target state="new">Previous</target> | 10000 | </trans-unit> |
9651 | 10001 | <trans-unit id="ngb.pagination.first" datatype="html"> | |
9652 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">176</context></context-group></trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | 10002 | <source>««</source> |
9653 | <source>Next</source><target state="new">Next</target> | 10003 | <target state="new">««</target> |
9654 | 10004 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">147</context></context-group> | |
9655 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">188</context></context-group></trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | 10005 | </trans-unit> |
9656 | <source>Last</source><target state="new">Last</target> | 10006 | <trans-unit id="ngb.pagination.previous" datatype="html"> |
9657 | 10007 | <source>«</source> | |
9658 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">195</context></context-group></trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | 10008 | <target state="new">«</target> |
9659 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | 10009 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">153</context></context-group> |
9660 | 10010 | </trans-unit> | |
9661 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/progressbar/progressbar.ts</context><context context-type="linenumber">31</context></context-group></trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | 10011 | <trans-unit id="ngb.pagination.next" datatype="html"> |
9662 | <source>HH</source><target state="new">HH</target> | 10012 | <source>»</source> |
9663 | 10013 | <target state="new">»</target> | |
9664 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">46</context></context-group></trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | 10014 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">158</context></context-group> |
9665 | <source>Hours</source><target state="new">Hours</target> | 10015 | </trans-unit> |
9666 | 10016 | <trans-unit id="ngb.pagination.last" datatype="html"> | |
9667 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">50</context></context-group></trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | 10017 | <source>»»</source> |
9668 | <source>MM</source><target state="new">MM</target> | 10018 | <target state="new">»»</target> |
9669 | 10019 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">164</context></context-group> | |
9670 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">55</context></context-group></trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | 10020 | </trans-unit> |
9671 | <source>Minutes</source><target state="new">Minutes</target> | 10021 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> |
9672 | 10022 | <source>First</source> | |
9673 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">62</context></context-group></trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | 10023 | <target state="new">First</target> |
9674 | <source>Increment hours</source><target state="new">Increment hours</target> | 10024 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">168</context></context-group> |
9675 | 10025 | </trans-unit> | |
9676 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">68</context></context-group></trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | 10026 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> |
9677 | <source>Decrement hours</source><target state="new">Decrement hours</target> | 10027 | <source>Previous</source> |
9678 | 10028 | <target state="new">Previous</target> | |
9679 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">73</context></context-group></trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | 10029 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">176</context></context-group> |
9680 | <source>Increment minutes</source><target state="new">Increment minutes</target> | 10030 | </trans-unit> |
9681 | 10031 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> | |
9682 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">80</context></context-group></trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | 10032 | <source>Next</source> |
9683 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | 10033 | <target state="new">Next</target> |
9684 | 10034 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">188</context></context-group> | |
9685 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">86</context></context-group></trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | 10035 | </trans-unit> |
9686 | <source>SS</source><target state="new">SS</target> | 10036 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> |
9687 | 10037 | <source>Last</source> | |
9688 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">91</context></context-group></trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | 10038 | <target state="new">Last</target> |
9689 | <source>Seconds</source><target state="new">Seconds</target> | 10039 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">195</context></context-group> |
9690 | 10040 | </trans-unit> | |
9691 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | 10041 | <trans-unit id="ngb.progressbar.value" datatype="html"> |
9692 | <source>Increment seconds</source><target state="new">Increment seconds</target> | 10042 | <source><x id="INTERPOLATION"/></source> |
9693 | 10043 | <target state="new"><x id="INTERPOLATION"/></target> | |
9694 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | 10044 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/progressbar/progressbar.ts</context><context context-type="linenumber">31</context></context-group> |
9695 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | 10045 | </trans-unit> |
9696 | 10046 | <trans-unit id="ngb.timepicker.HH" datatype="html"> | |
9697 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">109</context></context-group></trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | 10047 | <source>HH</source> |
9698 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | 10048 | <target state="new">HH</target> |
9699 | 10049 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">46</context></context-group> | |
9700 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">131</context></context-group></trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | 10050 | </trans-unit> |
9701 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | 10051 | <trans-unit id="ngb.timepicker.hours" datatype="html"> |
9702 | 10052 | <source>Hours</source> | |
9703 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">154</context></context-group></trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | 10053 | <target state="new">Hours</target> |
9704 | <source>Close</source><target state="new">Close</target> | 10054 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">50</context></context-group> |
9705 | 10055 | </trans-unit> | |
9706 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/toast/toast.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 10056 | <trans-unit id="ngb.timepicker.MM" datatype="html"> |
10057 | <source>MM</source> | ||
10058 | <target state="new">MM</target> | ||
10059 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">55</context></context-group> | ||
10060 | </trans-unit> | ||
10061 | <trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
10062 | <source>Minutes</source> | ||
10063 | <target state="new">Minutes</target> | ||
10064 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">62</context></context-group> | ||
10065 | </trans-unit> | ||
10066 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
10067 | <source>Increment hours</source> | ||
10068 | <target state="new">Increment hours</target> | ||
10069 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">68</context></context-group> | ||
10070 | </trans-unit> | ||
10071 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
10072 | <source>Decrement hours</source> | ||
10073 | <target state="new">Decrement hours</target> | ||
10074 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">73</context></context-group> | ||
10075 | </trans-unit> | ||
10076 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
10077 | <source>Increment minutes</source> | ||
10078 | <target state="new">Increment minutes</target> | ||
10079 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">80</context></context-group> | ||
10080 | </trans-unit> | ||
10081 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
10082 | <source>Decrement minutes</source> | ||
10083 | <target state="new">Decrement minutes</target> | ||
10084 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">86</context></context-group> | ||
10085 | </trans-unit> | ||
10086 | <trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
10087 | <source>SS</source> | ||
10088 | <target state="new">SS</target> | ||
10089 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">91</context></context-group> | ||
10090 | </trans-unit> | ||
10091 | <trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
10092 | <source>Seconds</source> | ||
10093 | <target state="new">Seconds</target> | ||
10094 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">96</context></context-group> | ||
10095 | </trans-unit> | ||
10096 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
10097 | <source>Increment seconds</source> | ||
10098 | <target state="new">Increment seconds</target> | ||
10099 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">103</context></context-group> | ||
10100 | </trans-unit> | ||
10101 | <trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
10102 | <source>Decrement seconds</source> | ||
10103 | <target state="new">Decrement seconds</target> | ||
10104 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">109</context></context-group> | ||
10105 | </trans-unit> | ||
10106 | <trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
10107 | <source><x id="INTERPOLATION"/></source> | ||
10108 | <target state="new"><x id="INTERPOLATION"/></target> | ||
10109 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">131</context></context-group> | ||
10110 | </trans-unit> | ||
10111 | <trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
10112 | <source><x id="INTERPOLATION"/></source> | ||
10113 | <target state="new"><x id="INTERPOLATION"/></target> | ||
10114 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">154</context></context-group> | ||
10115 | </trans-unit> | ||
10116 | <trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
10117 | <source>Close</source> | ||
10118 | <target state="new">Close</target> | ||
10119 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/toast/toast.ts</context><context context-type="linenumber">78</context></context-group> | ||
10120 | </trans-unit> | ||
9707 | <trans-unit id="5210096066382592800" datatype="html"> | 10121 | <trans-unit id="5210096066382592800" datatype="html"> |
9708 | <source>Video to import updated.</source> | 10122 | <source>Video to import updated.</source> |
9709 | <target state="new">Video to import updated.</target> | 10123 | <target state="new">Video to import updated.</target> |
9710 | 10124 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts</context><context context-type="linenumber">130</context></context-group> | |
9711 | 10125 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts</context><context context-type="linenumber">140</context></context-group> | |
9712 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts</context><context context-type="linenumber">130</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts</context><context context-type="linenumber">140</context></context-group></trans-unit> | 10126 | </trans-unit> |
9713 | <trans-unit id="3284171506518522275"> | 10127 | <trans-unit id="3284171506518522275"> |
9714 | <source>Your video was uploaded to your account and is private.</source> | 10128 | <source>Your video was uploaded to your account and is private.</source> |
9715 | <target>Vaše video bylo nahráno na váš účet a je soukromé.</target> | 10129 | <target>Vaše video bylo nahráno na váš účet a je soukromé.</target> |
9716 | 10130 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">92</context></context-group> | |
9717 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 10131 | </trans-unit> |
9718 | <trans-unit id="5699822024600815733"> | 10132 | <trans-unit id="5699822024600815733"> |
9719 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10133 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
9720 | <target>Ovšem přidružená data (štítky, popis...) budou ztraceny, opravdu chcete opustit tuto stránku?</target> | 10134 | <target>Ovšem přidružená data (štítky, popis...) budou ztraceny, opravdu chcete opustit tuto stránku?</target> |
9721 | 10135 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">93</context></context-group> | |
9722 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">93</context></context-group></trans-unit> | 10136 | </trans-unit> |
9723 | <trans-unit id="1219739004043110649"> | 10137 | <trans-unit id="1219739004043110649"> |
9724 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10138 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
9725 | <target>Video ještě nebylo nahráno, opravdu chcete opustit tuto stránku?</target> | 10139 | <target>Video ještě nebylo nahráno, opravdu chcete opustit tuto stránku?</target> |
9726 | 10140 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">95</context></context-group> | |
9727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="6932865105766151309" datatype="html"> | 10141 | </trans-unit> |
9728 | <source>Upload</source><target state="new">Upload</target> | 10142 | <trans-unit id="6932865105766151309" datatype="html"> |
9729 | 10143 | <source>Upload</source> | |
9730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">115</context></context-group></trans-unit> | 10144 | <target state="new">Upload</target> |
10145 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">115</context></context-group> | ||
10146 | </trans-unit> | ||
9731 | <trans-unit id="8278735427925094503" datatype="html"> | 10147 | <trans-unit id="8278735427925094503" datatype="html"> |
9732 | <source>Upload | 10148 | <source>Upload <x id="PH"/> </source> |
9733 | <x id="PH"/> | ||
9734 | </source> | ||
9735 | <target state="new">Upload | 10149 | <target state="new">Upload |
9736 | <x id="PH"/> | 10150 | <x id="PH"/> |
9737 | </target> | 10151 | </target> |
9738 | 10152 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">117</context></context-group> | |
9739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">117</context></context-group></trans-unit> | 10153 | </trans-unit> |
9740 | <trans-unit id="1964265829892160232"> | 10154 | <trans-unit id="1964265829892160232"> |
9741 | <source>Upload cancelled</source> | 10155 | <source>Upload cancelled</source> |
9742 | <target>Nahrávání zrušeno</target> | 10156 | <target>Nahrávání zrušeno</target> |
9743 | 10157 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">143</context></context-group> | |
9744 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">143</context></context-group></trans-unit> | 10158 | </trans-unit> |
9745 | <trans-unit id="5981816353437801748"> | 10159 | <trans-unit id="5981816353437801748"> |
9746 | <source>Video published.</source> | 10160 | <source>Video published.</source> |
9747 | <target>Video publikováno</target> | 10161 | <target>Video publikováno</target> |
9748 | 10162 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">267</context></context-group> | |
9749 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">267</context></context-group></trans-unit><trans-unit id="5297709903228580202" datatype="html"> | 10163 | </trans-unit> |
9750 | <source>Your video quota is exceeded with this video ( | 10164 | <trans-unit id="5297709903228580202" datatype="html"> |
9751 | video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source><target state="new">Your video quota is exceeded with this video ( | 10165 | <source>Your video quota is exceeded with this video ( video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> |
10166 | <target state="new">Your video quota is exceeded with this video ( | ||
9752 | video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | 10167 | video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> |
9753 | 10168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">289</context></context-group> | |
9754 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="1267976082314717617" datatype="html"> | 10169 | </trans-unit> |
9755 | <source>Your daily video quota is exceeded with this video ( | 10170 | <trans-unit id="1267976082314717617" datatype="html"> |
9756 | video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source><target state="new">Your daily video quota is exceeded with this video ( | 10171 | <source>Your daily video quota is exceeded with this video ( video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> |
10172 | <target state="new">Your daily video quota is exceeded with this video ( | ||
9757 | video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | 10173 | video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> |
9758 | 10174 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">309</context></context-group> | |
9759 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">309</context></context-group></trans-unit> | 10175 | </trans-unit> |
9760 | |||
9761 | |||
9762 | <trans-unit id="764164089183618119"> | 10176 | <trans-unit id="764164089183618119"> |
9763 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 10177 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
9764 | <target>Máte neuložené změny! Pokud odejdete, budou vaše změny ztraceny.</target> | 10178 | <target>Máte neuložené změny! Pokud odejdete, budou vaše změny ztraceny.</target> |
9765 | 10179 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">94</context></context-group> | |
9766 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> | 10180 | </trans-unit> |
9767 | <trans-unit id="8306050839443016954"> | 10181 | <trans-unit id="8306050839443016954"> |
9768 | <source>Video updated.</source> | 10182 | <source>Video updated.</source> |
9769 | <target>Video aktualizováno.</target> | 10183 | <target>Video aktualizováno.</target> |
9770 | 10184 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">142</context></context-group> | |
9771 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">142</context></context-group></trans-unit> | 10185 | </trans-unit> |
9772 | <trans-unit id="5512208811126492983" datatype="html"> | 10186 | <trans-unit id="5512208811126492983" datatype="html"> |
9773 | <source>Report comment</source> | 10187 | <source>Report comment</source> |
9774 | <target state="new">Report comment</target> | 10188 | <target state="new">Report comment</target> |
9775 | 10189 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group> | |
9776 | 10190 | </trans-unit> | |
9777 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | ||
9778 | <trans-unit id="3691787517663044217" datatype="html"> | 10191 | <trans-unit id="3691787517663044217" datatype="html"> |
9779 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | 10192 | <source>The deletion will be sent to remote instances so they can reflect the change.</source> |
9780 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 10193 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
9781 | 10194 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group> | |
9782 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 10195 | </trans-unit> |
9783 | <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> | 10196 | <trans-unit id="7321800851971795962" datatype="html"> |
9784 | 10197 | <source>It is a remote comment, so the deletion will only be effective on your instance.</source> | |
9785 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | 10198 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
9786 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | 10199 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">173</context></context-group> |
9787 | 10200 | </trans-unit> | |
9788 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">199</context></context-group></trans-unit><trans-unit id="7163633882758007711" datatype="html"> | 10201 | <trans-unit id="5964038603724691720" datatype="html"> |
9789 | <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> | 10202 | <source>Delete and re-draft</source> |
9790 | 10203 | <target state="new">Delete and re-draft</target> | |
9791 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">199</context></context-group></trans-unit> | 10204 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">199</context></context-group> |
9792 | 10205 | </trans-unit> | |
10206 | <trans-unit id="7163633882758007711" datatype="html"> | ||
10207 | <source>Do you really want to delete and re-draft this comment?</source> | ||
10208 | <target state="new">Do you really want to delete and re-draft this comment?</target> | ||
10209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">199</context></context-group> | ||
10210 | </trans-unit> | ||
9793 | <trans-unit id="6775540171466219199" datatype="html"> | 10211 | <trans-unit id="6775540171466219199" datatype="html"> |
9794 | <source>Stop autoplaying next video</source> | 10212 | <source>Stop autoplaying next video</source> |
9795 | <target state="new">Stop autoplaying next video</target> | 10213 | <target state="new">Stop autoplaying next video</target> |
9796 | 10214 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">203</context></context-group> | |
9797 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">203</context></context-group></trans-unit> | 10215 | </trans-unit> |
9798 | <trans-unit id="5149234672404299151" datatype="html"> | 10216 | <trans-unit id="5149234672404299151" datatype="html"> |
9799 | <source>Autoplay next video</source> | 10217 | <source>Autoplay next video</source> |
9800 | <target state="new">Autoplay next video</target> | 10218 | <target state="new">Autoplay next video</target> |
9801 | 10219 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">204</context></context-group> | |
9802 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">204</context></context-group></trans-unit> | 10220 | </trans-unit> |
9803 | <trans-unit id="5870421136141540382" datatype="html"> | 10221 | <trans-unit id="5870421136141540382" datatype="html"> |
9804 | <source>Stop looping playlist videos</source> | 10222 | <source>Stop looping playlist videos</source> |
9805 | <target state="new">Stop looping playlist videos</target> | 10223 | <target state="new">Stop looping playlist videos</target> |
9806 | 10224 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">209</context></context-group> | |
9807 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">209</context></context-group></trans-unit> | 10225 | </trans-unit> |
9808 | <trans-unit id="1599585307037758139" datatype="html"> | 10226 | <trans-unit id="1599585307037758139" datatype="html"> |
9809 | <source>Loop playlist videos</source> | 10227 | <source>Loop playlist videos</source> |
9810 | <target state="new">Loop playlist videos</target> | 10228 | <target state="new">Loop playlist videos</target> |
9811 | 10229 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">210</context></context-group> | |
9812 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">210</context></context-group></trans-unit> | 10230 | </trans-unit> |
9813 | <trans-unit id="961774488937452220" datatype="html"> | 10231 | <trans-unit id="961774488937452220" datatype="html"> |
9814 | <source>This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</source><target state="new">This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</target> | 10232 | <source>This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</source> |
9815 | 10233 | <target state="new">This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</target> | |
9816 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">415</context></context-group></trans-unit><trans-unit id="5761611056224181752" datatype="html"> | 10234 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">415</context></context-group> |
9817 | <source>Redirection</source><target state="new">Redirection</target> | 10235 | </trans-unit> |
9818 | 10236 | <trans-unit id="5761611056224181752" datatype="html"> | |
9819 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">416</context></context-group></trans-unit> | 10237 | <source>Redirection</source> |
9820 | 10238 | <target state="new">Redirection</target> | |
10239 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">416</context></context-group> | ||
10240 | </trans-unit> | ||
9821 | <trans-unit id="8858527736400081688"> | 10241 | <trans-unit id="8858527736400081688"> |
9822 | <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> | 10242 | <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> |
9823 | <target>Toto video obsahuje citlivý materiál. Opravdu jej chcete přehrát?</target> | 10243 | <target>Toto video obsahuje citlivý materiál. Opravdu jej chcete přehrát?</target> |
9824 | 10244 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">547</context></context-group> | |
9825 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">547</context></context-group></trans-unit> | 10245 | </trans-unit> |
9826 | <trans-unit id="3937119019020041049"> | 10246 | <trans-unit id="3937119019020041049"> |
9827 | <source>Mature or explicit content</source> | 10247 | <source>Mature or explicit content</source> |
9828 | <target>Obsahuje citlivý materiál</target> | 10248 | <target>Obsahuje citlivý materiál</target> |
9829 | 10249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">548</context></context-group> | |
9830 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">548</context></context-group></trans-unit> | 10250 | </trans-unit> |
9831 | <trans-unit id="1755474755114288376" datatype="html"> | 10251 | <trans-unit id="1755474755114288376" datatype="html"> |
9832 | <source>Up Next</source> | 10252 | <source>Up Next</source> |
9833 | <target state="new">Up Next</target> | 10253 | <target state="new">Up Next</target> |
9834 | 10254 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">600</context></context-group> | |
9835 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">600</context></context-group></trans-unit><trans-unit id="2159130950882492111" datatype="html"> | 10255 | </trans-unit> |
9836 | <source>Cancel</source><target state="new">Cancel</target> | 10256 | <trans-unit id="2159130950882492111" datatype="html"> |
9837 | 10257 | <source>Cancel</source> | |
9838 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">601</context></context-group></trans-unit> | 10258 | <target state="new">Cancel</target> |
10259 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">601</context></context-group> | ||
10260 | </trans-unit> | ||
9839 | <trans-unit id="3354816756665089864" datatype="html"> | 10261 | <trans-unit id="3354816756665089864" datatype="html"> |
9840 | <source>Autoplay is suspended</source> | 10262 | <source>Autoplay is suspended</source> |
9841 | <target state="new">Autoplay is suspended</target> | 10263 | <target state="new">Autoplay is suspended</target> |
9842 | 10264 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">602</context></context-group> | |
9843 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">602</context></context-group></trans-unit> | 10265 | </trans-unit> |
9844 | <trans-unit id="7895294730547405228" datatype="html"> | 10266 | <trans-unit id="7895294730547405228" datatype="html"> |
9845 | <source>Enter/exit fullscreen (requires player focus)</source> | 10267 | <source>Enter/exit fullscreen (requires player focus)</source> |
9846 | <target state="new">Enter/exit fullscreen (requires player focus)</target> | 10268 | <target state="new">Enter/exit fullscreen (requires player focus)</target> |
9847 | 10269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">920</context></context-group> | |
9848 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">920</context></context-group></trans-unit> | 10270 | </trans-unit> |
9849 | <trans-unit id="7618388257165864759" datatype="html"> | 10271 | <trans-unit id="7618388257165864759" datatype="html"> |
9850 | <source>Play/Pause the video (requires player focus)</source> | 10272 | <source>Play/Pause the video (requires player focus)</source> |
9851 | <target state="new">Play/Pause the video (requires player focus)</target> | 10273 | <target state="new">Play/Pause the video (requires player focus)</target> |
9852 | 10274 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">921</context></context-group> | |
9853 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">921</context></context-group></trans-unit> | 10275 | </trans-unit> |
9854 | <trans-unit id="7761890399634216630" datatype="html"> | 10276 | <trans-unit id="7761890399634216630" datatype="html"> |
9855 | <source>Mute/unmute the video (requires player focus)</source> | 10277 | <source>Mute/unmute the video (requires player focus)</source> |
9856 | <target state="new">Mute/unmute the video (requires player focus)</target> | 10278 | <target state="new">Mute/unmute the video (requires player focus)</target> |
9857 | 10279 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">922</context></context-group> | |
9858 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">922</context></context-group></trans-unit> | 10280 | </trans-unit> |
9859 | <trans-unit id="5996585232248234904" datatype="html"> | 10281 | <trans-unit id="5996585232248234904" datatype="html"> |
9860 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</source> | 10282 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</source> |
9861 | <target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</target> | 10283 | <target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</target> |
9862 | 10284 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">924</context></context-group> | |
9863 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">924</context></context-group></trans-unit> | 10285 | </trans-unit> |
9864 | <trans-unit id="3748765405903319998" datatype="html"> | 10286 | <trans-unit id="3748765405903319998" datatype="html"> |
9865 | <source>Increase the volume (requires player focus)</source> | 10287 | <source>Increase the volume (requires player focus)</source> |
9866 | <target state="new">Increase the volume (requires player focus)</target> | 10288 | <target state="new">Increase the volume (requires player focus)</target> |
9867 | 10289 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">926</context></context-group> | |
9868 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">926</context></context-group></trans-unit> | 10290 | </trans-unit> |
9869 | <trans-unit id="5810704036407159982" datatype="html"> | 10291 | <trans-unit id="5810704036407159982" datatype="html"> |
9870 | <source>Decrease the volume (requires player focus)</source> | 10292 | <source>Decrease the volume (requires player focus)</source> |
9871 | <target state="new">Decrease the volume (requires player focus)</target> | 10293 | <target state="new">Decrease the volume (requires player focus)</target> |
9872 | 10294 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">927</context></context-group> | |
9873 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">927</context></context-group></trans-unit> | 10295 | </trans-unit> |
9874 | <trans-unit id="2622048822548065691" datatype="html"> | 10296 | <trans-unit id="2622048822548065691" datatype="html"> |
9875 | <source>Seek the video forward (requires player focus)</source> | 10297 | <source>Seek the video forward (requires player focus)</source> |
9876 | <target state="new">Seek the video forward (requires player focus)</target> | 10298 | <target state="new">Seek the video forward (requires player focus)</target> |
9877 | 10299 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">929</context></context-group> | |
9878 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">929</context></context-group></trans-unit> | 10300 | </trans-unit> |
9879 | <trans-unit id="6540078205109221153" datatype="html"> | 10301 | <trans-unit id="6540078205109221153" datatype="html"> |
9880 | <source>Seek the video backward (requires player focus)</source> | 10302 | <source>Seek the video backward (requires player focus)</source> |
9881 | <target state="new">Seek the video backward (requires player focus)</target> | 10303 | <target state="new">Seek the video backward (requires player focus)</target> |
9882 | 10304 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">930</context></context-group> | |
9883 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">930</context></context-group></trans-unit> | 10305 | </trans-unit> |
9884 | <trans-unit id="1956491957766210808" datatype="html"> | 10306 | <trans-unit id="1956491957766210808" datatype="html"> |
9885 | <source>Increase playback rate (requires player focus)</source> | 10307 | <source>Increase playback rate (requires player focus)</source> |
9886 | <target state="new">Increase playback rate (requires player focus)</target> | 10308 | <target state="new">Increase playback rate (requires player focus)</target> |
9887 | 10309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">932</context></context-group> | |
9888 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">932</context></context-group></trans-unit> | 10310 | </trans-unit> |
9889 | <trans-unit id="5495529997674803186" datatype="html"> | 10311 | <trans-unit id="5495529997674803186" datatype="html"> |
9890 | <source>Decrease playback rate (requires player focus)</source> | 10312 | <source>Decrease playback rate (requires player focus)</source> |
9891 | <target state="new">Decrease playback rate (requires player focus)</target> | 10313 | <target state="new">Decrease playback rate (requires player focus)</target> |
9892 | 10314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">933</context></context-group> | |
9893 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">933</context></context-group></trans-unit> | 10315 | </trans-unit> |
9894 | <trans-unit id="3178343147230721210" datatype="html"> | 10316 | <trans-unit id="3178343147230721210" datatype="html"> |
9895 | <source>Navigate in the video frame by frame (requires player focus)</source> | 10317 | <source>Navigate in the video frame by frame (requires player focus)</source> |
9896 | <target state="new">Navigate in the video frame by frame (requires player focus)</target> | 10318 | <target state="new">Navigate in the video frame by frame (requires player focus)</target> |
9897 | 10319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">935</context></context-group> | |
9898 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">935</context></context-group></trans-unit> | 10320 | </trans-unit> |
9899 | <trans-unit id="8025996572234182184"> | 10321 | <trans-unit id="8025996572234182184"> |
9900 | <source>Like the video</source> | 10322 | <source>Like the video</source> |
9901 | <target>To se mi líbí</target> | 10323 | <target>To se mi líbí</target> |
9902 | 10324 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">943</context></context-group> | |
9903 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">943</context></context-group></trans-unit> | 10325 | </trans-unit> |
9904 | <trans-unit id="7692127636377222448"> | 10326 | <trans-unit id="7692127636377222448"> |
9905 | <source>Dislike the video</source> | 10327 | <source>Dislike the video</source> |
9906 | <target>To se mi nelíbí</target> | 10328 | <target>To se mi nelíbí</target> |
9907 | 10329 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">948</context></context-group> | |
9908 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">948</context></context-group></trans-unit> | 10330 | </trans-unit> |
9909 | <trans-unit id="1729036051846673606" datatype="html"> | 10331 | <trans-unit id="1729036051846673606" datatype="html"> |
9910 | <source>When active, the next video is automatically played after the current one.</source> | 10332 | <source>When active, the next video is automatically played after the current one.</source> |
9911 | <target state="new">When active, the next video is automatically played after the current one.</target> | 10333 | <target state="new">When active, the next video is automatically played after the current one.</target> |
9912 | 10334 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/recommendations/recommended-videos.component.ts</context><context context-type="linenumber">59</context></context-group> | |
9913 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/recommendations/recommended-videos.component.ts</context><context context-type="linenumber">59</context></context-group></trans-unit> | 10335 | </trans-unit> |
9914 | <trans-unit id="2431286785954354122" datatype="html"> | 10336 | <trans-unit id="2431286785954354122" datatype="html"> |
9915 | <source>Recently added</source><target state="new">Recently added</target> | 10337 | <source>Recently added</source> |
9916 | 10338 | <target state="new">Recently added</target> | |
9917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-recently-added.component.ts</context><context context-type="linenumber">36</context></context-group></trans-unit> | 10339 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-recently-added.component.ts</context><context context-type="linenumber">36</context></context-group> |
10340 | </trans-unit> | ||
9918 | <trans-unit id="3432004930068835151"> | 10341 | <trans-unit id="3432004930068835151"> |
9919 | <source>Trending for the last 24 hours</source> | 10342 | <source>Trending for the last 24 hours</source> |
9920 | <target>Trendy posledních 24 hodin</target> | 10343 | <target>Trendy posledních 24 hodin</target> |
9921 | 10344 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context><context context-type="linenumber">46</context></context-group> | |
9922 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 10345 | </trans-unit> |
9923 | <trans-unit id="6716379522893509803" datatype="html"> | 10346 | <trans-unit id="6716379522893509803" datatype="html"> |
9924 | <source>Trending videos are those totalizing the greatest number of views during the last 24 hours</source> | 10347 | <source>Trending videos are those totalizing the greatest number of views during the last 24 hours</source> |
9925 | <target state="new">Trending videos are those totalizing the greatest number of views during the last 24 hours</target> | 10348 | <target state="new">Trending videos are those totalizing the greatest number of views during the last 24 hours</target> |
9926 | 10349 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context><context context-type="linenumber">47</context></context-group> | |
9927 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit><trans-unit id="8762033369923733525" datatype="html"> | 10350 | </trans-unit> |
9928 | <source>Trending for the last <x id="PH" equiv-text="trendingDays"/> days</source><target state="new">Trending for the last <x id="PH" equiv-text="trendingDays"/> days</target> | 10351 | <trans-unit id="8762033369923733525" datatype="html"> |
10352 | <source>Trending for the last <x id="PH" equiv-text="trendingDays"/> days</source> | ||
10353 | <target state="new">Trending for the last <x id="PH" equiv-text="trendingDays"/> days</target> | ||
9929 | <context-group purpose="location"> | 10354 | <context-group purpose="location"> |
9930 | <context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context> | 10355 | <context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context> |
9931 | <context context-type="linenumber">51</context> | 10356 | <context context-type="linenumber">51</context> |
9932 | </context-group> | 10357 | </context-group> |
9933 | </trans-unit><trans-unit id="6332970411264495724" datatype="html"> | 10358 | </trans-unit> |
9934 | <source>Trending videos are those totalizing the greatest number of views during the last <x id="PH" equiv-text="trendingDays"/> days</source><target state="new">Trending videos are those totalizing the greatest number of views during the last <x id="PH" equiv-text="trendingDays"/> days</target> | 10359 | <trans-unit id="6332970411264495724" datatype="html"> |
10360 | <source>Trending videos are those totalizing the greatest number of views during the last <x id="PH" equiv-text="trendingDays"/> days</source> | ||
10361 | <target state="new">Trending videos are those totalizing the greatest number of views during the last <x id="PH" equiv-text="trendingDays"/> days</target> | ||
9935 | <context-group purpose="location"> | 10362 | <context-group purpose="location"> |
9936 | <context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context> | 10363 | <context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context> |
9937 | <context context-type="linenumber">52</context> | 10364 | <context context-type="linenumber">52</context> |
9938 | </context-group> | 10365 | </context-group> |
9939 | </trans-unit> | 10366 | </trans-unit> |
9940 | |||
9941 | |||
9942 | <trans-unit id="12646164819555880"> | 10367 | <trans-unit id="12646164819555880"> |
9943 | <source>Videos from your subscriptions</source> | 10368 | <source>Videos from your subscriptions</source> |
9944 | <target>Videa od vašich odběrů</target> | 10369 | <target>Videa od vašich odběrů</target> |
9945 | 10370 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">42</context></context-group> | |
9946 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">42</context></context-group></trans-unit><trans-unit id="4361762785337785037" datatype="html"> | 10371 | </trans-unit> |
9947 | <source>Copy feed URL</source><target state="new">Copy feed URL</target> | 10372 | <trans-unit id="4361762785337785037" datatype="html"> |
10373 | <source>Copy feed URL</source> | ||
10374 | <target state="new">Copy feed URL</target> | ||
9948 | <context-group purpose="location"> | 10375 | <context-group purpose="location"> |
9949 | <context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context> | 10376 | <context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context> |
9950 | <context context-type="linenumber">65</context> | 10377 | <context context-type="linenumber">65</context> |
9951 | </context-group> | 10378 | </context-group> |
9952 | </trans-unit><trans-unit id="3392372077636861449" datatype="html"> | 10379 | </trans-unit> |
9953 | <source>Feed URL copied</source><target state="new">Feed URL copied</target> | 10380 | <trans-unit id="3392372077636861449" datatype="html"> |
9954 | 10381 | <source>Feed URL copied</source> | |
9955 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">109</context></context-group></trans-unit><trans-unit id="1812379335568847528" datatype="html"> | 10382 | <target state="new">Feed URL copied</target> |
9956 | <source>Subscriptions</source><target state="new">Subscriptions</target> | 10383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">109</context></context-group> |
9957 | 10384 | </trans-unit> | |
9958 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">66</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">73</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">46</context></context-group></trans-unit><trans-unit id="186236568870281953" datatype="html"> | 10385 | <trans-unit id="1812379335568847528" datatype="html"> |
9959 | <source>History</source><target state="new">History</target> | 10386 | <source>Subscriptions</source> |
9960 | 10387 | <target state="new">Subscriptions</target> | |
9961 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">71</context></context-group></trans-unit><trans-unit id="e40d752221cf8adc1941495c7c8dc1862bb0c248" datatype="html"> | 10388 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">66</context></context-group> |
9962 | <source>Open actions</source><target state="new">Open actions</target> | 10389 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">73</context></context-group> |
10390 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">46</context></context-group> | ||
10391 | </trans-unit> | ||
10392 | <trans-unit id="186236568870281953" datatype="html"> | ||
10393 | <source>History</source> | ||
10394 | <target state="new">History</target> | ||
10395 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">71</context></context-group> | ||
10396 | </trans-unit> | ||
10397 | <trans-unit id="e40d752221cf8adc1941495c7c8dc1862bb0c248" datatype="html"> | ||
10398 | <source>Open actions</source> | ||
10399 | <target state="new">Open actions</target> | ||
9963 | <context-group purpose="location"> | 10400 | <context-group purpose="location"> |
9964 | <context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context> | 10401 | <context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context> |
9965 | <context context-type="linenumber">4</context> | 10402 | <context context-type="linenumber">4</context> |
9966 | </context-group> | 10403 | </context-group> |
9967 | </trans-unit><trans-unit id="8681933925782924101" datatype="html"> | 10404 | </trans-unit> |
9968 | <source>Local videos</source><target state="new">Local videos</target> | 10405 | <trans-unit id="8681933925782924101" datatype="html"> |
9969 | 10406 | <source>Local videos</source> | |
9970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">86</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-local.component.ts</context><context context-type="linenumber">36</context></context-group></trans-unit><trans-unit id="4668975178372693951" datatype="html"> | 10407 | <target state="new">Local videos</target> |
9971 | <source>Discover videos</source><target state="new">Discover videos</target> | 10408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">86</context></context-group> |
9972 | 10409 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-local.component.ts</context><context context-type="linenumber">36</context></context-group> | |
9973 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">24</context></context-group></trans-unit><trans-unit id="8067135025051844577" datatype="html"> | 10410 | </trans-unit> |
9974 | <source>Trending videos</source><target state="new">Trending videos</target> | 10411 | <trans-unit id="4668975178372693951" datatype="html"> |
9975 | 10412 | <source>Discover videos</source> | |
9976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">33</context></context-group></trans-unit><trans-unit id="664221386829541948" datatype="html"> | 10413 | <target state="new">Discover videos</target> |
9977 | <source>Recently added videos</source><target state="new">Recently added videos</target> | 10414 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">24</context></context-group> |
9978 | 10415 | </trans-unit> | |
9979 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">59</context></context-group></trans-unit><trans-unit id="8212906256415538361" datatype="html"> | 10416 | <trans-unit id="8067135025051844577" datatype="html"> |
9980 | <source>Upload a video</source><target state="new">Upload a video</target> | 10417 | <source>Trending videos</source> |
9981 | 10418 | <target state="new">Trending videos</target> | |
9982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">99</context></context-group></trans-unit><trans-unit id="7590784934397800835" datatype="html"> | 10419 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">33</context></context-group> |
9983 | <source>Edit a video</source><target state="new">Edit a video</target> | 10420 | </trans-unit> |
9984 | 10421 | <trans-unit id="664221386829541948" datatype="html"> | |
9985 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">108</context></context-group></trans-unit> | 10422 | <source>Recently added videos</source> |
10423 | <target state="new">Recently added videos</target> | ||
10424 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">59</context></context-group> | ||
10425 | </trans-unit> | ||
10426 | <trans-unit id="8212906256415538361" datatype="html"> | ||
10427 | <source>Upload a video</source> | ||
10428 | <target state="new">Upload a video</target> | ||
10429 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">99</context></context-group> | ||
10430 | </trans-unit> | ||
10431 | <trans-unit id="7590784934397800835" datatype="html"> | ||
10432 | <source>Edit a video</source> | ||
10433 | <target state="new">Edit a video</target> | ||
10434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">108</context></context-group> | ||
10435 | </trans-unit> | ||
9986 | </body> | 10436 | </body> |
9987 | </file> | 10437 | </file> |
9988 | </xliff> \ No newline at end of file | 10438 | </xliff> |
diff --git a/client/src/locale/angular.de-DE.xlf b/client/src/locale/angular.de-DE.xlf index 41243062d..fa9658661 100644 --- a/client/src/locale/angular.de-DE.xlf +++ b/client/src/locale/angular.de-DE.xlf | |||
@@ -381,8 +381,7 @@ | |||
381 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">3</context></context-group> | 381 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">3</context></context-group> |
382 | </trans-unit> | 382 | </trans-unit> |
383 | <trans-unit id="7ac18f5bb1a9b9f245acc8497c2f165a7e9f8510" datatype="html"> | 383 | <trans-unit id="7ac18f5bb1a9b9f245acc8497c2f165a7e9f8510" datatype="html"> |
384 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | 384 | <source><x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} "/> </source> |
385 | "/> </source> | ||
386 | <target state="translated"><x id="ICU" equiv-text="{video.views, plural, =1 {1 Aufruf} other {{{ video.views | myNumberFormatter }} Aufrufe}} "/> </target> | 385 | <target state="translated"><x id="ICU" equiv-text="{video.views, plural, =1 {1 Aufruf} other {{{ video.views | myNumberFormatter }} Aufrufe}} "/> </target> |
387 | <context-group purpose="location"> | 386 | <context-group purpose="location"> |
388 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> | 387 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> |
@@ -398,8 +397,7 @@ | |||
398 | </context-group> | 397 | </context-group> |
399 | </trans-unit> | 398 | </trans-unit> |
400 | <trans-unit id="2a6ba0b4ffe992ddd03f40ee75b879996bdfb5f7" datatype="html"> | 399 | <trans-unit id="2a6ba0b4ffe992ddd03f40ee75b879996bdfb5f7" datatype="html"> |
401 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}} | 400 | <source><x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}} "/> </source> |
402 | "/> </source> | ||
403 | <target state="translated"><x id="ICU" equiv-text="{video.views, plural, =1 {1 Betrachter} other {{{ video.views | myNumberFormatter }} Betrachter}} "/> </target> | 401 | <target state="translated"><x id="ICU" equiv-text="{video.views, plural, =1 {1 Betrachter} other {{{ video.views | myNumberFormatter }} Betrachter}} "/> </target> |
404 | <context-group purpose="location"> | 402 | <context-group purpose="location"> |
405 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> | 403 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> |
@@ -408,7 +406,7 @@ | |||
408 | </trans-unit> | 406 | </trans-unit> |
409 | <trans-unit id="3267631941074558910" datatype="html"> | 407 | <trans-unit id="3267631941074558910" datatype="html"> |
410 | <source>Cannot fetch information of this remote account</source> | 408 | <source>Cannot fetch information of this remote account</source> |
411 | <target state="new">Cannot fetch information of this remote account</target> | 409 | <target state="translated">Informationen zu diesem Remote-Konto können nicht abgerufen werden</target> |
412 | <context-group purpose="location"> | 410 | <context-group purpose="location"> |
413 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.ts</context> | 411 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.ts</context> |
414 | <context context-type="linenumber">60</context> | 412 | <context context-type="linenumber">60</context> |
@@ -529,8 +527,8 @@ | |||
529 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">19</context></context-group> | 527 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">19</context></context-group> |
530 | </trans-unit> | 528 | </trans-unit> |
531 | <trans-unit id="8644431249513874405" datatype="html"> | 529 | <trans-unit id="8644431249513874405" datatype="html"> |
532 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> | 530 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> |
533 | <target state="translated"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> kompatibel. Unterstützt:</target> | 531 | <target state="translated"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> kompatibel. Unterstützt:</target> |
534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">75</context></context-group> | 532 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">75</context></context-group> |
535 | </trans-unit> | 533 | </trans-unit> |
536 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 534 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
@@ -545,7 +543,7 @@ | |||
545 | </trans-unit> | 543 | </trans-unit> |
546 | <trans-unit id="606af655e677f8b06f27f09777cbb8a25b4de665" datatype="html"> | 544 | <trans-unit id="606af655e677f8b06f27f09777cbb8a25b4de665" datatype="html"> |
547 | <source>Subscribe with a remote account:</source> | 545 | <source>Subscribe with a remote account:</source> |
548 | <target state="new">Subscribe with a remote account:</target> | 546 | <target state="translated">Mit einem Remote-Konto abonnieren:</target> |
549 | <context-group purpose="location"> | 547 | <context-group purpose="location"> |
550 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 548 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
551 | <context context-type="linenumber">62</context> | 549 | <context context-type="linenumber">62</context> |
@@ -560,8 +558,10 @@ | |||
560 | <source>Subscribe with your local account</source> | 558 | <source>Subscribe with your local account</source> |
561 | <target>Mit deinem lokalen Konto abonnieren</target> | 559 | <target>Mit deinem lokalen Konto abonnieren</target> |
562 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">58</context></context-group> | 560 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">58</context></context-group> |
563 | </trans-unit><trans-unit id="1096694538966074574" datatype="html"> | 561 | </trans-unit> |
564 | <source>Published <x id="PH" equiv-text="total"/> videos matching "<x id="PH_1" equiv-text="this.search"/>"</source><target state="new">Published <x id="PH" equiv-text="total"/> videos matching "<x id="PH_1" equiv-text="this.search"/>"</target> | 562 | <trans-unit id="1096694538966074574" datatype="html"> |
563 | <source>Published <x id="PH" equiv-text="total"/> videos matching "<x id="PH_1" equiv-text="this.search"/>"</source> | ||
564 | <target state="translated">Veröffentlicht <x id="PH" equiv-text="total"/> Videos passend zu "<x id="PH_1" equiv-text="this.search"/>"</target> | ||
565 | <context-group purpose="location"> | 565 | <context-group purpose="location"> |
566 | <context context-type="sourcefile">src/app/+accounts/account-search/account-search.component.ts</context> | 566 | <context context-type="sourcefile">src/app/+accounts/account-search/account-search.component.ts</context> |
567 | <context context-type="linenumber">89</context> | 567 | <context context-type="linenumber">89</context> |
@@ -594,7 +594,7 @@ | |||
594 | </trans-unit> | 594 | </trans-unit> |
595 | <trans-unit id="10fc5e7d31ac52e14a0ee249d718275d2f25771e" datatype="html"> | 595 | <trans-unit id="10fc5e7d31ac52e14a0ee249d718275d2f25771e" datatype="html"> |
596 | <source>You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | 596 | <source>You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> |
597 | <target state="new"> You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | 597 | <target state="translated">Sie können den Kanal über jede ActivityPub-fähige fediverse-Instanz (z. B. PeerTube, Mastodon oder Pleroma) abonnieren.</target> |
598 | <context-group purpose="location"> | 598 | <context-group purpose="location"> |
599 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | 599 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
600 | <context context-type="linenumber">18,19</context> | 600 | <context context-type="linenumber">18,19</context> |
@@ -602,7 +602,7 @@ | |||
602 | </trans-unit> | 602 | </trans-unit> |
603 | <trans-unit id="d27c1d2f9703f3afcfb9186fc57fe169d851cb06" datatype="html"> | 603 | <trans-unit id="d27c1d2f9703f3afcfb9186fc57fe169d851cb06" datatype="html"> |
604 | <source>You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | 604 | <source>You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> |
605 | <target state="new"> You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | 605 | <target state="translated">Sie können damit über jede ActivityPub-fähige fediverse-Instanz (z. B. PeerTube, Mastodon oder Pleroma) interagieren.</target> |
606 | <context-group purpose="location"> | 606 | <context-group purpose="location"> |
607 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | 607 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
608 | <context context-type="linenumber">26,27</context> | 608 | <context context-type="linenumber">26,27</context> |
@@ -894,16 +894,16 @@ | |||
894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">16</context></context-group> | 894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">16</context></context-group> |
895 | </trans-unit> | 895 | </trans-unit> |
896 | <trans-unit id="0b56e18291f70cbcaddcafe46a4901fe499cd3cc" datatype="html"> | 896 | <trans-unit id="0b56e18291f70cbcaddcafe46a4901fe499cd3cc" datatype="html"> |
897 | <source>This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 897 | <source>This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
898 | <target state="translated">Diese Instanz erlaubt eine Registrierung. Lesen sie sich trotzdem die <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Richtlinien<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Richtlinien<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>durch, bevor sie sich ein Konto erstellen. Hier können sie auch nach einer anderen Instanz suchen, die ihren Wünschen entspricht: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 898 | <target state="translated">Diese Instanz erlaubt eine Registrierung. Lesen sie sich trotzdem die <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Richtlinien<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Richtlinien<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>durch, bevor sie sich ein Konto erstellen. Hier können sie auch nach einer anderen Instanz suchen, die ihren Wünschen entspricht: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
899 | <context-group purpose="location"> | 899 | <context-group purpose="location"> |
900 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 900 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
901 | <context context-type="linenumber">60,62</context> | 901 | <context context-type="linenumber">60,62</context> |
902 | </context-group> | 902 | </context-group> |
903 | </trans-unit> | 903 | </trans-unit> |
904 | <trans-unit id="5ff5b420545ecb1ef07d7ad7c03253e4500246f1" datatype="html"> | 904 | <trans-unit id="5ff5b420545ecb1ef07d7ad7c03253e4500246f1" datatype="html"> |
905 | <source>Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 905 | <source>Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
906 | <target state="translated">Diese Instanz erlaubt zurzeit keine Registrierung, sie können sich die <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Richtlinien<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> für mehr Details durchlesen, oder hier nach einer Instanz suchen, die Ihnen das Anlegen eines Kontos und das Hochladen von Videos erlaubt: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 906 | <target state="translated">Diese Instanz erlaubt zurzeit keine Registrierung, sie können sich die <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Richtlinien<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> für mehr Details durchlesen, oder hier nach einer Instanz suchen, die Ihnen das Anlegen eines Kontos und das Hochladen von Videos erlaubt: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
907 | <context-group purpose="location"> | 907 | <context-group purpose="location"> |
908 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 908 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
909 | <context context-type="linenumber">65,67</context> | 909 | <context context-type="linenumber">65,67</context> |
@@ -972,8 +972,7 @@ | |||
972 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">103</context></context-group> | 972 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">103</context></context-group> |
973 | </trans-unit> | 973 | </trans-unit> |
974 | <trans-unit id="1190256911880544559" datatype="html"> | 974 | <trans-unit id="1190256911880544559" datatype="html"> |
975 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. | 975 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. The link will expire within 1 hour.</source> |
976 | The link will expire within 1 hour.</source> | ||
977 | <target state="translated">Es wird eine E-Mail zum Zurücksetzen des Passworts an <x id="PH" equiv-text="this.forgotPasswordEmail"/> gesendet. Der Link wird in einer Stunde ablaufen.</target> | 976 | <target state="translated">Es wird eine E-Mail zum Zurücksetzen des Passworts an <x id="PH" equiv-text="this.forgotPasswordEmail"/> gesendet. Der Link wird in einer Stunde ablaufen.</target> |
978 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">126</context></context-group> | 977 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">126</context></context-group> |
979 | </trans-unit> | 978 | </trans-unit> |
@@ -1931,7 +1930,7 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
1931 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">172</context></context-group> | 1930 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">172</context></context-group> |
1932 | </trans-unit> | 1931 | </trans-unit> |
1933 | <trans-unit id="e687f6387adbaf61ce650b58f0e60ca42d843cee"> | 1932 | <trans-unit id="e687f6387adbaf61ce650b58f0e60ca42d843cee"> |
1934 | <source>Already uploaded ✔</source> | 1933 | <source>Already uploaded ✔</source> |
1935 | <target>Bereits hochgeladen ✔</target> | 1934 | <target>Bereits hochgeladen ✔</target> |
1936 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">176</context></context-group> | 1935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">176</context></context-group> |
1937 | </trans-unit> | 1936 | </trans-unit> |
@@ -2065,12 +2064,12 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
2065 | <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb"> | 2064 | <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb"> |
2066 | <source>Update</source> | 2065 | <source>Update</source> |
2067 | <target>Aktualisieren</target> | 2066 | <target>Aktualisieren</target> |
2068 | 2067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">3</context></context-group> | |
2069 | 2068 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">18</context></context-group> | |
2070 | 2069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">68</context></context-group> | |
2071 | 2070 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">61</context></context-group> | |
2072 | 2071 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">45</context></context-group> | |
2073 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">68</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">61</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 2072 | </trans-unit> |
2074 | <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> | 2073 | <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> |
2075 | <source>Select the file to upload</source> | 2074 | <source>Select the file to upload</source> |
2076 | <target>Wähle die Datei zum Hochladen aus</target> | 2075 | <target>Wähle die Datei zum Hochladen aus</target> |
@@ -2171,18 +2170,18 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
2171 | <trans-unit id="7860848084471862305" datatype="html"> | 2170 | <trans-unit id="7860848084471862305" datatype="html"> |
2172 | <source>Cannot create live because this instance have too many created lives</source> | 2171 | <source>Cannot create live because this instance have too many created lives</source> |
2173 | <target state="translated">Kann kein Live-Übertragung erzeugen, da diese Instanz zu viele erzeugte Live-Übertragungen hat</target> | 2172 | <target state="translated">Kann kein Live-Übertragung erzeugen, da diese Instanz zu viele erzeugte Live-Übertragungen hat</target> |
2174 | 2173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">91</context></context-group> | |
2175 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">91</context></context-group></trans-unit> | 2174 | </trans-unit> |
2176 | <trans-unit id="1278564497286613571" datatype="html"> | 2175 | <trans-unit id="1278564497286613571" datatype="html"> |
2177 | <source>Cannot create live because you created too many lives</source> | 2176 | <source>Cannot create live because you created too many lives</source> |
2178 | <target state="translated">Kann keine Live-Übertragung erzeugen, weil Sie zu viele Live-Übertragungen erzeugt haben</target> | 2177 | <target state="translated">Kann keine Live-Übertragung erzeugen, weil Sie zu viele Live-Übertragungen erzeugt haben</target> |
2179 | 2178 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">93</context></context-group> | |
2180 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">93</context></context-group></trans-unit> | 2179 | </trans-unit> |
2181 | <trans-unit id="2621043320678012413" datatype="html"> | 2180 | <trans-unit id="2621043320678012413" datatype="html"> |
2182 | <source>Live published.</source> | 2181 | <source>Live published.</source> |
2183 | <target state="translated">Live-Übertragung veröffentlicht.</target> | 2182 | <target state="translated">Live-Übertragung veröffentlicht.</target> |
2184 | 2183 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">123</context></context-group> | |
2185 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">123</context></context-group></trans-unit> | 2184 | </trans-unit> |
2186 | <trans-unit id="40e85da538414cc425f42d2b09189ce344865aa1" datatype="html"> | 2185 | <trans-unit id="40e85da538414cc425f42d2b09189ce344865aa1" datatype="html"> |
2187 | <source>Go Live</source> | 2186 | <source>Go Live</source> |
2188 | <target state="translated">Live gehen</target> | 2187 | <target state="translated">Live gehen</target> |
@@ -2665,7 +2664,7 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
2665 | </trans-unit> | 2664 | </trans-unit> |
2666 | <trans-unit id="6670e588ad98a777c18f30096aeff7687d53c1c4" datatype="html"> | 2665 | <trans-unit id="6670e588ad98a777c18f30096aeff7687d53c1c4" datatype="html"> |
2667 | <source>You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example).</source> | 2666 | <source>You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example).</source> |
2668 | <target state="new"> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </target> | 2667 | <target state="translated">Sie können mit einem Konto auf jeder ActivityPub-kompatiblen Instanz kommentieren (z. B. PeerTube/Mastodon/Pleroma-Konto).</target> |
2669 | <context-group purpose="location"> | 2668 | <context-group purpose="location"> |
2670 | <context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context> | 2669 | <context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2671 | <context context-type="linenumber">60,61</context> | 2670 | <context context-type="linenumber">60,61</context> |
@@ -3403,8 +3402,8 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
3403 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">7</context></context-group> | 3402 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">7</context></context-group> |
3404 | </trans-unit> | 3403 | </trans-unit> |
3405 | <trans-unit id="fd7b8e728c25b616934661747224b1b2e7d9ea5c" datatype="html"> | 3404 | <trans-unit id="fd7b8e728c25b616934661747224b1b2e7d9ea5c" datatype="html"> |
3406 | <source><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 3405 | <source><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
3407 | <target state="translated"><x id="ICU" equiv-text="{{abuse.countReportsForReporter, plural, =1 {1 Bericht} other {{{ abuse. countReportsForReporter }} Berichte}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 3406 | <target state="translated"><x id="ICU" equiv-text="{{abuse.countReportsForReporter, plural, =1 {1 Bericht} other {{{ abuse. countReportsForReporter }} Berichte}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
3408 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">27</context></context-group> | 3407 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">27</context></context-group> |
3409 | </trans-unit> | 3408 | </trans-unit> |
3410 | <trans-unit id="fe8634bd713368d7971877c0e09d1869f09c924d" datatype="html"> | 3409 | <trans-unit id="fe8634bd713368d7971877c0e09d1869f09c924d" datatype="html"> |
@@ -3490,8 +3489,8 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
3490 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">33</context></context-group> | 3489 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">33</context></context-group> |
3491 | </trans-unit> | 3490 | </trans-unit> |
3492 | <trans-unit id="da3ebfaee320ad7a8a41c75d6ee19e687f9b484d" datatype="html"> | 3491 | <trans-unit id="da3ebfaee320ad7a8a41c75d6ee19e687f9b484d" datatype="html"> |
3493 | <source><x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {1 report} other {{{ abuse.countReportsForReportee }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 3492 | <source><x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {1 report} other {{{ abuse.countReportsForReportee }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
3494 | <target state="translated"><x id="ICU" equiv-text="{{abuse.countReportsForReportee, plural, =1 {1 Bericht} other {{{ abuse. countReportsForReportee }} Berichte}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 3493 | <target state="translated"><x id="ICU" equiv-text="{{abuse.countReportsForReportee, plural, =1 {1 Bericht} other {{{ abuse. countReportsForReportee }} Berichte}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
3495 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">52</context></context-group> | 3494 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">52</context></context-group> |
3496 | </trans-unit> | 3495 | </trans-unit> |
3497 | <trans-unit id="bdd37f55632abc18fb1fbf95d4b3f5f89ce3237b" datatype="html"> | 3496 | <trans-unit id="bdd37f55632abc18fb1fbf95d4b3f5f89ce3237b" datatype="html"> |
@@ -3817,8 +3816,8 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
3817 | </context-group> | 3816 | </context-group> |
3818 | </trans-unit> | 3817 | </trans-unit> |
3819 | <trans-unit id="50140de8e198dcb486966365d1d4c01fd910cc46" datatype="html"> | 3818 | <trans-unit id="50140de8e198dcb486966365d1d4c01fd910cc46" datatype="html"> |
3820 | <source>No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</source> | 3819 | <source>No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</source> |
3821 | <target state="translated">Keine <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> Jobs gefunden.</target> | 3820 | <target state="translated">Keine <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> Jobs gefunden.</target> |
3822 | <context-group purpose="location"> | 3821 | <context-group purpose="location"> |
3823 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | 3822 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> |
3824 | <context context-type="linenumber">95</context> | 3823 | <context context-type="linenumber">95</context> |
@@ -3850,8 +3849,8 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
3850 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">38</context></context-group> | 3849 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">38</context></context-group> |
3851 | </trans-unit> | 3850 | </trans-unit> |
3852 | <trans-unit id="e4ce2d897f4bdce126c9012769654301a587110a" datatype="html"> | 3851 | <trans-unit id="e4ce2d897f4bdce126c9012769654301a587110a" datatype="html"> |
3853 | <source>By <x id="INTERPOLATION"/> -></source> | 3852 | <source>By <x id="INTERPOLATION"/> -></source> |
3854 | <target state="translated">Von <x id="INTERPOLATION"/> -></target> | 3853 | <target state="translated">Von <x id="INTERPOLATION"/> -></target> |
3855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">46</context></context-group> | 3854 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">46</context></context-group> |
3856 | </trans-unit> | 3855 | </trans-unit> |
3857 | <trans-unit id="3441b78841dad60f36576d99e38241ae7fefa933" datatype="html"> | 3856 | <trans-unit id="3441b78841dad60f36576d99e38241ae7fefa933" datatype="html"> |
@@ -4464,8 +4463,8 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
4464 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group> | 4463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group> |
4465 | </trans-unit> | 4464 | </trans-unit> |
4466 | <trans-unit id="cf06f240dd01db03367a64c84e5513dd59f3a381" datatype="html"> | 4465 | <trans-unit id="cf06f240dd01db03367a64c84e5513dd59f3a381" datatype="html"> |
4467 | <source>Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 4466 | <source>Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
4468 | <target state="translated">Maximal gleichzeitig erstellte Live-Übertragungen auf ihrer Instanz<x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/> (-1 für "Unbegrenzt")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 4467 | <target state="translated">Maximal gleichzeitig erstellte Live-Übertragungen auf ihrer Instanz<x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/> (-1 für "Unbegrenzt")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
4469 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">916</context></context-group> | 4468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">916</context></context-group> |
4470 | </trans-unit> | 4469 | </trans-unit> |
4471 | <trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4470 | <trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
@@ -4474,8 +4473,8 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
4474 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">919</context></context-group> | 4473 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">919</context></context-group> |
4475 | </trans-unit> | 4474 | </trans-unit> |
4476 | <trans-unit id="bdc3da1a466b92c3da58c3dff5d47030ec9f6680" datatype="html"> | 4475 | <trans-unit id="bdc3da1a466b92c3da58c3dff5d47030ec9f6680" datatype="html"> |
4477 | <source>Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 4476 | <source>Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
4478 | <target state="translated">Maximal gleichzeitig erstellte Live-Übertragungen pro Benutzer <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 für "Unbegrenzt")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 4477 | <target state="translated">Maximal gleichzeitig erstellte Live-Übertragungen pro Benutzer <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 für "Unbegrenzt")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
4479 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">924</context></context-group> | 4478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">924</context></context-group> |
4480 | </trans-unit> | 4479 | </trans-unit> |
4481 | <trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4480 | <trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
@@ -4557,13 +4556,13 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
4557 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group> | 4556 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group> |
4558 | </trans-unit> | 4557 | </trans-unit> |
4559 | <trans-unit id="5789fe6bacfbf750afc62f0399cadf899b67f348" datatype="html"> | 4558 | <trans-unit id="5789fe6bacfbf750afc62f0399cadf899b67f348" datatype="html"> |
4560 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 4559 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
4561 | <target state="translated"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Wenn Sie auch die HLS-Unterstützung aktiviert haben, wird der Videospeicher mit 2 multipliziert<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Wenn deaktiviert, bricht der Verbund mit PeerTube-Instanzen < 2. 1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 4560 | <target state="translated"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Wenn Sie auch die HLS-Unterstützung aktiviert haben, wird der Videospeicher mit 2 multipliziert<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Wenn deaktiviert, bricht der Verbund mit PeerTube-Instanzen < 2. 1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
4562 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">785</context></context-group> | 4561 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">785</context></context-group> |
4563 | </trans-unit> | 4562 | </trans-unit> |
4564 | <trans-unit id="db8369ea3a140ba4a114648ba204fb1a55ba742e" datatype="html"> | 4563 | <trans-unit id="db8369ea3a140ba4a114648ba204fb1a55ba742e" datatype="html"> |
4565 | <source><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Faster playback especially with long videos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></source> | 4564 | <source><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Faster playback especially with long videos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></source> |
4566 | <target state="translated"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Erfordert ffmpeg >= 4. 1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Erzeugt HLS-Wiedergabelisten und fragmentierte MP4-Dateien, was zu einer besseren Wiedergabe als mit einfachem WebTorrent führt: <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li> "/>Auflösungswechsel ist sanfter<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="< li>"/>Schnellere Wiedergabe besonders bei langen Videos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Stabilere Wiedergabe (weniger Bugs/unendliches Laden)<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="< /ul>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Wenn Sie auch die WebTorrent-Unterstützung aktiviert haben, wird der Videospeicher mit 2 multipliziert<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> | 4565 | <target state="translated"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Erfordert ffmpeg >= 4. 1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Erzeugt HLS-Wiedergabelisten und fragmentierte MP4-Dateien, was zu einer besseren Wiedergabe als mit einfachem WebTorrent führt: <x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li> "/>Auflösungswechsel ist sanfter<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="< li>"/>Schnellere Wiedergabe besonders bei langen Videos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Stabilere Wiedergabe (weniger Bugs/unendliches Laden)<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="< /ul>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Wenn Sie auch die WebTorrent-Unterstützung aktiviert haben, wird der Videospeicher mit 2 multipliziert<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> |
4567 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">805</context></context-group> | 4566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">805</context></context-group> |
4568 | </trans-unit> | 4567 | </trans-unit> |
4569 | <trans-unit id="0148700953243b0a7188dcbe233d8913c5cb6614" datatype="html"> | 4568 | <trans-unit id="0148700953243b0a7188dcbe233d8913c5cb6614" datatype="html"> |
@@ -4583,7 +4582,7 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
4583 | </trans-unit> | 4582 | </trans-unit> |
4584 | <trans-unit id="0ff72c066084f3c420dde9febf4f7255e7511867" datatype="html"> | 4583 | <trans-unit id="0ff72c066084f3c420dde9febf4f7255e7511867" datatype="html"> |
4585 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.</source> | 4584 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.</source> |
4586 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.</target> | 4585 | <target state="translated">Ermöglicht das Hochladen von .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf oder .nut-Videos.</target> |
4587 | <context-group purpose="location"> | 4586 | <context-group purpose="location"> |
4588 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4587 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
4589 | <context context-type="linenumber">756</context> | 4588 | <context context-type="linenumber">756</context> |
@@ -4688,18 +4687,8 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
4688 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1077</context></context-group> | 4687 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1077</context></context-group> |
4689 | </trans-unit> | 4688 | </trans-unit> |
4690 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4689 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4691 | <source> Write CSS code directly. Example:<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | 4690 | <source>Write CSS code directly. Example:<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css <x id="INTERPOLATION" equiv-text=" {{ '{' }"/> color: red; <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> Prepend with <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em> "/> to override styles. Example:<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text=" {{ '{' }"/> color: red; <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></source> |
4692 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | 4691 | <target state="translated">Schreiben Sie direkt CSS-Code. Beispiel: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css <x id="INTERPOLATION" equiv-text=" {{ '{' }"/> color: Rot; <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre> "/> Vorangestellt wird <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> um Stile außer Kraft zu setzen. Beispiel:<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css . eingeloggt-email <x id="INTERPOLATION" equiv-text=" {{ '{' }"/> color: red; <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></target> |
4693 | "/><x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css <x id="INTERPOLATION" equiv-text=" {{ '{' }"/> | ||
4694 | color: red; | ||
4695 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> | ||
4696 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> Prepend with <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em> "/> to override styles. Example:<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4697 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4698 | "/><x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text=" {{ '{' }"/> | ||
4699 | color: red; | ||
4700 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> | ||
4701 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></source> | ||
4702 | <target state="translated">Schreiben Sie direkt CSS-Code. Beispiel: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css <x id="INTERPOLATION" equiv-text=" {{ '{' }"/> color: Rot; <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre> "/> Vorangestellt wird <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> um Stile außer Kraft zu setzen. Beispiel:<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css . eingeloggt-email <x id="INTERPOLATION" equiv-text=" {{ '{' }"/> color: red; <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></target> | ||
4703 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1096</context></context-group> | 4692 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1096</context></context-group> |
4704 | </trans-unit> | 4693 | </trans-unit> |
4705 | <trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 4694 | <trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
@@ -4991,9 +4980,8 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
4991 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">26</context></context-group> | 4980 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">26</context></context-group> |
4992 | </trans-unit> | 4981 | </trans-unit> |
4993 | <trans-unit id="66ad6eb3f06251c75325b780943a07f94c949df7" datatype="html"> | 4982 | <trans-unit id="66ad6eb3f06251c75325b780943a07f94c949df7" datatype="html"> |
4994 | <source>Short text to tell people how they can support your channel (membership platform...).<br /><br /> | 4983 | <source>Short text to tell people how they can support your channel (membership platform...).<br /><br /> When you will upload a video in this channel, the video support field will be automatically filled by this text.</source> |
4995 | When you will upload a video in this channel, the video support field will be automatically filled by this text.</source> | 4984 | <target state="translated">Kurzer Text, der Nutzer über die Möglichkeiten, den Kanal zu unterstützen, informiert (Mitgliederplattform, etc.)<br /><br /> Beim Hochladen eines Videos wird das Unterstützerfeld automatisch hiermit gefüllt.</target> |
4996 | <target state="translated">Kurzer Text, der Nutzer über die Möglichkeiten, den Kanal zu unterstützen, informiert (Mitgliederplattform, etc.)<br /><br /> Beim Hochladen eines Videos wird das Unterstützerfeld automatisch hiermit gefüllt.</target> | ||
4997 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">77</context></context-group> | 4985 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">77</context></context-group> |
4998 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">77</context></context-group> | 4986 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">77</context></context-group> |
4999 | </trans-unit> | 4987 | </trans-unit> |
@@ -5307,9 +5295,7 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
5307 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">37</context></context-group> | 5295 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">37</context></context-group> |
5308 | </trans-unit> | 5296 | </trans-unit> |
5309 | <trans-unit id="7152797255397280410" datatype="html"> | 5297 | <trans-unit id="7152797255397280410" datatype="html"> |
5310 | <source>Do you really want to delete <x id="PH" equiv-text="videoChannel.displayName"/>? | 5298 | <source>Do you really want to delete <x id="PH" equiv-text="videoChannel.displayName"/>? It will delete <x id="PH_1" equiv-text="videoChannel.videosCount"/> videos uploaded in this channel, and you will not be able to create another channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</source> |
5311 | It will delete <x id="PH_1" equiv-text="videoChannel.videosCount"/> videos uploaded in this channel, and you will not be able to create another | ||
5312 | channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</source> | ||
5313 | <target state="translated">Wollen Sie wirklich <x id="PH" equiv-text="videoChannel.displayName"/> löschen? Es löscht <x id="PH_1" equiv-text="videoChannel.videosCount"/> Videos, die in diesem Kanal hochgeladen wurden, und Sie können keinen weiteren Kanal mit demselben Namen (<x id="PH_2" equiv-text="videoChannel.name"/>) erstellen!</target> | 5299 | <target state="translated">Wollen Sie wirklich <x id="PH" equiv-text="videoChannel.displayName"/> löschen? Es löscht <x id="PH_1" equiv-text="videoChannel.videosCount"/> Videos, die in diesem Kanal hochgeladen wurden, und Sie können keinen weiteren Kanal mit demselben Namen (<x id="PH_2" equiv-text="videoChannel.name"/>) erstellen!</target> |
5314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">63</context></context-group> | 5300 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">63</context></context-group> |
5315 | </trans-unit> | 5301 | </trans-unit> |
@@ -5428,7 +5414,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5428 | </trans-unit> | 5414 | </trans-unit> |
5429 | <trans-unit id="aed1bb4393932c974d4347ff743a2253cc64ef02" datatype="html"> | 5415 | <trans-unit id="aed1bb4393932c974d4347ff743a2253cc64ef02" datatype="html"> |
5430 | <source>Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</source> | 5416 | <source>Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</source> |
5431 | <target state="new">Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</target> | 5417 | <target state="translated">Folgende Instanzen (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</target> |
5432 | <context-group purpose="location"> | 5418 | <context-group purpose="location"> |
5433 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 5419 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
5434 | <context context-type="linenumber">16</context> | 5420 | <context context-type="linenumber">16</context> |
@@ -5640,8 +5626,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5640 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">114</context></context-group> | 5626 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">114</context></context-group> |
5641 | </trans-unit> | 5627 | </trans-unit> |
5642 | <trans-unit id="f360bcf79135ae541bdb1bbd419ccc4cb2fb6ab3" datatype="html"> | 5628 | <trans-unit id="f360bcf79135ae541bdb1bbd419ccc4cb2fb6ab3" datatype="html"> |
5643 | <source>Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </source> | 5629 | <source>Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </source> |
5644 | <target state="translated">Web-Peers sind nicht öffentlich zugänglich: Da wir den Websocket-Transport verwenden, ist das Protokoll anders als bei klassischen BitTorrent-Trackern. Wenn Sie in einem Webbrowser sind, senden Sie ein Signal mit Ihrer IP-Adresse an den Tracker, der zufällig andere Peers auswählt, an die er die Informationen weiterleitet. Siehe <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>dieses Dokument<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> für weitere Informationen </target> | 5630 | <target state="translated">Web-Peers sind nicht öffentlich zugänglich: Da wir den Websocket-Transport verwenden, ist das Protokoll anders als bei klassischen BitTorrent-Trackern. Wenn Sie in einem Webbrowser sind, senden Sie ein Signal mit Ihrer IP-Adresse an den Tracker, der zufällig andere Peers auswählt, an die er die Informationen weiterleitet. Siehe <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>dieses Dokument<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> für weitere Informationen </target> |
5645 | <context-group purpose="location"> | 5631 | <context-group purpose="location"> |
5646 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> | 5632 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> |
5647 | <context context-type="linenumber">118,122</context> | 5633 | <context context-type="linenumber">118,122</context> |
@@ -5887,9 +5873,11 @@ Erstelle mein Konto</target> | |||
5887 | <trans-unit id="819067926858619041" datatype="html"> | 5873 | <trans-unit id="819067926858619041" datatype="html"> |
5888 | <source>Account videos</source> | 5874 | <source>Account videos</source> |
5889 | <target state="translated">Videos des Kontos</target> | 5875 | <target state="translated">Videos des Kontos</target> |
5890 | 5876 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">48</context></context-group> | |
5891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">48</context></context-group></trans-unit><trans-unit id="2131232107132374967" datatype="html"> | 5877 | </trans-unit> |
5892 | <source>Search videos within account</source><target state="new">Search videos within account</target> | 5878 | <trans-unit id="2131232107132374967" datatype="html"> |
5879 | <source>Search videos within account</source> | ||
5880 | <target state="translated">Videos im Konto suchen</target> | ||
5893 | <context-group purpose="location"> | 5881 | <context-group purpose="location"> |
5894 | <context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context> | 5882 | <context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context> |
5895 | <context context-type="linenumber">61</context> | 5883 | <context context-type="linenumber">61</context> |
@@ -5898,19 +5886,20 @@ Erstelle mein Konto</target> | |||
5898 | <trans-unit id="6823616469362610020" datatype="html"> | 5886 | <trans-unit id="6823616469362610020" datatype="html"> |
5899 | <source>Account video channels</source> | 5887 | <source>Account video channels</source> |
5900 | <target state="translated">Kanäle des Kontos</target> | 5888 | <target state="translated">Kanäle des Kontos</target> |
5901 | 5889 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">30</context></context-group> | |
5902 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">30</context></context-group></trans-unit> | 5890 | </trans-unit> |
5903 | <trans-unit id="7678273613459026643" datatype="html"> | 5891 | <trans-unit id="7678273613459026643" datatype="html"> |
5904 | <source>About account</source> | 5892 | <source>About account</source> |
5905 | <target state="translated">Über das Konto</target> | 5893 | <target state="translated">Über das Konto</target> |
5906 | 5894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">39</context></context-group> | |
5907 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 5895 | </trans-unit> |
5908 | <trans-unit id="3755500631176893489"> | 5896 | <trans-unit id="3755500631176893489"> |
5909 | <source>Published <x id="PH"/> videos</source> | 5897 | <source>Published <x id="PH"/> videos</source> |
5910 | <target>Veröffentlichte <x id="PH"/> Videos</target> | 5898 | <target>Veröffentlichte <x id="PH"/> Videos</target> |
5911 | 5899 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">87</context></context-group> | |
5912 | 5900 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-search/account-search.component.ts</context><context context-type="linenumber">90</context></context-group> | |
5913 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">87</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-search/account-search.component.ts</context><context context-type="linenumber">90</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-videos/account-videos.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 5901 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-videos/account-videos.component.ts</context><context context-type="linenumber">79</context></context-group> |
5902 | </trans-unit> | ||
5914 | <trans-unit id="e4965e47ed9cd6553d9a87a5112871a2dcbbe132" datatype="html"> | 5903 | <trans-unit id="e4965e47ed9cd6553d9a87a5112871a2dcbbe132" datatype="html"> |
5915 | <source>Display all videos (private, unlisted or not yet published)</source> | 5904 | <source>Display all videos (private, unlisted or not yet published)</source> |
5916 | <target state="translated">Alle Videos anzeigen (privat, nicht aufgelistet oder noch nicht veröffentlicht)</target> | 5905 | <target state="translated">Alle Videos anzeigen (privat, nicht aufgelistet oder noch nicht veröffentlicht)</target> |
@@ -5925,14 +5914,16 @@ Erstelle mein Konto</target> | |||
5925 | <trans-unit id="4856575356061361269" datatype="html"> | 5914 | <trans-unit id="4856575356061361269" datatype="html"> |
5926 | <source><x id="PH"/> direct account followers </source> | 5915 | <source><x id="PH"/> direct account followers </source> |
5927 | <target state="translated"><x id="PH"/> direkte Kontofolgende </target> | 5916 | <target state="translated"><x id="PH"/> direkte Kontofolgende </target> |
5928 | 5917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">127</context></context-group> | |
5929 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 5918 | </trans-unit> |
5930 | <trans-unit id="6250999352462648289" datatype="html"> | 5919 | <trans-unit id="6250999352462648289" datatype="html"> |
5931 | <source>Report this account</source> | 5920 | <source>Report this account</source> |
5932 | <target state="translated">Dieses Konto melden</target> | 5921 | <target state="translated">Dieses Konto melden</target> |
5933 | 5922 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">133</context></context-group> | |
5934 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit><trans-unit id="230b7aa1bc012b2e5bafc1f24b6aa734a978183c" datatype="html"> | 5923 | </trans-unit> |
5935 | <source>Search videos</source><target state="new">Search videos</target> | 5924 | <trans-unit id="230b7aa1bc012b2e5bafc1f24b6aa734a978183c" datatype="html"> |
5925 | <source>Search videos</source> | ||
5926 | <target state="translated">Videos suchen</target> | ||
5936 | <context-group purpose="location"> | 5927 | <context-group purpose="location"> |
5937 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> | 5928 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> |
5938 | <context context-type="linenumber">48</context> | 5929 | <context context-type="linenumber">48</context> |
@@ -5941,36 +5932,36 @@ Erstelle mein Konto</target> | |||
5941 | <trans-unit id="424703522835656806" datatype="html"> | 5932 | <trans-unit id="424703522835656806" datatype="html"> |
5942 | <source>VIDEO CHANNELS</source> | 5933 | <source>VIDEO CHANNELS</source> |
5943 | <target state="translated">VIDEOKANÄLE</target> | 5934 | <target state="translated">VIDEOKANÄLE</target> |
5944 | 5935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">65</context></context-group> | |
5945 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">65</context></context-group></trans-unit> | 5936 | </trans-unit> |
5946 | <trans-unit id="1504521795586863905" datatype="html"> | 5937 | <trans-unit id="1504521795586863905" datatype="html"> |
5947 | <source>VIDEOS</source> | 5938 | <source>VIDEOS</source> |
5948 | <target state="translated">VIDEOS</target> | 5939 | <target state="translated">VIDEOS</target> |
5949 | 5940 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">69</context></context-group> | |
5950 | 5941 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">66</context></context-group> | |
5951 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 5942 | </trans-unit> |
5952 | <trans-unit id="1341921152640000230" datatype="html"> | 5943 | <trans-unit id="1341921152640000230" datatype="html"> |
5953 | <source>ABOUT</source> | 5944 | <source>ABOUT</source> |
5954 | <target state="translated">ÜBER</target> | 5945 | <target state="translated">ÜBER</target> |
5955 | 5946 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</context></context-group> | |
5956 | 5947 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">67</context></context-group> | |
5957 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 5948 | </trans-unit> |
5958 | <trans-unit id="25349740244798533"> | 5949 | <trans-unit id="25349740244798533"> |
5959 | <source>Username copied</source> | 5950 | <source>Username copied</source> |
5960 | <target>Benutzername kopiert</target> | 5951 | <target>Benutzername kopiert</target> |
5961 | 5952 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">96</context></context-group> | |
5962 | 5953 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">95</context></context-group> | |
5963 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">96</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">95</context></context-group></trans-unit> | 5954 | </trans-unit> |
5964 | <trans-unit id="9221735175659318025" datatype="html"> | 5955 | <trans-unit id="9221735175659318025" datatype="html"> |
5965 | <source>1 subscriber</source> | 5956 | <source>1 subscriber</source> |
5966 | <target state="translated">1 Abonnent</target> | 5957 | <target state="translated">1 Abonnent</target> |
5967 | 5958 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">99</context></context-group> | |
5968 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">99</context></context-group></trans-unit> | 5959 | </trans-unit> |
5969 | <trans-unit id="4097331874769079975" datatype="html"> | 5960 | <trans-unit id="4097331874769079975" datatype="html"> |
5970 | <source><x id="PH"/> subscribers</source> | 5961 | <source><x id="PH"/> subscribers</source> |
5971 | <target state="translated"><x id="PH"/> Abonnenten</target> | 5962 | <target state="translated"><x id="PH"/> Abonnenten</target> |
5972 | 5963 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">101</context></context-group> | |
5973 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">101</context></context-group></trans-unit> | 5964 | </trans-unit> |
5974 | <trans-unit id="db28493f1be1ed4d0edfea612181d27c9c530270" datatype="html"> | 5965 | <trans-unit id="db28493f1be1ed4d0edfea612181d27c9c530270" datatype="html"> |
5975 | <source>Instances you follow</source> | 5966 | <source>Instances you follow</source> |
5976 | <target state="translated">Gefolgte Instanzen</target> | 5967 | <target state="translated">Gefolgte Instanzen</target> |
@@ -5987,8 +5978,8 @@ Erstelle mein Konto</target> | |||
5987 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">61</context></context-group> | 5978 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">61</context></context-group> |
5988 | </trans-unit> | 5979 | </trans-unit> |
5989 | <trans-unit id="8011855989482474311" datatype="html"> | 5980 | <trans-unit id="8011855989482474311" datatype="html"> |
5990 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> | 5981 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> |
5991 | <target state="translated">Ein <code>.mp4</code> das nur die originale Tonspur enthält, ohne Bild</target> | 5982 | <target state="translated">Ein <code>.mp4</code> das nur die originale Tonspur enthält, ohne Bild</target> |
5992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">62</context></context-group> | 5983 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">62</context></context-group> |
5993 | </trans-unit> | 5984 | </trans-unit> |
5994 | <trans-unit id="3768852440495368591"> | 5985 | <trans-unit id="3768852440495368591"> |
@@ -6905,9 +6896,8 @@ Erstelle mein Konto</target> | |||
6905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">55</context></context-group> | 6896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">55</context></context-group> |
6906 | </trans-unit> | 6897 | </trans-unit> |
6907 | <trans-unit id="73fc884417b68de6671fbab6e72e054c38a1990a" datatype="html"> | 6898 | <trans-unit id="73fc884417b68de6671fbab6e72e054c38a1990a" datatype="html"> |
6908 | <source>Your current email is <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.email }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/>. It is never shown to the public. </source> | 6899 | <source>Your current email is <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.email }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/>. It is never shown to the public. </source> |
6909 | <target state="new"> Your current email is <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.email }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/>. It is never shown to the public. | 6900 | <target state="translated">Ihre aktuelle E-Mail lautet <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.email }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/>. Sie wird nie öffentlich angezeigt. </target> |
6910 | </target> | ||
6911 | <context-group purpose="location"> | 6901 | <context-group purpose="location"> |
6912 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> | 6902 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> |
6913 | <context context-type="linenumber">5,7</context> | 6903 | <context context-type="linenumber">5,7</context> |
@@ -7037,7 +7027,7 @@ Erstelle mein Konto</target> | |||
7037 | </trans-unit> | 7027 | </trans-unit> |
7038 | <trans-unit id="d2ade8ba2e32c6fe467932b6b156025fe50da7c3" datatype="html"> | 7028 | <trans-unit id="d2ade8ba2e32c6fe467932b6b156025fe50da7c3" datatype="html"> |
7039 | <source>People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source> | 7029 | <source>People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source> |
7040 | <target state="new"> People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </target> | 7030 | <target state="translated">Personen können Sie über @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> finden </target> |
7041 | <context-group purpose="location"> | 7031 | <context-group purpose="location"> |
7042 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context> | 7032 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context> |
7043 | <context context-type="linenumber">11,13</context> | 7033 | <context context-type="linenumber">11,13</context> |
@@ -7134,7 +7124,7 @@ Erstelle mein Konto</target> | |||
7134 | </trans-unit> | 7124 | </trans-unit> |
7135 | <trans-unit id="1009095940160473792" datatype="html"> | 7125 | <trans-unit id="1009095940160473792" datatype="html"> |
7136 | <source>URL parameter is missing in URL parameters</source> | 7126 | <source>URL parameter is missing in URL parameters</source> |
7137 | <target state="new">URL parameter is missing in URL parameters</target> | 7127 | <target state="translated">URL-Parameter fehlt in URL-Parametern</target> |
7138 | <context-group purpose="location"> | 7128 | <context-group purpose="location"> |
7139 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> | 7129 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> |
7140 | <context context-type="linenumber">25</context> | 7130 | <context context-type="linenumber">25</context> |
@@ -7142,7 +7132,7 @@ Erstelle mein Konto</target> | |||
7142 | </trans-unit> | 7132 | </trans-unit> |
7143 | <trans-unit id="7553172329217243895" datatype="html"> | 7133 | <trans-unit id="7553172329217243895" datatype="html"> |
7144 | <source>Cannot access to the remote resource</source> | 7134 | <source>Cannot access to the remote resource</source> |
7145 | <target state="new">Cannot access to the remote resource</target> | 7135 | <target state="translated">Kein Zugriff auf die Remote-Ressource möglich</target> |
7146 | <context-group purpose="location"> | 7136 | <context-group purpose="location"> |
7147 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> | 7137 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> |
7148 | <context context-type="linenumber">48</context> | 7138 | <context context-type="linenumber">48</context> |
@@ -7150,7 +7140,7 @@ Erstelle mein Konto</target> | |||
7150 | </trans-unit> | 7140 | </trans-unit> |
7151 | <trans-unit id="3851357780293085233" datatype="html"> | 7141 | <trans-unit id="3851357780293085233" datatype="html"> |
7152 | <source>Remote interaction</source> | 7142 | <source>Remote interaction</source> |
7153 | <target state="new">Remote interaction</target> | 7143 | <target state="translated">Remote Interaktion</target> |
7154 | <context-group purpose="location"> | 7144 | <context-group purpose="location"> |
7155 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction-routing.module.ts</context> | 7145 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction-routing.module.ts</context> |
7156 | <context context-type="linenumber">13</context> | 7146 | <context context-type="linenumber">13</context> |
@@ -7438,8 +7428,7 @@ Erstelle mein Konto</target> | |||
7438 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">76</context></context-group> | 7428 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">76</context></context-group> |
7439 | </trans-unit> | 7429 | </trans-unit> |
7440 | <trans-unit id="2013324644839511073" datatype="html"> | 7430 | <trans-unit id="2013324644839511073" datatype="html"> |
7441 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="error.text"/>. | 7431 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="error.text"/>. Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> |
7442 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> | ||
7443 | <target state="translated">Referenzen des OAuth-Clients können nicht abgerufen werden: <x id="PH" equiv-text="error.text"/>. Stellen Sie sicher, dass PeerTube korrekt konfiguriert ist (Ordner config/), speziell der Abschnitt "webserver".</target> | 7432 | <target state="translated">Referenzen des OAuth-Clients können nicht abgerufen werden: <x id="PH" equiv-text="error.text"/>. Stellen Sie sicher, dass PeerTube korrekt konfiguriert ist (Ordner config/), speziell der Abschnitt "webserver".</target> |
7444 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">99</context></context-group> | 7433 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">99</context></context-group> |
7445 | </trans-unit> | 7434 | </trans-unit> |
@@ -7572,8 +7561,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7572 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">69</context></context-group> | 7561 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">69</context></context-group> |
7573 | </trans-unit> | 7562 | </trans-unit> |
7574 | <trans-unit id="6613870447286561244"> | 7563 | <trans-unit id="6613870447286561244"> |
7575 | <source>Long (> 10 min)</source> | 7564 | <source>Long (> 10 min)</source> |
7576 | <target>Lang (> 10 min)</target> | 7565 | <target>Lang (> 10 min)</target> |
7577 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">73</context></context-group> | 7566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">73</context></context-group> |
7578 | </trans-unit> | 7567 | </trans-unit> |
7579 | <trans-unit id="1787083504545967"> | 7568 | <trans-unit id="1787083504545967"> |
@@ -7604,9 +7593,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7604 | <trans-unit id="4580988005648117665" datatype="html"> | 7593 | <trans-unit id="4580988005648117665" datatype="html"> |
7605 | <source>Search</source> | 7594 | <source>Search</source> |
7606 | <target state="translated">Suche</target> | 7595 | <target state="translated">Suche</target> |
7607 | 7596 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">15</context></context-group> | |
7608 | 7597 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">230</context></context-group> | |
7609 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">230</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">15</context></context-group></trans-unit> | 7598 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">15</context></context-group> |
7599 | </trans-unit> | ||
7610 | <trans-unit id="5891040073345002614"> | 7600 | <trans-unit id="5891040073345002614"> |
7611 | <source><x id="PH"/> years ago </source> | 7601 | <source><x id="PH"/> years ago </source> |
7612 | <target>vor | 7602 | <target>vor |
@@ -7811,7 +7801,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7811 | </trans-unit> | 7801 | </trans-unit> |
7812 | <trans-unit id="544279804045883862" datatype="html"> | 7802 | <trans-unit id="544279804045883862" datatype="html"> |
7813 | <source>Handle is required.</source> | 7803 | <source>Handle is required.</source> |
7814 | <target state="new">Handle is required.</target> | 7804 | <target state="translated">Handlung erforderlich</target> |
7815 | <context-group purpose="location"> | 7805 | <context-group purpose="location"> |
7816 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> | 7806 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> |
7817 | <context context-type="linenumber">48</context> | 7807 | <context context-type="linenumber">48</context> |
@@ -7819,7 +7809,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7819 | </trans-unit> | 7809 | </trans-unit> |
7820 | <trans-unit id="4415706443503032539" datatype="html"> | 7810 | <trans-unit id="4415706443503032539" datatype="html"> |
7821 | <source>Handle must be valid (chocobozzz@example.com).</source> | 7811 | <source>Handle must be valid (chocobozzz@example.com).</source> |
7822 | <target state="new">Handle must be valid (chocobozzz@example.com).</target> | 7812 | <target state="translated">Handlung muss gültig sein (chocobozzz@example.com).</target> |
7823 | <context-group purpose="location"> | 7813 | <context-group purpose="location"> |
7824 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> | 7814 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> |
7825 | <context context-type="linenumber">49</context> | 7815 | <context context-type="linenumber">49</context> |
@@ -8125,8 +8115,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8125 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">50</context></context-group> | 8115 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">50</context></context-group> |
8126 | </trans-unit> | 8116 | </trans-unit> |
8127 | <trans-unit id="8c9434491bf113074890c9c975d89d5f7727d2d9" datatype="html"> | 8117 | <trans-unit id="8c9434491bf113074890c9c975d89d5f7727d2d9" datatype="html"> |
8128 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. </source> | 8118 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. </source> |
8129 | <target state="translated">Siehe <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>die Dokumentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> um zu erfahren, wie Sie die PeerTube-Live-Streaming-Funktion nutzen können. </target> | 8119 | <target state="translated">Siehe <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>die Dokumentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> um zu erfahren, wie Sie die PeerTube-Live-Streaming-Funktion nutzen können. </target> |
8130 | <context-group purpose="location"> | 8120 | <context-group purpose="location"> |
8131 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-documentation-link.component.html</context> | 8121 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-documentation-link.component.html</context> |
8132 | <context context-type="linenumber">2,4</context> | 8122 | <context context-type="linenumber">2,4</context> |
@@ -9190,8 +9180,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9190 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">135</context></context-group> | 9180 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">135</context></context-group> |
9191 | </trans-unit> | 9181 | </trans-unit> |
9192 | <trans-unit id="8272123190776748811" datatype="html"> | 9182 | <trans-unit id="8272123190776748811" datatype="html"> |
9193 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> | 9183 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> |
9194 | <target state="translated">Sie müssen <a href="/login">eingeloggt</a> sein, um dieses Video zu bewerten.</target> | 9184 | <target state="translated">Sie müssen <a href="/login">eingeloggt</a> sein, um dieses Video zu bewerten.</target> |
9195 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">220</context></context-group> | 9185 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">220</context></context-group> |
9196 | </trans-unit> | 9186 | </trans-unit> |
9197 | <trans-unit id="4503408361537553733" datatype="html"> | 9187 | <trans-unit id="4503408361537553733" datatype="html"> |
@@ -9325,23 +9315,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9325 | <trans-unit id="2439066254855913806"> | 9315 | <trans-unit id="2439066254855913806"> |
9326 | <source>Only I can see this video</source> | 9316 | <source>Only I can see this video</source> |
9327 | <target>Nur ich kann dieses Video sehen</target> | 9317 | <target>Nur ich kann dieses Video sehen</target> |
9328 | 9318 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">375</context></context-group> | |
9329 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">375</context></context-group></trans-unit> | 9319 | </trans-unit> |
9330 | <trans-unit id="6767380569816110388" datatype="html"> | 9320 | <trans-unit id="6767380569816110388" datatype="html"> |
9331 | <source>Only shareable via a private link</source> | 9321 | <source>Only shareable via a private link</source> |
9332 | <target state="translated">Nur verteilbar mit einem privaten Link</target> | 9322 | <target state="translated">Nur verteilbar mit einem privaten Link</target> |
9333 | 9323 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">379</context></context-group> | |
9334 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">379</context></context-group></trans-unit> | 9324 | </trans-unit> |
9335 | <trans-unit id="6828965264297239528"> | 9325 | <trans-unit id="6828965264297239528"> |
9336 | <source>Anyone can see this video</source> | 9326 | <source>Anyone can see this video</source> |
9337 | <target>Jeder kann dieses Video sehen</target> | 9327 | <target>Jeder kann dieses Video sehen</target> |
9338 | 9328 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">383</context></context-group> | |
9339 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> | 9329 | </trans-unit> |
9340 | <trans-unit id="1425933035739773115" datatype="html"> | 9330 | <trans-unit id="1425933035739773115" datatype="html"> |
9341 | <source>Only users of this instance can see this video</source> | 9331 | <source>Only users of this instance can see this video</source> |
9342 | <target state="translated">Nur Nutzer dieser Instanz können dieses Video sehen</target> | 9332 | <target state="translated">Nur Nutzer dieser Instanz können dieses Video sehen</target> |
9343 | 9333 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">387</context></context-group> | |
9344 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">387</context></context-group></trans-unit> | 9334 | </trans-unit> |
9345 | <trans-unit id="8312101634344200207" datatype="html"> | 9335 | <trans-unit id="8312101634344200207" datatype="html"> |
9346 | <source><x id="PH" equiv-text="this.views"/> viewers</source> | 9336 | <source><x id="PH" equiv-text="this.views"/> viewers</source> |
9347 | <target state="translated"><x id="PH" equiv-text="this.views"/> Betrachter</target> | 9337 | <target state="translated"><x id="PH" equiv-text="this.views"/> Betrachter</target> |
@@ -9530,9 +9520,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9530 | <trans-unit id="5210096066382592800"> | 9520 | <trans-unit id="5210096066382592800"> |
9531 | <source>Video to import updated.</source> | 9521 | <source>Video to import updated.</source> |
9532 | <target>Zu importierendes Video wurde aktualisiert.</target> | 9522 | <target>Zu importierendes Video wurde aktualisiert.</target> |
9533 | 9523 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts</context><context context-type="linenumber">130</context></context-group> | |
9534 | 9524 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts</context><context context-type="linenumber">140</context></context-group> | |
9535 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts</context><context context-type="linenumber">130</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts</context><context context-type="linenumber">140</context></context-group></trans-unit> | 9525 | </trans-unit> |
9536 | <trans-unit id="3284171506518522275"> | 9526 | <trans-unit id="3284171506518522275"> |
9537 | <source>Your video was uploaded to your account and is private.</source> | 9527 | <source>Your video was uploaded to your account and is private.</source> |
9538 | <target>Das Video wurde in dein Konto hochgeladen und ist privat.</target> | 9528 | <target>Das Video wurde in dein Konto hochgeladen und ist privat.</target> |
@@ -9571,14 +9561,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9571 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">267</context></context-group> | 9561 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">267</context></context-group> |
9572 | </trans-unit> | 9562 | </trans-unit> |
9573 | <trans-unit id="5297709903228580202" datatype="html"> | 9563 | <trans-unit id="5297709903228580202" datatype="html"> |
9574 | <source>Your video quota is exceeded with this video ( | 9564 | <source>Your video quota is exceeded with this video ( video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</source> |
9575 | video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</source> | ||
9576 | <target state="translated">Ihr Videokontingent wurde mit diesem Video überschritten ( Videogröße: <x id="PH" equiv-text="videoSizeBytes"/>, verwendet: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, Quote: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | 9565 | <target state="translated">Ihr Videokontingent wurde mit diesem Video überschritten ( Videogröße: <x id="PH" equiv-text="videoSizeBytes"/>, verwendet: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, Quote: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> |
9577 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">289</context></context-group> | 9566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">289</context></context-group> |
9578 | </trans-unit> | 9567 | </trans-unit> |
9579 | <trans-unit id="1267976082314717617" datatype="html"> | 9568 | <trans-unit id="1267976082314717617" datatype="html"> |
9580 | <source>Your daily video quota is exceeded with this video ( | 9569 | <source>Your daily video quota is exceeded with this video ( video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</source> |
9581 | video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</source> | ||
9582 | <target state="translated">Ihr tägliches Videokontingent wurde mit diesem Video überschritten ( Videogröße: <x id="PH" equiv-text="videoSizeBytes"/>, verwendet: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | 9570 | <target state="translated">Ihr tägliches Videokontingent wurde mit diesem Video überschritten ( Videogröße: <x id="PH" equiv-text="videoSizeBytes"/>, verwendet: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> |
9583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">309</context></context-group> | 9571 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">309</context></context-group> |
9584 | </trans-unit> | 9572 | </trans-unit> |
@@ -9618,8 +9606,8 @@ video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-t | |||
9618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">210</context></context-group> | 9606 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">210</context></context-group> |
9619 | </trans-unit> | 9607 | </trans-unit> |
9620 | <trans-unit id="961774488937452220" datatype="html"> | 9608 | <trans-unit id="961774488937452220" datatype="html"> |
9621 | <source>This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</source> | 9609 | <source>This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</source> |
9622 | <target state="translated">Dieses Video ist auf dieser Instanz nicht verfügbar. Wollen Sie auf die Quellinstanz weitergeleitet werden: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</target> | 9610 | <target state="translated">Dieses Video ist auf dieser Instanz nicht verfügbar. Wollen Sie auf die Quellinstanz weitergeleitet werden: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</target> |
9623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">415</context></context-group> | 9611 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">415</context></context-group> |
9624 | </trans-unit> | 9612 | </trans-unit> |
9625 | <trans-unit id="5761611056224181752" datatype="html"> | 9613 | <trans-unit id="5761611056224181752" datatype="html"> |
diff --git a/client/src/locale/angular.ru-RU.xlf b/client/src/locale/angular.ru-RU.xlf index 40a9a55f3..e6c56cb6e 100644 --- a/client/src/locale/angular.ru-RU.xlf +++ b/client/src/locale/angular.ru-RU.xlf | |||
@@ -224,14 +224,14 @@ | |||
224 | <trans-unit id="bc155f9fc3be3f32083f19b2c77d4ad3b696d9b9"> | 224 | <trans-unit id="bc155f9fc3be3f32083f19b2c77d4ad3b696d9b9"> |
225 | <source>Display name</source> | 225 | <source>Display name</source> |
226 | <target>Отображаемое имя</target> | 226 | <target>Отображаемое имя</target> |
227 | 227 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">8</context></context-group> | |
228 | 228 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group> | |
229 | 229 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group> | |
230 | 230 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">17</context></context-group> | |
231 | 231 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">71</context></context-group> | |
232 | 232 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">53</context></context-group> | |
233 | 233 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">53</context></context-group> | |
234 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">71</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">53</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> | 234 | </trans-unit> |
235 | <trans-unit id="70a67e04629f6d412db0a12d51820b480788d795"> | 235 | <trans-unit id="70a67e04629f6d412db0a12d51820b480788d795"> |
236 | <source>Create</source> | 236 | <source>Create</source> |
237 | <target>Создать</target> | 237 | <target>Создать</target> |
@@ -377,8 +377,7 @@ | |||
377 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">3</context></context-group> | 377 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">3</context></context-group> |
378 | </trans-unit> | 378 | </trans-unit> |
379 | <trans-unit id="7ac18f5bb1a9b9f245acc8497c2f165a7e9f8510" datatype="html"> | 379 | <trans-unit id="7ac18f5bb1a9b9f245acc8497c2f165a7e9f8510" datatype="html"> |
380 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | 380 | <source><x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} "/> </source> |
381 | "/> </source> | ||
382 | <target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} "/> </target> | 381 | <target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} "/> </target> |
383 | <context-group purpose="location"> | 382 | <context-group purpose="location"> |
384 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> | 383 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> |
@@ -394,15 +393,16 @@ | |||
394 | </context-group> | 393 | </context-group> |
395 | </trans-unit> | 394 | </trans-unit> |
396 | <trans-unit id="2a6ba0b4ffe992ddd03f40ee75b879996bdfb5f7" datatype="html"> | 395 | <trans-unit id="2a6ba0b4ffe992ddd03f40ee75b879996bdfb5f7" datatype="html"> |
397 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}} | 396 | <source><x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}} "/> </source> |
398 | "/> </source> | ||
399 | <target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}} "/> </target> | 397 | <target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}} "/> </target> |
400 | <context-group purpose="location"> | 398 | <context-group purpose="location"> |
401 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> | 399 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> |
402 | <context context-type="linenumber">7,8</context> | 400 | <context context-type="linenumber">7,8</context> |
403 | </context-group> | 401 | </context-group> |
404 | </trans-unit><trans-unit id="3267631941074558910" datatype="html"> | 402 | </trans-unit> |
405 | <source>Cannot fetch information of this remote account</source><target state="new">Cannot fetch information of this remote account</target> | 403 | <trans-unit id="3267631941074558910" datatype="html"> |
404 | <source>Cannot fetch information of this remote account</source> | ||
405 | <target state="new">Cannot fetch information of this remote account</target> | ||
406 | <context-group purpose="location"> | 406 | <context-group purpose="location"> |
407 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.ts</context> | 407 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.ts</context> |
408 | <context context-type="linenumber">60</context> | 408 | <context context-type="linenumber">60</context> |
@@ -453,13 +453,13 @@ | |||
453 | <trans-unit id="52c9a103b812f258bcddc3d90a6e3f46871d25fe"> | 453 | <trans-unit id="52c9a103b812f258bcddc3d90a6e3f46871d25fe"> |
454 | <source>Save</source> | 454 | <source>Save</source> |
455 | <target>Сохранить</target> | 455 | <target>Сохранить</target> |
456 | 456 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">16</context></context-group> | |
457 | 457 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">16</context></context-group> | |
458 | 458 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">77</context></context-group> | |
459 | 459 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">77</context></context-group> | |
460 | 460 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">82</context></context-group> | |
461 | 461 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">38</context></context-group> | |
462 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">82</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 462 | </trans-unit> |
463 | <trans-unit id="b9dee3108a18796bd69c6be316c8fb985b58fb8e"> | 463 | <trans-unit id="b9dee3108a18796bd69c6be316c8fb985b58fb8e"> |
464 | <source>Delete from <x id="INTERPOLATION"/></source> | 464 | <source>Delete from <x id="INTERPOLATION"/></source> |
465 | <target>Удалить с <x id="INTERPOLATION"/></target> | 465 | <target>Удалить с <x id="INTERPOLATION"/></target> |
@@ -519,8 +519,8 @@ | |||
519 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">19</context></context-group> | 519 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">19</context></context-group> |
520 | </trans-unit> | 520 | </trans-unit> |
521 | <trans-unit id="8644431249513874405" datatype="html"> | 521 | <trans-unit id="8644431249513874405" datatype="html"> |
522 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> | 522 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> |
523 | <target state="translated"><a href="https://ru.wikipedia.org/wiki/Markdown#Примеры_синтаксиса" target="_blank" rel="noopener noreferrer">Markdown</a> совместимый что поддерживает:</target> | 523 | <target state="translated"><a href="https://ru.wikipedia.org/wiki/Markdown#Примеры_синтаксиса" target="_blank" rel="noopener noreferrer">Markdown</a> совместимый что поддерживает:</target> |
524 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">75</context></context-group> | 524 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">75</context></context-group> |
525 | </trans-unit> | 525 | </trans-unit> |
526 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 526 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
@@ -532,8 +532,10 @@ | |||
532 | <source>Using an ActivityPub account</source> | 532 | <source>Using an ActivityPub account</source> |
533 | <target>Используя аккаунт ActivityPub</target> | 533 | <target>Используя аккаунт ActivityPub</target> |
534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">54</context></context-group> | 534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">54</context></context-group> |
535 | </trans-unit><trans-unit id="606af655e677f8b06f27f09777cbb8a25b4de665" datatype="html"> | 535 | </trans-unit> |
536 | <source>Subscribe with a remote account:</source><target state="new">Subscribe with a remote account:</target> | 536 | <trans-unit id="606af655e677f8b06f27f09777cbb8a25b4de665" datatype="html"> |
537 | <source>Subscribe with a remote account:</source> | ||
538 | <target state="new">Subscribe with a remote account:</target> | ||
537 | <context-group purpose="location"> | 539 | <context-group purpose="location"> |
538 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 540 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
539 | <context context-type="linenumber">62</context> | 541 | <context context-type="linenumber">62</context> |
@@ -548,8 +550,10 @@ | |||
548 | <source>Subscribe with your local account</source> | 550 | <source>Subscribe with your local account</source> |
549 | <target>Подписаться с вашего локального аккаунта</target> | 551 | <target>Подписаться с вашего локального аккаунта</target> |
550 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">58</context></context-group> | 552 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">58</context></context-group> |
551 | </trans-unit><trans-unit id="1096694538966074574" datatype="html"> | 553 | </trans-unit> |
552 | <source>Published <x id="PH" equiv-text="total"/> videos matching "<x id="PH_1" equiv-text="this.search"/>"</source><target state="new">Published <x id="PH" equiv-text="total"/> videos matching "<x id="PH_1" equiv-text="this.search"/>"</target> | 554 | <trans-unit id="1096694538966074574" datatype="html"> |
555 | <source>Published <x id="PH" equiv-text="total"/> videos matching "<x id="PH_1" equiv-text="this.search"/>"</source> | ||
556 | <target state="new">Published <x id="PH" equiv-text="total"/> videos matching "<x id="PH_1" equiv-text="this.search"/>"</target> | ||
553 | <context-group purpose="location"> | 557 | <context-group purpose="location"> |
554 | <context context-type="sourcefile">src/app/+accounts/account-search/account-search.component.ts</context> | 558 | <context context-type="sourcefile">src/app/+accounts/account-search/account-search.component.ts</context> |
555 | <context context-type="linenumber">89</context> | 559 | <context context-type="linenumber">89</context> |
@@ -560,7 +564,6 @@ | |||
560 | <target state="translated">Прямая трансляция будет автоматически завершена.</target> | 564 | <target state="translated">Прямая трансляция будет автоматически завершена.</target> |
561 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">205</context></context-group> | 565 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">205</context></context-group> |
562 | </trans-unit> | 566 | </trans-unit> |
563 | |||
564 | <trans-unit id="d8758664cadd6452256ca25ca0c7259074f427c1"> | 567 | <trans-unit id="d8758664cadd6452256ca25ca0c7259074f427c1"> |
565 | <source>Using a syndication feed</source> | 568 | <source>Using a syndication feed</source> |
566 | <target state="translated">Используя канал распределения</target> | 569 | <target state="translated">Используя канал распределения</target> |
@@ -580,21 +583,23 @@ | |||
580 | <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> | 583 | <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> |
581 | <target><x id="START_TAG_SPAN"/>Удалённая подписка<x id="CLOSE_TAG_SPAN"/> <x id="START_TAG_SPAN_1"/>Удалённое взаимодействие<x id="CLOSE_TAG_SPAN"/></target> | 584 | <target><x id="START_TAG_SPAN"/>Удалённая подписка<x id="CLOSE_TAG_SPAN"/> <x id="START_TAG_SPAN_1"/>Удалённое взаимодействие<x id="CLOSE_TAG_SPAN"/></target> |
582 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context><context context-type="linenumber">11</context></context-group> | 585 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context><context context-type="linenumber">11</context></context-group> |
583 | </trans-unit><trans-unit id="10fc5e7d31ac52e14a0ee249d718275d2f25771e" datatype="html"> | 586 | </trans-unit> |
584 | <source> You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </source><target state="new"> You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | 587 | <trans-unit id="10fc5e7d31ac52e14a0ee249d718275d2f25771e" datatype="html"> |
588 | <source>You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | ||
589 | <target state="new"> You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | ||
585 | <context-group purpose="location"> | 590 | <context-group purpose="location"> |
586 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | 591 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
587 | <context context-type="linenumber">18,19</context> | 592 | <context context-type="linenumber">18,19</context> |
588 | </context-group> | 593 | </context-group> |
589 | </trans-unit><trans-unit id="d27c1d2f9703f3afcfb9186fc57fe169d851cb06" datatype="html"> | 594 | </trans-unit> |
590 | <source> You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </source><target state="new"> You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | 595 | <trans-unit id="d27c1d2f9703f3afcfb9186fc57fe169d851cb06" datatype="html"> |
596 | <source>You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | ||
597 | <target state="new"> You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | ||
591 | <context-group purpose="location"> | 598 | <context-group purpose="location"> |
592 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | 599 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
593 | <context context-type="linenumber">26,27</context> | 600 | <context context-type="linenumber">26,27</context> |
594 | </context-group> | 601 | </context-group> |
595 | </trans-unit> | 602 | </trans-unit> |
596 | |||
597 | |||
598 | <trans-unit id="6513f65441f986d9204122e01b4ab1df1d63d18e" datatype="html"> | 603 | <trans-unit id="6513f65441f986d9204122e01b4ab1df1d63d18e" datatype="html"> |
599 | <source>PeerTube version</source> | 604 | <source>PeerTube version</source> |
600 | <target state="translated">Версия PeerTube</target> | 605 | <target state="translated">Версия PeerTube</target> |
@@ -799,25 +804,25 @@ | |||
799 | <trans-unit id="d7b35c384aecd25a516200d6921836374613dfe7"> | 804 | <trans-unit id="d7b35c384aecd25a516200d6921836374613dfe7"> |
800 | <source>Cancel</source> | 805 | <source>Cancel</source> |
801 | <target>Отменить</target> | 806 | <target>Отменить</target> |
802 | 807 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group> | |
803 | 808 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">117</context></context-group> | |
804 | 809 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">22</context></context-group> | |
805 | 810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">25</context></context-group> | |
806 | 811 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group> | |
807 | 812 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">38</context></context-group> | |
808 | 813 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">92</context></context-group> | |
809 | 814 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">99</context></context-group> | |
810 | 815 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">26</context></context-group> | |
811 | 816 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">31</context></context-group> | |
812 | 817 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">26</context></context-group> | |
813 | 818 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">48</context></context-group> | |
814 | 819 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group> | |
815 | 820 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">67</context></context-group> | |
816 | 821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">58</context></context-group> | |
817 | 822 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">58</context></context-group> | |
818 | 823 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">69</context></context-group> | |
819 | 824 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">37</context></context-group> | |
820 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">99</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">48</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> | 825 | </trans-unit> |
821 | <trans-unit id="35fdca47605de8113a0db7f587f7c099abec8020"> | 826 | <trans-unit id="35fdca47605de8113a0db7f587f7c099abec8020"> |
822 | <source>Ban this user</source> | 827 | <source>Ban this user</source> |
823 | <target>Заблокировать этого пользователя</target> | 828 | <target>Заблокировать этого пользователя</target> |
@@ -879,16 +884,16 @@ | |||
879 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">16</context></context-group> | 884 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">16</context></context-group> |
880 | </trans-unit> | 885 | </trans-unit> |
881 | <trans-unit id="0b56e18291f70cbcaddcafe46a4901fe499cd3cc" datatype="html"> | 886 | <trans-unit id="0b56e18291f70cbcaddcafe46a4901fe499cd3cc" datatype="html"> |
882 | <source>This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 887 | <source>This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
883 | <target state="translated">Этот экземпляр разрешает регистрацию. Однако будьте осторожны, проверьте <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Условия пользования<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> перед созданием учетной записи. Вы также можете найти другой экземпляр, который точно соответствует вашим потребностям, на: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 888 | <target state="translated">Этот экземпляр разрешает регистрацию. Однако будьте осторожны, проверьте <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Условия пользования<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> перед созданием учетной записи. Вы также можете найти другой экземпляр, который точно соответствует вашим потребностям, на: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
884 | <context-group purpose="location"> | 889 | <context-group purpose="location"> |
885 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 890 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
886 | <context context-type="linenumber">60,62</context> | 891 | <context context-type="linenumber">60,62</context> |
887 | </context-group> | 892 | </context-group> |
888 | </trans-unit> | 893 | </trans-unit> |
889 | <trans-unit id="5ff5b420545ecb1ef07d7ad7c03253e4500246f1" datatype="html"> | 894 | <trans-unit id="5ff5b420545ecb1ef07d7ad7c03253e4500246f1" datatype="html"> |
890 | <source>Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | 895 | <source>Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> |
891 | <target state="translated">В настоящее время этот экземпляр не позволяет регистрировать пользователей, проверьте <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Условия пользования<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> для получения дополнительных сведений, или найдите экземпляр, который дает вам возможность зарегистрировать учетную запись и загружать туда свои видео. Найдите свой среди множества экземпляров на: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 896 | <target state="translated">В настоящее время этот экземпляр не позволяет регистрировать пользователей, проверьте <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Условия пользования<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> для получения дополнительных сведений, или найдите экземпляр, который дает вам возможность зарегистрировать учетную запись и загружать туда свои видео. Найдите свой среди множества экземпляров на: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
892 | <context-group purpose="location"> | 897 | <context-group purpose="location"> |
893 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 898 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
894 | <context context-type="linenumber">65,67</context> | 899 | <context context-type="linenumber">65,67</context> |
@@ -957,8 +962,7 @@ | |||
957 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">103</context></context-group> | 962 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">103</context></context-group> |
958 | </trans-unit> | 963 | </trans-unit> |
959 | <trans-unit id="1190256911880544559" datatype="html"> | 964 | <trans-unit id="1190256911880544559" datatype="html"> |
960 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. | 965 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. The link will expire within 1 hour.</source> |
961 | The link will expire within 1 hour.</source> | ||
962 | <target state="translated">Письмо с инструкцией по сбросу пароля будет отправлено на <x id="PH"/>. Ссылка будет рабочей в течении часа.</target> | 966 | <target state="translated">Письмо с инструкцией по сбросу пароля будет отправлено на <x id="PH"/>. Ссылка будет рабочей в течении часа.</target> |
963 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">126</context></context-group> | 967 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">126</context></context-group> |
964 | </trans-unit> | 968 | </trans-unit> |
@@ -1813,15 +1817,15 @@ The link will expire within 1 hour.</source> | |||
1813 | <trans-unit id="eec715de352a6b114713b30b640d319fa78207a0"> | 1817 | <trans-unit id="eec715de352a6b114713b30b640d319fa78207a0"> |
1814 | <source>Description</source> | 1818 | <source>Description</source> |
1815 | <target>Описание</target> | 1819 | <target>Описание</target> |
1816 | 1820 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group> | |
1817 | 1821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group> | |
1818 | 1822 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">28</context></context-group> | |
1819 | 1823 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">64</context></context-group> | |
1820 | 1824 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">64</context></context-group> | |
1821 | 1825 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">113</context></context-group> | |
1822 | 1826 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">38</context></context-group> | |
1823 | 1827 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">39</context></context-group> | |
1824 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">113</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1828 | </trans-unit> |
1825 | <trans-unit id="3b86a740c713742c3f7538c60b890fccdd0a5caf" datatype="html"> | 1829 | <trans-unit id="3b86a740c713742c3f7538c60b890fccdd0a5caf" datatype="html"> |
1826 | <source>Video descriptions are truncated by default and require manual action to expand them.</source> | 1830 | <source>Video descriptions are truncated by default and require manual action to expand them.</source> |
1827 | <target state="translated">Описания видео по умолчанию ограничены, поэтому необходимо вручную развернуть.</target> | 1831 | <target state="translated">Описания видео по умолчанию ограничены, поэтому необходимо вручную развернуть.</target> |
@@ -1919,7 +1923,7 @@ The link will expire within 1 hour.</source> | |||
1919 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">172</context></context-group> | 1923 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">172</context></context-group> |
1920 | </trans-unit> | 1924 | </trans-unit> |
1921 | <trans-unit id="e687f6387adbaf61ce650b58f0e60ca42d843cee"> | 1925 | <trans-unit id="e687f6387adbaf61ce650b58f0e60ca42d843cee"> |
1922 | <source>Already uploaded ✔</source> | 1926 | <source>Already uploaded ✔</source> |
1923 | <target>Уже загружено ✔</target> | 1927 | <target>Уже загружено ✔</target> |
1924 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">176</context></context-group> | 1928 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">176</context></context-group> |
1925 | </trans-unit> | 1929 | </trans-unit> |
@@ -2051,12 +2055,12 @@ The link will expire within 1 hour.</source> | |||
2051 | <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb"> | 2055 | <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb"> |
2052 | <source>Update</source> | 2056 | <source>Update</source> |
2053 | <target>Изменить</target> | 2057 | <target>Изменить</target> |
2054 | 2058 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">3</context></context-group> | |
2055 | 2059 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">18</context></context-group> | |
2056 | 2060 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">68</context></context-group> | |
2057 | 2061 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">61</context></context-group> | |
2058 | 2062 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">45</context></context-group> | |
2059 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">68</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">61</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 2063 | </trans-unit> |
2060 | <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> | 2064 | <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> |
2061 | <source>Select the file to upload</source> | 2065 | <source>Select the file to upload</source> |
2062 | <target>Выбрать файл для загрузки</target> | 2066 | <target>Выбрать файл для загрузки</target> |
@@ -2159,18 +2163,18 @@ The link will expire within 1 hour.</source> | |||
2159 | <trans-unit id="7860848084471862305" datatype="html"> | 2163 | <trans-unit id="7860848084471862305" datatype="html"> |
2160 | <source>Cannot create live because this instance have too many created lives</source> | 2164 | <source>Cannot create live because this instance have too many created lives</source> |
2161 | <target state="translated">Невозможно создать трансляцию, потому что у этого экземпляра слишком много созданных трансляций</target> | 2165 | <target state="translated">Невозможно создать трансляцию, потому что у этого экземпляра слишком много созданных трансляций</target> |
2162 | 2166 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">91</context></context-group> | |
2163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">91</context></context-group></trans-unit> | 2167 | </trans-unit> |
2164 | <trans-unit id="1278564497286613571" datatype="html"> | 2168 | <trans-unit id="1278564497286613571" datatype="html"> |
2165 | <source>Cannot create live because you created too many lives</source> | 2169 | <source>Cannot create live because you created too many lives</source> |
2166 | <target state="translated">Невозможно создать трансляцию, вы уже создали слишком много трансляций</target> | 2170 | <target state="translated">Невозможно создать трансляцию, вы уже создали слишком много трансляций</target> |
2167 | 2171 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">93</context></context-group> | |
2168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">93</context></context-group></trans-unit> | 2172 | </trans-unit> |
2169 | <trans-unit id="2621043320678012413" datatype="html"> | 2173 | <trans-unit id="2621043320678012413" datatype="html"> |
2170 | <source>Live published.</source> | 2174 | <source>Live published.</source> |
2171 | <target state="translated">Прямой эфир опубликован.</target> | 2175 | <target state="translated">Прямой эфир опубликован.</target> |
2172 | 2176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">123</context></context-group> | |
2173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">123</context></context-group></trans-unit> | 2177 | </trans-unit> |
2174 | <trans-unit id="40e85da538414cc425f42d2b09189ce344865aa1" datatype="html"> | 2178 | <trans-unit id="40e85da538414cc425f42d2b09189ce344865aa1" datatype="html"> |
2175 | <source>Go Live</source> | 2179 | <source>Go Live</source> |
2176 | <target state="translated">В Эфир</target> | 2180 | <target state="translated">В Эфир</target> |
@@ -2343,7 +2347,7 @@ The link will expire within 1 hour.</source> | |||
2343 | </trans-unit> | 2347 | </trans-unit> |
2344 | <trans-unit id="3c4c080864b313cfdff5fdea6aae5da276246d99"> | 2348 | <trans-unit id="3c4c080864b313cfdff5fdea6aae5da276246d99"> |
2345 | <source>Public</source> | 2349 | <source>Public</source> |
2346 | <target>Оуват</target> | 2350 | <target>Общопный</target> |
2347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.html</context><context context-type="linenumber">11</context></context-group> | 2351 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.html</context><context context-type="linenumber">11</context></context-group> |
2348 | </trans-unit> | 2352 | </trans-unit> |
2349 | <trans-unit id="38e66e2d779d6d819cd7703ab73ab1bab75f8614" datatype="html"> | 2353 | <trans-unit id="38e66e2d779d6d819cd7703ab73ab1bab75f8614" datatype="html"> |
@@ -2646,25 +2650,25 @@ The link will expire within 1 hour.</source> | |||
2646 | <source>You are one step away from commenting</source> | 2650 | <source>You are one step away from commenting</source> |
2647 | <target>Вы всего в одном шаге от комментариев</target> | 2651 | <target>Вы всего в одном шаге от комментариев</target> |
2648 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group> | 2652 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group> |
2649 | </trans-unit><trans-unit id="6670e588ad98a777c18f30096aeff7687d53c1c4" datatype="html"> | 2653 | </trans-unit> |
2650 | <source> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </source><target state="new"> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </target> | 2654 | <trans-unit id="6670e588ad98a777c18f30096aeff7687d53c1c4" datatype="html"> |
2655 | <source>You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example).</source> | ||
2656 | <target state="new"> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </target> | ||
2651 | <context-group purpose="location"> | 2657 | <context-group purpose="location"> |
2652 | <context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context> | 2658 | <context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2653 | <context context-type="linenumber">60,61</context> | 2659 | <context context-type="linenumber">60,61</context> |
2654 | </context-group> | 2660 | </context-group> |
2655 | </trans-unit> | 2661 | </trans-unit> |
2656 | |||
2657 | |||
2658 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2662 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2659 | <source>Login to comment</source> | 2663 | <source>Login to comment</source> |
2660 | <target state="translated">Авторизуйтесь, что бы добавить комментарий</target> | 2664 | <target state="translated">Авторизуйтесь, что бы добавить комментарий</target> |
2661 | 2665 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">72</context></context-group> | |
2662 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> | 2666 | </trans-unit> |
2663 | <trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> | 2667 | <trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2664 | <source>Markdown Emoji List</source> | 2668 | <source>Markdown Emoji List</source> |
2665 | <target state="translated">Markdown Emoji список</target> | 2669 | <target state="translated">Markdown Emoji список</target> |
2666 | 2670 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">80</context></context-group> | |
2667 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">80</context></context-group></trans-unit> | 2671 | </trans-unit> |
2668 | <trans-unit id="2662644497259948010" datatype="html"> | 2672 | <trans-unit id="2662644497259948010" datatype="html"> |
2669 | <source>Comment</source> | 2673 | <source>Comment</source> |
2670 | <target state="translated">Комментарий</target> | 2674 | <target state="translated">Комментарий</target> |
@@ -2987,10 +2991,11 @@ The link will expire within 1 hour.</source> | |||
2987 | <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> | 2991 | <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> |
2988 | <source>Username</source> | 2992 | <source>Username</source> |
2989 | <target>Имя пользователя</target> | 2993 | <target>Имя пользователя</target> |
2990 | 2994 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">23</context></context-group> | |
2991 | 2995 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">6</context></context-group> | |
2992 | 2996 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> | |
2993 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 2997 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> |
2998 | </trans-unit> | ||
2994 | <trans-unit id="498afab4384cdddd310de830b987345b71aee25f" datatype="html"> | 2999 | <trans-unit id="498afab4384cdddd310de830b987345b71aee25f" datatype="html"> |
2995 | <source>e.g. jane_doe</source> | 3000 | <source>e.g. jane_doe</source> |
2996 | <target state="translated">e.g. jane_doe</target> | 3001 | <target state="translated">e.g. jane_doe</target> |
@@ -3386,7 +3391,7 @@ The link will expire within 1 hour.</source> | |||
3386 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">7</context></context-group> | 3391 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">7</context></context-group> |
3387 | </trans-unit> | 3392 | </trans-unit> |
3388 | <trans-unit id="fd7b8e728c25b616934661747224b1b2e7d9ea5c" datatype="html"> | 3393 | <trans-unit id="fd7b8e728c25b616934661747224b1b2e7d9ea5c" datatype="html"> |
3389 | <source><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 3394 | <source><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
3390 | <target state="translated"><x id="ICU"/><x id="START_TAG_SPAN"/><x id="CLOSE_TAG_SPAN"/></target> | 3395 | <target state="translated"><x id="ICU"/><x id="START_TAG_SPAN"/><x id="CLOSE_TAG_SPAN"/></target> |
3391 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">27</context></context-group> | 3396 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">27</context></context-group> |
3392 | </trans-unit> | 3397 | </trans-unit> |
@@ -3473,7 +3478,7 @@ The link will expire within 1 hour.</source> | |||
3473 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">33</context></context-group> | 3478 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">33</context></context-group> |
3474 | </trans-unit> | 3479 | </trans-unit> |
3475 | <trans-unit id="da3ebfaee320ad7a8a41c75d6ee19e687f9b484d" datatype="html"> | 3480 | <trans-unit id="da3ebfaee320ad7a8a41c75d6ee19e687f9b484d" datatype="html"> |
3476 | <source><x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {1 report} other {{{ abuse.countReportsForReportee }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 3481 | <source><x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {1 report} other {{{ abuse.countReportsForReportee }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
3477 | <target state="translated"><x id="ICU"/><x id="START_TAG_SPAN"/><x id="CLOSE_TAG_SPAN"/></target> | 3482 | <target state="translated"><x id="ICU"/><x id="START_TAG_SPAN"/><x id="CLOSE_TAG_SPAN"/></target> |
3478 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">52</context></context-group> | 3483 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">52</context></context-group> |
3479 | </trans-unit> | 3484 | </trans-unit> |
@@ -3796,8 +3801,8 @@ The link will expire within 1 hour.</source> | |||
3796 | </context-group> | 3801 | </context-group> |
3797 | </trans-unit> | 3802 | </trans-unit> |
3798 | <trans-unit id="50140de8e198dcb486966365d1d4c01fd910cc46" datatype="html"> | 3803 | <trans-unit id="50140de8e198dcb486966365d1d4c01fd910cc46" datatype="html"> |
3799 | <source>No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</source> | 3804 | <source>No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</source> |
3800 | <target state="new">No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</target> | 3805 | <target state="new">No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</target> |
3801 | <context-group purpose="location"> | 3806 | <context-group purpose="location"> |
3802 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | 3807 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> |
3803 | <context context-type="linenumber">95</context> | 3808 | <context context-type="linenumber">95</context> |
@@ -3829,8 +3834,8 @@ The link will expire within 1 hour.</source> | |||
3829 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">38</context></context-group> | 3834 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">38</context></context-group> |
3830 | </trans-unit> | 3835 | </trans-unit> |
3831 | <trans-unit id="e4ce2d897f4bdce126c9012769654301a587110a" datatype="html"> | 3836 | <trans-unit id="e4ce2d897f4bdce126c9012769654301a587110a" datatype="html"> |
3832 | <source>By <x id="INTERPOLATION"/> -></source> | 3837 | <source>By <x id="INTERPOLATION"/> -></source> |
3833 | <target state="translated">От <x id="INTERPOLATION"/> -></target> | 3838 | <target state="translated">От <x id="INTERPOLATION"/> -></target> |
3834 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">46</context></context-group> | 3839 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">46</context></context-group> |
3835 | </trans-unit> | 3840 | </trans-unit> |
3836 | <trans-unit id="3441b78841dad60f36576d99e38241ae7fefa933" datatype="html"> | 3841 | <trans-unit id="3441b78841dad60f36576d99e38241ae7fefa933" datatype="html"> |
@@ -4443,8 +4448,8 @@ The link will expire within 1 hour.</source> | |||
4443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group> | 4448 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group> |
4444 | </trans-unit> | 4449 | </trans-unit> |
4445 | <trans-unit id="cf06f240dd01db03367a64c84e5513dd59f3a381" datatype="html"> | 4450 | <trans-unit id="cf06f240dd01db03367a64c84e5513dd59f3a381" datatype="html"> |
4446 | <source>Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 4451 | <source>Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
4447 | <target state="translated">Максимум одновременных трансляций, созданных на вашем экземпляре <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 4452 | <target state="translated">Максимум одновременных трансляций, созданных на вашем экземпляре <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
4448 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">916</context></context-group> | 4453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">916</context></context-group> |
4449 | </trans-unit> | 4454 | </trans-unit> |
4450 | <trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4455 | <trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
@@ -4453,8 +4458,8 @@ The link will expire within 1 hour.</source> | |||
4453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">919</context></context-group> | 4458 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">919</context></context-group> |
4454 | </trans-unit> | 4459 | </trans-unit> |
4455 | <trans-unit id="bdc3da1a466b92c3da58c3dff5d47030ec9f6680" datatype="html"> | 4460 | <trans-unit id="bdc3da1a466b92c3da58c3dff5d47030ec9f6680" datatype="html"> |
4456 | <source>Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 4461 | <source>Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
4457 | <target state="translated">Максимальное количество трансляций на одного пользователя <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 для "без ограничения")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 4462 | <target state="translated">Максимальное количество трансляций на одного пользователя <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 для "без ограничения")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
4458 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">924</context></context-group> | 4463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">924</context></context-group> |
4459 | </trans-unit> | 4464 | </trans-unit> |
4460 | <trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4465 | <trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
@@ -4536,13 +4541,13 @@ The link will expire within 1 hour.</source> | |||
4536 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group> | 4541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group> |
4537 | </trans-unit> | 4542 | </trans-unit> |
4538 | <trans-unit id="5789fe6bacfbf750afc62f0399cadf899b67f348" datatype="html"> | 4543 | <trans-unit id="5789fe6bacfbf750afc62f0399cadf899b67f348" datatype="html"> |
4539 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 4544 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
4540 | <target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 4545 | <target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
4541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">785</context></context-group> | 4546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">785</context></context-group> |
4542 | </trans-unit> | 4547 | </trans-unit> |
4543 | <trans-unit id="db8369ea3a140ba4a114648ba204fb1a55ba742e" datatype="html"> | 4548 | <trans-unit id="db8369ea3a140ba4a114648ba204fb1a55ba742e" datatype="html"> |
4544 | <source><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Faster playback especially with long videos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></source> | 4549 | <source><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Faster playback especially with long videos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></source> |
4545 | <target state="new"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Faster playback especially with long videos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> | 4550 | <target state="new"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Faster playback especially with long videos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> |
4546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">805</context></context-group> | 4551 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">805</context></context-group> |
4547 | </trans-unit> | 4552 | </trans-unit> |
4548 | <trans-unit id="0148700953243b0a7188dcbe233d8913c5cb6614" datatype="html"> | 4553 | <trans-unit id="0148700953243b0a7188dcbe233d8913c5cb6614" datatype="html"> |
@@ -4559,14 +4564,15 @@ The link will expire within 1 hour.</source> | |||
4559 | <source>Allow additional extensions</source> | 4564 | <source>Allow additional extensions</source> |
4560 | <target>Разрешить дополнительные расширения</target> | 4565 | <target>Разрешить дополнительные расширения</target> |
4561 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">753</context></context-group> | 4566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">753</context></context-group> |
4562 | </trans-unit><trans-unit id="0ff72c066084f3c420dde9febf4f7255e7511867" datatype="html"> | 4567 | </trans-unit> |
4563 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.</source><target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.</target> | 4568 | <trans-unit id="0ff72c066084f3c420dde9febf4f7255e7511867" datatype="html"> |
4569 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.</source> | ||
4570 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.</target> | ||
4564 | <context-group purpose="location"> | 4571 | <context-group purpose="location"> |
4565 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4572 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
4566 | <context context-type="linenumber">756</context> | 4573 | <context context-type="linenumber">756</context> |
4567 | </context-group> | 4574 | </context-group> |
4568 | </trans-unit> | 4575 | </trans-unit> |
4569 | |||
4570 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4576 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4571 | <source>Allow audio files upload</source> | 4577 | <source>Allow audio files upload</source> |
4572 | <target state="translated">Разрешить загрузку аудиофайлов</target> | 4578 | <target state="translated">Разрешить загрузку аудиофайлов</target> |
@@ -4666,17 +4672,7 @@ The link will expire within 1 hour.</source> | |||
4666 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1077</context></context-group> | 4672 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1077</context></context-group> |
4667 | </trans-unit> | 4673 | </trans-unit> |
4668 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 4674 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4669 | <source> Write CSS code directly. Example:<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | 4675 | <source>Write CSS code directly. Example:<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css <x id="INTERPOLATION" equiv-text=" {{ '{' }"/> color: red; <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> Prepend with <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em> "/> to override styles. Example:<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text=" {{ '{' }"/> color: red; <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></source> |
4670 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4671 | "/><x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css <x id="INTERPOLATION" equiv-text=" {{ '{' }"/> | ||
4672 | color: red; | ||
4673 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> | ||
4674 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> Prepend with <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em> "/> to override styles. Example:<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4675 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4676 | "/><x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text=" {{ '{' }"/> | ||
4677 | color: red; | ||
4678 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> | ||
4679 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></source> | ||
4680 | <target state="translated">Напишите код CSS напрямую. Пример:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Подготовить с <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> для переопределения стилей. Пример:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></target> | 4676 | <target state="translated">Напишите код CSS напрямую. Пример:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Подготовить с <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> для переопределения стилей. Пример:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></target> |
4681 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1096</context></context-group> | 4677 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1096</context></context-group> |
4682 | </trans-unit> | 4678 | </trans-unit> |
@@ -4786,9 +4782,9 @@ The link will expire within 1 hour.</source> | |||
4786 | <trans-unit id="0dd390d056411e1709ec97ec51c46d78600e3f7b"> | 4782 | <trans-unit id="0dd390d056411e1709ec97ec51c46d78600e3f7b"> |
4787 | <source>Current password</source> | 4783 | <source>Current password</source> |
4788 | <target>Текущий пароль</target> | 4784 | <target>Текущий пароль</target> |
4789 | 4785 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">8</context></context-group> | |
4790 | 4786 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">28</context></context-group> | |
4791 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4787 | </trans-unit> |
4792 | <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229"> | 4788 | <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229"> |
4793 | <source>New password</source> | 4789 | <source>New password</source> |
4794 | <target>Новый пароль</target> | 4790 | <target>Новый пароль</target> |
@@ -4831,22 +4827,21 @@ The link will expire within 1 hour.</source> | |||
4831 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">36</context></context-group> | 4827 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">36</context></context-group> |
4832 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">69</context></context-group> | 4828 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">69</context></context-group> |
4833 | </trans-unit> | 4829 | </trans-unit> |
4834 | |||
4835 | <trans-unit id="03d1a9c026074c12ea3f2fb39a34bc6a18fedf05" datatype="html"> | 4830 | <trans-unit id="03d1a9c026074c12ea3f2fb39a34bc6a18fedf05" datatype="html"> |
4836 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> | 4831 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> |
4837 | <target state="translated"><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> ожидает подтверждения по электронной почте </target> | 4832 | <target state="translated"><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> ожидает подтверждения по электронной почте </target> |
4838 | 4833 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">10</context></context-group> | |
4839 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 4834 | </trans-unit> |
4840 | <trans-unit id="d20a2fa4a3360caa8825e49a31b5fd3a442ac219" datatype="html"> | 4835 | <trans-unit id="d20a2fa4a3360caa8825e49a31b5fd3a442ac219" datatype="html"> |
4841 | <source>New email</source> | 4836 | <source>New email</source> |
4842 | <target state="translated">Новая электронная почта</target> | 4837 | <target state="translated">Новая электронная почта</target> |
4843 | 4838 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">17</context></context-group> | |
4844 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 4839 | </trans-unit> |
4845 | <trans-unit id="820741079d4bc32fb98b7a871a6e507b18b6c85c" datatype="html"> | 4840 | <trans-unit id="820741079d4bc32fb98b7a871a6e507b18b6c85c" datatype="html"> |
4846 | <source>Change email</source> | 4841 | <source>Change email</source> |
4847 | <target state="translated">Изменить адрес электронной почты</target> | 4842 | <target state="translated">Изменить адрес электронной почты</target> |
4848 | 4843 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">36</context></context-group> | |
4849 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 4844 | </trans-unit> |
4850 | <trans-unit id="27a56aad79d8b61269ed303f11664cc78bcc2522" datatype="html"> | 4845 | <trans-unit id="27a56aad79d8b61269ed303f11664cc78bcc2522" datatype="html"> |
4851 | <source>Theme</source> | 4846 | <source>Theme</source> |
4852 | <target state="translated">Тема</target> | 4847 | <target state="translated">Тема</target> |
@@ -4970,9 +4965,8 @@ The link will expire within 1 hour.</source> | |||
4970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">26</context></context-group> | 4965 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">26</context></context-group> |
4971 | </trans-unit> | 4966 | </trans-unit> |
4972 | <trans-unit id="66ad6eb3f06251c75325b780943a07f94c949df7" datatype="html"> | 4967 | <trans-unit id="66ad6eb3f06251c75325b780943a07f94c949df7" datatype="html"> |
4973 | <source>Short text to tell people how they can support your channel (membership platform...).<br /><br /> | 4968 | <source>Short text to tell people how they can support your channel (membership platform...).<br /><br /> When you will upload a video in this channel, the video support field will be automatically filled by this text.</source> |
4974 | When you will upload a video in this channel, the video support field will be automatically filled by this text.</source> | 4969 | <target state="translated">Краткий текст, чтобы рассказать людям, как они могут поддержать ваш канал.<br /><br /> Когда вы загрузите видео на этот канал, поле поддержки видео будет автоматически заполнено этим текстом.</target> |
4975 | <target state="translated">Краткий текст, чтобы рассказать людям, как они могут поддержать ваш канал.<br /><br /> Когда вы загрузите видео на этот канал, поле поддержки видео будет автоматически заполнено этим текстом.</target> | ||
4976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">77</context></context-group> | 4970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">77</context></context-group> |
4977 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">77</context></context-group> | 4971 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">77</context></context-group> |
4978 | </trans-unit> | 4972 | </trans-unit> |
@@ -5009,9 +5003,8 @@ The link will expire within 1 hour.</source> | |||
5009 | <trans-unit id="a5707e9905e079605243397ee111b8be449941aa" datatype="html"> | 5003 | <trans-unit id="a5707e9905e079605243397ee111b8be449941aa" datatype="html"> |
5010 | <source>See the error</source> | 5004 | <source>See the error</source> |
5011 | <target state="translated">Посмотреть ошибку</target> | 5005 | <target state="translated">Посмотреть ошибку</target> |
5012 | 5006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">26</context></context-group> | |
5013 | 5007 | </trans-unit> | |
5014 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | ||
5015 | <trans-unit id="842b1f5e4942fb515ef790308ca9ea6a60b4b331" datatype="html"> | 5008 | <trans-unit id="842b1f5e4942fb515ef790308ca9ea6a60b4b331" datatype="html"> |
5016 | <source>This video was deleted</source> | 5009 | <source>This video was deleted</source> |
5017 | <target state="translated">Это видео было удалено</target> | 5010 | <target state="translated">Это видео было удалено</target> |
@@ -5285,9 +5278,7 @@ The link will expire within 1 hour.</source> | |||
5285 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">37</context></context-group> | 5278 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">37</context></context-group> |
5286 | </trans-unit> | 5279 | </trans-unit> |
5287 | <trans-unit id="7152797255397280410" datatype="html"> | 5280 | <trans-unit id="7152797255397280410" datatype="html"> |
5288 | <source>Do you really want to delete <x id="PH" equiv-text="videoChannel.displayName"/>? | 5281 | <source>Do you really want to delete <x id="PH" equiv-text="videoChannel.displayName"/>? It will delete <x id="PH_1" equiv-text="videoChannel.videosCount"/> videos uploaded in this channel, and you will not be able to create another channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</source> |
5289 | It will delete <x id="PH_1" equiv-text="videoChannel.videosCount"/> videos uploaded in this channel, and you will not be able to create another | ||
5290 | channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</source> | ||
5291 | <target state="translated">Вы действительно хотите удалить <x id="PH"/>? Будет удалено <x id="PH_1"/> видео загруженное на этот канал, и вы не сможете создать другой канал с таким же именем (<x id="PH_2"/>)!</target> | 5282 | <target state="translated">Вы действительно хотите удалить <x id="PH"/>? Будет удалено <x id="PH_1"/> видео загруженное на этот канал, и вы не сможете создать другой канал с таким же именем (<x id="PH_2"/>)!</target> |
5292 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">63</context></context-group> | 5283 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">63</context></context-group> |
5293 | </trans-unit> | 5284 | </trans-unit> |
@@ -5403,14 +5394,15 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5403 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 5394 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
5404 | <context context-type="linenumber">4</context> | 5395 | <context context-type="linenumber">4</context> |
5405 | </context-group> | 5396 | </context-group> |
5406 | </trans-unit><trans-unit id="aed1bb4393932c974d4347ff743a2253cc64ef02" datatype="html"> | 5397 | </trans-unit> |
5407 | <source>Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</source><target state="new">Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</target> | 5398 | <trans-unit id="aed1bb4393932c974d4347ff743a2253cc64ef02" datatype="html"> |
5399 | <source>Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</source> | ||
5400 | <target state="new">Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</target> | ||
5408 | <context-group purpose="location"> | 5401 | <context-group purpose="location"> |
5409 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 5402 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
5410 | <context context-type="linenumber">16</context> | 5403 | <context context-type="linenumber">16</context> |
5411 | </context-group> | 5404 | </context-group> |
5412 | </trans-unit> | 5405 | </trans-unit> |
5413 | |||
5414 | <trans-unit id="5fea66be16da46ed7a0775e9a62b7b5e94b77473"> | 5406 | <trans-unit id="5fea66be16da46ed7a0775e9a62b7b5e94b77473"> |
5415 | <source>Contact <x id="INTERPOLATION"/> administrator</source> | 5407 | <source>Contact <x id="INTERPOLATION"/> administrator</source> |
5416 | <target>Связаться с администратором <x id="INTERPOLATION"/></target> | 5408 | <target>Связаться с администратором <x id="INTERPOLATION"/></target> |
@@ -5617,8 +5609,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5617 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">114</context></context-group> | 5609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">114</context></context-group> |
5618 | </trans-unit> | 5610 | </trans-unit> |
5619 | <trans-unit id="f360bcf79135ae541bdb1bbd419ccc4cb2fb6ab3" datatype="html"> | 5611 | <trans-unit id="f360bcf79135ae541bdb1bbd419ccc4cb2fb6ab3" datatype="html"> |
5620 | <source>Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </source> | 5612 | <source>Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </source> |
5621 | <target state="new"> Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </target> | 5613 | <target state="new"> Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </target> |
5622 | <context-group purpose="location"> | 5614 | <context-group purpose="location"> |
5623 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> | 5615 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> |
5624 | <context context-type="linenumber">118,122</context> | 5616 | <context context-type="linenumber">118,122</context> |
@@ -5864,9 +5856,11 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5864 | <trans-unit id="819067926858619041" datatype="html"> | 5856 | <trans-unit id="819067926858619041" datatype="html"> |
5865 | <source>Account videos</source> | 5857 | <source>Account videos</source> |
5866 | <target state="translated">Видео аккаунта</target> | 5858 | <target state="translated">Видео аккаунта</target> |
5867 | 5859 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">48</context></context-group> | |
5868 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">48</context></context-group></trans-unit><trans-unit id="2131232107132374967" datatype="html"> | 5860 | </trans-unit> |
5869 | <source>Search videos within account</source><target state="new">Search videos within account</target> | 5861 | <trans-unit id="2131232107132374967" datatype="html"> |
5862 | <source>Search videos within account</source> | ||
5863 | <target state="new">Search videos within account</target> | ||
5870 | <context-group purpose="location"> | 5864 | <context-group purpose="location"> |
5871 | <context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context> | 5865 | <context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context> |
5872 | <context context-type="linenumber">61</context> | 5866 | <context context-type="linenumber">61</context> |
@@ -5875,19 +5869,20 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5875 | <trans-unit id="6823616469362610020" datatype="html"> | 5869 | <trans-unit id="6823616469362610020" datatype="html"> |
5876 | <source>Account video channels</source> | 5870 | <source>Account video channels</source> |
5877 | <target state="translated">Видеоканалы аккаунта</target> | 5871 | <target state="translated">Видеоканалы аккаунта</target> |
5878 | 5872 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">30</context></context-group> | |
5879 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">30</context></context-group></trans-unit> | 5873 | </trans-unit> |
5880 | <trans-unit id="7678273613459026643" datatype="html"> | 5874 | <trans-unit id="7678273613459026643" datatype="html"> |
5881 | <source>About account</source> | 5875 | <source>About account</source> |
5882 | <target state="translated">Об аккаунте</target> | 5876 | <target state="translated">Об аккаунте</target> |
5883 | 5877 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">39</context></context-group> | |
5884 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 5878 | </trans-unit> |
5885 | <trans-unit id="3755500631176893489" datatype="html"> | 5879 | <trans-unit id="3755500631176893489" datatype="html"> |
5886 | <source>Published <x id="PH"/> videos</source> | 5880 | <source>Published <x id="PH"/> videos</source> |
5887 | <target state="translated">Опубликовано <x id="PH"/> видео</target> | 5881 | <target state="translated">Опубликовано <x id="PH"/> видео</target> |
5888 | 5882 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">87</context></context-group> | |
5889 | 5883 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-search/account-search.component.ts</context><context context-type="linenumber">90</context></context-group> | |
5890 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">87</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-search/account-search.component.ts</context><context context-type="linenumber">90</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-videos/account-videos.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 5884 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-videos/account-videos.component.ts</context><context context-type="linenumber">79</context></context-group> |
5885 | </trans-unit> | ||
5891 | <trans-unit id="e4965e47ed9cd6553d9a87a5112871a2dcbbe132" datatype="html"> | 5886 | <trans-unit id="e4965e47ed9cd6553d9a87a5112871a2dcbbe132" datatype="html"> |
5892 | <source>Display all videos (private, unlisted or not yet published)</source> | 5887 | <source>Display all videos (private, unlisted or not yet published)</source> |
5893 | <target state="translated">Показать все видео (приватные, еще не опубликованные)</target> | 5888 | <target state="translated">Показать все видео (приватные, еще не опубликованные)</target> |
@@ -5902,14 +5897,16 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5902 | <trans-unit id="4856575356061361269" datatype="html"> | 5897 | <trans-unit id="4856575356061361269" datatype="html"> |
5903 | <source><x id="PH"/> direct account followers </source> | 5898 | <source><x id="PH"/> direct account followers </source> |
5904 | <target state="translated"><x id="PH"/> прямые подписчики аккаунта </target> | 5899 | <target state="translated"><x id="PH"/> прямые подписчики аккаунта </target> |
5905 | 5900 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">127</context></context-group> | |
5906 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 5901 | </trans-unit> |
5907 | <trans-unit id="6250999352462648289" datatype="html"> | 5902 | <trans-unit id="6250999352462648289" datatype="html"> |
5908 | <source>Report this account</source> | 5903 | <source>Report this account</source> |
5909 | <target state="translated">Пожаловаться на этот аккаунт</target> | 5904 | <target state="translated">Пожаловаться на этот аккаунт</target> |
5910 | 5905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">133</context></context-group> | |
5911 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit><trans-unit id="230b7aa1bc012b2e5bafc1f24b6aa734a978183c" datatype="html"> | 5906 | </trans-unit> |
5912 | <source>Search videos</source><target state="new">Search videos</target> | 5907 | <trans-unit id="230b7aa1bc012b2e5bafc1f24b6aa734a978183c" datatype="html"> |
5908 | <source>Search videos</source> | ||
5909 | <target state="new">Search videos</target> | ||
5913 | <context-group purpose="location"> | 5910 | <context-group purpose="location"> |
5914 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> | 5911 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> |
5915 | <context context-type="linenumber">48</context> | 5912 | <context context-type="linenumber">48</context> |
@@ -5918,36 +5915,36 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5918 | <trans-unit id="424703522835656806" datatype="html"> | 5915 | <trans-unit id="424703522835656806" datatype="html"> |
5919 | <source>VIDEO CHANNELS</source> | 5916 | <source>VIDEO CHANNELS</source> |
5920 | <target state="translated">ВИДЕОКАНАЛЫ</target> | 5917 | <target state="translated">ВИДЕОКАНАЛЫ</target> |
5921 | 5918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">65</context></context-group> | |
5922 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">65</context></context-group></trans-unit> | 5919 | </trans-unit> |
5923 | <trans-unit id="1504521795586863905" datatype="html"> | 5920 | <trans-unit id="1504521795586863905" datatype="html"> |
5924 | <source>VIDEOS</source> | 5921 | <source>VIDEOS</source> |
5925 | <target state="translated">ВИДЕО</target> | 5922 | <target state="translated">ВИДЕО</target> |
5926 | 5923 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">69</context></context-group> | |
5927 | 5924 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">66</context></context-group> | |
5928 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 5925 | </trans-unit> |
5929 | <trans-unit id="1341921152640000230" datatype="html"> | 5926 | <trans-unit id="1341921152640000230" datatype="html"> |
5930 | <source>ABOUT</source> | 5927 | <source>ABOUT</source> |
5931 | <target state="translated">О КАНАЛЕ</target> | 5928 | <target state="translated">О КАНАЛЕ</target> |
5932 | 5929 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</context></context-group> | |
5933 | 5930 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">67</context></context-group> | |
5934 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 5931 | </trans-unit> |
5935 | <trans-unit id="25349740244798533" datatype="html"> | 5932 | <trans-unit id="25349740244798533" datatype="html"> |
5936 | <source>Username copied</source> | 5933 | <source>Username copied</source> |
5937 | <target state="translated">Имя пользователя скопировано</target> | 5934 | <target state="translated">Имя пользователя скопировано</target> |
5938 | 5935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">96</context></context-group> | |
5939 | 5936 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">95</context></context-group> | |
5940 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">96</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">95</context></context-group></trans-unit> | 5937 | </trans-unit> |
5941 | <trans-unit id="9221735175659318025" datatype="html"> | 5938 | <trans-unit id="9221735175659318025" datatype="html"> |
5942 | <source>1 subscriber</source> | 5939 | <source>1 subscriber</source> |
5943 | <target state="translated">1 подписчик</target> | 5940 | <target state="translated">1 подписчик</target> |
5944 | 5941 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">99</context></context-group> | |
5945 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">99</context></context-group></trans-unit> | 5942 | </trans-unit> |
5946 | <trans-unit id="4097331874769079975" datatype="html"> | 5943 | <trans-unit id="4097331874769079975" datatype="html"> |
5947 | <source><x id="PH"/> subscribers</source> | 5944 | <source><x id="PH"/> subscribers</source> |
5948 | <target state="translated"><x id="PH"/> подписчики</target> | 5945 | <target state="translated"><x id="PH"/> подписчики</target> |
5949 | 5946 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">101</context></context-group> | |
5950 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">101</context></context-group></trans-unit> | 5947 | </trans-unit> |
5951 | <trans-unit id="db28493f1be1ed4d0edfea612181d27c9c530270" datatype="html"> | 5948 | <trans-unit id="db28493f1be1ed4d0edfea612181d27c9c530270" datatype="html"> |
5952 | <source>Instances you follow</source> | 5949 | <source>Instances you follow</source> |
5953 | <target state="translated">Экземпляры, за которыми вы следите</target> | 5950 | <target state="translated">Экземпляры, за которыми вы следите</target> |
@@ -5964,8 +5961,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">61</context></context-group> | 5961 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">61</context></context-group> |
5965 | </trans-unit> | 5962 | </trans-unit> |
5966 | <trans-unit id="8011855989482474311" datatype="html"> | 5963 | <trans-unit id="8011855989482474311" datatype="html"> |
5967 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> | 5964 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> |
5968 | <target state="translated">A <code>.mp4</code> сохраняет исходную звуковую дорожку без видео</target> | 5965 | <target state="translated">A <code>.mp4</code> сохраняет исходную звуковую дорожку без видео</target> |
5969 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">62</context></context-group> | 5966 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">62</context></context-group> |
5970 | </trans-unit> | 5967 | </trans-unit> |
5971 | <trans-unit id="3768852440495368591"> | 5968 | <trans-unit id="3768852440495368591"> |
@@ -6878,9 +6875,10 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6878 | <source>Email updated.</source> | 6875 | <source>Email updated.</source> |
6879 | <target state="translated">Адрес электронной почты обновлен.</target> | 6876 | <target state="translated">Адрес электронной почты обновлен.</target> |
6880 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">55</context></context-group> | 6877 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">55</context></context-group> |
6881 | </trans-unit><trans-unit id="73fc884417b68de6671fbab6e72e054c38a1990a" datatype="html"> | 6878 | </trans-unit> |
6882 | <source> Your current email is <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.email }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/>. It is never shown to the public. | 6879 | <trans-unit id="73fc884417b68de6671fbab6e72e054c38a1990a" datatype="html"> |
6883 | </source><target state="new"> Your current email is <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.email }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/>. It is never shown to the public. | 6880 | <source>Your current email is <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.email }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/>. It is never shown to the public. </source> |
6881 | <target state="new"> Your current email is <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.email }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/>. It is never shown to the public. | ||
6884 | </target> | 6882 | </target> |
6885 | <context-group purpose="location"> | 6883 | <context-group purpose="location"> |
6886 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> | 6884 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> |
@@ -7007,9 +7005,11 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7007 | <trans-unit id="4967231969832964676"> | 7005 | <trans-unit id="4967231969832964676"> |
7008 | <source>Profile updated.</source> | 7006 | <source>Profile updated.</source> |
7009 | <target>Профиль обновлён.</target> | 7007 | <target>Профиль обновлён.</target> |
7010 | 7008 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts</context><context context-type="linenumber">58</context></context-group> | |
7011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts</context><context context-type="linenumber">58</context></context-group></trans-unit><trans-unit id="d2ade8ba2e32c6fe467932b6b156025fe50da7c3" datatype="html"> | 7009 | </trans-unit> |
7012 | <source> People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source><target state="new"> People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </target> | 7010 | <trans-unit id="d2ade8ba2e32c6fe467932b6b156025fe50da7c3" datatype="html"> |
7011 | <source>People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source> | ||
7012 | <target state="new"> People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </target> | ||
7013 | <context-group purpose="location"> | 7013 | <context-group purpose="location"> |
7014 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context> | 7014 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context> |
7015 | <context context-type="linenumber">11,13</context> | 7015 | <context context-type="linenumber">11,13</context> |
@@ -7103,20 +7103,26 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7103 | <source>Not found</source> | 7103 | <source>Not found</source> |
7104 | <target state="translated">Не найден</target> | 7104 | <target state="translated">Не найден</target> |
7105 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found-routing.module.ts</context><context context-type="linenumber">14</context></context-group> | 7105 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found-routing.module.ts</context><context context-type="linenumber">14</context></context-group> |
7106 | </trans-unit><trans-unit id="1009095940160473792" datatype="html"> | 7106 | </trans-unit> |
7107 | <source>URL parameter is missing in URL parameters</source><target state="new">URL parameter is missing in URL parameters</target> | 7107 | <trans-unit id="1009095940160473792" datatype="html"> |
7108 | <source>URL parameter is missing in URL parameters</source> | ||
7109 | <target state="new">URL parameter is missing in URL parameters</target> | ||
7108 | <context-group purpose="location"> | 7110 | <context-group purpose="location"> |
7109 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> | 7111 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> |
7110 | <context context-type="linenumber">25</context> | 7112 | <context context-type="linenumber">25</context> |
7111 | </context-group> | 7113 | </context-group> |
7112 | </trans-unit><trans-unit id="7553172329217243895" datatype="html"> | 7114 | </trans-unit> |
7113 | <source>Cannot access to the remote resource</source><target state="new">Cannot access to the remote resource</target> | 7115 | <trans-unit id="7553172329217243895" datatype="html"> |
7116 | <source>Cannot access to the remote resource</source> | ||
7117 | <target state="new">Cannot access to the remote resource</target> | ||
7114 | <context-group purpose="location"> | 7118 | <context-group purpose="location"> |
7115 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> | 7119 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> |
7116 | <context context-type="linenumber">48</context> | 7120 | <context context-type="linenumber">48</context> |
7117 | </context-group> | 7121 | </context-group> |
7118 | </trans-unit><trans-unit id="3851357780293085233" datatype="html"> | 7122 | </trans-unit> |
7119 | <source>Remote interaction</source><target state="new">Remote interaction</target> | 7123 | <trans-unit id="3851357780293085233" datatype="html"> |
7124 | <source>Remote interaction</source> | ||
7125 | <target state="new">Remote interaction</target> | ||
7120 | <context-group purpose="location"> | 7126 | <context-group purpose="location"> |
7121 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction-routing.module.ts</context> | 7127 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction-routing.module.ts</context> |
7122 | <context context-type="linenumber">13</context> | 7128 | <context context-type="linenumber">13</context> |
@@ -7404,8 +7410,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7404 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">76</context></context-group> | 7410 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">76</context></context-group> |
7405 | </trans-unit> | 7411 | </trans-unit> |
7406 | <trans-unit id="2013324644839511073" datatype="html"> | 7412 | <trans-unit id="2013324644839511073" datatype="html"> |
7407 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="error.text"/>. | 7413 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="error.text"/>. Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> |
7408 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> | ||
7409 | <target state="translated">Не удается получить учетные данные клиента OAuth: <x id="PH"/>. Убедитесь, что вы правильно настроили PeerTube (config / directory), в частности раздел «веб-сервер».</target> | 7414 | <target state="translated">Не удается получить учетные данные клиента OAuth: <x id="PH"/>. Убедитесь, что вы правильно настроили PeerTube (config / directory), в частности раздел «веб-сервер».</target> |
7410 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">99</context></context-group> | 7415 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">99</context></context-group> |
7411 | </trans-unit> | 7416 | </trans-unit> |
@@ -7538,8 +7543,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7538 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">69</context></context-group> | 7543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">69</context></context-group> |
7539 | </trans-unit> | 7544 | </trans-unit> |
7540 | <trans-unit id="6613870447286561244"> | 7545 | <trans-unit id="6613870447286561244"> |
7541 | <source>Long (> 10 min)</source> | 7546 | <source>Long (> 10 min)</source> |
7542 | <target>Длинная (> 10 мин)</target> | 7547 | <target>Длинная (> 10 мин)</target> |
7543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">73</context></context-group> | 7548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">73</context></context-group> |
7544 | </trans-unit> | 7549 | </trans-unit> |
7545 | <trans-unit id="1787083504545967"> | 7550 | <trans-unit id="1787083504545967"> |
@@ -7570,9 +7575,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7570 | <trans-unit id="4580988005648117665" datatype="html"> | 7575 | <trans-unit id="4580988005648117665" datatype="html"> |
7571 | <source>Search</source> | 7576 | <source>Search</source> |
7572 | <target state="translated">Поиск</target> | 7577 | <target state="translated">Поиск</target> |
7573 | 7578 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">15</context></context-group> | |
7574 | 7579 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">230</context></context-group> | |
7575 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">230</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">15</context></context-group></trans-unit> | 7580 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">15</context></context-group> |
7581 | </trans-unit> | ||
7576 | <trans-unit id="5891040073345002614" datatype="html"> | 7582 | <trans-unit id="5891040073345002614" datatype="html"> |
7577 | <source><x id="PH"/> years ago </source> | 7583 | <source><x id="PH"/> years ago </source> |
7578 | <target state="translated"> | 7584 | <target state="translated"> |
@@ -7774,14 +7780,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7774 | <target>Электронная почта должна быть действительной.</target> | 7780 | <target>Электронная почта должна быть действительной.</target> |
7775 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">38</context></context-group> | 7781 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">38</context></context-group> |
7776 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">8</context></context-group> | 7782 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">8</context></context-group> |
7777 | </trans-unit><trans-unit id="544279804045883862" datatype="html"> | 7783 | </trans-unit> |
7778 | <source>Handle is required.</source><target state="new">Handle is required.</target> | 7784 | <trans-unit id="544279804045883862" datatype="html"> |
7785 | <source>Handle is required.</source> | ||
7786 | <target state="new">Handle is required.</target> | ||
7779 | <context-group purpose="location"> | 7787 | <context-group purpose="location"> |
7780 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> | 7788 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> |
7781 | <context context-type="linenumber">48</context> | 7789 | <context context-type="linenumber">48</context> |
7782 | </context-group> | 7790 | </context-group> |
7783 | </trans-unit><trans-unit id="4415706443503032539" datatype="html"> | 7791 | </trans-unit> |
7784 | <source>Handle must be valid (chocobozzz@example.com).</source><target state="new">Handle must be valid (chocobozzz@example.com).</target> | 7792 | <trans-unit id="4415706443503032539" datatype="html"> |
7793 | <source>Handle must be valid (chocobozzz@example.com).</source> | ||
7794 | <target state="new">Handle must be valid (chocobozzz@example.com).</target> | ||
7785 | <context-group purpose="location"> | 7795 | <context-group purpose="location"> |
7786 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> | 7796 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> |
7787 | <context context-type="linenumber">49</context> | 7797 | <context context-type="linenumber">49</context> |
@@ -7841,10 +7851,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7841 | <trans-unit id="3577237269587081090"> | 7851 | <trans-unit id="3577237269587081090"> |
7842 | <source>Password is required.</source> | 7852 | <source>Password is required.</source> |
7843 | <target>Требуется пароль.</target> | 7853 | <target>Требуется пароль.</target> |
7844 | 7854 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">58</context></context-group> | |
7845 | 7855 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">69</context></context-group> | |
7846 | 7856 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/login-validators.ts</context><context context-type="linenumber">18</context></context-group> | |
7847 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/login-validators.ts</context><context context-type="linenumber">18</context></context-group></trans-unit> | 7857 | </trans-unit> |
7848 | <trans-unit id="3152303769378345477"> | 7858 | <trans-unit id="3152303769378345477"> |
7849 | <source>Confirmation of the password is required.</source> | 7859 | <source>Confirmation of the password is required.</source> |
7850 | <target>Требуется подтверждение пароля.</target> | 7860 | <target>Требуется подтверждение пароля.</target> |
@@ -7888,94 +7898,94 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7888 | <trans-unit id="525871656034789056"> | 7898 | <trans-unit id="525871656034789056"> |
7889 | <source>Password must be at least 6 characters long.</source> | 7899 | <source>Password must be at least 6 characters long.</source> |
7890 | <target>Пароль должен содержать более 6 символов.</target> | 7900 | <target>Пароль должен содержать более 6 символов.</target> |
7891 | 7901 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">70</context></context-group> | |
7892 | 7902 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">81</context></context-group> | |
7893 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 7903 | </trans-unit> |
7894 | <trans-unit id="1099684476181448167"> | 7904 | <trans-unit id="1099684476181448167"> |
7895 | <source>Password cannot be more than 255 characters long.</source> | 7905 | <source>Password cannot be more than 255 characters long.</source> |
7896 | <target>Пароль не должен содержать более 255 символов.</target> | 7906 | <target>Пароль не должен содержать более 255 символов.</target> |
7897 | 7907 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">71</context></context-group> | |
7898 | 7908 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">82</context></context-group> | |
7899 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">71</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7909 | </trans-unit> |
7900 | <trans-unit id="3392630942539073768"> | 7910 | <trans-unit id="3392630942539073768"> |
7901 | <source>The new password and the confirmed password do not correspond.</source> | 7911 | <source>The new password and the confirmed password do not correspond.</source> |
7902 | <target>Новый пароль и подтверждение пароля не совпадают.</target> | 7912 | <target>Новый пароль и подтверждение пароля не совпадают.</target> |
7903 | 7913 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">89</context></context-group> | |
7904 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">89</context></context-group></trans-unit> | 7914 | </trans-unit> |
7905 | <trans-unit id="2027337371129904473"> | 7915 | <trans-unit id="2027337371129904473"> |
7906 | <source>Video quota is required.</source> | 7916 | <source>Video quota is required.</source> |
7907 | <target>Требуется квота видео.</target> | 7917 | <target>Требуется квота видео.</target> |
7908 | 7918 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">96</context></context-group> | |
7909 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">96</context></context-group></trans-unit> | 7919 | </trans-unit> |
7910 | <trans-unit id="267386529333143660"> | 7920 | <trans-unit id="267386529333143660"> |
7911 | <source>Quota must be greater than -1.</source> | 7921 | <source>Quota must be greater than -1.</source> |
7912 | <target>Квота должна быть более -1.</target> | 7922 | <target>Квота должна быть более -1.</target> |
7913 | 7923 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">97</context></context-group> | |
7914 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">97</context></context-group></trans-unit> | 7924 | </trans-unit> |
7915 | <trans-unit id="1220179061234048936"> | 7925 | <trans-unit id="1220179061234048936"> |
7916 | <source>Daily upload limit is required.</source> | 7926 | <source>Daily upload limit is required.</source> |
7917 | <target>Требуется дневной лимит загрузок.</target> | 7927 | <target>Требуется дневной лимит загрузок.</target> |
7918 | 7928 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">103</context></context-group> | |
7919 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | 7929 | </trans-unit> |
7920 | <trans-unit id="8959404382357999234"> | 7930 | <trans-unit id="8959404382357999234"> |
7921 | <source>Daily upload limit must be greater than -1.</source> | 7931 | <source>Daily upload limit must be greater than -1.</source> |
7922 | <target>Дневной лимит загрузок должен быть более -1.</target> | 7932 | <target>Дневной лимит загрузок должен быть более -1.</target> |
7923 | 7933 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">104</context></context-group> | |
7924 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">104</context></context-group></trans-unit> | 7934 | </trans-unit> |
7925 | <trans-unit id="4796798537475457493"> | 7935 | <trans-unit id="4796798537475457493"> |
7926 | <source>User role is required.</source> | 7936 | <source>User role is required.</source> |
7927 | <target>Требуется роль пользователя.</target> | 7937 | <target>Требуется роль пользователя.</target> |
7928 | 7938 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">111</context></context-group> | |
7929 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">111</context></context-group></trans-unit> | 7939 | </trans-unit> |
7930 | <trans-unit id="2761226139624435788"> | 7940 | <trans-unit id="2761226139624435788"> |
7931 | <source>Description must be at least 3 characters long.</source> | 7941 | <source>Description must be at least 3 characters long.</source> |
7932 | <target>Описание должно содержать более 3 символов.</target> | 7942 | <target>Описание должно содержать более 3 символов.</target> |
7933 | 7943 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">123</context></context-group> | |
7934 | 7944 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">38</context></context-group> | |
7935 | 7945 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">33</context></context-group> | |
7936 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">123</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">33</context></context-group></trans-unit> | 7946 | </trans-unit> |
7937 | <trans-unit id="4717982586356605243"> | 7947 | <trans-unit id="4717982586356605243"> |
7938 | <source>Description cannot be more than 1000 characters long.</source> | 7948 | <source>Description cannot be more than 1000 characters long.</source> |
7939 | <target>Описание не должно содержать более 1000 символов.</target> | 7949 | <target>Описание не должно содержать более 1000 символов.</target> |
7940 | 7950 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">124</context></context-group> | |
7941 | 7951 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">39</context></context-group> | |
7942 | 7952 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">34</context></context-group> | |
7943 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">124</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 7953 | </trans-unit> |
7944 | <trans-unit id="1814372869868173571" datatype="html"> | 7954 | <trans-unit id="1814372869868173571" datatype="html"> |
7945 | <source>You must agree with the instance terms in order to register on it.</source> | 7955 | <source>You must agree with the instance terms in order to register on it.</source> |
7946 | <target state="translated">Вы должны согласиться с условиями экземпляра, чтобы зарегистрироваться на нем.</target> | 7956 | <target state="translated">Вы должны согласиться с условиями экземпляра, чтобы зарегистрироваться на нем.</target> |
7947 | 7957 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">131</context></context-group> | |
7948 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">131</context></context-group></trans-unit> | 7958 | </trans-unit> |
7949 | <trans-unit id="7803960725351649605"> | 7959 | <trans-unit id="7803960725351649605"> |
7950 | <source>Ban reason must be at least 3 characters long.</source> | 7960 | <source>Ban reason must be at least 3 characters long.</source> |
7951 | <target>Причина блокировки должна содержать более 3 символов.</target> | 7961 | <target>Причина блокировки должна содержать более 3 символов.</target> |
7952 | 7962 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">141</context></context-group> | |
7953 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">141</context></context-group></trans-unit> | 7963 | </trans-unit> |
7954 | <trans-unit id="3851609012243698179"> | 7964 | <trans-unit id="3851609012243698179"> |
7955 | <source>Ban reason cannot be more than 250 characters long.</source> | 7965 | <source>Ban reason cannot be more than 250 characters long.</source> |
7956 | <target>Причина блокировки не должна содержать более 250 символов.</target> | 7966 | <target>Причина блокировки не должна содержать более 250 символов.</target> |
7957 | 7967 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">142</context></context-group> | |
7958 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">142</context></context-group></trans-unit> | 7968 | </trans-unit> |
7959 | <trans-unit id="6632896893630378443"> | 7969 | <trans-unit id="6632896893630378443"> |
7960 | <source>Display name is required.</source> | 7970 | <source>Display name is required.</source> |
7961 | <target>Требуется отображаемое имя.</target> | 7971 | <target>Требуется отображаемое имя.</target> |
7962 | 7972 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">153</context></context-group> | |
7963 | 7973 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">26</context></context-group> | |
7964 | 7974 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">12</context></context-group> | |
7965 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">153</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">12</context></context-group></trans-unit> | 7975 | </trans-unit> |
7966 | <trans-unit id="1303578752658966736"> | 7976 | <trans-unit id="1303578752658966736"> |
7967 | <source>Display name must be at least 1 character long.</source> | 7977 | <source>Display name must be at least 1 character long.</source> |
7968 | <target>Отображаемое имя должно содержать более 1 символа.</target> | 7978 | <target>Отображаемое имя должно содержать более 1 символа.</target> |
7969 | 7979 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">154</context></context-group> | |
7970 | 7980 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">27</context></context-group> | |
7971 | 7981 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">13</context></context-group> | |
7972 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">154</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">13</context></context-group></trans-unit> | 7982 | </trans-unit> |
7973 | <trans-unit id="4613240543124934954"> | 7983 | <trans-unit id="4613240543124934954"> |
7974 | <source>Display name cannot be more than 50 characters long.</source> | 7984 | <source>Display name cannot be more than 50 characters long.</source> |
7975 | <target>Отображаемое имя не должно содержать более 50 символов.</target> | 7985 | <target>Отображаемое имя не должно содержать более 50 символов.</target> |
7976 | 7986 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">155</context></context-group> | |
7977 | 7987 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">28</context></context-group> | |
7978 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">155</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 7988 | </trans-unit> |
7979 | <trans-unit id="1000468652492651683"> | 7989 | <trans-unit id="1000468652492651683"> |
7980 | <source>Report reason is required.</source> | 7990 | <source>Report reason is required.</source> |
7981 | <target>Требуется причина жалобы.</target> | 7991 | <target>Требуется причина жалобы.</target> |
@@ -8087,8 +8097,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8087 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">50</context></context-group> | 8097 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">50</context></context-group> |
8088 | </trans-unit> | 8098 | </trans-unit> |
8089 | <trans-unit id="8c9434491bf113074890c9c975d89d5f7727d2d9" datatype="html"> | 8099 | <trans-unit id="8c9434491bf113074890c9c975d89d5f7727d2d9" datatype="html"> |
8090 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. </source> | 8100 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. </source> |
8091 | <target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. | 8101 | <target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. |
8092 | </target> | 8102 | </target> |
8093 | <context-group purpose="location"> | 8103 | <context-group purpose="location"> |
8094 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-documentation-link.component.html</context> | 8104 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-documentation-link.component.html</context> |
@@ -9143,8 +9153,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9143 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">135</context></context-group> | 9153 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">135</context></context-group> |
9144 | </trans-unit> | 9154 | </trans-unit> |
9145 | <trans-unit id="8272123190776748811" datatype="html"> | 9155 | <trans-unit id="8272123190776748811" datatype="html"> |
9146 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> | 9156 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> |
9147 | <target state="translated"><a href="/login">Войдите</a> чтобы оценить это видео.</target> | 9157 | <target state="translated"><a href="/login">Войдите</a> чтобы оценить это видео.</target> |
9148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">220</context></context-group> | 9158 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">220</context></context-group> |
9149 | </trans-unit> | 9159 | </trans-unit> |
9150 | <trans-unit id="4503408361537553733" datatype="html"> | 9160 | <trans-unit id="4503408361537553733" datatype="html"> |
@@ -9278,23 +9288,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9278 | <trans-unit id="2439066254855913806"> | 9288 | <trans-unit id="2439066254855913806"> |
9279 | <source>Only I can see this video</source> | 9289 | <source>Only I can see this video</source> |
9280 | <target>Только я могу видеть это видео</target> | 9290 | <target>Только я могу видеть это видео</target> |
9281 | 9291 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">375</context></context-group> | |
9282 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">375</context></context-group></trans-unit> | 9292 | </trans-unit> |
9283 | <trans-unit id="6767380569816110388" datatype="html"> | 9293 | <trans-unit id="6767380569816110388" datatype="html"> |
9284 | <source>Only shareable via a private link</source> | 9294 | <source>Only shareable via a private link</source> |
9285 | <target state="translated">Можно поделиться только по частной ссылке</target> | 9295 | <target state="translated">Можно поделиться только по частной ссылке</target> |
9286 | 9296 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">379</context></context-group> | |
9287 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">379</context></context-group></trans-unit> | 9297 | </trans-unit> |
9288 | <trans-unit id="6828965264297239528"> | 9298 | <trans-unit id="6828965264297239528"> |
9289 | <source>Anyone can see this video</source> | 9299 | <source>Anyone can see this video</source> |
9290 | <target>Все могут видеть это видео</target> | 9300 | <target>Все могут видеть это видео</target> |
9291 | 9301 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">383</context></context-group> | |
9292 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> | 9302 | </trans-unit> |
9293 | <trans-unit id="1425933035739773115" datatype="html"> | 9303 | <trans-unit id="1425933035739773115" datatype="html"> |
9294 | <source>Only users of this instance can see this video</source> | 9304 | <source>Only users of this instance can see this video</source> |
9295 | <target state="translated">Это видео могут просматривать только пользователи этого экземпляра</target> | 9305 | <target state="translated">Это видео могут просматривать только пользователи этого экземпляра</target> |
9296 | 9306 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">387</context></context-group> | |
9297 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">387</context></context-group></trans-unit> | 9307 | </trans-unit> |
9298 | <trans-unit id="8312101634344200207" datatype="html"> | 9308 | <trans-unit id="8312101634344200207" datatype="html"> |
9299 | <source><x id="PH" equiv-text="this.views"/> viewers</source> | 9309 | <source><x id="PH" equiv-text="this.views"/> viewers</source> |
9300 | <target state="translated"><x id="PH" equiv-text="this.views"/> зрителей</target> | 9310 | <target state="translated"><x id="PH" equiv-text="this.views"/> зрителей</target> |
@@ -9483,9 +9493,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9483 | <trans-unit id="5210096066382592800"> | 9493 | <trans-unit id="5210096066382592800"> |
9484 | <source>Video to import updated.</source> | 9494 | <source>Video to import updated.</source> |
9485 | <target>Видео для импорта обновлено.</target> | 9495 | <target>Видео для импорта обновлено.</target> |
9486 | 9496 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts</context><context context-type="linenumber">130</context></context-group> | |
9487 | 9497 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts</context><context context-type="linenumber">140</context></context-group> | |
9488 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts</context><context context-type="linenumber">130</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts</context><context context-type="linenumber">140</context></context-group></trans-unit> | 9498 | </trans-unit> |
9489 | <trans-unit id="3284171506518522275"> | 9499 | <trans-unit id="3284171506518522275"> |
9490 | <source>Your video was uploaded to your account and is private.</source> | 9500 | <source>Your video was uploaded to your account and is private.</source> |
9491 | <target>Ваше видео было загружено на ваш аккаунт и является приватным.</target> | 9501 | <target>Ваше видео было загружено на ваш аккаунт и является приватным.</target> |
@@ -9522,14 +9532,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9522 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">267</context></context-group> | 9532 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">267</context></context-group> |
9523 | </trans-unit> | 9533 | </trans-unit> |
9524 | <trans-unit id="5297709903228580202" datatype="html"> | 9534 | <trans-unit id="5297709903228580202" datatype="html"> |
9525 | <source>Your video quota is exceeded with this video ( | 9535 | <source>Your video quota is exceeded with this video ( video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</source> |
9526 | video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</source> | ||
9527 | <target state="translated">Ваша квота на видео для этого видео превышена ( размер видео: <x id="PH"/>, использовано: <x id="PH_1"/>, квота: <x id="PH_2"/>)</target> | 9536 | <target state="translated">Ваша квота на видео для этого видео превышена ( размер видео: <x id="PH"/>, использовано: <x id="PH_1"/>, квота: <x id="PH_2"/>)</target> |
9528 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">289</context></context-group> | 9537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">289</context></context-group> |
9529 | </trans-unit> | 9538 | </trans-unit> |
9530 | <trans-unit id="1267976082314717617" datatype="html"> | 9539 | <trans-unit id="1267976082314717617" datatype="html"> |
9531 | <source>Your daily video quota is exceeded with this video ( | 9540 | <source>Your daily video quota is exceeded with this video ( video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</source> |
9532 | video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</source> | ||
9533 | <target state="translated">Ваша дневная квота для этого видео превышена( размер видео: <x id="PH"/>, использовано: <x id="PH_1"/>, квота: <x id="PH_2"/>)</target> | 9541 | <target state="translated">Ваша дневная квота для этого видео превышена( размер видео: <x id="PH"/>, использовано: <x id="PH_1"/>, квота: <x id="PH_2"/>)</target> |
9534 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">309</context></context-group> | 9542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">309</context></context-group> |
9535 | </trans-unit> | 9543 | </trans-unit> |
@@ -9569,8 +9577,8 @@ video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-t | |||
9569 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">210</context></context-group> | 9577 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">210</context></context-group> |
9570 | </trans-unit> | 9578 | </trans-unit> |
9571 | <trans-unit id="961774488937452220" datatype="html"> | 9579 | <trans-unit id="961774488937452220" datatype="html"> |
9572 | <source>This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</source> | 9580 | <source>This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</source> |
9573 | <target state="translated">Это видео недоступно в этом экземпляре. Вы хотите, чтобы вас перенаправили на исходный экземпляр: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</target> | 9581 | <target state="translated">Это видео недоступно в этом экземпляре. Вы хотите, чтобы вас перенаправили на исходный экземпляр: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</target> |
9574 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">415</context></context-group> | 9582 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">415</context></context-group> |
9575 | </trans-unit> | 9583 | </trans-unit> |
9576 | <trans-unit id="5761611056224181752" datatype="html"> | 9584 | <trans-unit id="5761611056224181752" datatype="html"> |
diff --git a/client/src/locale/angular.tr-TR.xlf b/client/src/locale/angular.tr-TR.xlf index e989e6b42..f7e01ce9e 100644 --- a/client/src/locale/angular.tr-TR.xlf +++ b/client/src/locale/angular.tr-TR.xlf | |||
@@ -4,252 +4,256 @@ | |||
4 | <file source-language="en-US" datatype="plaintext" original="" target-language="tr-TR"> | 4 | <file source-language="en-US" datatype="plaintext" original="" target-language="tr-TR"> |
5 | <body> | 5 | <body> |
6 | <trans-unit id="219462505467671767" datatype="html"> | 6 | <trans-unit id="219462505467671767" datatype="html"> |
7 | <source>Close the left menu</source><target state="new">Close the left menu</target> | 7 | <source>Close the left menu</source> |
8 | <target state="translated">Sol menüyü kapat</target> | ||
8 | <context-group purpose="location"> | 9 | <context-group purpose="location"> |
9 | <context context-type="sourcefile">src/app/app.component.ts</context> | 10 | <context context-type="sourcefile">src/app/app.component.ts</context> |
10 | <context context-type="linenumber">109</context> | 11 | <context context-type="linenumber">109</context> |
11 | </context-group> | 12 | </context-group> |
12 | </trans-unit><trans-unit id="3455550526898419928" datatype="html"> | 13 | </trans-unit> |
13 | <source>Open the left menu</source><target state="new">Open the left menu</target> | 14 | <trans-unit id="3455550526898419928" datatype="html"> |
15 | <source>Open the left menu</source> | ||
16 | <target state="translated">Sol menüyü aç</target> | ||
14 | <context-group purpose="location"> | 17 | <context-group purpose="location"> |
15 | <context context-type="sourcefile">src/app/app.component.ts</context> | 18 | <context context-type="sourcefile">src/app/app.component.ts</context> |
16 | <context context-type="linenumber">111</context> | 19 | <context context-type="linenumber">111</context> |
17 | </context-group> | 20 | </context-group> |
18 | </trans-unit><trans-unit id="f50983ee112befc1afddea5c570283db67e20fed" datatype="html"> | 21 | </trans-unit> |
22 | <trans-unit id="f50983ee112befc1afddea5c570283db67e20fed" datatype="html"> | ||
19 | <source>Channel avatar</source> | 23 | <source>Channel avatar</source> |
20 | <target state="translated">Kanal simgesi</target> | 24 | <target state="translated">Kanal simgesi</target> |
21 | 25 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">4</context></context-group> | |
22 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 26 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">17</context></context-group> |
27 | </trans-unit> | ||
23 | <trans-unit id="879fef27271d8247d791381cf1f9bb0eb8974166" datatype="html"> | 28 | <trans-unit id="879fef27271d8247d791381cf1f9bb0eb8974166" datatype="html"> |
24 | <source>Account avatar</source> | 29 | <source>Account avatar</source> |
25 | <target state="translated">Hesap Resmi</target> | 30 | <target state="translated">Hesap Resmi</target> |
26 | 31 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">7</context></context-group> | |
27 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">7</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 32 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">13</context></context-group> |
33 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.html</context><context context-type="linenumber">23</context></context-group> | ||
34 | </trans-unit> | ||
28 | <trans-unit id="f3e63578c50546530daf6050d2ba6f8226040f2c"> | 35 | <trans-unit id="f3e63578c50546530daf6050d2ba6f8226040f2c"> |
29 | <source>You don't have notifications.</source> | 36 | <source>You don't have notifications.</source> |
30 | <target>Bildiriminiz yok.</target> | 37 | <target>Bildiriminiz yok.</target> |
31 | 38 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">1</context></context-group> | |
32 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 39 | </trans-unit> |
33 | <trans-unit id="1cff8e38c81055fa0ae7dbc80a7a0c5c39bbc263" datatype="html"> | 40 | <trans-unit id="1cff8e38c81055fa0ae7dbc80a7a0c5c39bbc263" datatype="html"> |
34 | <source><x id="INTERPOLATION"/> published a new video: <x id="START_LINK"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> | 41 | <source><x id="INTERPOLATION"/> published a new video: <x id="START_LINK"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> |
35 | <target state="translated"><x id="INTERPOLATION"/>yeni bir video yayınladı:<x id="START_LINK"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></target> | 42 | <target state="translated"><x id="INTERPOLATION"/> yeni bir video yayınladı: <x id="START_LINK"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></target> |
36 | 43 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">15</context></context-group> | |
37 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 44 | </trans-unit> |
38 | <trans-unit id="5f61f85f3c9e196f7044fec4dfe165b081e14a3f" datatype="html"> | 45 | <trans-unit id="5f61f85f3c9e196f7044fec4dfe165b081e14a3f" datatype="html"> |
39 | <source>The notification concerns a video now unavailable</source> | 46 | <source>The notification concerns a video now unavailable</source> |
40 | <target state="translated">Bir videonun kullanılamaz olduğu bildiriliyor</target> | 47 | <target state="translated">Bir videonun kullanılamaz olduğu bildiriliyor</target> |
41 | 48 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">24</context></context-group> | |
42 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 49 | </trans-unit> |
43 | <trans-unit id="03ccba66e74e25303828fc37062dda862ec272dc" datatype="html"> | 50 | <trans-unit id="03ccba66e74e25303828fc37062dda862ec272dc" datatype="html"> |
44 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been unblocked </source> | 51 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been unblocked </source> |
45 | <target state="translated"><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> izletinizin engeli kaldırıldı </target> | 52 | <target state="translated"><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> videonuzun engeli kaldırıldı . </target> |
46 | 53 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">33</context></context-group> | |
47 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 54 | </trans-unit> |
48 | <trans-unit id="b1393385d75d42dfb7e893e3e99290bcc697e791" datatype="html"> | 55 | <trans-unit id="b1393385d75d42dfb7e893e3e99290bcc697e791" datatype="html"> |
49 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been blocked </source> | 56 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been blocked </source> |
50 | <target state="translated"><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> izletiniz engellendi </target> | 57 | <target state="translated"><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> videonuz engellendi. </target> |
51 | 58 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">41</context></context-group> | |
52 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 59 | </trans-unit> |
53 | <trans-unit id="552e90b955a7121d58f6e5a38b68c7e90f5ed90c" datatype="html"> | 60 | <trans-unit id="552e90b955a7121d58f6e5a38b68c7e90f5ed90c" datatype="html"> |
54 | <source><x id="START_LINK"/>A new video abuse<x id="CLOSE_LINK"/> has been created on video <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> | 61 | <source><x id="START_LINK"/>A new video abuse<x id="CLOSE_LINK"/> has been created on video <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> |
55 | <target state="new"> | 62 | <target state="new"> |
56 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new video abuse | 63 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new video abuse |
57 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created on video | 64 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created on video |
58 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> | 65 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> |
59 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.video.name }}"/> | 66 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.video.name }}"/> |
60 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 67 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
61 | </target> | 68 | </target> |
62 | 69 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">49</context></context-group> | |
63 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 70 | </trans-unit> |
64 | <trans-unit id="c039b9ff89810152d8c0006979d3542a122cd286" datatype="html"> | 71 | <trans-unit id="c039b9ff89810152d8c0006979d3542a122cd286" datatype="html"> |
65 | <source><x id="START_LINK"/>A new comment abuse<x id="CLOSE_LINK"/> has been created on video <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> | 72 | <source><x id="START_LINK"/>A new comment abuse<x id="CLOSE_LINK"/> has been created on video <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> |
66 | <target state="new"> | 73 | <target state="new"> |
67 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new comment abuse | 74 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new comment abuse |
68 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created on video | 75 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created on video |
69 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> | 76 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> |
70 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.comment.video.name }}"/> | 77 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.comment.video.name }}"/> |
71 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 78 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
72 | </target> | 79 | </target> |
73 | 80 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">53</context></context-group> | |
74 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> | 81 | </trans-unit> |
75 | <trans-unit id="bfe60e77cfae17a8719a5fb422fb7e4b2bcc83c2" datatype="html"> | 82 | <trans-unit id="bfe60e77cfae17a8719a5fb422fb7e4b2bcc83c2" datatype="html"> |
76 | <source><x id="START_LINK"/>A new account abuse<x id="CLOSE_LINK"/> has been created on account <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> | 83 | <source><x id="START_LINK"/>A new account abuse<x id="CLOSE_LINK"/> has been created on account <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> |
77 | <target state="new"> | 84 | <target state="new"> |
78 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new account abuse | 85 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new account abuse |
79 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created on account | 86 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created on account |
80 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> | 87 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> |
81 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.account.displayName }}"/> | 88 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.account.displayName }}"/> |
82 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 89 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
83 | </target> | 90 | </target> |
84 | 91 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">57</context></context-group> | |
85 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | 92 | </trans-unit> |
86 | <trans-unit id="285ef550cb17086e949266777312a1884bd7d739" datatype="html"> | 93 | <trans-unit id="285ef550cb17086e949266777312a1884bd7d739" datatype="html"> |
87 | <source><x id="START_LINK"/>A new abuse<x id="CLOSE_LINK"/> has been created </source> | 94 | <source><x id="START_LINK"/>A new abuse<x id="CLOSE_LINK"/> has been created </source> |
88 | <target state="new"> | 95 | <target state="new"> |
89 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new abuse | 96 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>A new abuse |
90 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created | 97 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been created |
91 | 98 | ||
92 | </target> | 99 | </target> |
93 | 100 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">62</context></context-group> | |
94 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 101 | </trans-unit> |
95 | <trans-unit id="680ba11d9548df295024d7f8ab7b816580725d5d" datatype="html"> | 102 | <trans-unit id="680ba11d9548df295024d7f8ab7b816580725d5d" datatype="html"> |
96 | <source><x id="START_LINK"/>Your abuse <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been <x id="START_TAG_NG_CONTAINER"/>accepted<x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>rejected<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 103 | <source><x id="START_LINK"/>Your abuse <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been <x id="START_TAG_NG_CONTAINER"/>accepted<x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>rejected<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
97 | <target state="new"> | 104 | <target state="new"> |
98 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Your abuse | 105 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Your abuse |
99 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.id }}"/> | 106 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.id }}"/> |
100 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been | 107 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been |
101 | 108 | ||
102 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>accepted | 109 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>accepted |
103 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | 110 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> |
104 | <x id="START_TAG_NG-CONTAINER_1" ctype="x-ng-container" equiv-text="<ng-container>"/>rejected | 111 | <x id="START_TAG_NG-CONTAINER_1" ctype="x-ng-container" equiv-text="<ng-container>"/>rejected |
105 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | 112 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> |
106 | </target> | 113 | </target> |
107 | 114 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">70</context></context-group> | |
108 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 115 | </trans-unit> |
109 | <trans-unit id="3f8e1a007a869471c5ab6e9b6149165ecc26e4ad" datatype="html"> | 116 | <trans-unit id="3f8e1a007a869471c5ab6e9b6149165ecc26e4ad" datatype="html"> |
110 | <source><x id="START_LINK"/>Abuse <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has a new message </source> | 117 | <source><x id="START_LINK"/>Abuse <x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has a new message </source> |
111 | <target state="new"> | 118 | <target state="new"> |
112 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Abuse | 119 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Abuse |
113 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.id }}"/> | 120 | <x id="INTERPOLATION" equiv-text="{{ notification.abuse.id }}"/> |
114 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has a new message | 121 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has a new message |
115 | 122 | ||
116 | </target> | 123 | </target> |
117 | 124 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">80</context></context-group> | |
118 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">80</context></context-group></trans-unit> | 125 | </trans-unit> |
119 | <trans-unit id="9daaf09c3048f62f102989d1c6f3fe2f3770062f" datatype="html"> | 126 | <trans-unit id="9daaf09c3048f62f102989d1c6f3fe2f3770062f" datatype="html"> |
120 | <source>The recently added video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been <x id="START_LINK_1"/>automatically blocked<x id="CLOSE_LINK"/></source> | 127 | <source>The recently added video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been <x id="START_LINK_1"/>automatically blocked<x id="CLOSE_LINK"/></source> |
121 | <target state="new"> | 128 | <target state="new"> |
122 | The recently added video | 129 | The recently added video |
123 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 130 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> |
124 | <x id="INTERPOLATION" equiv-text="{{ notification.videoBlacklist.video.name }}"/> | 131 | <x id="INTERPOLATION" equiv-text="{{ notification.videoBlacklist.video.name }}"/> |
125 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been | 132 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been |
126 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/>automatically blocked | 133 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/>automatically blocked |
127 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 134 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
128 | </target> | 135 | </target> |
129 | 136 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">88</context></context-group> | |
130 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> | 137 | </trans-unit> |
131 | <trans-unit id="bb62d9c0e9059be1f08d6a03a946bdae8623e04a" datatype="html"> | 138 | <trans-unit id="bb62d9c0e9059be1f08d6a03a946bdae8623e04a" datatype="html"> |
132 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> commented your video <x id="START_LINK_1"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> | 139 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> commented your video <x id="START_LINK_1"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> |
133 | <target state="new"> | 140 | <target state="new"> |
134 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 141 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> |
135 | <x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/> | 142 | <x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/> |
136 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> commented your video | 143 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> commented your video |
137 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> | 144 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> |
138 | <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/> | 145 | <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/> |
139 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 146 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
140 | </target> | 147 | </target> |
141 | 148 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">101</context></context-group> | |
142 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 149 | </trans-unit> |
143 | <trans-unit id="4d2311a5156bd322cc7e2ebafcf6063ba8232e63" datatype="html"> | 150 | <trans-unit id="4d2311a5156bd322cc7e2ebafcf6063ba8232e63" datatype="html"> |
144 | <source>The notification concerns a comment now unavailable</source> | 151 | <source>The notification concerns a comment now unavailable</source> |
145 | <target state="new"> | 152 | <target state="new"> |
146 | The notification concerns a comment now unavailable | 153 | The notification concerns a comment now unavailable |
147 | </target> | 154 | </target> |
148 | 155 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">109</context></context-group> | |
149 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">109</context></context-group></trans-unit> | 156 | </trans-unit> |
150 | <trans-unit id="b187dd5f406f4195b326ab01fa81f823025821b9" datatype="html"> | 157 | <trans-unit id="b187dd5f406f4195b326ab01fa81f823025821b9" datatype="html"> |
151 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been published </source> | 158 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been published </source> |
152 | <target state="new"> | 159 | <target state="translated"><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> videonuz yayınlandı </target> |
153 | Your video | 160 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">118</context></context-group> |
154 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 161 | </trans-unit> |
155 | <x id="INTERPOLATION" equiv-text="{{ notification.video.name }}"/> | ||
156 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been published | ||
157 | |||
158 | </target> | ||
159 | |||
160 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">118</context></context-group></trans-unit> | ||
161 | <trans-unit id="78dea99c581be394bf509426e114c9cda9f5825d" datatype="html"> | 162 | <trans-unit id="78dea99c581be394bf509426e114c9cda9f5825d" datatype="html"> |
162 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> succeeded </source> | 163 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> succeeded </source> |
163 | <target state="new"> | 164 | <target state="new"> |
164 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Your video import | 165 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Your video import |
165 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 166 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
166 | <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> succeeded | 167 | <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> succeeded |
167 | 168 | ||
168 | </target> | 169 | </target> |
169 | 170 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">126</context></context-group> | |
170 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 171 | </trans-unit> |
171 | <trans-unit id="dc586a7c70baa9217d98f58f4701fc3a29cd9d4d" datatype="html"> | 172 | <trans-unit id="dc586a7c70baa9217d98f58f4701fc3a29cd9d4d" datatype="html"> |
172 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> failed </source> | 173 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> failed </source> |
173 | <target state="new"> | 174 | <target state="new"> |
174 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Your video import | 175 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Your video import |
175 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 176 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
176 | <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> failed | 177 | <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> failed |
177 | 178 | ||
178 | </target> | 179 | </target> |
179 | 180 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">134</context></context-group> | |
180 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">134</context></context-group></trans-unit> | 181 | </trans-unit> |
181 | <trans-unit id="55c81d14a4e11004f0bcda5a47575f316e85e43e" datatype="html"> | 182 | <trans-unit id="55c81d14a4e11004f0bcda5a47575f316e85e43e" datatype="html"> |
182 | <source>User <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> registered on your instance </source> | 183 | <source>User <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> registered on your instance </source> |
183 | <target state="new"> | 184 | <target state="new"> |
184 | User | 185 | User |
185 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 186 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> |
186 | <x id="INTERPOLATION" equiv-text="{{ notification.account.name }}"/> | 187 | <x id="INTERPOLATION" equiv-text="{{ notification.account.name }}"/> |
187 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> registered on your instance | 188 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> registered on your instance |
188 | 189 | ||
189 | </target> | 190 | </target> |
190 | 191 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">142</context></context-group> | |
191 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">142</context></context-group></trans-unit> | 192 | </trans-unit> |
192 | <trans-unit id="0f146c0a4152eb93ec2ad119e1dec613864d64c6" datatype="html"> | 193 | <trans-unit id="0f146c0a4152eb93ec2ad119e1dec613864d64c6" datatype="html"> |
193 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> is following <x id="START_TAG_NG_CONTAINER"/>your channel <x id="INTERPOLATION_1"/><x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>your account<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 194 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> is following <x id="START_TAG_NG_CONTAINER"/>your channel <x id="INTERPOLATION_1"/><x id="CLOSE_TAG_NG_CONTAINER"/><x id="START_TAG_NG_CONTAINER_1"/>your account<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
194 | <target state="new"> | 195 | <target state="new"> |
195 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 196 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> |
196 | <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow.follower.displayName }}"/> | 197 | <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow.follower.displayName }}"/> |
197 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is following | 198 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is following |
198 | 199 | ||
199 | 200 | ||
200 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>your channel | 201 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>your channel |
201 | <x id="INTERPOLATION_1" equiv-text="{{ notification.actorFollow.following.displayName }}"/> | 202 | <x id="INTERPOLATION_1" equiv-text="{{ notification.actorFollow.following.displayName }}"/> |
202 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | 203 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> |
203 | <x id="START_TAG_NG-CONTAINER_1" ctype="x-ng-container" equiv-text="<ng-container>"/>your account | 204 | <x id="START_TAG_NG-CONTAINER_1" ctype="x-ng-container" equiv-text="<ng-container>"/>your account |
204 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | 205 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> |
205 | </target> | 206 | </target> |
206 | 207 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">152</context></context-group> | |
207 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">152</context></context-group></trans-unit> | 208 | </trans-unit> |
208 | <trans-unit id="dde6b6ff4de622914ba78a2b584d070852eb710d" datatype="html"> | 209 | <trans-unit id="dde6b6ff4de622914ba78a2b584d070852eb710d" datatype="html"> |
209 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> mentioned you on <x id="START_LINK_1"/>video <x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> | 210 | <source><x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> mentioned you on <x id="START_LINK_1"/>video <x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> |
210 | <target state="new"> | 211 | <target state="new"> |
211 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 212 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> |
212 | <x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/> | 213 | <x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/> |
213 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> mentioned you on | 214 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> mentioned you on |
214 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/>video | 215 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/>video |
215 | <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/> | 216 | <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/> |
216 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 217 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
217 | </target> | 218 | </target> |
218 | 219 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">165</context></context-group> | |
219 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 220 | </trans-unit> |
220 | <trans-unit id="790986a06ed0bbab17b7e91c166ea4dfd96e7d3d" datatype="html"> | 221 | <trans-unit id="790986a06ed0bbab17b7e91c166ea4dfd96e7d3d" datatype="html"> |
221 | <source>Your instance has <x id="START_LINK"/>a new follower<x id="CLOSE_LINK"/> (<x id="INTERPOLATION"/>) <x id="START_TAG_NG_CONTAINER"/> awaiting your approval<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 222 | <source>Your instance has <x id="START_LINK"/>a new follower<x id="CLOSE_LINK"/> (<x id="INTERPOLATION"/>) <x id="START_TAG_NG_CONTAINER"/> awaiting your approval<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
222 | <target state="new"> | 223 | <target state="new"> |
223 | Your instance has | 224 | Your instance has |
224 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>a new follower | 225 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>a new follower |
225 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> ( | 226 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> ( |
226 | <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow?.follower.host }}"/>) | 227 | <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow?.follower.host }}"/>) |
227 | 228 | ||
228 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> awaiting your approval | 229 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> awaiting your approval |
229 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | 230 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> |
230 | </target> | 231 | </target> |
231 | 232 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">173</context></context-group> | |
232 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">173</context></context-group></trans-unit> | 233 | </trans-unit> |
233 | <trans-unit id="b5a16cb819b18286a1a85e2a311045b920bfd559" datatype="html"> | 234 | <trans-unit id="b5a16cb819b18286a1a85e2a311045b920bfd559" datatype="html"> |
234 | <source>Your instance automatically followed <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> | 235 | <source>Your instance automatically followed <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> |
235 | <target state="new"> | 236 | <target state="new"> |
236 | Your instance automatically followed | 237 | Your instance automatically followed |
237 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | 238 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> |
238 | <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow.following.host }}"/> | 239 | <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow.following.host }}"/> |
239 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 240 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
240 | </target> | 241 | </target> |
241 | 242 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">182</context></context-group> | |
242 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">182</context></context-group></trans-unit><trans-unit id="d60604b8e42b3e6f9612ae780b2547b537250849" datatype="html"> | 243 | </trans-unit> |
243 | <source> The notification points to content now unavailable </source><target state="new"> The notification points to content now unavailable </target> | 244 | <trans-unit id="d60604b8e42b3e6f9612ae780b2547b537250849" datatype="html"> |
244 | 245 | <source>The notification points to content now unavailable</source> | |
245 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">190</context></context-group></trans-unit> | 246 | <target state="new"> The notification points to content now unavailable </target> |
246 | 247 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">190</context></context-group> | |
248 | </trans-unit> | ||
247 | <trans-unit id="3fb9a5f7268114445d8c109a8f48102e93471f5a" datatype="html"> | 249 | <trans-unit id="3fb9a5f7268114445d8c109a8f48102e93471f5a" datatype="html"> |
248 | <source>Change your avatar</source> | 250 | <source>Change your avatar</source> |
249 | <target state="new">Change your avatar</target> | 251 | <target state="new">Change your avatar</target> |
250 | 252 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.html</context><context context-type="linenumber">16</context></context-group> | |
251 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="5779f601099ecd7ae8626722ef1d86f5c1a783dc" datatype="html"> | 253 | </trans-unit> |
252 | <source>Remove avatar</source><target state="new">Remove avatar</target> | 254 | <trans-unit id="5779f601099ecd7ae8626722ef1d86f5c1a783dc" datatype="html"> |
255 | <source>Remove avatar</source> | ||
256 | <target state="new">Remove avatar</target> | ||
253 | <context-group purpose="location"> | 257 | <context-group purpose="location"> |
254 | <context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.html</context> | 258 | <context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.html</context> |
255 | <context context-type="linenumber">41</context> | 259 | <context context-type="linenumber">41</context> |
@@ -260,9 +264,11 @@ | |||
260 | <target state="new"> | 264 | <target state="new"> |
261 | <x id="INTERPOLATION" equiv-text="{{ action.label }}"/> | 265 | <x id="INTERPOLATION" equiv-text="{{ action.label }}"/> |
262 | </target> | 266 | </target> |
263 | 267 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context><context context-type="linenumber">22</context></context-group> | |
264 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit><trans-unit id="1486537403020619891" datatype="html"> | 268 | </trans-unit> |
265 | <source>My watch history</source><target state="new">My watch history</target> | 269 | <trans-unit id="1486537403020619891" datatype="html"> |
270 | <source>My watch history</source> | ||
271 | <target state="translated">İzleme geçmişim</target> | ||
266 | <context-group purpose="location"> | 272 | <context-group purpose="location"> |
267 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context> | 273 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context> |
268 | <context context-type="linenumber">49</context> | 274 | <context context-type="linenumber">49</context> |
@@ -271,202 +277,240 @@ | |||
271 | <trans-unit id="b2b638f4333842009c258a23e59dbe4160d1e566"> | 277 | <trans-unit id="b2b638f4333842009c258a23e59dbe4160d1e566"> |
272 | <source>Save to</source> | 278 | <source>Save to</source> |
273 | <target>Şuraya kaydet</target> | 279 | <target>Şuraya kaydet</target> |
274 | 280 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">4</context></context-group> | |
275 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 281 | </trans-unit> |
276 | <trans-unit id="24813b8a3e45f0b57136c18d003027262cfe2d1f"> | 282 | <trans-unit id="24813b8a3e45f0b57136c18d003027262cfe2d1f"> |
277 | <source>Options</source> | 283 | <source>Options</source> |
278 | <target>Seçenekler</target> | 284 | <target>Seçenekler</target> |
279 | 285 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">50</context></context-group> | |
280 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 286 | </trans-unit> |
281 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 287 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
282 | <source>Start at</source> | 288 | <source>Start at</source> |
283 | <target>Başlangıç konumu</target> | 289 | <target>Başlangıç konumu</target> |
284 | 290 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">57</context></context-group> | |
285 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">57</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">113</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | 291 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">113</context></context-group> |
292 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">34</context></context-group> | ||
293 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">47</context></context-group> | ||
294 | </trans-unit> | ||
286 | <trans-unit id="4d20563f7e338a1d09eb756054564ccf7c6a30ef"> | 295 | <trans-unit id="4d20563f7e338a1d09eb756054564ccf7c6a30ef"> |
287 | <source>Stop at</source> | 296 | <source>Stop at</source> |
288 | <target>Bitiş konumu</target> | 297 | <target>Bitiş konumu</target> |
289 | 298 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">71</context></context-group> | |
290 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">71</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">144</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 299 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">144</context></context-group> |
300 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">35</context></context-group> | ||
301 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">62</context></context-group> | ||
302 | </trans-unit> | ||
291 | <trans-unit id="020d5da7c3f4726e3623587a05a11f00e1d40409" datatype="html"> | 303 | <trans-unit id="020d5da7c3f4726e3623587a05a11f00e1d40409" datatype="html"> |
292 | <source>Your report will be sent to moderators of <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> and will be forwarded to the video origin (<x id="INTERPOLATION_1"/>) too<x id="CLOSE_TAG_NG_CONTAINER"/>. </source> | 304 | <source>Your report will be sent to moderators of <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> and will be forwarded to the video origin (<x id="INTERPOLATION_1"/>) too<x id="CLOSE_TAG_NG_CONTAINER"/>. </source> |
293 | <target state="new"> | 305 | <target state="new"> |
294 | Your report will be sent to moderators of | 306 | Your report will be sent to moderators of |
295 | <x id="INTERPOLATION" equiv-text="{{ currentHost }}"/> | 307 | <x id="INTERPOLATION" equiv-text="{{ currentHost }}"/> |
296 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> and will be forwarded to the video origin ( | 308 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> and will be forwarded to the video origin ( |
297 | <x id="INTERPOLATION_1" equiv-text="{{ originHost }}"/>) too | 309 | <x id="INTERPOLATION_1" equiv-text="{{ originHost }}"/>) too |
298 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/>. | 310 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/>. |
299 | 311 | ||
300 | </target> | 312 | </target> |
301 | 313 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">74</context></context-group> | |
302 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit> | 314 | </trans-unit> |
303 | <trans-unit id="04f47b9519b96ac834a111c0e113d18c77d177de" datatype="html"> | 315 | <trans-unit id="04f47b9519b96ac834a111c0e113d18c77d177de" datatype="html"> |
304 | <source>Please describe the issue...</source> | 316 | <source>Please describe the issue...</source> |
305 | <target state="new">Please describe the issue...</target> | 317 | <target state="new">Please describe the issue...</target> |
306 | 318 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">42</context></context-group> | |
307 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">80</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 319 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">80</context></context-group> |
320 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">42</context></context-group> | ||
321 | </trans-unit> | ||
308 | <trans-unit id="8efba03f22550a671ee2c2c6dfd1ff03ea047700" datatype="html"> | 322 | <trans-unit id="8efba03f22550a671ee2c2c6dfd1ff03ea047700" datatype="html"> |
309 | <source>Search playlists</source> | 323 | <source>Search playlists</source> |
310 | <target state="new">Search playlists</target> | 324 | <target state="translated">Oynatma listelerinde ara</target> |
311 | 325 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">9</context></context-group> | |
312 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 326 | </trans-unit> |
313 | <trans-unit id="19fc45e7e0cab63a8c4422ea7158bf5c6228cee4" datatype="html"> | 327 | <trans-unit id="19fc45e7e0cab63a8c4422ea7158bf5c6228cee4" datatype="html"> |
314 | <source>Create a private playlist</source> | 328 | <source>Create a private playlist</source> |
315 | <target state="new">Create a private playlist</target> | 329 | <target state="translated">Özel oynatma listesi oluştur</target> |
316 | 330 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">66</context></context-group> | |
317 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 331 | </trans-unit> |
318 | <trans-unit id="bc155f9fc3be3f32083f19b2c77d4ad3b696d9b9"> | 332 | <trans-unit id="bc155f9fc3be3f32083f19b2c77d4ad3b696d9b9"> |
319 | <source>Display name</source> | 333 | <source>Display name</source> |
320 | <target>Görünen ad</target> | 334 | <target>Görünen ad</target> |
321 | 335 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">8</context></context-group> | |
322 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">71</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">53</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> | 336 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group> |
337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group> | ||
338 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">17</context></context-group> | ||
339 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">71</context></context-group> | ||
340 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">53</context></context-group> | ||
341 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">53</context></context-group> | ||
342 | </trans-unit> | ||
323 | <trans-unit id="70a67e04629f6d412db0a12d51820b480788d795"> | 343 | <trans-unit id="70a67e04629f6d412db0a12d51820b480788d795"> |
324 | <source>Create</source> | 344 | <source>Create</source> |
325 | <target>Oluştur</target> | 345 | <target>Oluştur</target> |
326 | 346 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">81</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">8</context></context-group> |
348 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">81</context></context-group> | ||
349 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group> | ||
350 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group> | ||
351 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group> | ||
352 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group> | ||
353 | </trans-unit> | ||
328 | <trans-unit id="e53246788ffa2660a170aa859691a55576df2e6c" datatype="html"> | 354 | <trans-unit id="e53246788ffa2660a170aa859691a55576df2e6c" datatype="html"> |
329 | <source>video</source> | 355 | <source>video</source> |
330 | <target state="new">video</target> | 356 | <target state="new">video</target> |
331 | 357 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">12</context></context-group> | |
332 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> | 358 | </trans-unit> |
333 | <trans-unit id="7cdda05962b3123483985a6fe7da45a7a564ecf9" datatype="html"> | 359 | <trans-unit id="7cdda05962b3123483985a6fe7da45a7a564ecf9" datatype="html"> |
334 | <source>subtitles</source> | 360 | <source>subtitles</source> |
335 | <target state="new">subtitles</target> | 361 | <target state="translated">altyazılar</target> |
336 | 362 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">11</context></context-group> | |
337 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 363 | </trans-unit> |
338 | <trans-unit id="7722a92a1fc887570b4f4d8a7bb916f067f32028" datatype="html"> | 364 | <trans-unit id="7722a92a1fc887570b4f4d8a7bb916f067f32028" datatype="html"> |
339 | <source>Format</source> | 365 | <source>Format</source> |
340 | <target state="new">Format</target> | 366 | <target state="translated">Biçim</target> |
341 | 367 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">45</context></context-group> | |
342 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 368 | </trans-unit> |
343 | <trans-unit id="be745b3dc0df310871766eb6c8f78c3ce652a2b4" datatype="html"> | 369 | <trans-unit id="be745b3dc0df310871766eb6c8f78c3ce652a2b4" datatype="html"> |
344 | <source><x id="INTERPOLATION" equiv-text="{{ item.value.label }}"/> </source> | 370 | <source><x id="INTERPOLATION" equiv-text="{{ item.value.label }}"/> </source> |
345 | <target state="new"> | 371 | <target state="new"> |
346 | <x id="INTERPOLATION" equiv-text="{{ item.value.label }}"/> | 372 | <x id="INTERPOLATION" equiv-text="{{ item.value.label }}"/> |
347 | </target> | 373 | </target> |
348 | 374 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">49</context></context-group> | |
349 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">49</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">61</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">73</context></context-group></trans-unit> | 375 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">61</context></context-group> |
376 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">73</context></context-group> | ||
377 | </trans-unit> | ||
350 | <trans-unit id="01504bc3847894e0816ec486648854d3835f91b0" datatype="html"> | 378 | <trans-unit id="01504bc3847894e0816ec486648854d3835f91b0" datatype="html"> |
351 | <source>Video stream</source> | 379 | <source>Video stream</source> |
352 | <target state="new">Video stream</target> | 380 | <target state="new">Video stream</target> |
353 | 381 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">57</context></context-group> | |
354 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | 382 | </trans-unit> |
355 | <trans-unit id="697b93fd14fd3c85be79056c6d7f459da204eff1" datatype="html"> | 383 | <trans-unit id="697b93fd14fd3c85be79056c6d7f459da204eff1" datatype="html"> |
356 | <source>Audio stream</source> | 384 | <source>Audio stream</source> |
357 | <target state="new">Audio stream</target> | 385 | <target state="new">Audio stream</target> |
358 | 386 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">69</context></context-group> | |
359 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 387 | </trans-unit> |
360 | <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c"> | 388 | <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c"> |
361 | <source>Direct download</source> | 389 | <source>Direct download</source> |
362 | <target>Doğrudan indir</target> | 390 | <target>Doğrudan indir</target> |
363 | 391 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">87</context></context-group> | |
364 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> | 392 | </trans-unit> |
365 | <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d" datatype="html"> | 393 | <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d" datatype="html"> |
366 | <source>Torrent (.torrent file)</source> | 394 | <source>Torrent (.torrent file)</source> |
367 | <target state="new">Torrent (.torrent file)</target> | 395 | <target state="translated">Torrent (.torrent dosyası)</target> |
368 | 396 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">92</context></context-group> | |
369 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> | 397 | </trans-unit> |
370 | <trans-unit id="1006562256968398209" datatype="html"> | 398 | <trans-unit id="1006562256968398209" datatype="html"> |
371 | <source>video</source> | 399 | <source>video</source> |
372 | <target state="new">video</target> | 400 | <target state="new">video</target> |
373 | 401 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">48</context></context-group> | |
374 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">48</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> | 402 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">229</context></context-group> |
403 | </trans-unit> | ||
375 | <trans-unit id="5235042777215655908" datatype="html"> | 404 | <trans-unit id="5235042777215655908" datatype="html"> |
376 | <source>subtitles</source> | 405 | <source>subtitles</source> |
377 | <target state="new">subtitles</target> | 406 | <target state="translated">altyazılar</target> |
378 | 407 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">49</context></context-group> | |
379 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 408 | </trans-unit> |
380 | <trans-unit id="da44efc7b658c318651866454d258bbbe57ff21c" datatype="html"> | 409 | <trans-unit id="da44efc7b658c318651866454d258bbbe57ff21c" datatype="html"> |
381 | <source>Cancel</source> | 410 | <source>Cancel</source> |
382 | <target state="new">Cancel</target> | 411 | <target state="translated">Kapat</target> |
383 | 412 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">45</context></context-group> | |
384 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 413 | </trans-unit> |
385 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 414 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
386 | <source>Download</source> | 415 | <source>Download</source> |
387 | <target>İndir</target> | 416 | <target>İndir</target> |
388 | 417 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">4</context></context-group> | |
389 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 418 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">104</context></context-group> |
419 | </trans-unit> | ||
390 | <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125" datatype="html"> | 420 | <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125" datatype="html"> |
391 | <source>Reason...</source> | 421 | <source>Reason...</source> |
392 | <target state="new">Reason...</target> | 422 | <target state="translated">Sebep...</target> |
393 | 423 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">12</context></context-group> | |
394 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> | 424 | </trans-unit> |
395 | <trans-unit id="fb8aad312b72bbb7e5a1e2cc0b55fae8962bf0fb" datatype="html"> | 425 | <trans-unit id="fb8aad312b72bbb7e5a1e2cc0b55fae8962bf0fb" datatype="html"> |
396 | <source>Cancel</source> | 426 | <source>Cancel</source> |
397 | <target state="new">Cancel</target> | 427 | <target state="translated">Kapat</target> |
398 | 428 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">19</context></context-group> | |
399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 429 | </trans-unit> |
400 | <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd" datatype="html"> | 430 | <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd" datatype="html"> |
401 | <source>Submit</source> | 431 | <source>Submit</source> |
402 | <target state="new">Submit</target> | 432 | <target state="translated">Gönder</target> |
403 | 433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">27</context></context-group> | |
404 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">57</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">53</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | 434 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">57</context></context-group> |
435 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">43</context></context-group> | ||
436 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">95</context></context-group> | ||
437 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">53</context></context-group> | ||
438 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">57</context></context-group> | ||
439 | </trans-unit> | ||
405 | <trans-unit id="448d436df053141260523149173073ccbb0259f9" datatype="html"> | 440 | <trans-unit id="448d436df053141260523149173073ccbb0259f9" datatype="html"> |
406 | <source>Report video "<x id="INTERPOLATION"/>"</source> | 441 | <source>Report video "<x id="INTERPOLATION"/>"</source> |
407 | <target state="new">Report video " | 442 | <target state="translated">"<x id="INTERPOLATION"/>" videosunu şikayet et</target> |
408 | <x id="INTERPOLATION" equiv-text="{{ video.name }}"/>" | 443 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">3</context></context-group> |
409 | </target> | 444 | </trans-unit> |
410 | |||
411 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | ||
412 | <trans-unit id="97916f2928694b8d574b6f052b93e54565ed9823" datatype="html"> | 445 | <trans-unit id="97916f2928694b8d574b6f052b93e54565ed9823" datatype="html"> |
413 | <source>What is the issue?</source> | 446 | <source>What is the issue?</source> |
414 | <target state="new">What is the issue?</target> | 447 | <target state="new">What is the issue?</target> |
415 | 448 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">13</context></context-group> | |
416 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 449 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">13</context></context-group> |
450 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">13</context></context-group> | ||
451 | </trans-unit> | ||
417 | <trans-unit id="297603f796b0d287ac02b80d5aca6156c91a8fea" datatype="html"> | 452 | <trans-unit id="297603f796b0d287ac02b80d5aca6156c91a8fea" datatype="html"> |
418 | <source>This will ask remote instances to delete it</source> | 453 | <source>This will ask remote instances to delete it</source> |
419 | <target state="new">This will ask remote instances to delete it</target> | 454 | <target state="new">This will ask remote instances to delete it</target> |
420 | 455 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">27</context></context-group> | |
421 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit><trans-unit id="a5065c0f26fbd00b6f6ac0cf948535a44fffbd45" datatype="html"> | 456 | </trans-unit> |
422 | <source> Blocking this live will automatically terminate the live stream. </source><target state="new"> Blocking this live will automatically terminate the live stream. </target> | 457 | <trans-unit id="a5065c0f26fbd00b6f6ac0cf948535a44fffbd45" datatype="html"> |
423 | 458 | <source>Blocking this live will automatically terminate the live stream.</source> | |
424 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 459 | <target state="new"> Blocking this live will automatically terminate the live stream. </target> |
460 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">33</context></context-group> | ||
461 | </trans-unit> | ||
425 | <trans-unit id="0cd0f27936731dabfd8d89277b781d5dd664bc89" datatype="html"> | 462 | <trans-unit id="0cd0f27936731dabfd8d89277b781d5dd664bc89" datatype="html"> |
426 | <source>Unfederate the video</source> | 463 | <source>Unfederate the video</source> |
427 | <target state="new">Unfederate the video</target> | 464 | <target state="new">Unfederate the video</target> |
428 | 465 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">24</context></context-group> | |
429 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 466 | </trans-unit> |
430 | <trans-unit id="4b3963c6d0863118fe9e9e33447d12be3c2db081"> | 467 | <trans-unit id="4b3963c6d0863118fe9e9e33447d12be3c2db081"> |
431 | <source>Unlisted</source> | 468 | <source>Unlisted</source> |
432 | <target>Listelenmemiş</target> | 469 | <target>Listelenmemiş</target> |
433 | 470 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">6</context></context-group> | |
434 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 471 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.html</context><context context-type="linenumber">9</context></context-group> |
472 | </trans-unit> | ||
435 | <trans-unit id="ddd8a4986d2d1717a274a5a0fbed04988a819e69"> | 473 | <trans-unit id="ddd8a4986d2d1717a274a5a0fbed04988a819e69"> |
436 | <source>Private</source> | 474 | <source>Private</source> |
437 | <target>Özel</target> | 475 | <target>Özel</target> |
438 | 476 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">7</context></context-group> | |
439 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">7</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 477 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">33</context></context-group> |
478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.html</context><context context-type="linenumber">10</context></context-group> | ||
479 | </trans-unit> | ||
440 | <trans-unit id="f73a82bb90c6c856cc0d2e3b2f5c109460074912" datatype="html"> | 480 | <trans-unit id="f73a82bb90c6c856cc0d2e3b2f5c109460074912" datatype="html"> |
441 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | 481 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> |
442 | <target state="new">{VAR_PLURAL, plural, =1 {1 view} other { | 482 | <target state="new">{VAR_PLURAL, plural, =1 {1 view} other { |
443 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } | 483 | <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> views} } |
444 | </target> | 484 | </target> |
445 | 485 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">3</context></context-group> | |
446 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit><trans-unit id="7ac18f5bb1a9b9f245acc8497c2f165a7e9f8510" datatype="html"> | 486 | </trans-unit> |
447 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | 487 | <trans-unit id="7ac18f5bb1a9b9f245acc8497c2f165a7e9f8510" datatype="html"> |
448 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} | 488 | <source><x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} "/> </source> |
449 | "/> </target> | 489 | <target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}} "/> </target> |
450 | <context-group purpose="location"> | 490 | <context-group purpose="location"> |
451 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> | 491 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> |
452 | <context context-type="linenumber">3,4</context> | 492 | <context context-type="linenumber">3,4</context> |
453 | </context-group> | 493 | </context-group> |
454 | </trans-unit><trans-unit id="bcd730167966d931a8956022c370de9ac26bc3ac" datatype="html"> | 494 | </trans-unit> |
455 | <source>{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</source><target state="new">{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</target> | 495 | <trans-unit id="bcd730167966d931a8956022c370de9ac26bc3ac" datatype="html"> |
496 | <source>{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</source> | ||
497 | <target state="new">{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</target> | ||
456 | <context-group purpose="location"> | 498 | <context-group purpose="location"> |
457 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> | 499 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> |
458 | <context context-type="linenumber">7</context> | 500 | <context context-type="linenumber">7</context> |
459 | </context-group> | 501 | </context-group> |
460 | </trans-unit><trans-unit id="2a6ba0b4ffe992ddd03f40ee75b879996bdfb5f7" datatype="html"> | 502 | </trans-unit> |
461 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}} | 503 | <trans-unit id="2a6ba0b4ffe992ddd03f40ee75b879996bdfb5f7" datatype="html"> |
462 | "/> </source><target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}} | 504 | <source><x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}} "/> </source> |
463 | "/> </target> | 505 | <target state="new"> <x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}} "/> </target> |
464 | <context-group purpose="location"> | 506 | <context-group purpose="location"> |
465 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> | 507 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> |
466 | <context context-type="linenumber">7,8</context> | 508 | <context context-type="linenumber">7,8</context> |
467 | </context-group> | 509 | </context-group> |
468 | </trans-unit><trans-unit id="3267631941074558910" datatype="html"> | 510 | </trans-unit> |
469 | <source>Cannot fetch information of this remote account</source><target state="new">Cannot fetch information of this remote account</target> | 511 | <trans-unit id="3267631941074558910" datatype="html"> |
512 | <source>Cannot fetch information of this remote account</source> | ||
513 | <target state="new">Cannot fetch information of this remote account</target> | ||
470 | <context-group purpose="location"> | 514 | <context-group purpose="location"> |
471 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.ts</context> | 515 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.ts</context> |
472 | <context context-type="linenumber">60</context> | 516 | <context context-type="linenumber">60</context> |
@@ -474,109 +518,140 @@ | |||
474 | </trans-unit> | 518 | </trans-unit> |
475 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | 519 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> |
476 | <source>Blocked</source> | 520 | <source>Blocked</source> |
477 | <target state="new">Blocked</target> | 521 | <target state="translated">Engelli</target> |
478 | 522 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">52</context></context-group> | |
479 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 523 | </trans-unit> |
480 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | 524 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> |
481 | <source>Sensitive</source> | 525 | <source>Sensitive</source> |
482 | <target state="new">Sensitive</target> | 526 | <target state="translated">Hassas</target> |
483 | 527 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">57</context></context-group> | |
484 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | 528 | </trans-unit> |
485 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> | 529 | <trans-unit id="99dea2d567d6e6d610d97608c3850ddb76df9a9a"> |
486 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 530 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
487 | <target>{VAR_PLURAL, plural, =0 {Video yok} =1 {1 video} other { | 531 | <target>{VAR_PLURAL, plural, =0 {Video yok} =1 {1 video} other { |
488 | <x id="INTERPOLATION" equiv-text="{{ playlist.videosLength }}"/> video} } | 532 | <x id="INTERPOLATION" equiv-text="{{ playlist.videosLength }}"/> video} } |
489 | </target> | 533 | </target> |
490 | 534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">9</context></context-group> | |
491 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 535 | </trans-unit> |
492 | <trans-unit id="4999ffd919bb9af482aa4c53badd6cd654468582" datatype="html"> | 536 | <trans-unit id="4999ffd919bb9af482aa4c53badd6cd654468582" datatype="html"> |
493 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> | 537 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> |
494 | <target state="new"> | 538 | <target state="new"> |
495 | <x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> | 539 | <x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> |
496 | </target> | 540 | </target> |
497 | 541 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">22</context></context-group> | |
498 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 542 | </trans-unit> |
499 | <trans-unit id="a3550f6ce98d90d2947fe062530629dc2d3923b4"> | 543 | <trans-unit id="a3550f6ce98d90d2947fe062530629dc2d3923b4"> |
500 | <source>Updated <x id="INTERPOLATION"/></source> | 544 | <source>Updated <x id="INTERPOLATION"/></source> |
501 | <target> | 545 | <target> |
502 | <x id="INTERPOLATION" equiv-text="{{ playlist.updatedAt | myFromNow }}"/> güncellendi | 546 | <x id="INTERPOLATION" equiv-text="{{ playlist.updatedAt | myFromNow }}"/> güncellendi |
503 | </target> | 547 | </target> |
504 | 548 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">29</context></context-group> | |
505 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 549 | </trans-unit> |
506 | <trans-unit id="15c02cb6b6c3be53477e502d3e1ee26955b23af0" datatype="html"> | 550 | <trans-unit id="15c02cb6b6c3be53477e502d3e1ee26955b23af0" datatype="html"> |
507 | <source>Unavailable</source> | 551 | <source>Unavailable</source> |
508 | <target state="new">Unavailable</target> | 552 | <target state="translated">Kullanılamıyor</target> |
509 | 553 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">32</context></context-group> | |
510 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 554 | </trans-unit> |
511 | <trans-unit id="28df1b02fd88d2deb0212bc5d7ff34cf9492fa54" datatype="html"> | 555 | <trans-unit id="28df1b02fd88d2deb0212bc5d7ff34cf9492fa54" datatype="html"> |
512 | <source>Deleted</source> | 556 | <source>Deleted</source> |
513 | <target state="new">Deleted</target> | 557 | <target state="translated">Silinmiş</target> |
514 | 558 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">34</context></context-group> | |
515 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">116</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | 559 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">116</context></context-group> |
560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">57</context></context-group> | ||
561 | </trans-unit> | ||
516 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | 562 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> |
517 | <source>Edit starts/stops at</source> | 563 | <source>Edit starts/stops at</source> |
518 | <target state="new">Edit starts/stops at</target> | 564 | <target state="new">Edit starts/stops at</target> |
519 | 565 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">50</context></context-group> | |
520 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 566 | </trans-unit> |
521 | <trans-unit id="52c9a103b812f258bcddc3d90a6e3f46871d25fe"> | 567 | <trans-unit id="52c9a103b812f258bcddc3d90a6e3f46871d25fe"> |
522 | <source>Save</source> | 568 | <source>Save</source> |
523 | <target>Kaydet</target> | 569 | <target>Kaydet</target> |
524 | 570 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">16</context></context-group> | |
525 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">82</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 571 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">16</context></context-group> |
572 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">77</context></context-group> | ||
573 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">77</context></context-group> | ||
574 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">82</context></context-group> | ||
575 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">38</context></context-group> | ||
576 | </trans-unit> | ||
526 | <trans-unit id="b9dee3108a18796bd69c6be316c8fb985b58fb8e" datatype="html"> | 577 | <trans-unit id="b9dee3108a18796bd69c6be316c8fb985b58fb8e" datatype="html"> |
527 | <source>Delete from <x id="INTERPOLATION"/></source> | 578 | <source>Delete from <x id="INTERPOLATION"/></source> |
528 | <target state="new">Delete from | 579 | <target state="new">Delete from |
529 | <x id="INTERPOLATION" equiv-text="{{ playlist?.displayName }}"/> | 580 | <x id="INTERPOLATION" equiv-text="{{ playlist?.displayName }}"/> |
530 | </target> | 581 | </target> |
531 | 582 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">88</context></context-group> | |
532 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> | 583 | </trans-unit> |
533 | <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e" datatype="html"> | 584 | <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e" datatype="html"> |
534 | <source>No results.</source> | 585 | <source>No results.</source> |
535 | <target state="new">No results.</target> | 586 | <target state="translated">Sonuç yok.</target> |
536 | 587 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group> | |
537 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">1</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/overview/video-overview.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 588 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group> |
589 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">1</context></context-group> | ||
590 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group> | ||
591 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group> | ||
592 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group> | ||
593 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group> | ||
594 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">47</context></context-group> | ||
595 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/overview/video-overview.component.html</context><context context-type="linenumber">4</context></context-group> | ||
596 | </trans-unit> | ||
538 | <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7"> | 597 | <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7"> |
539 | <source>Delete</source> | 598 | <source>Delete</source> |
540 | <target>Sil</target> | 599 | <target>Sil</target> |
541 | 600 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">43</context></context-group> | |
542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">178</context></context-group></trans-unit> | 601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">178</context></context-group> |
602 | </trans-unit> | ||
543 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 603 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
544 | <source>Edit</source> | 604 | <source>Edit</source> |
545 | <target>Düzenle</target> | 605 | <target>Düzenle</target> |
546 | 606 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group> | |
547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">270</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 607 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group> |
608 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group> | ||
609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group> | ||
610 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">11</context></context-group> | ||
611 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">11</context></context-group> | ||
612 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">38</context></context-group> | ||
613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">270</context></context-group> | ||
614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group> | ||
615 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group> | ||
616 | </trans-unit> | ||
548 | <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> | 617 | <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> |
549 | <source>Truncated preview</source> | 618 | <source>Truncated preview</source> |
550 | <target>Ucundan önizle</target> | 619 | <target>Ucundan önizle</target> |
551 | 620 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">11</context></context-group> | |
552 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit><trans-unit id="8461609631969932886" datatype="html"> | 621 | </trans-unit> |
553 | <source>Hide</source><target state="new">Hide</target> | 622 | <trans-unit id="8461609631969932886" datatype="html"> |
554 | 623 | <source>Hide</source> | |
555 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="8461842260159597706" datatype="html"> | 624 | <target state="translated">Gizle</target> |
556 | <source>Show</source><target state="new">Show</target> | 625 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">38</context></context-group> |
557 | 626 | </trans-unit> | |
558 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 627 | <trans-unit id="8461842260159597706" datatype="html"> |
628 | <source>Show</source> | ||
629 | <target state="translated">Göster</target> | ||
630 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">39</context></context-group> | ||
631 | </trans-unit> | ||
559 | <trans-unit id="f82f53a2544638939a8ba93c0fb1b0a4419c3196"> | 632 | <trans-unit id="f82f53a2544638939a8ba93c0fb1b0a4419c3196"> |
560 | <source>Complete preview</source> | 633 | <source>Complete preview</source> |
561 | <target>Tamamen önizle</target> | 634 | <target>Tamamen önizle</target> |
562 | 635 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">19</context></context-group> | |
563 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 636 | </trans-unit> |
564 | <trans-unit id="8644431249513874405" datatype="html"> | 637 | <trans-unit id="8644431249513874405" datatype="html"> |
565 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> | 638 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> |
566 | <target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 639 | <target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
567 | 640 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">75</context></context-group> | |
568 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> | 641 | </trans-unit> |
569 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 642 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
570 | <source>Recommended</source> | 643 | <source>Recommended</source> |
571 | <target state="new">Recommended</target> | 644 | <target state="translated">Önerilen</target> |
572 | 645 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/peertube-checkbox.component.html</context><context context-type="linenumber">33</context></context-group> | |
573 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/peertube-checkbox.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 646 | </trans-unit> |
574 | <trans-unit id="9b3287f52c239cad05ec98391553e5052ba1aa66" datatype="html"> | 647 | <trans-unit id="9b3287f52c239cad05ec98391553e5052ba1aa66" datatype="html"> |
575 | <source>Using an ActivityPub account</source> | 648 | <source>Using an ActivityPub account</source> |
576 | <target state="new">Using an ActivityPub account</target> | 649 | <target state="translated">ActivityPub hesabı kullanılıyor</target> |
577 | 650 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">54</context></context-group> | |
578 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit><trans-unit id="606af655e677f8b06f27f09777cbb8a25b4de665" datatype="html"> | 651 | </trans-unit> |
579 | <source>Subscribe with a remote account:</source><target state="new">Subscribe with a remote account:</target> | 652 | <trans-unit id="606af655e677f8b06f27f09777cbb8a25b4de665" datatype="html"> |
653 | <source>Subscribe with a remote account:</source> | ||
654 | <target state="new">Subscribe with a remote account:</target> | ||
580 | <context-group purpose="location"> | 655 | <context-group purpose="location"> |
581 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 656 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
582 | <context context-type="linenumber">62</context> | 657 | <context context-type="linenumber">62</context> |
@@ -585,217 +660,245 @@ | |||
585 | <trans-unit id="c7e2b4c04a0459ebc4d2e54e419abb679bc713f2" datatype="html"> | 660 | <trans-unit id="c7e2b4c04a0459ebc4d2e54e419abb679bc713f2" datatype="html"> |
586 | <source>Subscribe with an account on this instance</source> | 661 | <source>Subscribe with an account on this instance</source> |
587 | <target state="new">Subscribe with an account on this instance</target> | 662 | <target state="new">Subscribe with an account on this instance</target> |
588 | 663 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">57</context></context-group> | |
589 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | 664 | </trans-unit> |
590 | <trans-unit id="e7adf422424a61b71465d183f9d44bf956482ef0" datatype="html"> | 665 | <trans-unit id="e7adf422424a61b71465d183f9d44bf956482ef0" datatype="html"> |
591 | <source>Subscribe with your local account</source> | 666 | <source>Subscribe with your local account</source> |
592 | <target state="new">Subscribe with your local account</target> | 667 | <target state="new">Subscribe with your local account</target> |
593 | 668 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">58</context></context-group> | |
594 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit><trans-unit id="1096694538966074574" datatype="html"> | 669 | </trans-unit> |
595 | <source>Published <x id="PH" equiv-text="total"/> videos matching "<x id="PH_1" equiv-text="this.search"/>"</source><target state="new">Published <x id="PH" equiv-text="total"/> videos matching "<x id="PH_1" equiv-text="this.search"/>"</target> | 670 | <trans-unit id="1096694538966074574" datatype="html"> |
671 | <source>Published <x id="PH" equiv-text="total"/> videos matching "<x id="PH_1" equiv-text="this.search"/>"</source> | ||
672 | <target state="new">Published <x id="PH" equiv-text="total"/> videos matching "<x id="PH_1" equiv-text="this.search"/>"</target> | ||
596 | <context-group purpose="location"> | 673 | <context-group purpose="location"> |
597 | <context context-type="sourcefile">src/app/+accounts/account-search/account-search.component.ts</context> | 674 | <context context-type="sourcefile">src/app/+accounts/account-search/account-search.component.ts</context> |
598 | <context context-type="linenumber">89</context> | 675 | <context context-type="linenumber">89</context> |
599 | </context-group> | 676 | </context-group> |
600 | </trans-unit><trans-unit id="7639191791633609999" datatype="html"> | 677 | </trans-unit> |
601 | <source>The live stream will be automatically terminated.</source><target state="new">The live stream will be automatically terminated.</target> | 678 | <trans-unit id="7639191791633609999" datatype="html"> |
602 | 679 | <source>The live stream will be automatically terminated.</source> | |
603 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">205</context></context-group></trans-unit> | 680 | <target state="new">The live stream will be automatically terminated.</target> |
604 | 681 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">205</context></context-group> | |
682 | </trans-unit> | ||
605 | <trans-unit id="d8758664cadd6452256ca25ca0c7259074f427c1" datatype="html"> | 683 | <trans-unit id="d8758664cadd6452256ca25ca0c7259074f427c1" datatype="html"> |
606 | <source>Using a syndication feed</source> | 684 | <source>Using a syndication feed</source> |
607 | <target state="new">Using a syndication feed</target> | 685 | <target state="new">Using a syndication feed</target> |
608 | 686 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">68</context></context-group> | |
609 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">68</context></context-group></trans-unit> | 687 | </trans-unit> |
610 | <trans-unit id="d5e5bc7d213694fc0414a76f0ff3085bae44268a" datatype="html"> | 688 | <trans-unit id="d5e5bc7d213694fc0414a76f0ff3085bae44268a" datatype="html"> |
611 | <source>Subscribe via RSS</source> | 689 | <source>Subscribe via RSS</source> |
612 | <target state="new">Subscribe via RSS</target> | 690 | <target state="translated">RSS ile abone ol</target> |
613 | 691 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">69</context></context-group> | |
614 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 692 | </trans-unit> |
615 | <trans-unit id="3e486bad6576aa445ccb6051069e45a3658e4160" datatype="html"> | 693 | <trans-unit id="3e486bad6576aa445ccb6051069e45a3658e4160" datatype="html"> |
616 | <source>PROFILE SETTINGS</source> | 694 | <source>PROFILE SETTINGS</source> |
617 | <target state="new">PROFILE SETTINGS</target> | 695 | <target state="translated">PROFİL AYARLARI</target> |
618 | 696 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group> | |
619 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> | 697 | </trans-unit> |
620 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | 698 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
621 | <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> | 699 | <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> |
622 | <target state="new"/> | 700 | <target state="new"/> |
623 | 701 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context><context context-type="linenumber">11</context></context-group> | |
624 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit><trans-unit id="10fc5e7d31ac52e14a0ee249d718275d2f25771e" datatype="html"> | 702 | </trans-unit> |
625 | <source> You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </source><target state="new"> You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | 703 | <trans-unit id="10fc5e7d31ac52e14a0ee249d718275d2f25771e" datatype="html"> |
704 | <source>You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | ||
705 | <target state="new"> You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | ||
626 | <context-group purpose="location"> | 706 | <context-group purpose="location"> |
627 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | 707 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
628 | <context context-type="linenumber">18,19</context> | 708 | <context context-type="linenumber">18,19</context> |
629 | </context-group> | 709 | </context-group> |
630 | </trans-unit><trans-unit id="d27c1d2f9703f3afcfb9186fc57fe169d851cb06" datatype="html"> | 710 | </trans-unit> |
631 | <source> You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </source><target state="new"> You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | 711 | <trans-unit id="d27c1d2f9703f3afcfb9186fc57fe169d851cb06" datatype="html"> |
712 | <source>You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | ||
713 | <target state="new"> You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | ||
632 | <context-group purpose="location"> | 714 | <context-group purpose="location"> |
633 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | 715 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
634 | <context context-type="linenumber">26,27</context> | 716 | <context context-type="linenumber">26,27</context> |
635 | </context-group> | 717 | </context-group> |
636 | </trans-unit> | 718 | </trans-unit> |
637 | |||
638 | |||
639 | <trans-unit id="6513f65441f986d9204122e01b4ab1df1d63d18e" datatype="html"> | 719 | <trans-unit id="6513f65441f986d9204122e01b4ab1df1d63d18e" datatype="html"> |
640 | <source>PeerTube version</source> | 720 | <source>PeerTube version</source> |
641 | <target state="new">PeerTube version</target> | 721 | <target state="translated">PeerTube sürümü</target> |
642 | 722 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">6</context></context-group> | |
643 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 723 | </trans-unit> |
644 | <trans-unit id="083e95bdf6f64257d2ddd399ecf9f48ab88e279f" datatype="html"> | 724 | <trans-unit id="083e95bdf6f64257d2ddd399ecf9f48ab88e279f" datatype="html"> |
645 | <source><x id="START_TAG_DIV"/>Default NSFW/sensitive videos policy<x id="CLOSE_TAG_DIV"/><x id="START_TAG_DIV_1"/>can be redefined by the users<x id="CLOSE_TAG_DIV"/></source> | 725 | <source><x id="START_TAG_DIV"/>Default NSFW/sensitive videos policy<x id="CLOSE_TAG_DIV"/><x id="START_TAG_DIV_1"/>can be redefined by the users<x id="CLOSE_TAG_DIV"/></source> |
646 | <target state="new"/> | 726 | <target state="new"/> |
647 | 727 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">13</context></context-group> | |
648 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 728 | </trans-unit> |
649 | <trans-unit id="87ca23d62c168409ed040dae83dd8717cae3f08c" datatype="html"> | 729 | <trans-unit id="87ca23d62c168409ed040dae83dd8717cae3f08c" datatype="html"> |
650 | <source>User registration allowed</source> | 730 | <source>User registration allowed</source> |
651 | <target state="new">User registration allowed</target> | 731 | <target state="translated">Kullanıcı kaydına izin veriliyor</target> |
652 | 732 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">21</context></context-group> | |
653 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 733 | </trans-unit> |
654 | <trans-unit id="62c8c98c3957946709b49d0a5e309e53e660b9e2" datatype="html"> | 734 | <trans-unit id="62c8c98c3957946709b49d0a5e309e53e660b9e2" datatype="html"> |
655 | <source>Video uploads</source> | 735 | <source>Video uploads</source> |
656 | <target state="new">Video uploads</target> | 736 | <target state="new">Video uploads</target> |
657 | 737 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">28</context></context-group> | |
658 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 738 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">39</context></context-group> |
739 | </trans-unit> | ||
659 | <trans-unit id="ba774dce7a0cbbc29d7086b8557939c7e8d9883d" datatype="html"> | 740 | <trans-unit id="ba774dce7a0cbbc29d7086b8557939c7e8d9883d" datatype="html"> |
660 | <source>Transcoding in multiple resolutions</source> | 741 | <source>Transcoding in multiple resolutions</source> |
661 | <target state="new">Transcoding in multiple resolutions</target> | 742 | <target state="new">Transcoding in multiple resolutions</target> |
662 | 743 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">32</context></context-group> | |
663 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="5e84ff80421724dc306284a6330c0910fb95c64d" datatype="html"> | 744 | </trans-unit> |
664 | <source>Live streaming enabled</source><target state="new">Live streaming enabled</target> | 745 | <trans-unit id="5e84ff80421724dc306284a6330c0910fb95c64d" datatype="html"> |
665 | 746 | <source>Live streaming enabled</source> | |
666 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit><trans-unit id="855e1ff3acad516b927095d3990aeff917f75fa3" datatype="html"> | 747 | <target state="translated">Canlı yayın etkinleştirildi</target> |
667 | <source>Transcode live video in multiple resolutions</source><target state="new">Transcode live video in multiple resolutions</target> | 748 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">71</context></context-group> |
668 | 749 | </trans-unit> | |
669 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit><trans-unit id="bc3387a5ccd470d163e6459ff017b9f2edca92f4" datatype="html"> | 750 | <trans-unit id="855e1ff3acad516b927095d3990aeff917f75fa3" datatype="html"> |
670 | <source>Max parallel lives</source><target state="new">Max parallel lives</target> | 751 | <source>Transcode live video in multiple resolutions</source> |
671 | 752 | <target state="new">Transcode live video in multiple resolutions</target> | |
672 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit><trans-unit id="1be38e8cd37e921dd4af3b6f6251168cc5536f24" datatype="html"> | 753 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">78</context></context-group> |
673 | <source> <x id="INTERPOLATION"/> per user / <x id="INTERPOLATION_1"/> per instance </source><target state="new"> <x id="INTERPOLATION"/> per user / <x id="INTERPOLATION_1"/> per instance </target> | 754 | </trans-unit> |
674 | 755 | <trans-unit id="bc3387a5ccd470d163e6459ff017b9f2edca92f4" datatype="html"> | |
675 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 756 | <source>Max parallel lives</source> |
757 | <target state="new">Max parallel lives</target> | ||
758 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">85</context></context-group> | ||
759 | </trans-unit> | ||
760 | <trans-unit id="1be38e8cd37e921dd4af3b6f6251168cc5536f24" datatype="html"> | ||
761 | <source><x id="INTERPOLATION"/> per user / <x id="INTERPOLATION_1"/> per instance </source> | ||
762 | <target state="new"> <x id="INTERPOLATION"/> per user / <x id="INTERPOLATION_1"/> per instance </target> | ||
763 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">86</context></context-group> | ||
764 | </trans-unit> | ||
676 | <trans-unit id="7deebcf3491b27625e9b308179a6635b48368dcb" datatype="html"> | 765 | <trans-unit id="7deebcf3491b27625e9b308179a6635b48368dcb" datatype="html"> |
677 | <source>Requires manual validation by moderators</source> | 766 | <source>Requires manual validation by moderators</source> |
678 | <target state="new">Requires manual validation by moderators</target> | 767 | <target state="new">Requires manual validation by moderators</target> |
679 | 768 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">41</context></context-group> | |
680 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 769 | </trans-unit> |
681 | <trans-unit id="f1155367f44b4e3d2286db687d324a9b0cc1a7cb" datatype="html"> | 770 | <trans-unit id="f1155367f44b4e3d2286db687d324a9b0cc1a7cb" datatype="html"> |
682 | <source>Automatically published</source> | 771 | <source>Automatically published</source> |
683 | <target state="new">Automatically published</target> | 772 | <target state="new">Automatically published</target> |
684 | 773 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">42</context></context-group> | |
685 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 774 | </trans-unit> |
686 | <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b"> | 775 | <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b"> |
687 | <source>Video quota</source> | 776 | <source>Video quota</source> |
688 | <target>Video kotası</target> | 777 | <target>Video sınırı</target> |
689 | 778 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">47</context></context-group> | |
690 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group></trans-unit> | 779 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> |
780 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | ||
781 | </trans-unit> | ||
691 | <trans-unit id="9270dfd4606fb45a991fe7716e640b6efa28ba85" datatype="html"> | 782 | <trans-unit id="9270dfd4606fb45a991fe7716e640b6efa28ba85" datatype="html"> |
692 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 783 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
693 | <target state="new">Unlimited | 784 | <target state="new">Unlimited |
694 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>( | 785 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>( |
695 | <x id="INTERPOLATION" equiv-text="{{ dailyUserVideoQuota | bytes: 0 }}"/> per day) | 786 | <x id="INTERPOLATION" equiv-text="{{ dailyUserVideoQuota | bytes: 0 }}"/> per day) |
696 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | 787 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> |
697 | </target> | 788 | </target> |
698 | 789 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">61</context></context-group> | |
699 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> | 790 | </trans-unit> |
700 | <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36" datatype="html"> | 791 | <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36" datatype="html"> |
701 | <source>Import</source> | 792 | <source>Import</source> |
702 | <target state="new">Import</target> | 793 | <target state="translated">İçe aktar</target> |
703 | 794 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">92</context></context-group> | |
704 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 795 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">44</context></context-group> |
796 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">36</context></context-group> | ||
797 | </trans-unit> | ||
705 | <trans-unit id="a4378d599f760c6d1de2667d4535b48db092cb6e" datatype="html"> | 798 | <trans-unit id="a4378d599f760c6d1de2667d4535b48db092cb6e" datatype="html"> |
706 | <source>You can import any torrent file that points to a media file. 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.</source> | 799 | <source>You can import any torrent file that points to a media file. 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.</source> |
707 | <target state="new"> You can import any torrent file that points to a media file. 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. </target> | 800 | <target state="new"> You can import any torrent file that points to a media file. 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. </target> |
708 | 801 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">20</context></context-group> | |
709 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 802 | </trans-unit> |
710 | <trans-unit id="590fc27fcbd7dd680da2bb2da644a183338f6bd1" datatype="html"> | 803 | <trans-unit id="590fc27fcbd7dd680da2bb2da644a183338f6bd1" datatype="html"> |
711 | <source>HTTP import (YouTube, Vimeo, direct URL...)</source> | 804 | <source>HTTP import (YouTube, Vimeo, direct URL...)</source> |
712 | <target state="new">HTTP import (YouTube, Vimeo, direct URL...)</target> | 805 | <target state="translated">HTTP ile içe aktar (YouTube, Vimeo, URL vb.)</target> |
713 | 806 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">96</context></context-group> | |
714 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 807 | </trans-unit> |
715 | <trans-unit id="4e231a74ad4739e7b0606e8e66d5a656f5855a5a" datatype="html"> | 808 | <trans-unit id="4e231a74ad4739e7b0606e8e66d5a656f5855a5a" datatype="html"> |
716 | <source>Torrent import</source> | 809 | <source>Torrent import</source> |
717 | <target state="new">Torrent import</target> | 810 | <target state="translated">Torrent ile içe aktar</target> |
718 | 811 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">103</context></context-group> | |
719 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">103</context></context-group></trans-unit> | 812 | </trans-unit> |
720 | <trans-unit id="59bdc3dfa4075f92c734588899485db702c8f120" datatype="html"> | 813 | <trans-unit id="59bdc3dfa4075f92c734588899485db702c8f120" datatype="html"> |
721 | <source>Player</source> | 814 | <source>Player</source> |
722 | <target state="new">Player</target> | 815 | <target state="translated">Oynatıcı</target> |
723 | 816 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">111</context></context-group> | |
724 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 817 | </trans-unit> |
725 | <trans-unit id="af80f4182e09341958e8706bd2b47ece61233eb5" datatype="html"> | 818 | <trans-unit id="af80f4182e09341958e8706bd2b47ece61233eb5" datatype="html"> |
726 | <source>P2P enabled</source> | 819 | <source>P2P enabled</source> |
727 | <target state="new">P2P enabled</target> | 820 | <target state="translated">P2P açıldı</target> |
728 | 821 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">115</context></context-group> | |
729 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">115</context></context-group></trans-unit> | 822 | </trans-unit> |
730 | <trans-unit id="b8b6a001cca6fa2ba15600ca3a78dfeebf685d60" datatype="html"> | 823 | <trans-unit id="b8b6a001cca6fa2ba15600ca3a78dfeebf685d60" datatype="html"> |
731 | <source>Loading instance statistics...</source> | 824 | <source>Loading instance statistics...</source> |
732 | <target state="new">Loading instance statistics...</target> | 825 | <target state="new">Loading instance statistics...</target> |
733 | 826 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">1</context></context-group> | |
734 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 827 | </trans-unit> |
735 | <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d" datatype="html"> | 828 | <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d" datatype="html"> |
736 | <source>Local</source> | 829 | <source>Local</source> |
737 | <target state="new">Local</target> | 830 | <target state="new">Local</target> |
738 | 831 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">4</context></context-group> | |
739 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 832 | </trans-unit> |
740 | <trans-unit id="7c7f4be7b726e61c577e63842a58d9e435f7c597" datatype="html"> | 833 | <trans-unit id="7c7f4be7b726e61c577e63842a58d9e435f7c597" datatype="html"> |
741 | <source>users</source> | 834 | <source>users</source> |
742 | <target state="new">users</target> | 835 | <target state="new">users</target> |
743 | 836 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">11</context></context-group> | |
744 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 837 | </trans-unit> |
745 | <trans-unit id="5bc509bb72973f9895241127d5556e9e31051137" datatype="html"> | 838 | <trans-unit id="5bc509bb72973f9895241127d5556e9e31051137" datatype="html"> |
746 | <source>videos</source> | 839 | <source>videos</source> |
747 | <target state="new">videos</target> | 840 | <target state="new">videos</target> |
748 | 841 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">21</context></context-group> | |
749 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> | 842 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">65</context></context-group> |
843 | </trans-unit> | ||
750 | <trans-unit id="bd21b1e6b5674003187e5cbec0e7e2854f9d8388" datatype="html"> | 844 | <trans-unit id="bd21b1e6b5674003187e5cbec0e7e2854f9d8388" datatype="html"> |
751 | <source>video views</source> | 845 | <source>video views</source> |
752 | <target state="new">video views</target> | 846 | <target state="new">video views</target> |
753 | 847 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">31</context></context-group> | |
754 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 848 | </trans-unit> |
755 | <trans-unit id="d11fe88f08e43bfe4dec7d16fe469aa65d1e3d84" datatype="html"> | 849 | <trans-unit id="d11fe88f08e43bfe4dec7d16fe469aa65d1e3d84" datatype="html"> |
756 | <source>video comments</source> | 850 | <source>video comments</source> |
757 | <target state="new">video comments</target> | 851 | <target state="new">video comments</target> |
758 | 852 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">41</context></context-group> | |
759 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">75</context></context-group></trans-unit> | 853 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">75</context></context-group> |
854 | </trans-unit> | ||
760 | <trans-unit id="0bedca44bfc0ef579be6053ffe0e8cdee9aba07d" datatype="html"> | 855 | <trans-unit id="0bedca44bfc0ef579be6053ffe0e8cdee9aba07d" datatype="html"> |
761 | <source>of hosted video</source> | 856 | <source>of hosted video</source> |
762 | <target state="new">of hosted video</target> | 857 | <target state="new">of hosted video</target> |
763 | 858 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">51</context></context-group> | |
764 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 859 | </trans-unit> |
765 | <trans-unit id="de7d61497b3dc7df0f83c57f333458a7064ac4e7" datatype="html"> | 860 | <trans-unit id="de7d61497b3dc7df0f83c57f333458a7064ac4e7" datatype="html"> |
766 | <source>Federation</source> | 861 | <source>Federation</source> |
767 | <target state="new">Federation</target> | 862 | <target state="new">Federation</target> |
768 | 863 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">58</context></context-group> | |
769 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 864 | </trans-unit> |
770 | <trans-unit id="8de9d3173fafc2c7a94352dec3de899b6cedf9c5" datatype="html"> | 865 | <trans-unit id="8de9d3173fafc2c7a94352dec3de899b6cedf9c5" datatype="html"> |
771 | <source>followers</source> | 866 | <source>followers</source> |
772 | <target state="new">followers</target> | 867 | <target state="new">followers</target> |
773 | 868 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">85</context></context-group> | |
774 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 869 | </trans-unit> |
775 | <trans-unit id="1ec99ffe83830affef834fd7beeda8ee313203fe" datatype="html"> | 870 | <trans-unit id="1ec99ffe83830affef834fd7beeda8ee313203fe" datatype="html"> |
776 | <source>following</source> | 871 | <source>following</source> |
777 | <target state="new">following</target> | 872 | <target state="new">following</target> |
778 | 873 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group> | |
779 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2605931708025789621" datatype="html"> | 874 | </trans-unit> |
780 | <source>The upload failed</source><target state="new">The upload failed</target> | 875 | <trans-unit id="2605931708025789621" datatype="html"> |
876 | <source>The upload failed</source> | ||
877 | <target state="translated">Yükleme başarısız</target> | ||
781 | <context-group purpose="location"> | 878 | <context-group purpose="location"> |
782 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> | 879 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> |
783 | <context context-type="linenumber">185</context> | 880 | <context context-type="linenumber">185</context> |
784 | </context-group> | 881 | </context-group> |
785 | </trans-unit><trans-unit id="1447760976255144968" datatype="html"> | 882 | </trans-unit> |
786 | <source>The connection was interrupted</source><target state="new">The connection was interrupted</target> | 883 | <trans-unit id="1447760976255144968" datatype="html"> |
884 | <source>The connection was interrupted</source> | ||
885 | <target state="new">The connection was interrupted</target> | ||
787 | <context-group purpose="location"> | 886 | <context-group purpose="location"> |
788 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> | 887 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> |
789 | <context context-type="linenumber">189</context> | 888 | <context context-type="linenumber">189</context> |
790 | </context-group> | 889 | </context-group> |
791 | </trans-unit><trans-unit id="3334825601859787496" datatype="html"> | 890 | </trans-unit> |
792 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source><target state="new">Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</target> | 891 | <trans-unit id="3334825601859787496" datatype="html"> |
892 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source> | ||
893 | <target state="new">Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</target> | ||
793 | <context-group purpose="location"> | 894 | <context-group purpose="location"> |
794 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> | 895 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> |
795 | <context context-type="linenumber">192</context> | 896 | <context context-type="linenumber">192</context> |
796 | </context-group> | 897 | </context-group> |
797 | </trans-unit><trans-unit id="8530934870279569179" datatype="html"> | 898 | </trans-unit> |
798 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source><target state="new">Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</target> | 899 | <trans-unit id="8530934870279569179" datatype="html"> |
900 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source> | ||
901 | <target state="new">Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</target> | ||
799 | <context-group purpose="location"> | 902 | <context-group purpose="location"> |
800 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> | 903 | <context context-type="sourcefile">src/app/helpers/utils.ts</context> |
801 | <context context-type="linenumber">196</context> | 904 | <context context-type="linenumber">196</context> |
@@ -803,91 +906,121 @@ | |||
803 | </trans-unit> | 906 | </trans-unit> |
804 | <trans-unit id="2392488717875840729" datatype="html"> | 907 | <trans-unit id="2392488717875840729" datatype="html"> |
805 | <source>User</source> | 908 | <source>User</source> |
806 | <target state="new">User</target> | 909 | <target state="translated">Kullanıcı</target> |
807 | 910 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">392</context></context-group> | |
808 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">392</context></context-group></trans-unit> | 911 | </trans-unit> |
809 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> | 912 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> |
810 | <source>Ban</source> | 913 | <source>Ban</source> |
811 | <target state="new">Ban</target> | 914 | <target state="new">Ban</target> |
812 | 915 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">3</context></context-group> | |
813 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 916 | </trans-unit> |
814 | <trans-unit id="f21428bd564d1cacdbc737f87a8def2e2ad42251" datatype="html"> | 917 | <trans-unit id="f21428bd564d1cacdbc737f87a8def2e2ad42251" datatype="html"> |
815 | <source>A banned user will no longer be able to login.</source> | 918 | <source>A banned user will no longer be able to login.</source> |
816 | <target state="new">A banned user will no longer be able to login.</target> | 919 | <target state="new">A banned user will no longer be able to login.</target> |
817 | 920 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">21</context></context-group> | |
818 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 921 | </trans-unit> |
819 | <trans-unit id="d7b35c384aecd25a516200d6921836374613dfe7" datatype="html"> | 922 | <trans-unit id="d7b35c384aecd25a516200d6921836374613dfe7" datatype="html"> |
820 | <source>Cancel</source> | 923 | <source>Cancel</source> |
821 | <target state="new">Cancel</target> | 924 | <target state="new">Cancel</target> |
822 | 925 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group> | |
823 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">99</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">48</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> | 926 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">117</context></context-group> |
927 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">22</context></context-group> | ||
928 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">25</context></context-group> | ||
929 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group> | ||
930 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">38</context></context-group> | ||
931 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">92</context></context-group> | ||
932 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">99</context></context-group> | ||
933 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">26</context></context-group> | ||
934 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">31</context></context-group> | ||
935 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">26</context></context-group> | ||
936 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">48</context></context-group> | ||
937 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group> | ||
938 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">67</context></context-group> | ||
939 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">58</context></context-group> | ||
940 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">58</context></context-group> | ||
941 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">69</context></context-group> | ||
942 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">37</context></context-group> | ||
943 | </trans-unit> | ||
824 | <trans-unit id="35fdca47605de8113a0db7f587f7c099abec8020" datatype="html"> | 944 | <trans-unit id="35fdca47605de8113a0db7f587f7c099abec8020" datatype="html"> |
825 | <source>Ban this user</source> | 945 | <source>Ban this user</source> |
826 | <target state="new">Ban this user</target> | 946 | <target state="translated">Bu kullanıcıyı yasakla</target> |
827 | 947 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">31</context></context-group> | |
828 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 948 | </trans-unit> |
829 | <trans-unit id="dbabcb47dc77c29275d0f836280ef1dcd924fdb9" datatype="html"> | 949 | <trans-unit id="dbabcb47dc77c29275d0f836280ef1dcd924fdb9" datatype="html"> |
830 | <source>Block video "<x id="INTERPOLATION"/>"</source> | 950 | <source>Block video "<x id="INTERPOLATION"/>"</source> |
831 | <target state="new">Block video " | 951 | <target state="new">Block video " |
832 | <x id="INTERPOLATION" equiv-text="{{ video.name }}"/>" | 952 | <x id="INTERPOLATION" equiv-text="{{ video.name }}"/>" |
833 | </target> | 953 | </target> |
834 | 954 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">3</context></context-group> | |
835 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit><trans-unit id="cc6208fd0ded0d4a57f4c0a97c2843dc454db39a" datatype="html"> | 955 | </trans-unit> |
836 | <source>Block live "<x id="INTERPOLATION"/>"</source><target state="new">Block live "<x id="INTERPOLATION"/>"</target> | 956 | <trans-unit id="cc6208fd0ded0d4a57f4c0a97c2843dc454db39a" datatype="html"> |
837 | 957 | <source>Block live "<x id="INTERPOLATION"/>"</source> | |
838 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 958 | <target state="new">Block live "<x id="INTERPOLATION"/>"</target> |
959 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">4</context></context-group> | ||
960 | </trans-unit> | ||
839 | <trans-unit id="dc3bdad5421d0ee7ddd76ae62b699d72dd9f61b4" datatype="html"> | 961 | <trans-unit id="dc3bdad5421d0ee7ddd76ae62b699d72dd9f61b4" datatype="html"> |
840 | <source>Please describe the reason...</source> | 962 | <source>Please describe the reason...</source> |
841 | <target state="new">Please describe the reason...</target> | 963 | <target state="new">Please describe the reason...</target> |
842 | 964 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">13</context></context-group> | |
843 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 965 | </trans-unit> |
844 | <trans-unit id="c078d4901a5fac169665947cc7a6108b94dd80c7" datatype="html"> | 966 | <trans-unit id="c078d4901a5fac169665947cc7a6108b94dd80c7" datatype="html"> |
845 | <source><x id="INTERPOLATION" equiv-text="{{ menuEntry.label }}"/> </source> | 967 | <source><x id="INTERPOLATION" equiv-text="{{ menuEntry.label }}"/> </source> |
846 | <target state="new"> | 968 | <target state="new"> |
847 | <x id="INTERPOLATION" equiv-text="{{ menuEntry.label }}"/> | 969 | <x id="INTERPOLATION" equiv-text="{{ menuEntry.label }}"/> |
848 | </target> | 970 | </target> |
849 | 971 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">14</context></context-group> | |
850 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">14</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit><trans-unit id="1191071088182425837" datatype="html"> | 972 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">24</context></context-group> |
851 | <source><x id="PH"/>h</source><target state="new"><x id="PH"/>h</target> | 973 | </trans-unit> |
852 | 974 | <trans-unit id="1191071088182425837" datatype="html"> | |
853 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="8981309282078866700" datatype="html"> | 975 | <source><x id="PH"/>h</source> |
854 | <source><x id="PH"/>min</source><target state="new"><x id="PH"/>min</target> | 976 | <target state="translated"><x id="PH"/>s</target> |
855 | 977 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">14</context></context-group> | |
856 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">23</context></context-group></trans-unit><trans-unit id="350798057497677761" datatype="html"> | 978 | </trans-unit> |
857 | <source><x id="PH"/>sec</source><target state="new"><x id="PH"/>sec</target> | 979 | <trans-unit id="8981309282078866700" datatype="html"> |
858 | 980 | <source><x id="PH"/>min</source> | |
859 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">17</context></context-group></trans-unit> | 981 | <target state="translated"><x id="PH"/>dk</target> |
982 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">16</context></context-group> | ||
983 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">23</context></context-group> | ||
984 | </trans-unit> | ||
985 | <trans-unit id="350798057497677761" datatype="html"> | ||
986 | <source><x id="PH"/>sec</source> | ||
987 | <target state="translated"><x id="PH"/>sn</target> | ||
988 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">17</context></context-group> | ||
989 | </trans-unit> | ||
860 | <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea"> | 990 | <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea"> |
861 | <source>Login</source> | 991 | <source>Login</source> |
862 | <target> | 992 | <target> |
863 | Oturum aç | 993 | Oturum aç |
864 | </target> | 994 | </target> |
865 | 995 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">3</context></context-group> | |
866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 996 | </trans-unit> |
867 | <trans-unit id="6b6240483bee515c1e20c0c21fc6096e8cdd08e9" datatype="html"> | 997 | <trans-unit id="6b6240483bee515c1e20c0c21fc6096e8cdd08e9" datatype="html"> |
868 | <source>Sorry but there was an issue with the external login process. Please <x id="START_LINK"/>contact an administrator<x id="CLOSE_LINK"/>. </source> | 998 | <source>Sorry but there was an issue with the external login process. Please <x id="START_LINK"/>contact an administrator<x id="CLOSE_LINK"/>. </source> |
869 | <target state="new"> | 999 | <target state="new"> |
870 | Sorry but there was an issue with the external login process. Please | 1000 | Sorry but there was an issue with the external login process. Please |
871 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>contact an administrator | 1001 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>contact an administrator |
872 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | 1002 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. |
873 | 1003 | ||
874 | </target> | 1004 | </target> |
875 | 1005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">7</context></context-group> | |
876 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 1006 | </trans-unit> |
877 | |||
878 | |||
879 | <trans-unit id="ae3cb52bf2dee3101ee654812b5d16e8665a9453" datatype="html"> | 1007 | <trans-unit id="ae3cb52bf2dee3101ee654812b5d16e8665a9453" datatype="html"> |
880 | <source>Request new verification email.</source> | 1008 | <source>Request new verification email.</source> |
881 | <target state="new">Request new verification email.</target> | 1009 | <target state="translated">Yeni doğrulama e-postası iste.</target> |
882 | 1010 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">12</context></context-group> | |
883 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="0b56e18291f70cbcaddcafe46a4901fe499cd3cc" datatype="html"> | 1011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">16</context></context-group> |
884 | <source> This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source><target state="new"> This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 1012 | </trans-unit> |
1013 | <trans-unit id="0b56e18291f70cbcaddcafe46a4901fe499cd3cc" datatype="html"> | ||
1014 | <source>This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | ||
1015 | <target state="new"> This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="START_LINK_1" equiv-text="<a class="terms-link" target="_blank" routerLink="/about/instance" fragment="terms">"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="START_LINK_2" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | ||
885 | <context-group purpose="location"> | 1016 | <context-group purpose="location"> |
886 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 1017 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
887 | <context context-type="linenumber">60,62</context> | 1018 | <context context-type="linenumber">60,62</context> |
888 | </context-group> | 1019 | </context-group> |
889 | </trans-unit><trans-unit id="5ff5b420545ecb1ef07d7ad7c03253e4500246f1" datatype="html"> | 1020 | </trans-unit> |
890 | <source> Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source><target state="new"> Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | 1021 | <trans-unit id="5ff5b420545ecb1ef07d7ad7c03253e4500246f1" datatype="html"> |
1022 | <source>Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source> | ||
1023 | <target state="new"> Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_LINK_1" equiv-text="<a class="alert-link" href="https://joinpeertube.org/instances" target="_blank" rel="noopener noreferrer">"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> | ||
891 | <context-group purpose="location"> | 1024 | <context-group purpose="location"> |
892 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 1025 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
893 | <context context-type="linenumber">65,67</context> | 1026 | <context context-type="linenumber">65,67</context> |
@@ -896,25 +1029,34 @@ | |||
896 | <trans-unit id="e08a77594f3d89311cdf6da5090044270909c194"> | 1029 | <trans-unit id="e08a77594f3d89311cdf6da5090044270909c194"> |
897 | <source>User</source> | 1030 | <source>User</source> |
898 | <target>Kullanıcı</target> | 1031 | <target>Kullanıcı</target> |
899 | 1032 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group> | |
900 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 1033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">26</context></context-group> |
1034 | </trans-unit> | ||
901 | <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> | 1035 | <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> |
902 | <source>Username or email address</source> | 1036 | <source>Username or email address</source> |
903 | <target>Kullanıcı adı ya da e-posta adresi</target> | 1037 | <target>Kullanıcı adı ya da e-posta adresi</target> |
904 | 1038 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">23</context></context-group> | |
905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 1039 | </trans-unit> |
906 | |||
907 | <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> | 1040 | <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> |
908 | <source>Password</source> | 1041 | <source>Password</source> |
909 | <target>Şifre</target> | 1042 | <target>Şifre</target> |
910 | 1043 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">34</context></context-group> | |
911 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">10</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> | 1044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">36</context></context-group> |
1045 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">8</context></context-group> | ||
1046 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">10</context></context-group> | ||
1047 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">56</context></context-group> | ||
1048 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">58</context></context-group> | ||
1049 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group> | ||
1050 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group> | ||
1051 | </trans-unit> | ||
912 | <trans-unit id="48ff0628dcbb4d37e9687302df3023b8427b48f2" datatype="html"> | 1052 | <trans-unit id="48ff0628dcbb4d37e9687302df3023b8427b48f2" datatype="html"> |
913 | <source>Click here to reset your password</source> | 1053 | <source>Click here to reset your password</source> |
914 | <target state="new">Click here to reset your password</target> | 1054 | <target state="translated">Şifrenizi sıfırlamak için buraya tıklayın</target> |
915 | 1055 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">47</context></context-group> | |
916 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit><trans-unit id="3b59dc73883104c81370e6cd20a039474f71f156" datatype="html"> | 1056 | </trans-unit> |
917 | <source> Logging into an account lets you publish content </source><target state="new"> Logging into an account lets you publish content </target> | 1057 | <trans-unit id="3b59dc73883104c81370e6cd20a039474f71f156" datatype="html"> |
1058 | <source>Logging into an account lets you publish content</source> | ||
1059 | <target state="translated">Hesabınıza giriş yapmak içerik yayınlamanızı sağlar</target> | ||
918 | <context-group purpose="location"> | 1060 | <context-group purpose="location"> |
919 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 1061 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
920 | <context context-type="linenumber">56,57</context> | 1062 | <context context-type="linenumber">56,57</context> |
@@ -923,101 +1065,117 @@ | |||
923 | <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> | 1065 | <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> |
924 | <source>Login</source> | 1066 | <source>Login</source> |
925 | <target>Oturum aç</target> | 1067 | <target>Oturum aç</target> |
926 | 1068 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">93</context></context-group> | |
927 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">93</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> | 1069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">44</context></context-group> |
1070 | </trans-unit> | ||
928 | <trans-unit id="f5d783c0613d323fdd20074ffbc519ee715a4f2b" datatype="html"> | 1071 | <trans-unit id="f5d783c0613d323fdd20074ffbc519ee715a4f2b" datatype="html"> |
929 | <source>Or sign in with</source> | 1072 | <source>Or sign in with</source> |
930 | <target state="new">Or sign in with</target> | 1073 | <target state="translated">Ya da şununla oturum aç</target> |
931 | 1074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">72</context></context-group> | |
932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> | 1075 | </trans-unit> |
933 | <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681" datatype="html"> | 1076 | <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681" datatype="html"> |
934 | <source>Forgot your password</source> | 1077 | <source>Forgot your password</source> |
935 | <target state="new">Forgot your password</target> | 1078 | <target state="translated">Şifrenizi mi unuttunuz?</target> |
936 | 1079 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">91</context></context-group> | |
937 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1080 | </trans-unit> |
938 | <trans-unit id="8f7dd0009f7dc9e4e3f1d9f43f944a3aa7cf737a" datatype="html"> | 1081 | <trans-unit id="8f7dd0009f7dc9e4e3f1d9f43f944a3aa7cf737a" datatype="html"> |
939 | <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> | 1082 | <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> |
940 | <target state="new">We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</target> | 1083 | <target state="new">We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</target> |
941 | 1084 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">99</context></context-group> | |
942 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">99</context></context-group></trans-unit><trans-unit id="fd184f028267a379c6af2d6e6cce86fda172f827" datatype="html"> | 1085 | </trans-unit> |
943 | <source> Enter your email address and we will send you a link to reset your password. </source><target state="new"> Enter your email address and we will send you a link to reset your password. </target> | 1086 | <trans-unit id="fd184f028267a379c6af2d6e6cce86fda172f827" datatype="html"> |
944 | 1087 | <source>Enter your email address and we will send you a link to reset your password.</source> | |
945 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">103</context></context-group></trans-unit> | 1088 | <target state="translated">E-posta adresinizi girin, şifrenizi sıfırlamak için bir bağlantı göndereceğiz.</target> |
1089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">103</context></context-group> | ||
1090 | </trans-unit> | ||
946 | <trans-unit id="1190256911880544559" datatype="html"> | 1091 | <trans-unit id="1190256911880544559" datatype="html"> |
947 | <source>An email with the reset password instructions will be sent to <x id="PH"/>. | 1092 | <source>An email with the reset password instructions will be sent to <x id="PH"/>. The link will expire within 1 hour.</source> |
948 | The link will expire within 1 hour.</source> | ||
949 | <target state="new">An email with the reset password instructions will be sent to <x id="PH"/>. | 1093 | <target state="new">An email with the reset password instructions will be sent to <x id="PH"/>. |
950 | The link will expire within 1 hour.</target> | 1094 | The link will expire within 1 hour.</target> |
951 | 1095 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">126</context></context-group> | |
952 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1096 | </trans-unit> |
953 | <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc" datatype="html"> | 1097 | <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc" datatype="html"> |
954 | <source>Email</source> | 1098 | <source>Email</source> |
955 | <target state="new">Email</target> | 1099 | <target state="translated">E-posta</target> |
956 | 1100 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">107</context></context-group> | |
957 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">107</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group></trans-unit> | 1101 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">45</context></context-group> |
1102 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">47</context></context-group> | ||
1103 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">8</context></context-group> | ||
1104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">4</context></context-group> | ||
1105 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group> | ||
1106 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group> | ||
1107 | </trans-unit> | ||
958 | <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529" datatype="html"> | 1108 | <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529" datatype="html"> |
959 | <source>Email address</source> | 1109 | <source>Email address</source> |
960 | <target state="new">Email address</target> | 1110 | <target state="translated">E-posta adresi</target> |
961 | 1111 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">109</context></context-group> | |
962 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">109</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit><trans-unit id="06c663bf1474713f57551123a46b34318543b67d" datatype="html"> | 1112 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">10</context></context-group> |
963 | <source>Reset</source><target state="new">Reset</target> | 1113 | </trans-unit> |
964 | 1114 | <trans-unit id="06c663bf1474713f57551123a46b34318543b67d" datatype="html"> | |
1115 | <source>Reset</source> | ||
1116 | <target state="translated">Sıfırla</target> | ||
965 | <note priority="1" from="description">Password reset button</note> | 1117 | <note priority="1" from="description">Password reset button</note> |
966 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> | 1118 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">122</context></context-group> |
967 | 1119 | </trans-unit> | |
968 | <trans-unit id="406b08e859ab668ff07056881dcc4390109d4e1d" datatype="html"> | 1120 | <trans-unit id="406b08e859ab668ff07056881dcc4390109d4e1d" datatype="html"> |
969 | <source><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}} "/> </source> | 1121 | <source><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}} "/> </source> |
970 | <target state="new"> | 1122 | <target state="new"> |
971 | <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> | 1123 | <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> |
972 | <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {...} other {...}}"/> | 1124 | <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {...} other {...}}"/> |
973 | </target> | 1125 | </target> |
974 | 1126 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">5</context></context-group> | |
975 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 1127 | </trans-unit> |
976 | <trans-unit id="26b0b148ff87e083300fa9ca213f8ada7fa6211d" datatype="html"> | 1128 | <trans-unit id="26b0b148ff87e083300fa9ca213f8ada7fa6211d" datatype="html"> |
977 | <source>on this instance</source> | 1129 | <source>on this instance</source> |
978 | <target state="new">on this instance</target> | 1130 | <target state="new">on this instance</target> |
979 | 1131 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">7</context></context-group> | |
980 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 1132 | </trans-unit> |
981 | <trans-unit id="cdc5b877341ff8e6009282a299f2f2d6987dbdbe" datatype="html"> | 1133 | <trans-unit id="cdc5b877341ff8e6009282a299f2f2d6987dbdbe" datatype="html"> |
982 | <source>on the vidiverse</source> | 1134 | <source>on the vidiverse</source> |
983 | <target state="new">on the vidiverse</target> | 1135 | <target state="new">on the vidiverse</target> |
984 | 1136 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">8</context></context-group> | |
985 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 1137 | </trans-unit> |
986 | <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa" datatype="html"> | 1138 | <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa" datatype="html"> |
987 | <source>Reset my password</source> | 1139 | <source>Reset my password</source> |
988 | <target state="new">Reset my password</target> | 1140 | <target state="translated">Şifremi sıfırla</target> |
989 | 1141 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">3</context></context-group> | |
990 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 1142 | </trans-unit> |
991 | <trans-unit id="7f3bdcce4b2e8c37cd7f0f6c92ef8cff34b039b8" datatype="html"> | 1143 | <trans-unit id="7f3bdcce4b2e8c37cd7f0f6c92ef8cff34b039b8" datatype="html"> |
992 | <source>Confirm password</source> | 1144 | <source>Confirm password</source> |
993 | <target state="new">Confirm password</target> | 1145 | <target state="translated">Şifreyi doğrula</target> |
994 | 1146 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">19</context></context-group> | |
995 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 1147 | </trans-unit> |
996 | <trans-unit id="3652e5c6e33165264d5271d06cc04ab7123b6df1" datatype="html"> | 1148 | <trans-unit id="3652e5c6e33165264d5271d06cc04ab7123b6df1" datatype="html"> |
997 | <source>Confirmed password</source> | 1149 | <source>Confirmed password</source> |
998 | <target state="new">Confirmed password</target> | 1150 | <target state="new">Confirmed password</target> |
999 | 1151 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">21</context></context-group> | |
1000 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 1152 | </trans-unit> |
1001 | <trans-unit id="8bdf8db5eeeaef83184b489b80c1557b516fb3c3" datatype="html"> | 1153 | <trans-unit id="8bdf8db5eeeaef83184b489b80c1557b516fb3c3" datatype="html"> |
1002 | <source>Reset my password</source> | 1154 | <source>Reset my password</source> |
1003 | <target state="new">Reset my password</target> | 1155 | <target state="new">Reset my password</target> |
1004 | 1156 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">29</context></context-group> | |
1005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8890553633144307762" datatype="html"> | 1157 | </trans-unit> |
1006 | <source>Back</source><target state="new">Back</target> | 1158 | <trans-unit id="8890553633144307762" datatype="html"> |
1159 | <source>Back</source> | ||
1160 | <target state="translated">Geri</target> | ||
1007 | <context-group purpose="location"> | 1161 | <context-group purpose="location"> |
1008 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> | 1162 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> |
1009 | <context context-type="linenumber">41</context> | 1163 | <context context-type="linenumber">41</context> |
1010 | </context-group> | 1164 | </context-group> |
1011 | <note priority="1" from="description">Button on the registration form to go to the previous step</note> | 1165 | <note priority="1" from="description">Button on the registration form to go to the previous step</note> |
1012 | </trans-unit><trans-unit id="3885497195825665706" datatype="html"> | 1166 | </trans-unit> |
1013 | <source>Next</source><target state="new">Next</target> | 1167 | <trans-unit id="3885497195825665706" datatype="html"> |
1168 | <source>Next</source> | ||
1169 | <target state="translated">İleri</target> | ||
1014 | <context-group purpose="location"> | 1170 | <context-group purpose="location"> |
1015 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> | 1171 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> |
1016 | <context context-type="linenumber">42</context> | 1172 | <context context-type="linenumber">42</context> |
1017 | </context-group> | 1173 | </context-group> |
1018 | <note priority="1" from="description">Button on the registration form to go to the previous step</note> | 1174 | <note priority="1" from="description">Button on the registration form to go to the previous step</note> |
1019 | </trans-unit><trans-unit id="5018804994794983050" datatype="html"> | 1175 | </trans-unit> |
1020 | <source>Signup</source><target state="new">Signup</target> | 1176 | <trans-unit id="5018804994794983050" datatype="html"> |
1177 | <source>Signup</source> | ||
1178 | <target state="translated">Kaydol</target> | ||
1021 | <context-group purpose="location"> | 1179 | <context-group purpose="location"> |
1022 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> | 1180 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> |
1023 | <context context-type="linenumber">64</context> | 1181 | <context context-type="linenumber">64</context> |
@@ -1027,157 +1185,158 @@ The link will expire within 1 hour.</target> | |||
1027 | <trans-unit id="4c3960fb1d9b07d1db3b5bda3ee40019211830dc" datatype="html"> | 1185 | <trans-unit id="4c3960fb1d9b07d1db3b5bda3ee40019211830dc" datatype="html"> |
1028 | <source>for <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> | 1186 | <source>for <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> |
1029 | <target state="new">for | 1187 | <target state="new">for |
1030 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> | 1188 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> |
1031 | <x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/> | 1189 | <x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/> |
1032 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> | 1190 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> |
1033 | </target> | 1191 | </target> |
1034 | 1192 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">11</context></context-group> | |
1035 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 1193 | </trans-unit> |
1036 | <trans-unit id="7c603b9ed878097782e2b8908f662e2344b46061" datatype="html"> | 1194 | <trans-unit id="7c603b9ed878097782e2b8908f662e2344b46061" datatype="html"> |
1037 | <source>Filters <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> | 1195 | <source>Filters <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> |
1038 | <target state="new"/> | 1196 | <target state="new"/> |
1039 | 1197 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">21</context></context-group> | |
1040 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 1198 | </trans-unit> |
1041 | <trans-unit id="e2dbf0426cbb0b573faf49dffeb7d5bdf16eda5d"> | 1199 | <trans-unit id="e2dbf0426cbb0b573faf49dffeb7d5bdf16eda5d"> |
1042 | <source>No results found</source> | 1200 | <source>No results found</source> |
1043 | <target> | 1201 | <target> |
1044 | Sonuç bulunamadı | 1202 | Sonuç bulunamadı |
1045 | </target> | 1203 | </target> |
1046 | 1204 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">33</context></context-group> | |
1047 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 1205 | </trans-unit> |
1048 | <trans-unit id="10341623e991a4185990a0c3c76ac2bc3543cc4a" datatype="html"> | 1206 | <trans-unit id="10341623e991a4185990a0c3c76ac2bc3543cc4a" datatype="html"> |
1049 | <source><x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> subscribers </source> | 1207 | <source><x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> subscribers </source> |
1050 | <target state="new"> | 1208 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> abone </target> |
1051 | <x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> subscribers | 1209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">60</context></context-group> |
1052 | </target> | 1210 | </trans-unit> |
1053 | |||
1054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | ||
1055 | <trans-unit id="5cf92a1d527e65908c75633e8484cdd3b6d16b9b" datatype="html"> | 1211 | <trans-unit id="5cf92a1d527e65908c75633e8484cdd3b6d16b9b" datatype="html"> |
1056 | <source>Welcome to PeerTube, dear administrator!</source> | 1212 | <source>Welcome to PeerTube, dear administrator!</source> |
1057 | <target state="new">Welcome to PeerTube, dear administrator!</target> | 1213 | <target state="translated">PeerTube'a hoş geldin, sevgili yönetici!</target> |
1058 | 1214 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">3</context></context-group> | |
1059 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 1215 | </trans-unit> |
1060 | <trans-unit id="fb2ab91ad6091b4a42f4ec08487650a0bc2d541c" datatype="html"> | 1216 | <trans-unit id="fb2ab91ad6091b4a42f4ec08487650a0bc2d541c" datatype="html"> |
1061 | <source>CLI documentation</source> | 1217 | <source>CLI documentation</source> |
1062 | <target state="new"/> | 1218 | <target state="new"/> |
1063 | 1219 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">12</context></context-group> | |
1064 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> | 1220 | </trans-unit> |
1065 | <trans-unit id="65462878ca6d04c826906432816a3df3e048ac87" datatype="html"> | 1221 | <trans-unit id="65462878ca6d04c826906432816a3df3e048ac87" datatype="html"> |
1066 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> | 1222 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> |
1067 | <target state="new">Upload or import videos, parse logs, prune storage directories, reset user password...</target> | 1223 | <target state="new">Upload or import videos, parse logs, prune storage directories, reset user password...</target> |
1068 | 1224 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">15</context></context-group> | |
1069 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 1225 | </trans-unit> |
1070 | <trans-unit id="054dd8ba0dece8069a5a7e538efaca9f58cf81f9" datatype="html"> | 1226 | <trans-unit id="054dd8ba0dece8069a5a7e538efaca9f58cf81f9" datatype="html"> |
1071 | <source>Administer documentation</source> | 1227 | <source>Administer documentation</source> |
1072 | <target state="new"/> | 1228 | <target state="new"/> |
1073 | 1229 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">19</context></context-group> | |
1074 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 1230 | </trans-unit> |
1075 | <trans-unit id="c38a3f5b5eff069d0097527fa40a3f8c4d9c1e4e" datatype="html"> | 1231 | <trans-unit id="c38a3f5b5eff069d0097527fa40a3f8c4d9c1e4e" datatype="html"> |
1076 | <source>Managing users, following other instances, dealing with spammers...</source> | 1232 | <source>Managing users, following other instances, dealing with spammers...</source> |
1077 | <target state="new">Managing users, following other instances, dealing with spammers...</target> | 1233 | <target state="new">Managing users, following other instances, dealing with spammers...</target> |
1078 | 1234 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">22</context></context-group> | |
1079 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 1235 | </trans-unit> |
1080 | <trans-unit id="4e020f13aa4db2285047eba96e50dc716fb5f417" datatype="html"> | 1236 | <trans-unit id="4e020f13aa4db2285047eba96e50dc716fb5f417" datatype="html"> |
1081 | <source>Use documentation</source> | 1237 | <source>Use documentation</source> |
1082 | <target state="new"/> | 1238 | <target state="new"/> |
1083 | 1239 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">26</context></context-group> | |
1084 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 1240 | </trans-unit> |
1085 | <trans-unit id="e1410009f484a2b44b6f15346df65f13f5e77444" datatype="html"> | 1241 | <trans-unit id="e1410009f484a2b44b6f15346df65f13f5e77444" datatype="html"> |
1086 | <source>Setup your account, managing video playlists, discover third-party applications...</source> | 1242 | <source>Setup your account, managing video playlists, discover third-party applications...</source> |
1087 | <target state="new">Setup your account, managing video playlists, discover third-party applications...</target> | 1243 | <target state="new">Setup your account, managing video playlists, discover third-party applications...</target> |
1088 | 1244 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">29</context></context-group> | |
1089 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1245 | </trans-unit> |
1090 | <trans-unit id="6b705cdf0d567cf608b9891a1d912daebac3523e" datatype="html"> | 1246 | <trans-unit id="6b705cdf0d567cf608b9891a1d912daebac3523e" datatype="html"> |
1091 | <source>Useful links</source> | 1247 | <source>Useful links</source> |
1092 | <target state="new">Useful links</target> | 1248 | <target state="translated">Yararlı bağlantılar</target> |
1093 | 1249 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">39</context></context-group> | |
1094 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1250 | </trans-unit> |
1095 | <trans-unit id="908ccbd854d79d50723e7a651b2a0f4dd0557c60" datatype="html"> | 1251 | <trans-unit id="908ccbd854d79d50723e7a651b2a0f4dd0557c60" datatype="html"> |
1096 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> | 1252 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> |
1097 | <target state="new">Official PeerTube website (news, support, contribute...): | 1253 | <target state="new">Official PeerTube website (news, support, contribute...): |
1098 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://joinpeertube.org | 1254 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://joinpeertube.org |
1099 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 1255 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
1100 | </target> | 1256 | </target> |
1101 | 1257 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">42</context></context-group> | |
1102 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1258 | </trans-unit> |
1103 | <trans-unit id="53f7ce6aef94fd128d0058de1cd63da90d062ee6" datatype="html"> | 1259 | <trans-unit id="53f7ce6aef94fd128d0058de1cd63da90d062ee6" datatype="html"> |
1104 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> | 1260 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> |
1105 | <target state="new">Put your instance on the public PeerTube index: | 1261 | <target state="new">Put your instance on the public PeerTube index: |
1106 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://instances.joinpeertube.org/instances | 1262 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://instances.joinpeertube.org/instances |
1107 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 1263 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
1108 | </target> | 1264 | </target> |
1109 | 1265 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">45</context></context-group> | |
1110 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 1266 | </trans-unit> |
1111 | <trans-unit id="351af1021b0298109bfb72c7aa9a27999d110859" datatype="html"> | 1267 | <trans-unit id="351af1021b0298109bfb72c7aa9a27999d110859" datatype="html"> |
1112 | <source>It's time to configure your instance!</source> | 1268 | <source>It's time to configure your instance!</source> |
1113 | <target state="new">It's time to configure your instance!</target> | 1269 | <target state="new">It's time to configure your instance!</target> |
1114 | 1270 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">55</context></context-group> | |
1115 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1271 | </trans-unit> |
1116 | <trans-unit id="cde76f438c580e464940e141584e44ab21809cb6" datatype="html"> | 1272 | <trans-unit id="cde76f438c580e464940e141584e44ab21809cb6" datatype="html"> |
1117 | <source>Choosing your <x id="START_TAG_STRONG"/>instance name<x id="CLOSE_TAG_STRONG"/>, <x id="START_TAG_STRONG"/>setting up a description<x id="CLOSE_TAG_STRONG"/>, specifying <x id="START_TAG_STRONG"/>who you are<x id="CLOSE_TAG_STRONG"/>, why <x id="START_TAG_STRONG"/>you created your instance<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>how long<x id="CLOSE_TAG_STRONG"/> you plan to <x id="START_TAG_STRONG"/>maintain your it<x id="CLOSE_TAG_STRONG"/> is very important for visitors to understand on what type of instance they are. </source> | 1273 | <source>Choosing your <x id="START_TAG_STRONG"/>instance name<x id="CLOSE_TAG_STRONG"/>, <x id="START_TAG_STRONG"/>setting up a description<x id="CLOSE_TAG_STRONG"/>, specifying <x id="START_TAG_STRONG"/>who you are<x id="CLOSE_TAG_STRONG"/>, why <x id="START_TAG_STRONG"/>you created your instance<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>how long<x id="CLOSE_TAG_STRONG"/> you plan to <x id="START_TAG_STRONG"/>maintain your it<x id="CLOSE_TAG_STRONG"/> is very important for visitors to understand on what type of instance they are. </source> |
1118 | <target state="new"/> | 1274 | <target state="new"/> |
1119 | 1275 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group> | |
1120 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit><trans-unit id="2a94cfa351109b958a00ee927cd87ada8da44c1e" datatype="html"> | 1276 | </trans-unit> |
1121 | <source> If you want to open registrations, please decide what <x id="START_TAG_STRONG"/>your moderation rules<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>instance terms of service<x id="CLOSE_TAG_STRONG"/> are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on <x id="START_TAG_STRONG"/>the appropriate<x id="CLOSE_TAG_STRONG"/> PeerTube instance. </source><target state="new"> If you want to open registrations, please decide what <x id="START_TAG_STRONG"/>your moderation rules<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>instance terms of service<x id="CLOSE_TAG_STRONG"/> are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on <x id="START_TAG_STRONG"/>the appropriate<x id="CLOSE_TAG_STRONG"/> PeerTube instance. </target> | 1277 | <trans-unit id="2a94cfa351109b958a00ee927cd87ada8da44c1e" datatype="html"> |
1122 | 1278 | <source>If you want to open registrations, please decide what <x id="START_TAG_STRONG"/>your moderation rules<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>instance terms of service<x id="CLOSE_TAG_STRONG"/> are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on <x id="START_TAG_STRONG"/>the appropriate<x id="CLOSE_TAG_STRONG"/> PeerTube instance. </source> | |
1123 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 1279 | <target state="new"> If you want to open registrations, please decide what <x id="START_TAG_STRONG"/>your moderation rules<x id="CLOSE_TAG_STRONG"/> and <x id="START_TAG_STRONG"/>instance terms of service<x id="CLOSE_TAG_STRONG"/> are, as well as specify the categories and languages and your moderators speak. This way, you will help users to register on <x id="START_TAG_STRONG"/>the appropriate<x id="CLOSE_TAG_STRONG"/> PeerTube instance. </target> |
1124 | 1280 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">64</context></context-group> | |
1281 | </trans-unit> | ||
1125 | <trans-unit id="650b8c3e81746bc33ff276f2ef30bf89fa2d74dd" datatype="html"> | 1282 | <trans-unit id="650b8c3e81746bc33ff276f2ef30bf89fa2d74dd" datatype="html"> |
1126 | <source>Remind me later</source> | 1283 | <source>Remind me later</source> |
1127 | <target state="new">Remind me later</target> | 1284 | <target state="new">Remind me later</target> |
1128 | 1285 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">74</context></context-group> | |
1129 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit> | 1286 | </trans-unit> |
1130 | <trans-unit id="b310fa17f1bbfc4dd61b80c1cfc4116a81a9c76c" datatype="html"> | 1287 | <trans-unit id="b310fa17f1bbfc4dd61b80c1cfc4116a81a9c76c" datatype="html"> |
1131 | <source>Configure my instance</source> | 1288 | <source>Configure my instance</source> |
1132 | <target state="new">Configure my instance</target> | 1289 | <target state="new">Configure my instance</target> |
1133 | 1290 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group> | |
1134 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 1291 | </trans-unit> |
1135 | <trans-unit id="a9af18b4f210f5a19bb2503407923d3f25c57f98" datatype="html"> | 1292 | <trans-unit id="a9af18b4f210f5a19bb2503407923d3f25c57f98" datatype="html"> |
1136 | <source>Configuration warning!</source> | 1293 | <source>Configuration warning!</source> |
1137 | <target state="new">Configuration warning!</target> | 1294 | <target state="new">Configuration warning!</target> |
1138 | 1295 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">3</context></context-group> | |
1139 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 1296 | </trans-unit> |
1140 | <trans-unit id="e30fd615e98eb6ebc28346024a89f00192a98396" datatype="html"> | 1297 | <trans-unit id="e30fd615e98eb6ebc28346024a89f00192a98396" datatype="html"> |
1141 | <source>You enabled user registration on your instance but did not configure the following fields:</source> | 1298 | <source>You enabled user registration on your instance but did not configure the following fields:</source> |
1142 | <target state="new">You enabled user registration on your instance but did not configure the following fields:</target> | 1299 | <target state="new">You enabled user registration on your instance but did not configure the following fields:</target> |
1143 | 1300 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">10</context></context-group> | |
1144 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 1301 | </trans-unit> |
1145 | <trans-unit id="ab7e3d0be94cc55ce997a5f38c679956e66f3936" datatype="html"> | 1302 | <trans-unit id="ab7e3d0be94cc55ce997a5f38c679956e66f3936" datatype="html"> |
1146 | <source>Instance name</source> | 1303 | <source>Instance name</source> |
1147 | <target state="new">Instance name</target> | 1304 | <target state="new">Instance name</target> |
1148 | 1305 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">13</context></context-group> | |
1149 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 1306 | </trans-unit> |
1150 | <trans-unit id="b6e9a7a198c9882894677a0358d22ed79482808a" datatype="html"> | 1307 | <trans-unit id="b6e9a7a198c9882894677a0358d22ed79482808a" datatype="html"> |
1151 | <source>Instance short description</source> | 1308 | <source>Instance short description</source> |
1152 | <target state="new">Instance short description</target> | 1309 | <target state="new">Instance short description</target> |
1153 | 1310 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">14</context></context-group> | |
1154 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 1311 | </trans-unit> |
1155 | <trans-unit id="801cb5b4cc93a5c0a4d89a46b96487d3638f0bc5" datatype="html"> | 1312 | <trans-unit id="801cb5b4cc93a5c0a4d89a46b96487d3638f0bc5" datatype="html"> |
1156 | <source>Who you are</source> | 1313 | <source>Who you are</source> |
1157 | <target state="new">Who you are</target> | 1314 | <target state="new">Who you are</target> |
1158 | 1315 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">16</context></context-group> | |
1159 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 1316 | </trans-unit> |
1160 | <trans-unit id="de688f72fc745cc8481a5e9cc70b8ca9e6f41e2a" datatype="html"> | 1317 | <trans-unit id="de688f72fc745cc8481a5e9cc70b8ca9e6f41e2a" datatype="html"> |
1161 | <source>How long you plan to maintain your instance</source> | 1318 | <source>How long you plan to maintain your instance</source> |
1162 | <target state="new">How long you plan to maintain your instance</target> | 1319 | <target state="new">How long you plan to maintain your instance</target> |
1163 | 1320 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">17</context></context-group> | |
1164 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 1321 | </trans-unit> |
1165 | <trans-unit id="af60a062ecc7c70b278bdb3ba7ad0147abfecf0a" datatype="html"> | 1322 | <trans-unit id="af60a062ecc7c70b278bdb3ba7ad0147abfecf0a" datatype="html"> |
1166 | <source>How you plan to pay your instance</source> | 1323 | <source>How you plan to pay your instance</source> |
1167 | <target state="new">How you plan to pay your instance</target> | 1324 | <target state="new">How you plan to pay your instance</target> |
1168 | 1325 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">18</context></context-group> | |
1169 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 1326 | </trans-unit> |
1170 | <trans-unit id="c69c1bd027bae555557a48123a26d770a93ee473" datatype="html"> | 1327 | <trans-unit id="c69c1bd027bae555557a48123a26d770a93ee473" datatype="html"> |
1171 | <source>How you will moderate your instance</source> | 1328 | <source>How you will moderate your instance</source> |
1172 | <target state="new">How you will moderate your instance</target> | 1329 | <target state="new">How you will moderate your instance</target> |
1173 | 1330 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">20</context></context-group> | |
1174 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 1331 | </trans-unit> |
1175 | <trans-unit id="92ddf3c3a348adc059da6c17c808fa27c315d91c" datatype="html"> | 1332 | <trans-unit id="92ddf3c3a348adc059da6c17c808fa27c315d91c" datatype="html"> |
1176 | <source>Instance terms</source> | 1333 | <source>Instance terms</source> |
1177 | <target state="new">Instance terms</target> | 1334 | <target state="new">Instance terms</target> |
1178 | 1335 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">21</context></context-group> | |
1179 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit><trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6" datatype="html"> | 1336 | </trans-unit> |
1180 | <source>My settings</source><target state="new">My settings</target> | 1337 | <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6" datatype="html"> |
1338 | <source>My settings</source> | ||
1339 | <target state="new">My settings</target> | ||
1181 | <context-group purpose="location"> | 1340 | <context-group purpose="location"> |
1182 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> | 1341 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> |
1183 | <context context-type="linenumber">3</context> | 1342 | <context context-type="linenumber">3</context> |
@@ -1186,8 +1345,10 @@ The link will expire within 1 hour.</target> | |||
1186 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | 1345 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> |
1187 | <context context-type="linenumber">156</context> | 1346 | <context context-type="linenumber">156</context> |
1188 | </context-group> | 1347 | </context-group> |
1189 | </trans-unit><trans-unit id="772fa4cd7612cf9dd6a7fb1a3930756a95825709" datatype="html"> | 1348 | </trans-unit> |
1190 | <source>These settings apply only to your session on this instance.</source><target state="new">These settings apply only to your session on this instance.</target> | 1349 | <trans-unit id="772fa4cd7612cf9dd6a7fb1a3930756a95825709" datatype="html"> |
1350 | <source>These settings apply only to your session on this instance.</source> | ||
1351 | <target state="new">These settings apply only to your session on this instance.</target> | ||
1191 | <context-group purpose="location"> | 1352 | <context-group purpose="location"> |
1192 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> | 1353 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> |
1193 | <context context-type="linenumber">8</context> | 1354 | <context context-type="linenumber">8</context> |
@@ -1197,80 +1358,82 @@ The link will expire within 1 hour.</target> | |||
1197 | <source>Please consider configuring these fields to help people to choose <x id="START_TAG_STRONG"/>the appropriate instance<x id="CLOSE_TAG_STRONG"/>. Without them, your instance may not be referenced on the <x id="START_LINK"/>JoinPeerTube website<x id="CLOSE_LINK"/>. </source> | 1358 | <source>Please consider configuring these fields to help people to choose <x id="START_TAG_STRONG"/>the appropriate instance<x id="CLOSE_TAG_STRONG"/>. Without them, your instance may not be referenced on the <x id="START_LINK"/>JoinPeerTube website<x id="CLOSE_LINK"/>. </source> |
1198 | <target state="new"> | 1359 | <target state="new"> |
1199 | Please consider configuring these fields to help people to choose | 1360 | Please consider configuring these fields to help people to choose |
1200 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>the appropriate instance | 1361 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>the appropriate instance |
1201 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. | 1362 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. |
1202 | Without them, your instance may not be referenced on the | 1363 | Without them, your instance may not be referenced on the |
1203 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>JoinPeerTube website | 1364 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>JoinPeerTube website |
1204 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | 1365 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. |
1205 | 1366 | ||
1206 | </target> | 1367 | </target> |
1207 | 1368 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">25</context></context-group> | |
1208 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1369 | </trans-unit> |
1209 | <trans-unit id="7d438f72f9985c4d06ed4fe80c90afc2e1df34d2" datatype="html"> | 1370 | <trans-unit id="7d438f72f9985c4d06ed4fe80c90afc2e1df34d2" datatype="html"> |
1210 | <source>Don't show me this warning anymore</source> | 1371 | <source>Don't show me this warning anymore</source> |
1211 | <target state="new">Don't show me this warning anymore</target> | 1372 | <target state="new">Don't show me this warning anymore</target> |
1212 | 1373 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">33</context></context-group> | |
1213 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 1374 | </trans-unit> |
1214 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html"> | 1375 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html"> |
1215 | <source>Close</source> | 1376 | <source>Close</source> |
1216 | <target state="new">Close</target> | 1377 | <target state="new">Close</target> |
1217 | 1378 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group> | |
1218 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit><trans-unit id="5d3bc02dfb6c9b6fdd716f77c487a779ba6d6cc2" datatype="html"> | 1379 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">34</context></context-group> |
1219 | <source>Update live settings</source><target state="new">Update live settings</target> | 1380 | </trans-unit> |
1220 | 1381 | <trans-unit id="5d3bc02dfb6c9b6fdd716f77c487a779ba6d6cc2" datatype="html"> | |
1221 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1382 | <source>Update live settings</source> |
1383 | <target state="new">Update live settings</target> | ||
1384 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">39</context></context-group> | ||
1385 | </trans-unit> | ||
1222 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1386 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1223 | <source>Configure</source> | 1387 | <source>Configure</source> |
1224 | <target state="new"> | 1388 | <target state="new"> |
1225 | Configure | 1389 | Configure |
1226 | </target> | 1390 | </target> |
1227 | 1391 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">43</context></context-group> | |
1228 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | 1392 | </trans-unit> |
1229 | <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96"> | 1393 | <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96"> |
1230 | <source>Change the language</source> | 1394 | <source>Change the language</source> |
1231 | <target>Dili değiştir</target> | 1395 | <target>Dili değiştir</target> |
1232 | 1396 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/language-chooser.component.html</context><context context-type="linenumber">3</context></context-group> | |
1233 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/language-chooser.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 1397 | </trans-unit> |
1234 | <trans-unit id="1c98d728375e7bd5b166d1aeb29485ef8b5d6e28" datatype="html"> | 1398 | <trans-unit id="1c98d728375e7bd5b166d1aeb29485ef8b5d6e28" datatype="html"> |
1235 | <source>Help to translate PeerTube!</source> | 1399 | <source>Help to translate PeerTube!</source> |
1236 | <target state="new">Help to translate PeerTube!</target> | 1400 | <target state="translated">PeerTube'u çevirmeye yardım edin!</target> |
1237 | 1401 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/language-chooser.component.html</context><context context-type="linenumber">9</context></context-group> | |
1238 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/language-chooser.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 1402 | </trans-unit> |
1239 | <trans-unit id="608d7164ed2d996dc827b17cd7b6f5915c617be4" datatype="html"> | 1403 | <trans-unit id="608d7164ed2d996dc827b17cd7b6f5915c617be4" datatype="html"> |
1240 | <source>Public profile</source> | 1404 | <source>Public profile</source> |
1241 | <target state="new">Public profile</target> | 1405 | <target state="translated">Herkese açık profil</target> |
1242 | 1406 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">23</context></context-group> | |
1243 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 1407 | </trans-unit> |
1244 | |||
1245 | |||
1246 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1408 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1247 | <source>Interface:</source> | 1409 | <source>Interface:</source> |
1248 | <target state="new">Interface:</target> | 1410 | <target state="translated">Arayüz:</target> |
1249 | 1411 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">30</context></context-group> | |
1250 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 1412 | </trans-unit> |
1251 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1413 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1252 | <source>Videos:</source> | 1414 | <source>Videos:</source> |
1253 | <target state="new">Videos:</target> | 1415 | <target state="translated">Videolar:</target> |
1254 | 1416 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">37</context></context-group> | |
1255 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> | 1417 | </trans-unit> |
1256 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1418 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1257 | <source>Sensitive:</source> | 1419 | <source>Sensitive:</source> |
1258 | <target state="new">Sensitive:</target> | 1420 | <target state="translated">Hassas:</target> |
1259 | 1421 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">46</context></context-group> | |
1260 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 1422 | </trans-unit> |
1261 | |||
1262 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1423 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1263 | <source>Help share videos</source> | 1424 | <source>Help share videos</source> |
1264 | <target state="new">Help share videos</target> | 1425 | <target state="new">Help share videos</target> |
1265 | 1426 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">52</context></context-group> | |
1266 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 1427 | </trans-unit> |
1267 | |||
1268 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1428 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1269 | <source>Keyboard shortcuts</source> | 1429 | <source>Keyboard shortcuts</source> |
1270 | <target state="new">Keyboard shortcuts</target> | 1430 | <target state="new">Keyboard shortcuts</target> |
1271 | 1431 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">178</context></context-group> | |
1272 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">178</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit><trans-unit id="5ef7ce1bada0c3d3b4e5e299dad0d336f7897a34" datatype="html"> | 1432 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">61</context></context-group> |
1273 | <source>powered by PeerTube - CopyLeft 2015-2021</source><target state="new">powered by PeerTube - CopyLeft 2015-2021</target> | 1433 | </trans-unit> |
1434 | <trans-unit id="5ef7ce1bada0c3d3b4e5e299dad0d336f7897a34" datatype="html"> | ||
1435 | <source>powered by PeerTube - CopyLeft 2015-2021</source> | ||
1436 | <target state="new">powered by PeerTube - CopyLeft 2015-2021</target> | ||
1274 | <context-group purpose="location"> | 1437 | <context-group purpose="location"> |
1275 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> | 1438 | <context context-type="sourcefile">src/app/menu/menu.component.html</context> |
1276 | <context context-type="linenumber">183</context> | 1439 | <context context-type="linenumber">183</context> |
@@ -1278,94 +1441,104 @@ The link will expire within 1 hour.</target> | |||
1278 | </trans-unit> | 1441 | </trans-unit> |
1279 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1442 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1280 | <source>Help</source> | 1443 | <source>Help</source> |
1281 | <target state="new">Help</target> | 1444 | <target state="translated">Yardım</target> |
1282 | 1445 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">174</context></context-group> | |
1283 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">174</context></context-group></trans-unit> | 1446 | </trans-unit> |
1284 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1447 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1285 | <source>Get help using PeerTube</source> | 1448 | <source>Get help using PeerTube</source> |
1286 | <target state="new">Get help using PeerTube</target> | 1449 | <target state="new">Get help using PeerTube</target> |
1287 | 1450 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">174</context></context-group> | |
1288 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">174</context></context-group></trans-unit> | 1451 | </trans-unit> |
1289 | |||
1290 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1452 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1291 | <source>powered by PeerTube</source> | 1453 | <source>powered by PeerTube</source> |
1292 | <target state="new">powered by PeerTube</target> | 1454 | <target state="new">powered by PeerTube</target> |
1293 | 1455 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">184</context></context-group> | |
1294 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">184</context></context-group></trans-unit> | 1456 | </trans-unit> |
1295 | |||
1296 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> | 1457 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> |
1297 | <source>Log out</source> | 1458 | <source>Log out</source> |
1298 | <target state="new">Log out</target> | 1459 | <target state="translated">Çıkış yap</target> |
1299 | 1460 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group> | |
1300 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="e4825b5d86d89ae0f4c797ba256f66fd8abd4ee6" datatype="html"> | 1461 | </trans-unit> |
1301 | <source>My account</source><target state="new">My account</target> | 1462 | <trans-unit id="e4825b5d86d89ae0f4c797ba256f66fd8abd4ee6" datatype="html"> |
1302 | 1463 | <source>My account</source> | |
1303 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">77</context></context-group></trans-unit><trans-unit id="4ef4f031c147fb9ee0168bc6eacb78de180d7432" datatype="html"> | 1464 | <target state="translated">Hesabım</target> |
1304 | <source>My library</source><target state="new">My library</target> | 1465 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">77</context></context-group> |
1305 | 1466 | </trans-unit> | |
1306 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1467 | <trans-unit id="4ef4f031c147fb9ee0168bc6eacb78de180d7432" datatype="html"> |
1468 | <source>My library</source> | ||
1469 | <target state="translated">Kütüphanem</target> | ||
1470 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group> | ||
1471 | </trans-unit> | ||
1307 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87" datatype="html"> | 1472 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87" datatype="html"> |
1308 | <source>Create an account</source> | 1473 | <source>Create an account</source> |
1309 | <target state="new">Create an account</target> | 1474 | <target state="translated">Hesap oluştur</target> |
1310 | 1475 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">94</context></context-group> | |
1311 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit><trans-unit id="618ca563e3091faf22978665282787c282a867b8" datatype="html"> | 1476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">50</context></context-group> |
1312 | <source>IN MY LIBRARY</source><target state="new">IN MY LIBRARY</target> | 1477 | </trans-unit> |
1313 | 1478 | <trans-unit id="618ca563e3091faf22978665282787c282a867b8" datatype="html"> | |
1314 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">98</context></context-group></trans-unit> | 1479 | <source>IN MY LIBRARY</source> |
1315 | 1480 | <target state="new">IN MY LIBRARY</target> | |
1316 | 1481 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">98</context></context-group> | |
1317 | 1482 | </trans-unit> | |
1318 | <trans-unit id="3058024914967508975" datatype="html"> | 1483 | <trans-unit id="3058024914967508975" datatype="html"> |
1319 | <source>My videos</source> | 1484 | <source>My videos</source> |
1320 | <target state="new">My videos</target> | 1485 | <target state="translated">Videolarım</target> |
1321 | 1486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">77</context></context-group> | |
1322 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">58</context></context-group></trans-unit><trans-unit id="3108704604266608109" datatype="html"> | 1487 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">58</context></context-group> |
1323 | <source>My video imports</source><target state="new">My video imports</target> | 1488 | </trans-unit> |
1324 | 1489 | <trans-unit id="3108704604266608109" datatype="html"> | |
1325 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">90</context></context-group></trans-unit> | 1490 | <source>My video imports</source> |
1491 | <target state="new">My video imports</target> | ||
1492 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">90</context></context-group> | ||
1493 | </trans-unit> | ||
1326 | <trans-unit id="7545420287297803988" datatype="html"> | 1494 | <trans-unit id="7545420287297803988" datatype="html"> |
1327 | <source>My playlists</source> | 1495 | <source>My playlists</source> |
1328 | <target state="new">My playlists</target> | 1496 | <target state="translated">Oynatma listelerim</target> |
1329 | 1497 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">40</context></context-group> | |
1330 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">40</context></context-group></trans-unit><trans-unit id="949618577357088829" datatype="html"> | 1498 | </trans-unit> |
1331 | <source>Create a new playlist</source><target state="new">Create a new playlist</target> | 1499 | <trans-unit id="949618577357088829" datatype="html"> |
1332 | 1500 | <source>Create a new playlist</source> | |
1333 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1501 | <target state="translated">Yeni bir oynatma listesi oluştur</target> |
1502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">49</context></context-group> | ||
1503 | </trans-unit> | ||
1334 | <trans-unit id="2527931602940887636" datatype="html"> | 1504 | <trans-unit id="2527931602940887636" datatype="html"> |
1335 | <source>My subscriptions</source> | 1505 | <source>My subscriptions</source> |
1336 | <target state="new">My subscriptions</target> | 1506 | <target state="translated">Aboneliklerim</target> |
1337 | 1507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">99</context></context-group> | |
1338 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">99</context></context-group></trans-unit> | 1508 | </trans-unit> |
1339 | |||
1340 | <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238" datatype="html"> | 1509 | <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238" datatype="html"> |
1341 | <source>Videos</source> | 1510 | <source>Videos</source> |
1342 | <target state="new">Videos</target> | 1511 | <target state="translated">Videolar</target> |
1343 | 1512 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group> | |
1344 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit><trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> | 1513 | </trans-unit> |
1345 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source><target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | 1514 | <trans-unit id="2a95ee9e381f834e55527edcbb3cb882ff0aef79" datatype="html"> |
1346 | 1515 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> | |
1347 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> | 1516 | <target state="translated">Arayüz: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> |
1517 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group> | ||
1518 | </trans-unit> | ||
1348 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1519 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1349 | <source>Playlists</source> | 1520 | <source>Playlists</source> |
1350 | <target state="new">Playlists</target> | 1521 | <target state="translated">Oynatma listeleri</target> |
1351 | 1522 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group> | |
1352 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> | 1523 | </trans-unit> |
1353 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> | 1524 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> |
1354 | <source>Subscriptions</source> | 1525 | <source>Subscriptions</source> |
1355 | <target state="new">Subscriptions</target> | 1526 | <target state="translated">Abonelikler</target> |
1356 | 1527 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">112</context></context-group> | |
1357 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">112</context></context-group></trans-unit> | 1528 | </trans-unit> |
1358 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> | 1529 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> |
1359 | <source>History</source> | 1530 | <source>History</source> |
1360 | <target state="new">History</target> | 1531 | <target state="translated">Geçmiş</target> |
1361 | 1532 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group> | |
1362 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> | 1533 | </trans-unit> |
1363 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1534 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1364 | <source>VIDEOS</source> | 1535 | <source>VIDEOS</source> |
1365 | <target state="new">VIDEOS</target> | 1536 | <target state="translated">VİDEOLAR</target> |
1366 | 1537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">411</context></context-group> | |
1367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">411</context></context-group></trans-unit><trans-unit id="58c5c598fe5cdb9aeb4425ed9609a3eafa671158" datatype="html"> | 1538 | </trans-unit> |
1368 | <source>Allow import with HTTP URL (e.g. YouTube)</source><target state="new">Allow import with HTTP URL (e.g. YouTube)</target> | 1539 | <trans-unit id="58c5c598fe5cdb9aeb4425ed9609a3eafa671158" datatype="html"> |
1540 | <source>Allow import with HTTP URL (e.g. YouTube)</source> | ||
1541 | <target state="new">Allow import with HTTP URL (e.g. YouTube)</target> | ||
1369 | <context-group purpose="location"> | 1542 | <context-group purpose="location"> |
1370 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 1543 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
1371 | <context context-type="linenumber">422</context> | 1544 | <context context-type="linenumber">422</context> |
@@ -1373,377 +1546,418 @@ The link will expire within 1 hour.</target> | |||
1373 | </trans-unit> | 1546 | </trans-unit> |
1374 | <trans-unit id="411ca58f59b00246e15b161e07409df55b5eb6db" datatype="html"> | 1547 | <trans-unit id="411ca58f59b00246e15b161e07409df55b5eb6db" datatype="html"> |
1375 | <source>Discover</source> | 1548 | <source>Discover</source> |
1376 | <target state="new">Discover</target> | 1549 | <target state="translated">Keşfet</target> |
1377 | 1550 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group> | |
1378 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/overview/video-overview.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 1551 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/overview/video-overview.component.html</context><context context-type="linenumber">1</context></context-group> |
1552 | </trans-unit> | ||
1379 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1553 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1380 | <source>Trending</source> | 1554 | <source>Trending</source> |
1381 | <target>Öne çıkanlar</target> | 1555 | <target>Öne çıkanlar</target> |
1382 | 1556 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group> | |
1383 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> | 1557 | </trans-unit> |
1384 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1558 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1385 | <source>Most liked</source> | 1559 | <source>Most liked</source> |
1386 | <target state="new">Most liked</target> | 1560 | <target state="translated">En beğenilenler</target> |
1387 | 1561 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">137</context></context-group> | |
1388 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">137</context></context-group></trans-unit> | 1562 | </trans-unit> |
1389 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1563 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1390 | <source>Recently added</source> | 1564 | <source>Recently added</source> |
1391 | <target>Son eklenenler</target> | 1565 | <target>Son eklenenler</target> |
1392 | 1566 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">142</context></context-group> | |
1393 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">142</context></context-group></trans-unit> | 1567 | </trans-unit> |
1394 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> | 1568 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> |
1395 | <source>Administration</source> | 1569 | <source>Administration</source> |
1396 | <target state="new">Administration</target> | 1570 | <target state="new">Administration</target> |
1397 | 1571 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">87</context></context-group> | |
1398 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> | 1572 | </trans-unit> |
1399 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1573 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1400 | <source>About</source> | 1574 | <source>About</source> |
1401 | <target>Hakkında</target> | 1575 | <target>Hakkında</target> |
1402 | 1576 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group> | |
1403 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 1577 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context><context context-type="linenumber">1</context></context-group> |
1578 | </trans-unit> | ||
1404 | <trans-unit id="34746fb1c7f3d2194d99652bdff89e6e14c9c4f4" datatype="html"> | 1579 | <trans-unit id="34746fb1c7f3d2194d99652bdff89e6e14c9c4f4" datatype="html"> |
1405 | <source>Contact</source> | 1580 | <source>Contact</source> |
1406 | <target state="new">Contact</target> | 1581 | <target state="translated">İletişim</target> |
1407 | 1582 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">173</context></context-group> | |
1408 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">173</context></context-group></trans-unit> | 1583 | </trans-unit> |
1409 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> | 1584 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> |
1410 | <source>View your notifications</source> | 1585 | <source>View your notifications</source> |
1411 | <target state="new">View your notifications</target> | 1586 | <target state="translated">Bildirimlerinize bakın</target> |
1412 | 1587 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">3</context></context-group> | |
1413 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 1588 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">11</context></context-group> |
1589 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">11</context></context-group> | ||
1590 | </trans-unit> | ||
1414 | <trans-unit id="8bcabdf6b16cad0313a86c7e940c5e3ad7f9f8ab" datatype="html"> | 1591 | <trans-unit id="8bcabdf6b16cad0313a86c7e940c5e3ad7f9f8ab" datatype="html"> |
1415 | <source>Notifications</source> | 1592 | <source>Notifications</source> |
1416 | <target state="new">Notifications</target> | 1593 | <target state="translated">Bildirimler</target> |
1417 | 1594 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">22</context></context-group> | |
1418 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 1595 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">1</context></context-group> |
1596 | </trans-unit> | ||
1419 | <trans-unit id="1da23f4068fd3796fbcb24d0c42bb62f92c96829" datatype="html"> | 1597 | <trans-unit id="1da23f4068fd3796fbcb24d0c42bb62f92c96829" datatype="html"> |
1420 | <source>Mark all as read</source> | 1598 | <source>Mark all as read</source> |
1421 | <target state="new">Mark all as read</target> | 1599 | <target state="new">Mark all as read</target> |
1422 | 1600 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">27</context></context-group> | |
1423 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 1601 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">27</context></context-group> |
1602 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">20</context></context-group> | ||
1603 | </trans-unit> | ||
1424 | <trans-unit id="341e026e3f317aa3164916cc63a059c961a78b81" datatype="html"> | 1604 | <trans-unit id="341e026e3f317aa3164916cc63a059c961a78b81" datatype="html"> |
1425 | <source>Update your notification preferences</source> | 1605 | <source>Update your notification preferences</source> |
1426 | <target state="new">Update your notification preferences</target> | 1606 | <target state="new">Update your notification preferences</target> |
1427 | 1607 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">31</context></context-group> | |
1428 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 1608 | </trans-unit> |
1429 | <trans-unit id="3d1b5c9cd76948c04fdb7bb3fe51b6c1242c1bd5" datatype="html"> | 1609 | <trans-unit id="3d1b5c9cd76948c04fdb7bb3fe51b6c1242c1bd5" datatype="html"> |
1430 | <source>See all your notifications</source> | 1610 | <source>See all your notifications</source> |
1431 | <target state="new">See all your notifications</target> | 1611 | <target state="new">See all your notifications</target> |
1432 | 1612 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">49</context></context-group> | |
1433 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit><trans-unit id="4424964105331349857" datatype="html"> | 1613 | </trans-unit> |
1434 | <source>I'm a teapot</source><target state="new">I'm a teapot</target> | 1614 | <trans-unit id="4424964105331349857" datatype="html"> |
1615 | <source>I'm a teapot</source> | ||
1616 | <target state="new">I'm a teapot</target> | ||
1435 | <context-group purpose="location"> | 1617 | <context-group purpose="location"> |
1436 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.ts</context> | 1618 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.ts</context> |
1437 | <context context-type="linenumber">20</context> | 1619 | <context context-type="linenumber">20</context> |
1438 | </context-group> | 1620 | </context-group> |
1439 | </trans-unit><trans-unit id="75183663cb423cbc64e9443f38b091e65cf71ceb" datatype="html"> | 1621 | </trans-unit> |
1440 | <source>That's an error.</source><target state="new">That's an error.</target> | 1622 | <trans-unit id="75183663cb423cbc64e9443f38b091e65cf71ceb" datatype="html"> |
1623 | <source>That's an error.</source> | ||
1624 | <target state="new">That's an error.</target> | ||
1441 | <context-group purpose="location"> | 1625 | <context-group purpose="location"> |
1442 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1626 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1443 | <context context-type="linenumber">4</context> | 1627 | <context context-type="linenumber">4</context> |
1444 | </context-group> | 1628 | </context-group> |
1445 | </trans-unit><trans-unit id="09ee94b4e53e53026dbd591978aaa92901a8b67e" datatype="html"> | 1629 | </trans-unit> |
1446 | <source> We couldn't find any ressource tied to the URL <x id="INTERPOLATION" equiv-text="e URL {{ pathn"/> you were looking for. </source><target state="new"> We couldn't find any ressource tied to the URL <x id="INTERPOLATION" equiv-text="e URL {{ pathn"/> you were looking for. </target> | 1630 | <trans-unit id="09ee94b4e53e53026dbd591978aaa92901a8b67e" datatype="html"> |
1631 | <source>We couldn't find any ressource tied to the URL <x id="INTERPOLATION" equiv-text="e URL {{ pathn"/> you were looking for. </source> | ||
1632 | <target state="new"> We couldn't find any ressource tied to the URL <x id="INTERPOLATION" equiv-text="e URL {{ pathn"/> you were looking for. </target> | ||
1447 | <context-group purpose="location"> | 1633 | <context-group purpose="location"> |
1448 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1634 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1449 | <context context-type="linenumber">6,8</context> | 1635 | <context context-type="linenumber">6,8</context> |
1450 | </context-group> | 1636 | </context-group> |
1451 | </trans-unit><trans-unit id="c2c0aec88a83dd3aabac669264c432058f9e197e" datatype="html"> | 1637 | </trans-unit> |
1452 | <source>Possible reasons:</source><target state="new">Possible reasons:</target> | 1638 | <trans-unit id="c2c0aec88a83dd3aabac669264c432058f9e197e" datatype="html"> |
1639 | <source>Possible reasons:</source> | ||
1640 | <target state="translated">Muhtemel sebepler:</target> | ||
1453 | <context-group purpose="location"> | 1641 | <context-group purpose="location"> |
1454 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1642 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1455 | <context context-type="linenumber">11</context> | 1643 | <context context-type="linenumber">11</context> |
1456 | </context-group> | 1644 | </context-group> |
1457 | <note priority="1" from="description">Possible reasons preceding a list of reasons a `Not Found` error page may occur</note> | 1645 | <note priority="1" from="description">Possible reasons preceding a list of reasons a `Not Found` error page may occur</note> |
1458 | </trans-unit><trans-unit id="5ddf9d42947dae74a85539c13e487932a157fc74" datatype="html"> | 1646 | </trans-unit> |
1459 | <source>The page may have been moved or deleted</source><target state="new">The page may have been moved or deleted</target> | 1647 | <trans-unit id="5ddf9d42947dae74a85539c13e487932a157fc74" datatype="html"> |
1648 | <source>The page may have been moved or deleted</source> | ||
1649 | <target state="translated">Sayfa taşınmış ya da silinmiş olabilir</target> | ||
1460 | <context-group purpose="location"> | 1650 | <context-group purpose="location"> |
1461 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1651 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1462 | <context context-type="linenumber">14</context> | 1652 | <context context-type="linenumber">14</context> |
1463 | </context-group> | 1653 | </context-group> |
1464 | </trans-unit><trans-unit id="ed052af4856de46aa0482d05b23b393619689cd2" datatype="html"> | 1654 | </trans-unit> |
1465 | <source>You may have used an outdated or broken link</source><target state="new">You may have used an outdated or broken link</target> | 1655 | <trans-unit id="ed052af4856de46aa0482d05b23b393619689cd2" datatype="html"> |
1656 | <source>You may have used an outdated or broken link</source> | ||
1657 | <target state="translated">Eskimiş ya da hatalı bir bağlantı kullanmış olabilirsiniz</target> | ||
1466 | <context-group purpose="location"> | 1658 | <context-group purpose="location"> |
1467 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1659 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1468 | <context context-type="linenumber">15</context> | 1660 | <context context-type="linenumber">15</context> |
1469 | </context-group> | 1661 | </context-group> |
1470 | </trans-unit><trans-unit id="b274f3be0260cd15f51c8d2de3387ec128a85083" datatype="html"> | 1662 | </trans-unit> |
1471 | <source>You may have typed the address or URL incorrectly</source><target state="new">You may have typed the address or URL incorrectly</target> | 1663 | <trans-unit id="b274f3be0260cd15f51c8d2de3387ec128a85083" datatype="html"> |
1664 | <source>You may have typed the address or URL incorrectly</source> | ||
1665 | <target state="translated">Adresi ya da URL'yi yanlış yazmış olabilirsiniz</target> | ||
1472 | <context-group purpose="location"> | 1666 | <context-group purpose="location"> |
1473 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1667 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1474 | <context context-type="linenumber">16</context> | 1668 | <context context-type="linenumber">16</context> |
1475 | </context-group> | 1669 | </context-group> |
1476 | </trans-unit><trans-unit id="18c5cc5c98ef03d23cde91a7dc64ee46cc49ec95" datatype="html"> | 1670 | </trans-unit> |
1477 | <source> The requested entity body blends sweet bits with a mellow earthiness. </source><target state="new"> The requested entity body blends sweet bits with a mellow earthiness. </target> | 1671 | <trans-unit id="18c5cc5c98ef03d23cde91a7dc64ee46cc49ec95" datatype="html"> |
1672 | <source>The requested entity body blends sweet bits with a mellow earthiness.</source> | ||
1673 | <target state="new"> The requested entity body blends sweet bits with a mellow earthiness. </target> | ||
1478 | <context-group purpose="location"> | 1674 | <context-group purpose="location"> |
1479 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1675 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1480 | <context context-type="linenumber">26,27</context> | 1676 | <context context-type="linenumber">26,27</context> |
1481 | </context-group> | 1677 | </context-group> |
1482 | <note priority="1" from="description">Description of a tea flavour, keeping the 'requested entity body' as a technical expression referring to a web request</note> | 1678 | <note priority="1" from="description">Description of a tea flavour, keeping the 'requested entity body' as a technical expression referring to a web request</note> |
1483 | </trans-unit><trans-unit id="68ffb388e7bfe4b0a6f9f6faef194f536a195c09" datatype="html"> | 1679 | </trans-unit> |
1484 | <source>Sepia seems to like it.</source><target state="new">Sepia seems to like it.</target> | 1680 | <trans-unit id="68ffb388e7bfe4b0a6f9f6faef194f536a195c09" datatype="html"> |
1681 | <source>Sepia seems to like it.</source> | ||
1682 | <target state="new">Sepia seems to like it.</target> | ||
1485 | <context-group purpose="location"> | 1683 | <context-group purpose="location"> |
1486 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1684 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1487 | <context context-type="linenumber">28</context> | 1685 | <context context-type="linenumber">28</context> |
1488 | </context-group> | 1686 | </context-group> |
1489 | <note priority="1" from="description">This is about Sepia's tea</note> | 1687 | <note priority="1" from="description">This is about Sepia's tea</note> |
1490 | </trans-unit><trans-unit id="2971365540217107489" datatype="html"> | 1688 | </trans-unit> |
1491 | <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source><target state="new">Media is too large for the server. Please contact you administrator if you want to increase the limit size.</target> | 1689 | <trans-unit id="2971365540217107489" datatype="html"> |
1492 | 1690 | <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source> | |
1493 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">62</context></context-group></trans-unit> | 1691 | <target state="new">Media is too large for the server. Please contact you administrator if you want to increase the limit size.</target> |
1692 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">62</context></context-group> | ||
1693 | </trans-unit> | ||
1494 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1694 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1495 | <source>Search videos, channels…</source> | 1695 | <source>Search videos, channels…</source> |
1496 | <target state="new">Search videos, channels…</target> | 1696 | <target state="translated">Videolarla kanalları arayın</target> |
1497 | 1697 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">3</context></context-group> | |
1498 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 1698 | </trans-unit> |
1499 | <trans-unit id="90ce30ddedd5892740bb41e9ead736cd2c0f9b53" datatype="html"> | 1699 | <trans-unit id="90ce30ddedd5892740bb41e9ead736cd2c0f9b53" datatype="html"> |
1500 | <source>GLOBAL SEARCH</source> | 1700 | <source>GLOBAL SEARCH</source> |
1501 | <target state="new">GLOBAL SEARCH</target> | 1701 | <target state="new">GLOBAL SEARCH</target> |
1502 | 1702 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">26</context></context-group> | |
1503 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 1703 | </trans-unit> |
1504 | <trans-unit id="b2f3e08a790518414d240fbe2c3c116c6f83c275" datatype="html"> | 1704 | <trans-unit id="b2f3e08a790518414d240fbe2c3c116c6f83c275" datatype="html"> |
1505 | <source>using <x id="INTERPOLATION"/></source> | 1705 | <source>using <x id="INTERPOLATION"/></source> |
1506 | <target state="new">using | 1706 | <target state="new">using |
1507 | <x id="INTERPOLATION" equiv-text="{{ serverConfig.search.searchIndex.url }}"/> | 1707 | <x id="INTERPOLATION" equiv-text="{{ serverConfig.search.searchIndex.url }}"/> |
1508 | </target> | 1708 | </target> |
1509 | 1709 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">28</context></context-group> | |
1510 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 1710 | </trans-unit> |
1511 | <trans-unit id="44f26a1c56d73d4763225ba2e6d5091e0cad1b7c" datatype="html"> | 1711 | <trans-unit id="44f26a1c56d73d4763225ba2e6d5091e0cad1b7c" datatype="html"> |
1512 | <source>Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent.</source> | 1712 | <source>Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent.</source> |
1513 | <target state="new">Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent.</target> | 1713 | <target state="new">Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent.</target> |
1514 | 1714 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">32</context></context-group> | |
1515 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 1715 | </trans-unit> |
1516 | <trans-unit id="ee697ded3eb6909ca0e619ab5cc9647cbd849da5" datatype="html"> | 1716 | <trans-unit id="ee697ded3eb6909ca0e619ab5cc9647cbd849da5" datatype="html"> |
1517 | <source>ADVANCED SEARCH</source> | 1717 | <source>ADVANCED SEARCH</source> |
1518 | <target state="new">ADVANCED SEARCH</target> | 1718 | <target state="translated">GELİŞMİŞ ARAMA</target> |
1519 | 1719 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">38</context></context-group> | |
1520 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 1720 | </trans-unit> |
1521 | <trans-unit id="8e799fee4b3df7ea53786f096380f81c78a77efd" datatype="html"> | 1721 | <trans-unit id="8e799fee4b3df7ea53786f096380f81c78a77efd" datatype="html"> |
1522 | <source>any instance</source> | 1722 | <source>any instance</source> |
1523 | <target state="new">any instance</target> | 1723 | <target state="new">any instance</target> |
1524 | 1724 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">41</context></context-group> | |
1525 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 1725 | </trans-unit> |
1526 | <trans-unit id="36a1080014918cc9c4ef8c0d3d5f4d3ae88176bd" datatype="html"> | 1726 | <trans-unit id="36a1080014918cc9c4ef8c0d3d5f4d3ae88176bd" datatype="html"> |
1527 | <source>only followed instances</source> | 1727 | <source>only followed instances</source> |
1528 | <target state="new">only followed instances</target> | 1728 | <target state="new">only followed instances</target> |
1529 | 1729 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">42</context></context-group> | |
1530 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1730 | </trans-unit> |
1531 | <trans-unit id="e5a60e5f83aad776726b8b9e7ff1b69f047a8416" datatype="html"> | 1731 | <trans-unit id="e5a60e5f83aad776726b8b9e7ff1b69f047a8416" datatype="html"> |
1532 | <source>Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows.</source> | 1732 | <source>Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows.</source> |
1533 | <target state="new">Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows.</target> | 1733 | <target state="new">Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows.</target> |
1534 | 1734 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">40</context></context-group> | |
1535 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> | 1735 | </trans-unit> |
1536 | <trans-unit id="648ca3b1ac41763033a412ead17c4a3dd71545be" datatype="html"> | 1736 | <trans-unit id="648ca3b1ac41763033a412ead17c4a3dd71545be" datatype="html"> |
1537 | <source>will list the matching channel</source> | 1737 | <source>will list the matching channel</source> |
1538 | <target state="new">will list the matching channel</target> | 1738 | <target state="new">will list the matching channel</target> |
1539 | 1739 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">49</context></context-group> | |
1540 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">49</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 1740 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">52</context></context-group> |
1741 | </trans-unit> | ||
1541 | <trans-unit id="48d27fa96b882d9c5c2a779376328790d80378eb" datatype="html"> | 1742 | <trans-unit id="48d27fa96b882d9c5c2a779376328790d80378eb" datatype="html"> |
1542 | <source>will list the matching video</source> | 1743 | <source>will list the matching video</source> |
1543 | <target state="new">will list the matching video</target> | 1744 | <target state="new">will list the matching video</target> |
1544 | 1745 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">55</context></context-group> | |
1545 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1746 | </trans-unit> |
1546 | <trans-unit id="25d438ce4c6d14835921c34bda6cc88f4fe5b1b4" datatype="html"> | 1747 | <trans-unit id="25d438ce4c6d14835921c34bda6cc88f4fe5b1b4" datatype="html"> |
1547 | <source>Any other input will return matching video or channel names.</source> | 1748 | <source>Any other input will return matching video or channel names.</source> |
1548 | <target state="new">Any other input will return matching video or channel names.</target> | 1749 | <target state="new">Any other input will return matching video or channel names.</target> |
1549 | 1750 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">58</context></context-group> | |
1550 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 1751 | </trans-unit> |
1551 | <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> | 1752 | <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> |
1552 | <source>Search...</source> | 1753 | <source>Search...</source> |
1553 | <target>Ara...</target> | 1754 | <target>Ara...</target> |
1554 | 1755 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">6</context></context-group> | |
1555 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 1756 | </trans-unit> |
1556 | |||
1557 | <trans-unit id="39ec2a3e2da523763f4db4b2227b7dbae5d70eba" datatype="html"> | 1757 | <trans-unit id="39ec2a3e2da523763f4db4b2227b7dbae5d70eba" datatype="html"> |
1558 | <source>In this instance's network</source> | 1758 | <source>In this instance's network</source> |
1559 | <target state="new">In this instance's network</target> | 1759 | <target state="new">In this instance's network</target> |
1560 | 1760 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/suggestion.component.html</context><context context-type="linenumber">14</context></context-group> | |
1561 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/suggestion.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 1761 | </trans-unit> |
1562 | <trans-unit id="9848e55d7c95eddc1c4a044a63ed0e88e8cb6f5c" datatype="html"> | 1762 | <trans-unit id="9848e55d7c95eddc1c4a044a63ed0e88e8cb6f5c" datatype="html"> |
1563 | <source>In the vidiverse</source> | 1763 | <source>In the vidiverse</source> |
1564 | <target state="new">In the vidiverse</target> | 1764 | <target state="new">In the vidiverse</target> |
1565 | 1765 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/suggestion.component.html</context><context context-type="linenumber">15</context></context-group> | |
1566 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/suggestion.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 1766 | </trans-unit> |
1567 | <trans-unit id="5d43539fc358c3a548b9d487be821db73e2702ff" datatype="html"> | 1767 | <trans-unit id="5d43539fc358c3a548b9d487be821db73e2702ff" datatype="html"> |
1568 | <source>Sort</source> | 1768 | <source>Sort</source> |
1569 | <target state="new">Sort</target> | 1769 | <target state="translated">Sırala</target> |
1570 | 1770 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">7</context></context-group> | |
1571 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 1771 | </trans-unit> |
1572 | <trans-unit id="a57adbb9bc3ecbc397157af25f96fc2123c9c383" datatype="html"> | 1772 | <trans-unit id="a57adbb9bc3ecbc397157af25f96fc2123c9c383" datatype="html"> |
1573 | <source>Reset</source> | 1773 | <source>Reset</source> |
1574 | <target state="new"> | 1774 | <target state="translated">Sıfırla</target> |
1575 | Reset | 1775 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">9</context></context-group> |
1576 | </target> | 1776 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">23</context></context-group> |
1577 | 1777 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">42</context></context-group> | |
1578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">9</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1778 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">56</context></context-group> |
1779 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">91</context></context-group> | ||
1780 | </trans-unit> | ||
1579 | <trans-unit id="98acac685fc4b2d35e5d0cf3cd224d247a756c3e" datatype="html"> | 1781 | <trans-unit id="98acac685fc4b2d35e5d0cf3cd224d247a756c3e" datatype="html"> |
1580 | <source>Published date</source> | 1782 | <source>Published date</source> |
1581 | <target state="new">Published date</target> | 1783 | <target state="new">Published date</target> |
1582 | 1784 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">40</context></context-group> | |
1583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> | 1785 | </trans-unit> |
1584 | <trans-unit id="31523e672b9f39a621e5d9e2a22b24bbf9aa8d4d" datatype="html"> | 1786 | <trans-unit id="31523e672b9f39a621e5d9e2a22b24bbf9aa8d4d" datatype="html"> |
1585 | <source>Original publication year</source> | 1787 | <source>Original publication year</source> |
1586 | <target state="new">Original publication year</target> | 1788 | <target state="new">Original publication year</target> |
1587 | 1789 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">54</context></context-group> | |
1588 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> | 1790 | </trans-unit> |
1589 | <trans-unit id="e9866754251f6f45c42710a3de01da5d79c6ae91" datatype="html"> | 1791 | <trans-unit id="e9866754251f6f45c42710a3de01da5d79c6ae91" datatype="html"> |
1590 | <source>After...</source> | 1792 | <source>After...</source> |
1591 | <target state="new">After...</target> | 1793 | <target state="new">After...</target> |
1592 | 1794 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">66</context></context-group> | |
1593 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1795 | </trans-unit> |
1594 | <trans-unit id="46c36269a23f9105124bbdd58f8c91833b92e565" datatype="html"> | 1796 | <trans-unit id="46c36269a23f9105124bbdd58f8c91833b92e565" datatype="html"> |
1595 | <source>Before...</source> | 1797 | <source>Before...</source> |
1596 | <target state="new">Before...</target> | 1798 | <target state="new">Before...</target> |
1597 | 1799 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">76</context></context-group> | |
1598 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> | 1800 | </trans-unit> |
1599 | <trans-unit id="a02ea1d4e7424ca989929da5e598f379940fdbf2" datatype="html"> | 1801 | <trans-unit id="a02ea1d4e7424ca989929da5e598f379940fdbf2" datatype="html"> |
1600 | <source>Duration</source> | 1802 | <source>Duration</source> |
1601 | <target state="new">Duration</target> | 1803 | <target state="translated">Süre</target> |
1602 | 1804 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">89</context></context-group> | |
1603 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">89</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">276</context></context-group></trans-unit> | 1805 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">276</context></context-group> |
1806 | </trans-unit> | ||
1604 | <trans-unit id="dc67060f94f0f2b58549f54a5c07925dffd20238" datatype="html"> | 1807 | <trans-unit id="dc67060f94f0f2b58549f54a5c07925dffd20238" datatype="html"> |
1605 | <source>Display sensitive content</source> | 1808 | <source>Display sensitive content</source> |
1606 | <target state="new">Display sensitive content</target> | 1809 | <target state="translated">Hassas içeriği göster</target> |
1607 | 1810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">21</context></context-group> | |
1608 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 1811 | </trans-unit> |
1609 | <trans-unit id="4f20f2d5a6882190892e58b85f6ccbedfa737952" datatype="html"> | 1812 | <trans-unit id="4f20f2d5a6882190892e58b85f6ccbedfa737952" datatype="html"> |
1610 | <source>Yes</source> | 1813 | <source>Yes</source> |
1611 | <target state="new">Yes</target> | 1814 | <target state="translated">Evet</target> |
1612 | 1815 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">29</context></context-group> | |
1613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1816 | </trans-unit> |
1614 | <trans-unit id="3d3ae7deebc5949b0c1c78b9847886a94321d9fd" datatype="html"> | 1817 | <trans-unit id="3d3ae7deebc5949b0c1c78b9847886a94321d9fd" datatype="html"> |
1615 | <source>No</source> | 1818 | <source>No</source> |
1616 | <target state="new">No</target> | 1819 | <target state="translated">Hayır</target> |
1617 | 1820 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">34</context></context-group> | |
1618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 1821 | </trans-unit> |
1619 | <trans-unit id="607de17c2a755f65775881c19e276e7c933bcf94"> | 1822 | <trans-unit id="607de17c2a755f65775881c19e276e7c933bcf94"> |
1620 | <source>Category</source> | 1823 | <source>Category</source> |
1621 | <target>Kategori</target> | 1824 | <target>Kategori</target> |
1622 | 1825 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">102</context></context-group> | |
1623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">102</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">241</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">63</context></context-group></trans-unit> | 1826 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">241</context></context-group> |
1827 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">63</context></context-group> | ||
1828 | </trans-unit> | ||
1624 | <trans-unit id="265ee68edfe57e510270da31ec99f67d94346009" datatype="html"> | 1829 | <trans-unit id="265ee68edfe57e510270da31ec99f67d94346009" datatype="html"> |
1625 | <source>Reset</source> | 1830 | <source>Reset</source> |
1626 | <target state="new"> | 1831 | <target state="translated">Sıfırla</target> |
1627 | Reset | 1832 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">104</context></context-group> |
1628 | </target> | 1833 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">117</context></context-group> |
1629 | 1834 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">130</context></context-group> | |
1630 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">104</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">130</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">145</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">153</context></context-group></trans-unit> | 1835 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">145</context></context-group> |
1836 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">153</context></context-group> | ||
1837 | </trans-unit> | ||
1631 | <trans-unit id="75706466a5cffa6f6bf0d6c94a8345a001ce8cea" datatype="html"> | 1838 | <trans-unit id="75706466a5cffa6f6bf0d6c94a8345a001ce8cea" datatype="html"> |
1632 | <source>Display all categories</source> | 1839 | <source>Display all categories</source> |
1633 | <target state="new">Display all categories</target> | 1840 | <target state="translated">Bütün kategorileri göster</target> |
1634 | 1841 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">108</context></context-group> | |
1635 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">108</context></context-group></trans-unit> | 1842 | </trans-unit> |
1636 | <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c" datatype="html"> | 1843 | <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c" datatype="html"> |
1637 | <source>Licence</source> | 1844 | <source>Licence</source> |
1638 | <target state="new">Licence</target> | 1845 | <target state="translated">Lisans</target> |
1639 | 1846 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">115</context></context-group> | |
1640 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">115</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">250</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit> | 1847 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">250</context></context-group> |
1848 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">74</context></context-group> | ||
1849 | </trans-unit> | ||
1641 | <trans-unit id="e19d80c6277747a68f3da8cfe1318303d2b5c952" datatype="html"> | 1850 | <trans-unit id="e19d80c6277747a68f3da8cfe1318303d2b5c952" datatype="html"> |
1642 | <source>Display all licenses</source> | 1851 | <source>Display all licenses</source> |
1643 | <target state="new">Display all licenses</target> | 1852 | <target state="translated">Bütün lisansları göster</target> |
1644 | 1853 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">121</context></context-group> | |
1645 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1854 | </trans-unit> |
1646 | <trans-unit id="fe46ccaae902ce974e2441abe752399288298619" datatype="html"> | 1855 | <trans-unit id="fe46ccaae902ce974e2441abe752399288298619" datatype="html"> |
1647 | <source>Language</source> | 1856 | <source>Language</source> |
1648 | <target state="new">Language</target> | 1857 | <target state="translated">Dil</target> |
1649 | 1858 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">128</context></context-group> | |
1650 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">128</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">259</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">10</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">94</context></context-group></trans-unit> | 1859 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">259</context></context-group> |
1860 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">10</context></context-group> | ||
1861 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">94</context></context-group> | ||
1862 | </trans-unit> | ||
1651 | <trans-unit id="dcc3173a99661496cd1f836283993cc3e6576b26" datatype="html"> | 1863 | <trans-unit id="dcc3173a99661496cd1f836283993cc3e6576b26" datatype="html"> |
1652 | <source>Display all languages</source> | 1864 | <source>Display all languages</source> |
1653 | <target state="new">Display all languages</target> | 1865 | <target state="translated">Bütün dilleri göster</target> |
1654 | 1866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">134</context></context-group> | |
1655 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">134</context></context-group></trans-unit> | 1867 | </trans-unit> |
1656 | <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8" datatype="html"> | 1868 | <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8" datatype="html"> |
1657 | <source>All of these tags</source> | 1869 | <source>All of these tags</source> |
1658 | <target state="new">All of these tags</target> | 1870 | <target state="new">All of these tags</target> |
1659 | 1871 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">143</context></context-group> | |
1660 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">143</context></context-group></trans-unit> | 1872 | </trans-unit> |
1661 | <trans-unit id="492d2bd18db0cba03f6d9e3b0c42b8639fbe51ab" datatype="html"> | 1873 | <trans-unit id="492d2bd18db0cba03f6d9e3b0c42b8639fbe51ab" datatype="html"> |
1662 | <source>One of these tags</source> | 1874 | <source>One of these tags</source> |
1663 | <target state="new">One of these tags</target> | 1875 | <target state="new">One of these tags</target> |
1664 | 1876 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">151</context></context-group> | |
1665 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">151</context></context-group></trans-unit> | 1877 | </trans-unit> |
1666 | <trans-unit id="118bedbb308a28f06d1c0c84645a35c9bf93cbf3" datatype="html"> | 1878 | <trans-unit id="118bedbb308a28f06d1c0c84645a35c9bf93cbf3" datatype="html"> |
1667 | <source>Search target</source> | 1879 | <source>Search target</source> |
1668 | <target state="new">Search target</target> | 1880 | <target state="new">Search target</target> |
1669 | 1881 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">160</context></context-group> | |
1670 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1882 | </trans-unit> |
1671 | <trans-unit id="cdfec9a92a3081018d34e82d74e85e4e9f63a95f" datatype="html"> | 1883 | <trans-unit id="cdfec9a92a3081018d34e82d74e85e4e9f63a95f" datatype="html"> |
1672 | <source>Vidiverse</source> | 1884 | <source>Vidiverse</source> |
1673 | <target state="new">Vidiverse</target> | 1885 | <target state="new">Vidiverse</target> |
1674 | 1886 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">170</context></context-group> | |
1675 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1887 | </trans-unit> |
1676 | <trans-unit id="ca72d574353a355b8fadbc1ceda174a0bd1bf7cd" datatype="html"> | 1888 | <trans-unit id="ca72d574353a355b8fadbc1ceda174a0bd1bf7cd" datatype="html"> |
1677 | <source>Reset</source> | 1889 | <source>Reset</source> |
1678 | <target state="new"> | 1890 | <target state="translated">Sıfırla</target> |
1679 | Reset | 1891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">178</context></context-group> |
1680 | </target> | 1892 | </trans-unit> |
1681 | |||
1682 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">178</context></context-group></trans-unit> | ||
1683 | <trans-unit id="5ca707824ab93066c7d9b44e1b8bf216725c2c22" datatype="html"> | 1893 | <trans-unit id="5ca707824ab93066c7d9b44e1b8bf216725c2c22" datatype="html"> |
1684 | <source>Filter</source> | 1894 | <source>Filter</source> |
1685 | <target state="new">Filter</target> | 1895 | <target state="new">Filter</target> |
1686 | 1896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">181</context></context-group> | |
1687 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">181</context></context-group></trans-unit> | 1897 | </trans-unit> |
1688 | |||
1689 | <trans-unit id="6f5a458f827503ac7b8697688ecf3e0490818ee8" datatype="html"> | 1898 | <trans-unit id="6f5a458f827503ac7b8697688ecf3e0490818ee8" datatype="html"> |
1690 | <source>Video channels</source> | 1899 | <source>Video channels</source> |
1691 | <target state="new">Video channels</target> | 1900 | <target state="new">Video channels</target> |
1692 | 1901 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">1</context></context-group> | |
1693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 1902 | </trans-unit> |
1694 | <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0" datatype="html"> | 1903 | <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0" datatype="html"> |
1695 | <source>Add caption</source> | 1904 | <source>Add caption</source> |
1696 | <target state="new">Add caption</target> | 1905 | <target state="new">Add caption</target> |
1697 | 1906 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">5</context></context-group> | |
1698 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 1907 | </trans-unit> |
1699 | <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8" datatype="html"> | 1908 | <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8" datatype="html"> |
1700 | <source>Select the caption file</source> | 1909 | <source>Select the caption file</source> |
1701 | <target state="new">Select the caption file</target> | 1910 | <target state="new">Select the caption file</target> |
1702 | 1911 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">24</context></context-group> | |
1703 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 1912 | </trans-unit> |
1704 | <trans-unit id="c34c61401151c29fb3679638a7d0b95258145ec3" datatype="html"> | 1913 | <trans-unit id="c34c61401151c29fb3679638a7d0b95258145ec3" datatype="html"> |
1705 | <source>This will replace an existing caption!</source> | 1914 | <source>This will replace an existing caption!</source> |
1706 | <target state="new">This will replace an existing caption!</target> | 1915 | <target state="new">This will replace an existing caption!</target> |
1707 | 1916 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">31</context></context-group> | |
1708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 1917 | </trans-unit> |
1709 | <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c" datatype="html"> | 1918 | <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c" datatype="html"> |
1710 | <source>Add this caption</source> | 1919 | <source>Add this caption</source> |
1711 | <target state="new">Add this caption</target> | 1920 | <target state="new">Add this caption</target> |
1712 | 1921 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">42</context></context-group> | |
1713 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1922 | </trans-unit> |
1714 | <trans-unit id="fdf7cbdc140d0aab0f0b6c06065a0fd448ed6a2e" datatype="html"> | 1923 | <trans-unit id="fdf7cbdc140d0aab0f0b6c06065a0fd448ed6a2e" datatype="html"> |
1715 | <source>Title</source> | 1924 | <source>Title</source> |
1716 | <target state="new">Title</target> | 1925 | <target state="translated">Başlık</target> |
1717 | 1926 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
1718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 1927 | </trans-unit> |
1719 | <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b" datatype="html"> | 1928 | <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b" datatype="html"> |
1720 | <source>Tags</source> | 1929 | <source>Tags</source> |
1721 | <target state="new">Tags</target> | 1930 | <target state="translated">Etiketler</target> |
1722 | 1931 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">268</context></context-group> | |
1723 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">268</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 1932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">19</context></context-group> |
1933 | </trans-unit> | ||
1724 | <trans-unit id="554a78c6ac043b4a9058c39d63e4475a454e4dc2" datatype="html"> | 1934 | <trans-unit id="554a78c6ac043b4a9058c39d63e4475a454e4dc2" datatype="html"> |
1725 | <source>Tags could be used to suggest relevant recommendations. <x id="LINE_BREAK"/> There is a maximum of 5 tags. <x id="LINE_BREAK"/> Press <x id="START_TAG_KBD"/>Enter<x id="CLOSE_TAG_KBD"/> to add a new tag. </source> | 1935 | <source>Tags could be used to suggest relevant recommendations. <x id="LINE_BREAK"/> There is a maximum of 5 tags. <x id="LINE_BREAK"/> Press <x id="START_TAG_KBD"/>Enter<x id="CLOSE_TAG_KBD"/> to add a new tag. </source> |
1726 | <target state="new"> | 1936 | <target state="new"> |
1727 | Tags could be used to suggest relevant recommendations. | 1937 | Tags could be used to suggest relevant recommendations. |
1728 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 1938 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
1729 | There is a maximum of 5 tags. | 1939 | There is a maximum of 5 tags. |
1730 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 1940 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
1731 | Press | 1941 | Press |
1732 | <x id="START_TAG_KBD" ctype="x-kbd" equiv-text="<kbd>"/>Enter | 1942 | <x id="START_TAG_KBD" ctype="x-kbd" equiv-text="<kbd>"/>Enter |
1733 | <x id="CLOSE_TAG_KBD" ctype="x-kbd" equiv-text="</kbd>"/> to add a new tag. | 1943 | <x id="CLOSE_TAG_KBD" ctype="x-kbd" equiv-text="</kbd>"/> to add a new tag. |
1734 | 1944 | ||
1735 | </target> | 1945 | </target> |
1736 | 1946 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">24</context></context-group> | |
1737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 1947 | </trans-unit> |
1738 | <trans-unit id="8389e9cde2928cc27aaecbdee818a255bf7984b0" datatype="html"> | 1948 | <trans-unit id="8389e9cde2928cc27aaecbdee818a255bf7984b0" datatype="html"> |
1739 | <source>Enter a new tag</source> | 1949 | <source>Enter a new tag</source> |
1740 | <target state="new">Enter a new tag</target> | 1950 | <target state="new">Enter a new tag</target> |
1741 | 1951 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-tags.component.html</context><context context-type="linenumber">5</context></context-group> | |
1742 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-tags.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit><trans-unit id="6179532215548637839" datatype="html"> | 1952 | </trans-unit> |
1743 | <source>extensions</source><target state="new">extensions</target> | 1953 | <trans-unit id="6179532215548637839" datatype="html"> |
1744 | 1954 | <source>extensions</source> | |
1745 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit><trans-unit id="8054921481196967348" datatype="html"> | 1955 | <target state="new">extensions</target> |
1746 | <source>This image is too large.</source><target state="new">This image is too large.</target> | 1956 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.ts</context><context context-type="linenumber">41</context></context-group> |
1957 | </trans-unit> | ||
1958 | <trans-unit id="8054921481196967348" datatype="html"> | ||
1959 | <source>This image is too large.</source> | ||
1960 | <target state="translated">Bu resim çok büyük.</target> | ||
1747 | <context-group purpose="location"> | 1961 | <context-group purpose="location"> |
1748 | <context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.ts</context> | 1962 | <context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.ts</context> |
1749 | <context context-type="linenumber">56</context> | 1963 | <context context-type="linenumber">56</context> |
@@ -1752,689 +1966,768 @@ The link will expire within 1 hour.</target> | |||
1752 | <trans-unit id="be24dae69c0d0605237d6dd638b172a42a88851e" datatype="html"> | 1966 | <trans-unit id="be24dae69c0d0605237d6dd638b172a42a88851e" datatype="html"> |
1753 | <source>No items found</source> | 1967 | <source>No items found</source> |
1754 | <target state="new">No items found</target> | 1968 | <target state="new">No items found</target> |
1755 | 1969 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.html</context><context context-type="linenumber">14</context></context-group> | |
1756 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 1970 | </trans-unit> |
1757 | <trans-unit id="eec715de352a6b114713b30b640d319fa78207a0" datatype="html"> | 1971 | <trans-unit id="eec715de352a6b114713b30b640d319fa78207a0" datatype="html"> |
1758 | <source>Description</source> | 1972 | <source>Description</source> |
1759 | <target state="new">Description</target> | 1973 | <target state="translated">Açıklama</target> |
1760 | 1974 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group> | |
1761 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">113</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1975 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group> |
1976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">28</context></context-group> | ||
1977 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">64</context></context-group> | ||
1978 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">64</context></context-group> | ||
1979 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">113</context></context-group> | ||
1980 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">38</context></context-group> | ||
1981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">39</context></context-group> | ||
1982 | </trans-unit> | ||
1762 | <trans-unit id="3b86a740c713742c3f7538c60b890fccdd0a5caf" datatype="html"> | 1983 | <trans-unit id="3b86a740c713742c3f7538c60b890fccdd0a5caf" datatype="html"> |
1763 | <source>Video descriptions are truncated by default and require manual action to expand them.</source> | 1984 | <source>Video descriptions are truncated by default and require manual action to expand them.</source> |
1764 | <target state="new">Video descriptions are truncated by default and require manual action to expand them.</target> | 1985 | <target state="new">Video descriptions are truncated by default and require manual action to expand them.</target> |
1765 | 1986 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">43</context></context-group> | |
1766 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit><trans-unit id="ef0f544578470cd6dd75432d0f1ba0e27914d2cc" datatype="html"> | 1987 | </trans-unit> |
1767 | <source><x id="START_LINK"/>Choose<x id="CLOSE_LINK"/> the appropriate license for your work. </source><target state="new"><x id="START_LINK"/>Choose<x id="CLOSE_LINK"/> the appropriate license for your work. </target> | 1988 | <trans-unit id="ef0f544578470cd6dd75432d0f1ba0e27914d2cc" datatype="html"> |
1768 | 1989 | <source><x id="START_LINK"/>Choose<x id="CLOSE_LINK"/> the appropriate license for your work. </source> | |
1769 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 1990 | <target state="new"><x id="START_LINK"/>Choose<x id="CLOSE_LINK"/> the appropriate license for your work. </target> |
1991 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">79</context></context-group> | ||
1992 | </trans-unit> | ||
1770 | <trans-unit id="0cc554f4d7bb6a87515d2d95438e183b50702071" datatype="html"> | 1993 | <trans-unit id="0cc554f4d7bb6a87515d2d95438e183b50702071" datatype="html"> |
1771 | <source>Channel</source> | 1994 | <source>Channel</source> |
1772 | <target state="new">Channel</target> | 1995 | <target state="translated">Kanal</target> |
1773 | 1996 | <note from="description" priority="1">Stepper label for the registration page asking information about the default channel</note> | |
1774 | <note from="description" priority="1">Stepper label for the registration page asking information about the default channel</note><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">14</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 1997 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">33</context></context-group> |
1998 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">33</context></context-group> | ||
1999 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">70</context></context-group> | ||
2000 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">70</context></context-group> | ||
2001 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">30</context></context-group> | ||
2002 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">22</context></context-group> | ||
2003 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">6</context></context-group> | ||
2004 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">14</context></context-group> | ||
2005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">58</context></context-group> | ||
2006 | </trans-unit> | ||
1775 | <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427"> | 2007 | <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427"> |
1776 | <source>Privacy</source> | 2008 | <source>Privacy</source> |
1777 | <target>Gizlilik</target> | 2009 | <target>Gizlilik</target> |
1778 | 2010 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group> | |
1779 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">226</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">106</context></context-group></trans-unit> | 2011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group> |
2012 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">226</context></context-group> | ||
2013 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">37</context></context-group> | ||
2014 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">29</context></context-group> | ||
2015 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">13</context></context-group> | ||
2016 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">21</context></context-group> | ||
2017 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">106</context></context-group> | ||
2018 | </trans-unit> | ||
1780 | <trans-unit id="4b6dbf2d92858e82bcf6ae5dbc8dfb4b29d82ad0" datatype="html"> | 2019 | <trans-unit id="4b6dbf2d92858e82bcf6ae5dbc8dfb4b29d82ad0" datatype="html"> |
1781 | <source>FAQ</source> | 2020 | <source>FAQ</source> |
1782 | <target state="new">FAQ</target> | 2021 | <target state="translated">SSS</target> |
1783 | 2022 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">175</context></context-group> | |
1784 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">175</context></context-group></trans-unit> | 2023 | </trans-unit> |
1785 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 2024 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1786 | <source>Frequently asked questions about PeerTube</source> | 2025 | <source>Frequently asked questions about PeerTube</source> |
1787 | <target state="new">Frequently asked questions about PeerTube</target> | 2026 | <target state="translated">PeerTube hakkında sık sorulan sorular</target> |
1788 | 2027 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">175</context></context-group> | |
1789 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">175</context></context-group></trans-unit> | 2028 | </trans-unit> |
1790 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 2029 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1791 | <source>API</source> | 2030 | <source>API</source> |
1792 | <target state="new">API</target> | 2031 | <target state="translated">API</target> |
1793 | 2032 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group> | |
1794 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> | 2033 | </trans-unit> |
1795 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 2034 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1796 | <source>API documentation</source> | 2035 | <source>API documentation</source> |
1797 | <target state="new">API documentation</target> | 2036 | <target state="new">API documentation</target> |
1798 | 2037 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group> | |
1799 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> | 2038 | </trans-unit> |
1800 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> | 2039 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> |
1801 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 2040 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1802 | <target state="new">Schedule publication ( | 2041 | <target state="new">Schedule publication ( |
1803 | <x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>) | 2042 | <x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>) |
1804 | </target> | 2043 | </target> |
1805 | 2044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">117</context></context-group> | |
1806 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> | 2045 | </trans-unit> |
1807 | <trans-unit id="ea504765b49242bfcaefec84a9cf2f6f179c2ea5" datatype="html"> | 2046 | <trans-unit id="ea504765b49242bfcaefec84a9cf2f6f179c2ea5" datatype="html"> |
1808 | <source>Contains sensitive content</source> | 2047 | <source>Contains sensitive content</source> |
1809 | <target state="new">Contains sensitive content</target> | 2048 | <target state="new">Contains sensitive content</target> |
1810 | 2049 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">131</context></context-group> | |
1811 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">131</context></context-group></trans-unit> | 2050 | </trans-unit> |
1812 | <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644" datatype="html"> | 2051 | <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644" datatype="html"> |
1813 | <source>Some instances do not list videos containing mature or explicit content by default.</source> | 2052 | <source>Some instances do not list videos containing mature or explicit content by default.</source> |
1814 | <target state="new">Some instances do not list videos containing mature or explicit content by default.</target> | 2053 | <target state="new">Some instances do not list videos containing mature or explicit content by default.</target> |
1815 | 2054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">135</context></context-group> | |
1816 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">135</context></context-group></trans-unit> | 2055 | </trans-unit> |
1817 | <trans-unit id="ec396d3c2e26cbe4a1b3d6747c732419c6dcc3bb" datatype="html"> | 2056 | <trans-unit id="ec396d3c2e26cbe4a1b3d6747c732419c6dcc3bb" datatype="html"> |
1818 | <source>Publish after transcoding</source> | 2057 | <source>Publish after transcoding</source> |
1819 | <target state="new">Publish after transcoding</target> | 2058 | <target state="new">Publish after transcoding</target> |
1820 | 2059 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">141</context></context-group> | |
1821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">141</context></context-group></trans-unit> | 2060 | </trans-unit> |
1822 | <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63" datatype="html"> | 2061 | <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63" datatype="html"> |
1823 | <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source> | 2062 | <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source> |
1824 | <target state="new">If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</target> | 2063 | <target state="new">If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</target> |
1825 | 2064 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">145</context></context-group> | |
1826 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">145</context></context-group></trans-unit> | 2065 | </trans-unit> |
1827 | <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7" datatype="html"> | 2066 | <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7" datatype="html"> |
1828 | <source>Basic info</source> | 2067 | <source>Basic info</source> |
1829 | <target state="new">Basic info</target> | 2068 | <target state="new">Basic info</target> |
1830 | 2069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">5</context></context-group> | |
1831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 2070 | </trans-unit> |
1832 | <trans-unit id="92bcfd1d237a2bfe48dc9f46d074ed26abc8df22" datatype="html"> | 2071 | <trans-unit id="92bcfd1d237a2bfe48dc9f46d074ed26abc8df22" datatype="html"> |
1833 | <source>Add another caption</source> | 2072 | <source>Add another caption</source> |
1834 | <target state="new">Add another caption</target> | 2073 | <target state="new">Add another caption</target> |
1835 | 2074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">163</context></context-group> | |
1836 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 2075 | </trans-unit> |
1837 | <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed" datatype="html"> | 2076 | <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed" datatype="html"> |
1838 | <source>See the subtitle file</source> | 2077 | <source>See the subtitle file</source> |
1839 | <target state="new">See the subtitle file</target> | 2078 | <target state="translated">Altyazı dosyasına bakın</target> |
1840 | 2079 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">172</context></context-group> | |
1841 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">172</context></context-group></trans-unit> | 2080 | </trans-unit> |
1842 | <trans-unit id="e687f6387adbaf61ce650b58f0e60ca42d843cee" datatype="html"> | 2081 | <trans-unit id="e687f6387adbaf61ce650b58f0e60ca42d843cee" datatype="html"> |
1843 | <source>Already uploaded ✔</source> | 2082 | <source>Already uploaded ✔</source> |
1844 | <target state="new">Already uploaded ✔</target> | 2083 | <target state="translated">Zaten yüklenmiş ✔</target> |
1845 | 2084 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">176</context></context-group> | |
1846 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> | 2085 | </trans-unit> |
1847 | <trans-unit id="ca4588e185413b2fc77dbe35c861cc540b11b9ad" datatype="html"> | 2086 | <trans-unit id="ca4588e185413b2fc77dbe35c861cc540b11b9ad" datatype="html"> |
1848 | <source>Will be created on update</source> | 2087 | <source>Will be created on update</source> |
1849 | <target state="new">Will be created on update</target> | 2088 | <target state="new">Will be created on update</target> |
1850 | 2089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">184</context></context-group> | |
1851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">184</context></context-group></trans-unit> | 2090 | </trans-unit> |
1852 | <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9" datatype="html"> | 2091 | <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9" datatype="html"> |
1853 | <source>Cancel create</source> | 2092 | <source>Cancel create</source> |
1854 | <target state="new">Cancel create</target> | 2093 | <target state="new">Cancel create</target> |
1855 | 2094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">186</context></context-group> | |
1856 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2095 | </trans-unit> |
1857 | <trans-unit id="b6bfdd386cb0b560d697c93555d8cd8cab00c393" datatype="html"> | 2096 | <trans-unit id="b6bfdd386cb0b560d697c93555d8cd8cab00c393" datatype="html"> |
1858 | <source>Will be deleted on update</source> | 2097 | <source>Will be deleted on update</source> |
1859 | <target state="new">Will be deleted on update</target> | 2098 | <target state="new">Will be deleted on update</target> |
1860 | 2099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">192</context></context-group> | |
1861 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">192</context></context-group></trans-unit> | 2100 | </trans-unit> |
1862 | <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c" datatype="html"> | 2101 | <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c" datatype="html"> |
1863 | <source>Cancel deletion</source> | 2102 | <source>Cancel deletion</source> |
1864 | <target state="new">Cancel deletion</target> | 2103 | <target state="new">Cancel deletion</target> |
1865 | 2104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">194</context></context-group> | |
1866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">194</context></context-group></trans-unit> | 2105 | </trans-unit> |
1867 | <trans-unit id="82f867b2607d45ba36de11d4c8b53d7177122ee0" datatype="html"> | 2106 | <trans-unit id="82f867b2607d45ba36de11d4c8b53d7177122ee0" datatype="html"> |
1868 | <source>No captions for now.</source> | 2107 | <source>No captions for now.</source> |
1869 | <target state="new">No captions for now.</target> | 2108 | <target state="new">No captions for now.</target> |
1870 | 2109 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">200</context></context-group> | |
1871 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">200</context></context-group></trans-unit><trans-unit id="f98c72e3e802851f600b498e00763e7e32688a88" datatype="html"> | 2110 | </trans-unit> |
1872 | <source>Live settings</source><target state="new">Live settings</target> | 2111 | <trans-unit id="f98c72e3e802851f600b498e00763e7e32688a88" datatype="html"> |
1873 | 2112 | <source>Live settings</source> | |
1874 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">208</context></context-group></trans-unit><trans-unit id="a3ecb8ed851e54c72dd44723d9fc3117e49ea498" datatype="html"> | 2113 | <target state="new">Live settings</target> |
1875 | <source>You can stream multiple times in a permanent live. The URL for your viewers won't change but you cannot save replays of your lives</source><target state="new">You can stream multiple times in a permanent live. The URL for your viewers won't change but you cannot save replays of your lives</target> | 2114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">208</context></context-group> |
1876 | 2115 | </trans-unit> | |
1877 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">236</context></context-group></trans-unit><trans-unit id="223e01b44f68af4522e390bae9d584b4cbbdfebe" datatype="html"> | 2116 | <trans-unit id="a3ecb8ed851e54c72dd44723d9fc3117e49ea498" datatype="html"> |
1878 | <source>This is a permanent live</source><target state="new">This is a permanent live</target> | 2117 | <source>You can stream multiple times in a permanent live. The URL for your viewers won't change but you cannot save replays of your lives</source> |
1879 | 2118 | <target state="new">You can stream multiple times in a permanent live. The URL for your viewers won't change but you cannot save replays of your lives</target> | |
1880 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">232</context></context-group></trans-unit><trans-unit id="4b5b87d3c8366afa8bd2e40e0b07cc3102133250" datatype="html"> | 2119 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">236</context></context-group> |
1881 | <source>⚠️ If you enable this option, your live will be terminated if you exceed your video quota</source><target state="new">⚠️ If you enable this option, your live will be terminated if you exceed your video quota</target> | 2120 | </trans-unit> |
1882 | 2121 | <trans-unit id="223e01b44f68af4522e390bae9d584b4cbbdfebe" datatype="html"> | |
1883 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">248</context></context-group></trans-unit><trans-unit id="e495a796f252097a77a501a99db7cb30d1019296" datatype="html"> | 2122 | <source>This is a permanent live</source> |
1884 | <source>Automatically publish a replay when your live ends</source><target state="new">Automatically publish a replay when your live ends</target> | 2123 | <target state="new">This is a permanent live</target> |
1885 | 2124 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">232</context></context-group> | |
1886 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">244</context></context-group></trans-unit> | 2125 | </trans-unit> |
2126 | <trans-unit id="4b5b87d3c8366afa8bd2e40e0b07cc3102133250" datatype="html"> | ||
2127 | <source>⚠️ If you enable this option, your live will be terminated if you exceed your video quota</source> | ||
2128 | <target state="new">⚠️ If you enable this option, your live will be terminated if you exceed your video quota</target> | ||
2129 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">248</context></context-group> | ||
2130 | </trans-unit> | ||
2131 | <trans-unit id="e495a796f252097a77a501a99db7cb30d1019296" datatype="html"> | ||
2132 | <source>Automatically publish a replay when your live ends</source> | ||
2133 | <target state="new">Automatically publish a replay when your live ends</target> | ||
2134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">244</context></context-group> | ||
2135 | </trans-unit> | ||
1887 | <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93" datatype="html"> | 2136 | <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93" datatype="html"> |
1888 | <source>Captions</source> | 2137 | <source>Captions</source> |
1889 | <target state="new">Captions</target> | 2138 | <target state="new">Captions</target> |
1890 | 2139 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">155</context></context-group> | |
1891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">155</context></context-group></trans-unit> | 2140 | </trans-unit> |
1892 | <trans-unit id="fc7600ad500918cb091064cb7129a5d13657a430" datatype="html"> | 2141 | <trans-unit id="fc7600ad500918cb091064cb7129a5d13657a430" datatype="html"> |
1893 | <source>Video preview</source> | 2142 | <source>Video preview</source> |
1894 | <target state="new">Video preview</target> | 2143 | <target state="new">Video preview</target> |
1895 | 2144 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">267</context></context-group> | |
1896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">267</context></context-group></trans-unit> | 2145 | </trans-unit> |
1897 | <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604" datatype="html"> | 2146 | <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604" datatype="html"> |
1898 | <source>Support</source> | 2147 | <source>Support</source> |
1899 | <target state="new">Support</target> | 2148 | <target state="translated">Destek</target> |
1900 | 2149 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">276</context></context-group> | |
1901 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">276</context></context-group></trans-unit> | 2150 | </trans-unit> |
1902 | <trans-unit id="64ec6a11fd39e7a4cba76281bdd490124437e96f" datatype="html"> | 2151 | <trans-unit id="64ec6a11fd39e7a4cba76281bdd490124437e96f" datatype="html"> |
1903 | <source>Short text to tell people how they can support you (membership platform...).</source> | 2152 | <source>Short text to tell people how they can support you (membership platform...).</source> |
1904 | <target state="new"> | 2153 | <target state="new"> |
1905 | Short text to tell people how they can support you (membership platform...). | 2154 | Short text to tell people how they can support you (membership platform...). |
1906 | </target> | 2155 | </target> |
1907 | 2156 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">280</context></context-group> | |
1908 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">280</context></context-group></trans-unit> | 2157 | </trans-unit> |
1909 | <trans-unit id="50d14e019ef14b4180e247e0b3a45386a8a78bf6" datatype="html"> | 2158 | <trans-unit id="50d14e019ef14b4180e247e0b3a45386a8a78bf6" datatype="html"> |
1910 | <source>Original publication date</source> | 2159 | <source>Original publication date</source> |
1911 | <target state="new">Original publication date</target> | 2160 | <target state="new">Original publication date</target> |
1912 | 2161 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">296</context></context-group> | |
1913 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">296</context></context-group></trans-unit> | 2162 | </trans-unit> |
1914 | <trans-unit id="109ff29714fe8f2a0bfb232f04b908062fac22b0" datatype="html"> | 2163 | <trans-unit id="109ff29714fe8f2a0bfb232f04b908062fac22b0" datatype="html"> |
1915 | <source>This is the date when the content was originally published (e.g. the release date for a film)</source> | 2164 | <source>This is the date when the content was originally published (e.g. the release date for a film)</source> |
1916 | <target state="new"> | 2165 | <target state="new"> |
1917 | This is the date when the content was originally published (e.g. the release date for a film) | 2166 | This is the date when the content was originally published (e.g. the release date for a film) |
1918 | </target> | 2167 | </target> |
1919 | 2168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">300</context></context-group> | |
1920 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">300</context></context-group></trans-unit> | 2169 | </trans-unit> |
1921 | <trans-unit id="48c3bde722dc317f76aa607445f11128f7fc7276" datatype="html"> | 2170 | <trans-unit id="48c3bde722dc317f76aa607445f11128f7fc7276" datatype="html"> |
1922 | <source>Plugin settings</source> | 2171 | <source>Plugin settings</source> |
1923 | <target state="new">Plugin settings</target> | 2172 | <target state="new">Plugin settings</target> |
1924 | 2173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">330</context></context-group> | |
1925 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">330</context></context-group></trans-unit> | 2174 | </trans-unit> |
1926 | <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a"> | 2175 | <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a"> |
1927 | <source>Enable video comments</source> | 2176 | <source>Enable video comments</source> |
1928 | <target>Video yorumlarını etkinleştir</target> | 2177 | <target>Video yorumlarını etkinleştir</target> |
1929 | 2178 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">317</context></context-group> | |
1930 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">317</context></context-group></trans-unit> | 2179 | </trans-unit> |
1931 | <trans-unit id="0b365218ce1ae736f9066fd3d47278cc8f3ed1d0"> | 2180 | <trans-unit id="0b365218ce1ae736f9066fd3d47278cc8f3ed1d0"> |
1932 | <source>Enable download</source> | 2181 | <source>Enable download</source> |
1933 | <target>İndirmeyi etkinleştir</target> | 2182 | <target>İndirmeyi etkinleştir</target> |
1934 | 2183 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">322</context></context-group> | |
1935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">322</context></context-group></trans-unit> | 2184 | </trans-unit> |
1936 | <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1" datatype="html"> | 2185 | <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1" datatype="html"> |
1937 | <source>Advanced settings</source> | 2186 | <source>Advanced settings</source> |
1938 | <target state="new">Advanced settings</target> | 2187 | <target state="translated">Gelişmiş ayarlar</target> |
1939 | 2188 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">260</context></context-group> | |
1940 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">260</context></context-group></trans-unit> | 2189 | </trans-unit> |
1941 | <trans-unit id="801b98c6f02fe3b32f6afa3ee854c99ed83474e6" datatype="html"> | 2190 | <trans-unit id="801b98c6f02fe3b32f6afa3ee854c99ed83474e6" datatype="html"> |
1942 | <source>URL</source> | 2191 | <source>URL</source> |
1943 | <target state="new">URL</target> | 2192 | <target state="translated">URL</target> |
1944 | 2193 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">16</context></context-group> | |
1945 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">71</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2194 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">71</context></context-group> |
2195 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">6</context></context-group> | ||
2196 | </trans-unit> | ||
1946 | <trans-unit id="92cd0a8da81d2ec6d454aa524c0ad967e1ca0818" datatype="html"> | 2197 | <trans-unit id="92cd0a8da81d2ec6d454aa524c0ad967e1ca0818" datatype="html"> |
1947 | <source>You can import any URL <x id="START_LINK"/>supported by youtube-dl<x id="CLOSE_LINK"/> or URL that points to a media file. 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. </source> | 2198 | <source>You can import any URL <x id="START_LINK"/>supported by youtube-dl<x id="CLOSE_LINK"/> or URL that points to a media file. 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. </source> |
1948 | <target state="new"> You can import any URL <x id="START_LINK"/>supported by youtube-dl<x id="CLOSE_LINK"/> or URL that points to a media file. 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. </target> | 2199 | <target state="new"> You can import any URL <x id="START_LINK"/>supported by youtube-dl<x id="CLOSE_LINK"/> or URL that points to a media file. 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. </target> |
1949 | 2200 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">11</context></context-group> | |
1950 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2201 | </trans-unit> |
1951 | <trans-unit id="385811ab5a5c3e96e0db46c9ce1fc3147d8cd4c7" datatype="html"> | 2202 | <trans-unit id="385811ab5a5c3e96e0db46c9ce1fc3147d8cd4c7" datatype="html"> |
1952 | <source>Sorry, but something went wrong</source> | 2203 | <source>Sorry, but something went wrong</source> |
1953 | <target state="new">Sorry, but something went wrong</target> | 2204 | <target state="new">Sorry, but something went wrong</target> |
1954 | 2205 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">51</context></context-group> | |
1955 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">51</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit> | 2206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">44</context></context-group> |
2207 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">26</context></context-group> | ||
2208 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">74</context></context-group> | ||
2209 | </trans-unit> | ||
1956 | <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2" datatype="html"> | 2210 | <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2" datatype="html"> |
1957 | <source>Congratulations, the video behind <x id="INTERPOLATION"/> will be imported! You can already add information about this video. </source> | 2211 | <source>Congratulations, the video behind <x id="INTERPOLATION"/> will be imported! You can already add information about this video. </source> |
1958 | <target state="new">Congratulations, the video behind | 2212 | <target state="new">Congratulations, the video behind |
1959 | <x id="INTERPOLATION" equiv-text="{{ targetUrl }}"/> will be imported! You can already add information about this video. | 2213 | <x id="INTERPOLATION" equiv-text="{{ targetUrl }}"/> will be imported! You can already add information about this video. |
1960 | </target> | 2214 | </target> |
1961 | 2215 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">48</context></context-group> | |
1962 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> | 2216 | </trans-unit> |
1963 | <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb" datatype="html"> | 2217 | <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb" datatype="html"> |
1964 | <source>Update</source> | 2218 | <source>Update</source> |
1965 | <target state="new">Update</target> | 2219 | <target state="translated">Güncelle</target> |
1966 | 2220 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">3</context></context-group> | |
1967 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">68</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">61</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 2221 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">18</context></context-group> |
2222 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">68</context></context-group> | ||
2223 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">61</context></context-group> | ||
2224 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">45</context></context-group> | ||
2225 | </trans-unit> | ||
1968 | <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9" datatype="html"> | 2226 | <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9" datatype="html"> |
1969 | <source>Select the file to upload</source> | 2227 | <source>Select the file to upload</source> |
1970 | <target state="new">Select the file to upload</target> | 2228 | <target state="translated">Yüklenecek dosyayı seçin</target> |
1971 | 2229 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">6</context></context-group> | |
1972 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 2230 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">8</context></context-group> |
2231 | </trans-unit> | ||
1973 | <trans-unit id="9172233176401579786" datatype="html"> | 2232 | <trans-unit id="9172233176401579786" datatype="html"> |
1974 | <source>Scheduled</source> | 2233 | <source>Scheduled</source> |
1975 | <target state="new">Scheduled</target> | 2234 | <target state="translated">Sıraya alındı</target> |
1976 | 2235 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">197</context></context-group> | |
1977 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">197</context></context-group></trans-unit> | 2236 | </trans-unit> |
1978 | <trans-unit id="1435317307066082710" datatype="html"> | 2237 | <trans-unit id="1435317307066082710" datatype="html"> |
1979 | <source>Hide the video until a specific date</source> | 2238 | <source>Hide the video until a specific date</source> |
1980 | <target state="new">Hide the video until a specific date</target> | 2239 | <target state="translated">Videoyu belirli bir tarihe dek gizle</target> |
1981 | 2240 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">198</context></context-group> | |
1982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">198</context></context-group></trans-unit> | 2241 | </trans-unit> |
1983 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | 2242 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> |
1984 | <source>Video background image</source> | 2243 | <source>Video background image</source> |
1985 | <target state="new">Video background image</target> | 2244 | <target state="translated">Videonun arkaplan resmi</target> |
1986 | 2245 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">29</context></context-group> | |
1987 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 2246 | </trans-unit> |
1988 | <trans-unit id="1860b3f71e0b82e9c10e1eaf0ff073216ed896cc" datatype="html"> | 2247 | <trans-unit id="1860b3f71e0b82e9c10e1eaf0ff073216ed896cc" datatype="html"> |
1989 | <source>Image that will be merged with your audio file. <x id="LINE_BREAK"/> The chosen image will be definitive and cannot be modified. </source> | 2248 | <source>Image that will be merged with your audio file. <x id="LINE_BREAK"/> The chosen image will be definitive and cannot be modified. </source> |
1990 | <target state="new"/> | 2249 | <target state="new"/> |
1991 | 2250 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">32</context></context-group> | |
1992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit><trans-unit id="5d8068c24887a511fc8b04308de94829c9b13cce" datatype="html"> | 2251 | </trans-unit> |
1993 | <source>Total video uploaded</source><target state="new">Total video uploaded</target> | 2252 | <trans-unit id="5d8068c24887a511fc8b04308de94829c9b13cce" datatype="html"> |
1994 | 2253 | <source>Total video uploaded</source> | |
1995 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2254 | <target state="new">Total video uploaded</target> |
2255 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">52</context></context-group> | ||
2256 | </trans-unit> | ||
1996 | <trans-unit id="dfd046dad933ba0a50926b9ab3c1b579c802312e" datatype="html"> | 2257 | <trans-unit id="dfd046dad933ba0a50926b9ab3c1b579c802312e" datatype="html"> |
1997 | <source>Processing…</source> | 2258 | <source>Processing…</source> |
1998 | <target state="new">Processing…</target> | 2259 | <target state="translated">İşleniyor…</target> |
1999 | 2260 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">54</context></context-group> | |
2000 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit><trans-unit id="38e0956efb7c78e758d638c8f1e5c99859b82836" datatype="html"> | 2261 | </trans-unit> |
2001 | <source>Retry</source><target state="new">Retry</target> | 2262 | <trans-unit id="38e0956efb7c78e758d638c8f1e5c99859b82836" datatype="html"> |
2002 | 2263 | <source>Retry</source> | |
2264 | <target state="translated">Yeniden dene</target> | ||
2003 | <note priority="1" from="description">Retry failed upload of a video</note> | 2265 | <note priority="1" from="description">Retry failed upload of a video</note> |
2004 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">68</context></context-group></trans-unit> | 2266 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">68</context></context-group> |
2267 | </trans-unit> | ||
2005 | <trans-unit id="a81bfce50be151484f8e59b34829ab07ef97982b" datatype="html"> | 2268 | <trans-unit id="a81bfce50be151484f8e59b34829ab07ef97982b" datatype="html"> |
2006 | <source>Total video quota</source> | 2269 | <source>Total video quota</source> |
2007 | <target state="new">Total video quota</target> | 2270 | <target state="translated">Toplam video sınırı</target> |
2008 | 2271 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.html</context><context context-type="linenumber">3</context></context-group> | |
2009 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">141</context></context-group></trans-unit> | 2272 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">141</context></context-group> |
2273 | </trans-unit> | ||
2010 | <trans-unit id="6357683911e256c566259880de43ea9403de00d3" datatype="html"> | 2274 | <trans-unit id="6357683911e256c566259880de43ea9403de00d3" datatype="html"> |
2011 | <source>Congratulations! Your video is now available in your private library.</source> | 2275 | <source>Congratulations! Your video is now available in your private library.</source> |
2012 | <target state="new">Congratulations! Your video is now available in your private library.</target> | 2276 | <target state="translated">Tebrikler! Artık videonuz özel kütüphanenizdedir.</target> |
2013 | 2277 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">79</context></context-group> | |
2014 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2278 | </trans-unit> |
2015 | <trans-unit id="f7ac2376749c7985f94f0fc89ba75ea624de1215" datatype="html"> | 2279 | <trans-unit id="f7ac2376749c7985f94f0fc89ba75ea624de1215" datatype="html"> |
2016 | <source>Publish will be available when upload is finished</source> | 2280 | <source>Publish will be available when upload is finished</source> |
2017 | <target state="new">Publish will be available when upload is finished</target> | 2281 | <target state="new">Publish will be available when upload is finished</target> |
2018 | 2282 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">92</context></context-group> | |
2019 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> | 2283 | </trans-unit> |
2020 | <trans-unit id="223aae0477f79f0bc4436c1c57619415f04cbbb3" datatype="html"> | 2284 | <trans-unit id="223aae0477f79f0bc4436c1c57619415f04cbbb3" datatype="html"> |
2021 | <source>Publish</source> | 2285 | <source>Publish</source> |
2022 | <target state="new">Publish</target> | 2286 | <target state="new">Publish</target> |
2023 | 2287 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/header.component.html</context><context context-type="linenumber">5</context></context-group> | |
2024 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/header.component.html</context><context context-type="linenumber">5</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">94</context></context-group></trans-unit> | 2288 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">94</context></context-group> |
2289 | </trans-unit> | ||
2025 | <trans-unit id="6206e8d42fea5d7147d3e68d8e061583886603ae" datatype="html"> | 2290 | <trans-unit id="6206e8d42fea5d7147d3e68d8e061583886603ae" datatype="html"> |
2026 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2291 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2027 | <target state="new">Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</target> | 2292 | <target state="new">Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</target> |
2028 | 2293 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">3</context></context-group> | |
2029 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 2294 | </trans-unit> |
2030 | <trans-unit id="d8bd78a04cdb225ea9a4c95dbdc4db26229981e2" datatype="html"> | 2295 | <trans-unit id="d8bd78a04cdb225ea9a4c95dbdc4db26229981e2" datatype="html"> |
2031 | <source>Read instance rules for help</source> | 2296 | <source>Read instance rules for help</source> |
2032 | <target state="new">Read instance rules for help</target> | 2297 | <target state="new">Read instance rules for help</target> |
2033 | 2298 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">4</context></context-group> | |
2034 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 2299 | </trans-unit> |
2035 | <trans-unit id="2fcbf437e001f47974d45bd03a19e0d9245fdb3b" datatype="html"> | 2300 | <trans-unit id="2fcbf437e001f47974d45bd03a19e0d9245fdb3b" datatype="html"> |
2036 | <source>Select the torrent to import</source> | 2301 | <source>Select the torrent to import</source> |
2037 | <target state="new">Select the torrent to import</target> | 2302 | <target state="new">Select the torrent to import</target> |
2038 | 2303 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">6</context></context-group> | |
2039 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 2304 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">8</context></context-group> |
2305 | </trans-unit> | ||
2040 | <trans-unit id="63f5d0ec23e3cf4abf6d5221107633c90d8d4a15" datatype="html"> | 2306 | <trans-unit id="63f5d0ec23e3cf4abf6d5221107633c90d8d4a15" datatype="html"> |
2041 | <source>OR</source> | 2307 | <source>OR</source> |
2042 | <target state="new">OR</target> | 2308 | <target state="new">OR</target> |
2043 | 2309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">13</context></context-group> | |
2044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 2310 | </trans-unit> |
2045 | <trans-unit id="0d6558176587662e9bb3b79cca57d42591cf82f9" datatype="html"> | 2311 | <trans-unit id="0d6558176587662e9bb3b79cca57d42591cf82f9" datatype="html"> |
2046 | <source>Paste magnet URI</source> | 2312 | <source>Paste magnet URI</source> |
2047 | <target state="new">Paste magnet URI</target> | 2313 | <target state="new">Paste magnet URI</target> |
2048 | 2314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">16</context></context-group> | |
2049 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 2315 | </trans-unit> |
2050 | <trans-unit id="7cb3731472edd9edf6a6d036498c2c8388157266" datatype="html"> | 2316 | <trans-unit id="7cb3731472edd9edf6a6d036498c2c8388157266" datatype="html"> |
2051 | <source>Congratulations, the video will be imported with BitTorrent! You can already add information about this video.</source> | 2317 | <source>Congratulations, the video will be imported with BitTorrent! You can already add information about this video.</source> |
2052 | <target state="new">Congratulations, the video will be imported with BitTorrent! You can already add information about this video.</target> | 2318 | <target state="new">Congratulations, the video will be imported with BitTorrent! You can already add information about this video.</target> |
2053 | 2319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">56</context></context-group> | |
2054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit><trans-unit id="7860848084471862305" datatype="html"> | 2320 | </trans-unit> |
2055 | <source>Cannot create live because this instance have too many created lives</source><target state="new">Cannot create live because this instance have too many created lives</target> | 2321 | <trans-unit id="7860848084471862305" datatype="html"> |
2056 | 2322 | <source>Cannot create live because this instance have too many created lives</source> | |
2057 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">91</context></context-group></trans-unit><trans-unit id="1278564497286613571" datatype="html"> | 2323 | <target state="new">Cannot create live because this instance have too many created lives</target> |
2058 | <source>Cannot create live because you created too many lives</source><target state="new">Cannot create live because you created too many lives</target> | 2324 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">91</context></context-group> |
2059 | 2325 | </trans-unit> | |
2060 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">93</context></context-group></trans-unit><trans-unit id="2621043320678012413" datatype="html"> | 2326 | <trans-unit id="1278564497286613571" datatype="html"> |
2061 | <source>Live published.</source><target state="new">Live published.</target> | 2327 | <source>Cannot create live because you created too many lives</source> |
2062 | 2328 | <target state="new">Cannot create live because you created too many lives</target> | |
2063 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">123</context></context-group></trans-unit><trans-unit id="40e85da538414cc425f42d2b09189ce344865aa1" datatype="html"> | 2329 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">93</context></context-group> |
2064 | <source>Go Live</source><target state="new">Go Live</target> | 2330 | </trans-unit> |
2065 | 2331 | <trans-unit id="2621043320678012413" datatype="html"> | |
2066 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="975c4cdb9e07ef4c43e2c7aa3f787feabc9a47d2" datatype="html"> | 2332 | <source>Live published.</source> |
2067 | <source> Max live duration is <x id="INTERPOLATION"/>. If your live reaches this limit, it will be automatically terminated. | 2333 | <target state="new">Live published.</target> |
2068 | </source><target state="new"> Max live duration is <x id="INTERPOLATION"/>. If your live reaches this limit, it will be automatically terminated. | 2334 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">123</context></context-group> |
2335 | </trans-unit> | ||
2336 | <trans-unit id="40e85da538414cc425f42d2b09189ce344865aa1" datatype="html"> | ||
2337 | <source>Go Live</source> | ||
2338 | <target state="new">Go Live</target> | ||
2339 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">20</context></context-group> | ||
2340 | </trans-unit> | ||
2341 | <trans-unit id="975c4cdb9e07ef4c43e2c7aa3f787feabc9a47d2" datatype="html"> | ||
2342 | <source>Max live duration is <x id="INTERPOLATION"/>. If your live reaches this limit, it will be automatically terminated. </source> | ||
2343 | <target state="new"> Max live duration is <x id="INTERPOLATION"/>. If your live reaches this limit, it will be automatically terminated. | ||
2069 | </target> | 2344 | </target> |
2070 | 2345 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">30</context></context-group> | |
2071 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 2346 | </trans-unit> |
2072 | <trans-unit id="ebe5234338205e30a59cf703e2a2b6ef49fb75f8" datatype="html"> | 2347 | <trans-unit id="ebe5234338205e30a59cf703e2a2b6ef49fb75f8" datatype="html"> |
2073 | <source>We recommend you to not use the <x id="START_TAG_STRONG"/>root<x id="CLOSE_TAG_STRONG"/> user to publish your videos, since it's the super-admin account of your instance. <x id="LINE_BREAK"/> Instead, <x id="START_LINK"/>create a dedicated account<x id="CLOSE_LINK"/> to upload your videos. </source> | 2348 | <source>We recommend you to not use the <x id="START_TAG_STRONG"/>root<x id="CLOSE_TAG_STRONG"/> user to publish your videos, since it's the super-admin account of your instance. <x id="LINE_BREAK"/> Instead, <x id="START_LINK"/>create a dedicated account<x id="CLOSE_LINK"/> to upload your videos. </source> |
2074 | <target state="new"> | 2349 | <target state="new"> |
2075 | We recommend you to not use the | 2350 | We recommend you to not use the |
2076 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>root | 2351 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>root |
2077 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> user to publish your videos, since it's the super-admin account of your instance. | 2352 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> user to publish your videos, since it's the super-admin account of your instance. |
2078 | 2353 | ||
2079 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 2354 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
2080 | Instead, | 2355 | Instead, |
2081 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>create a dedicated account | 2356 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>create a dedicated account |
2082 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to upload your videos. | 2357 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to upload your videos. |
2083 | 2358 | ||
2084 | </target> | 2359 | </target> |
2085 | 2360 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">11</context></context-group> | |
2086 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2361 | </trans-unit> |
2087 | <trans-unit id="0b60d939cf0f1af9fe513f31164d198abf671860" datatype="html"> | 2362 | <trans-unit id="0b60d939cf0f1af9fe513f31164d198abf671860" datatype="html"> |
2088 | <source>Import <x id="INTERPOLATION"/></source> | 2363 | <source>Import <x id="INTERPOLATION"/></source> |
2089 | <target state="new">Import | 2364 | <target state="new">Import |
2090 | <x id="INTERPOLATION" equiv-text="{{ videoName }}"/> | 2365 | <x id="INTERPOLATION" equiv-text="{{ videoName }}"/> |
2091 | </target> | 2366 | </target> |
2092 | 2367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">19</context></context-group> | |
2093 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 2368 | </trans-unit> |
2094 | <trans-unit id="e9cfe8bd050660077212af5c02f5be24821f28d5" datatype="html"> | 2369 | <trans-unit id="e9cfe8bd050660077212af5c02f5be24821f28d5" datatype="html"> |
2095 | <source>Upload <x id="INTERPOLATION"/></source> | 2370 | <source>Upload <x id="INTERPOLATION"/></source> |
2096 | <target state="new">Upload | 2371 | <target state="new">Upload |
2097 | <x id="INTERPOLATION" equiv-text="{{ videoName }}"/> | 2372 | <x id="INTERPOLATION" equiv-text="{{ videoName }}"/> |
2098 | </target> | 2373 | </target> |
2099 | 2374 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">20</context></context-group> | |
2100 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 2375 | </trans-unit> |
2101 | <trans-unit id="4faf57baebf0fb754a91af0c39521a30cbb1def3" datatype="html"> | 2376 | <trans-unit id="4faf57baebf0fb754a91af0c39521a30cbb1def3" datatype="html"> |
2102 | <source>Upload a file</source> | 2377 | <source>Upload a file</source> |
2103 | <target state="new">Upload a file</target> | 2378 | <target state="translated">Dosya yükle</target> |
2104 | 2379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">26</context></context-group> | |
2105 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 2380 | </trans-unit> |
2106 | <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470" datatype="html"> | 2381 | <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470" datatype="html"> |
2107 | <source>Import with URL</source> | 2382 | <source>Import with URL</source> |
2108 | <target state="new">Import with URL</target> | 2383 | <target state="translated">URL ile içe aktar</target> |
2109 | 2384 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">36</context></context-group> | |
2110 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2385 | </trans-unit> |
2111 | <trans-unit id="752c401d7dcd708944eef60e411187f71d882340" datatype="html"> | 2386 | <trans-unit id="752c401d7dcd708944eef60e411187f71d882340" datatype="html"> |
2112 | <source>Import with torrent</source> | 2387 | <source>Import with torrent</source> |
2113 | <target state="new">Import with torrent</target> | 2388 | <target state="translated">Torrent ile içe aktar</target> |
2114 | 2389 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">46</context></context-group> | |
2115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit><trans-unit id="d90cc5777a7e16ef76f325c89fe0f9270b9fa827" datatype="html"> | 2390 | </trans-unit> |
2116 | <source>Go live</source><target state="new">Go live</target> | 2391 | <trans-unit id="d90cc5777a7e16ef76f325c89fe0f9270b9fa827" datatype="html"> |
2117 | 2392 | <source>Go live</source> | |
2118 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 2393 | <target state="new">Go live</target> |
2394 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">56</context></context-group> | ||
2395 | </trans-unit> | ||
2119 | <trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1" datatype="html"> | 2396 | <trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1" datatype="html"> |
2120 | <source>Other videos</source> | 2397 | <source>Other videos</source> |
2121 | <target state="new"> | 2398 | <target state="new"> |
2122 | Other videos | 2399 | Other videos |
2123 | </target> | 2400 | </target> |
2124 | 2401 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/recommendations/recommended-videos.component.html</context><context context-type="linenumber">5</context></context-group> | |
2125 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/recommendations/recommended-videos.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 2402 | </trans-unit> |
2126 | <trans-unit id="70155053814b6999f8abce4f89bab85afc76e538" datatype="html"> | 2403 | <trans-unit id="70155053814b6999f8abce4f89bab85afc76e538" datatype="html"> |
2127 | <source>AUTOPLAY</source> | 2404 | <source>AUTOPLAY</source> |
2128 | <target state="new">AUTOPLAY</target> | 2405 | <target state="new">AUTOPLAY</target> |
2129 | 2406 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/recommendations/recommended-videos.component.html</context><context context-type="linenumber">10</context></context-group> | |
2130 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/recommendations/recommended-videos.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 2407 | </trans-unit> |
2131 | <trans-unit id="4619111912751495491" datatype="html"> | 2408 | <trans-unit id="4619111912751495491" datatype="html"> |
2132 | <source>Report this comment</source> | 2409 | <source>Report this comment</source> |
2133 | <target state="new">Report this comment</target> | 2410 | <target state="new">Report this comment</target> |
2134 | 2411 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">173</context></context-group> | |
2135 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 2412 | </trans-unit> |
2136 | <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9"> | 2413 | <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9"> |
2137 | <source>Share</source> | 2414 | <source>Share</source> |
2138 | <target>Paylaş</target> | 2415 | <target>Paylaş</target> |
2139 | 2416 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">12</context></context-group> | |
2140 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 2417 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">3</context></context-group> |
2418 | </trans-unit> | ||
2141 | <trans-unit id="71420314c00d8b709ea1aad8f608498f8db92258" datatype="html"> | 2419 | <trans-unit id="71420314c00d8b709ea1aad8f608498f8db92258" datatype="html"> |
2142 | <source>Share the playlist</source> | 2420 | <source>Share the playlist</source> |
2143 | <target state="new">Share the playlist</target> | 2421 | <target state="translated">Oynatma listesini paylaş</target> |
2144 | 2422 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">11</context></context-group> | |
2145 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2423 | </trans-unit> |
2146 | <trans-unit id="dfc8701a2a6898d6784db0ebf9d3191552d81d89" datatype="html"> | 2424 | <trans-unit id="dfc8701a2a6898d6784db0ebf9d3191552d81d89" datatype="html"> |
2147 | <source>Share the playlist at this video position</source> | 2425 | <source>Share the playlist at this video position</source> |
2148 | <target state="new">Share the playlist at this video position</target> | 2426 | <target state="new">Share the playlist at this video position</target> |
2149 | 2427 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">58</context></context-group> | |
2150 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 2428 | </trans-unit> |
2151 | <trans-unit id="51f7d84d38a304f7f056d2dcaf6d733c3ade35f9" datatype="html"> | 2429 | <trans-unit id="51f7d84d38a304f7f056d2dcaf6d733c3ade35f9" datatype="html"> |
2152 | <source>Share the video</source> | 2430 | <source>Share the video</source> |
2153 | <target state="new">Share the video</target> | 2431 | <target state="translated">Videoyu paylaş</target> |
2154 | 2432 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">66</context></context-group> | |
2155 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 2433 | </trans-unit> |
2156 | <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f" datatype="html"> | 2434 | <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f" datatype="html"> |
2157 | <source>QR-Code</source> | 2435 | <source>QR-Code</source> |
2158 | <target state="new">QR-Code</target> | 2436 | <target state="new">QR-Code</target> |
2159 | 2437 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">27</context></context-group> | |
2160 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 2438 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">81</context></context-group> |
2439 | </trans-unit> | ||
2161 | <trans-unit id="08c1bbb22df74b12c362fd114d0aa5a230ee4656" datatype="html"> | 2440 | <trans-unit id="08c1bbb22df74b12c362fd114d0aa5a230ee4656" datatype="html"> |
2162 | <source>The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites).</source> | 2441 | <source>The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites).</source> |
2163 | <target state="new"> | 2442 | <target state="new"> |
2164 | The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites). | 2443 | The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites). |
2165 | </target> | 2444 | </target> |
2166 | 2445 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">44</context></context-group> | |
2167 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">98</context></context-group></trans-unit> | 2446 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">98</context></context-group> |
2447 | </trans-unit> | ||
2168 | <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c" datatype="html"> | 2448 | <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c" datatype="html"> |
2169 | <source>Embed</source> | 2449 | <source>Embed</source> |
2170 | <target state="new">Embed</target> | 2450 | <target state="translated">Göm</target> |
2171 | 2451 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">37</context></context-group> | |
2172 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 2452 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">91</context></context-group> |
2453 | </trans-unit> | ||
2173 | <trans-unit id="9adb13e2ba5160c8b0b100dc3f4cbe6051b5af9b" datatype="html"> | 2454 | <trans-unit id="9adb13e2ba5160c8b0b100dc3f4cbe6051b5af9b" datatype="html"> |
2174 | <source>Auto select subtitle</source> | 2455 | <source>Auto select subtitle</source> |
2175 | <target state="new">Auto select subtitle</target> | 2456 | <target state="translated">Altyazıyı kendiliğinden seç</target> |
2176 | 2457 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">128</context></context-group> | |
2177 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">128</context></context-group></trans-unit> | 2458 | </trans-unit> |
2178 | <trans-unit id="f0e9c70583e8264cda79a8151de51cbb1ecb02ef" datatype="html"> | 2459 | <trans-unit id="f0e9c70583e8264cda79a8151de51cbb1ecb02ef" datatype="html"> |
2179 | <source>More customization</source> | 2460 | <source>More customization</source> |
2180 | <target state="new"> | 2461 | <target state="new"> |
2181 | More customization | 2462 | More customization |
2182 | </target> | 2463 | </target> |
2183 | 2464 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">223</context></context-group> | |
2184 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">223</context></context-group></trans-unit> | 2465 | </trans-unit> |
2185 | <trans-unit id="cfad9c5d4357d7c4ac99cc2ce63c54c9738901d7" datatype="html"> | 2466 | <trans-unit id="cfad9c5d4357d7c4ac99cc2ce63c54c9738901d7" datatype="html"> |
2186 | <source>Less customization</source> | 2467 | <source>Less customization</source> |
2187 | <target state="new"> | 2468 | <target state="new"> |
2188 | Less customization | 2469 | Less customization |
2189 | </target> | 2470 | </target> |
2190 | 2471 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">231</context></context-group> | |
2191 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">231</context></context-group></trans-unit> | 2472 | </trans-unit> |
2192 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2473 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2193 | <source>Autoplay</source> | 2474 | <source>Autoplay</source> |
2194 | <target state="new">Autoplay</target> | 2475 | <target state="new">Autoplay</target> |
2195 | 2476 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">159</context></context-group> | |
2196 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">159</context></context-group></trans-unit> | 2477 | </trans-unit> |
2197 | <trans-unit id="71b6e75eb1d54bcd9a64b9af9b99121785a065d0" datatype="html"> | 2478 | <trans-unit id="71b6e75eb1d54bcd9a64b9af9b99121785a065d0" datatype="html"> |
2198 | <source>Support <x id="INTERPOLATION"/></source> | 2479 | <source>Support <x id="INTERPOLATION"/></source> |
2199 | <target state="new">Support | 2480 | <target state="new">Support |
2200 | <x id="INTERPOLATION" equiv-text="{{ video.account.displayName }}"/> | 2481 | <x id="INTERPOLATION" equiv-text="{{ video.account.displayName }}"/> |
2201 | </target> | 2482 | </target> |
2202 | 2483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/modal/video-support.component.html</context><context context-type="linenumber">3</context></context-group> | |
2203 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/modal/video-support.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 2484 | </trans-unit> |
2204 | <trans-unit id="cb66498f1a530d9b29ee5bc6605628add658dd87" datatype="html"> | 2485 | <trans-unit id="cb66498f1a530d9b29ee5bc6605628add658dd87" datatype="html"> |
2205 | <source>Maybe later</source> | 2486 | <source>Maybe later</source> |
2206 | <target state="new">Maybe later</target> | 2487 | <target state="translated">Belki daha sonra</target> |
2207 | 2488 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/modal/video-support.component.html</context><context context-type="linenumber">11</context></context-group> | |
2208 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/modal/video-support.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2489 | </trans-unit> |
2209 | <trans-unit id="62a557fcfdbd25a31d1a0332294f94a466fee809" datatype="html"> | 2490 | <trans-unit id="62a557fcfdbd25a31d1a0332294f94a466fee809" datatype="html"> |
2210 | <source>Muted</source> | 2491 | <source>Muted</source> |
2211 | <target state="new">Muted</target> | 2492 | <target state="new">Muted</target> |
2212 | 2493 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">19</context></context-group> | |
2213 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">19</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> | 2494 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">166</context></context-group> |
2495 | </trans-unit> | ||
2214 | <trans-unit id="67732b09326ab7941ce983205a42d7819dd35668" datatype="html"> | 2496 | <trans-unit id="67732b09326ab7941ce983205a42d7819dd35668" datatype="html"> |
2215 | <source>Loop</source> | 2497 | <source>Loop</source> |
2216 | <target state="new">Loop</target> | 2498 | <target state="new">Loop</target> |
2217 | 2499 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">173</context></context-group> | |
2218 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">173</context></context-group></trans-unit><trans-unit id="84e4e97b8f2abab33abeecc89f47671b07fd09cf" datatype="html"> | 2500 | </trans-unit> |
2219 | <source>Use origin instance URL</source><target state="new">Use origin instance URL</target> | 2501 | <trans-unit id="84e4e97b8f2abab33abeecc89f47671b07fd09cf" datatype="html"> |
2220 | 2502 | <source>Use origin instance URL</source> | |
2221 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">180</context></context-group></trans-unit> | 2503 | <target state="new">Use origin instance URL</target> |
2504 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">180</context></context-group> | ||
2505 | </trans-unit> | ||
2222 | <trans-unit id="af3ab1a1035c222ccc88816baa236eb95cea7523" datatype="html"> | 2506 | <trans-unit id="af3ab1a1035c222ccc88816baa236eb95cea7523" datatype="html"> |
2223 | <source>Display video title</source> | 2507 | <source>Display video title</source> |
2224 | <target state="new">Display video title</target> | 2508 | <target state="translated">Video başlığını göster</target> |
2225 | 2509 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">189</context></context-group> | |
2226 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">189</context></context-group></trans-unit> | 2510 | </trans-unit> |
2227 | <trans-unit id="cd0fb32d9b50b615bdce413ca955283df7ab0b74" datatype="html"> | 2511 | <trans-unit id="cd0fb32d9b50b615bdce413ca955283df7ab0b74" datatype="html"> |
2228 | <source>Display privacy warning</source> | 2512 | <source>Display privacy warning</source> |
2229 | <target state="new">Display privacy warning</target> | 2513 | <target state="translated">Gizlilik uyarısını göster</target> |
2230 | 2514 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">196</context></context-group> | |
2231 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">196</context></context-group></trans-unit> | 2515 | </trans-unit> |
2232 | <trans-unit id="3e10c53d0372db827bf38571e56d166f1df963bf" datatype="html"> | 2516 | <trans-unit id="3e10c53d0372db827bf38571e56d166f1df963bf" datatype="html"> |
2233 | <source>Display player controls</source> | 2517 | <source>Display player controls</source> |
2234 | <target state="new">Display player controls</target> | 2518 | <target state="translated">Oynatıcı kontrollerini göster</target> |
2235 | 2519 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">203</context></context-group> | |
2236 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">203</context></context-group></trans-unit> | 2520 | </trans-unit> |
2237 | <trans-unit id="d0701f8fd194fd5a29f6dc015d0a27c85128b65e" datatype="html"> | 2521 | <trans-unit id="d0701f8fd194fd5a29f6dc015d0a27c85128b65e" datatype="html"> |
2238 | <source>Display PeerTube button link</source> | 2522 | <source>Display PeerTube button link</source> |
2239 | <target state="new">Display PeerTube button link</target> | 2523 | <target state="new">Display PeerTube button link</target> |
2240 | 2524 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">210</context></context-group> | |
2241 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">210</context></context-group></trans-unit> | 2525 | </trans-unit> |
2242 | <trans-unit id="3c4c080864b313cfdff5fdea6aae5da276246d99" datatype="html"> | 2526 | <trans-unit id="3c4c080864b313cfdff5fdea6aae5da276246d99" datatype="html"> |
2243 | <source>Public</source> | 2527 | <source>Public</source> |
2244 | <target state="new">Public</target> | 2528 | <target state="new">Public</target> |
2245 | 2529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.html</context><context context-type="linenumber">11</context></context-group> | |
2246 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2530 | </trans-unit> |
2247 | <trans-unit id="38e66e2d779d6d819cd7703ab73ab1bab75f8614" datatype="html"> | 2531 | <trans-unit id="38e66e2d779d6d819cd7703ab73ab1bab75f8614" datatype="html"> |
2248 | <source>The video is being imported, it will be available when the import is finished.</source> | 2532 | <source>The video is being imported, it will be available when the import is finished.</source> |
2249 | <target state="new">The video is being imported, it will be available when the import is finished.</target> | 2533 | <target state="new">The video is being imported, it will be available when the import is finished.</target> |
2250 | 2534 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">21</context></context-group> | |
2251 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 2535 | </trans-unit> |
2252 | <trans-unit id="d2a8e8e4e5345201c07ba03a7fafe8b663230246" datatype="html"> | 2536 | <trans-unit id="d2a8e8e4e5345201c07ba03a7fafe8b663230246" datatype="html"> |
2253 | <source>The video is being transcoded, it may not work properly.</source> | 2537 | <source>The video is being transcoded, it may not work properly.</source> |
2254 | <target state="new">The video is being transcoded, it may not work properly.</target> | 2538 | <target state="new">The video is being transcoded, it may not work properly.</target> |
2255 | 2539 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">25</context></context-group> | |
2256 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2540 | </trans-unit> |
2257 | <trans-unit id="2dd4add38e83d8ec58e37735e76090e9738c974a" datatype="html"> | 2541 | <trans-unit id="2dd4add38e83d8ec58e37735e76090e9738c974a" datatype="html"> |
2258 | <source>This video will be published on <x id="INTERPOLATION"/>. </source> | 2542 | <source>This video will be published on <x id="INTERPOLATION"/>. </source> |
2259 | <target state="new">This video will be published on | 2543 | <target state="new">This video will be published on |
2260 | <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. | 2544 | <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. |
2261 | </target> | 2545 | </target> |
2262 | 2546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">28</context></context-group> | |
2263 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit><trans-unit id="130abb70adbfbda0d03e31ce2e94dc3871e30c2f" datatype="html"> | 2547 | </trans-unit> |
2264 | <source> This live has not started yet. </source><target state="new"> This live has not started yet. </target> | 2548 | <trans-unit id="130abb70adbfbda0d03e31ce2e94dc3871e30c2f" datatype="html"> |
2265 | 2549 | <source>This live has not started yet.</source> | |
2266 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit><trans-unit id="4ae62d06d4ba0a78f3c5f478235cdb8cacc5f3e9" datatype="html"> | 2550 | <target state="translated">Bu canlı yayın henüz başlamadı.</target> |
2267 | <source> This live has ended. </source><target state="new"> This live has ended. </target> | 2551 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">33</context></context-group> |
2268 | 2552 | </trans-unit> | |
2269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> | 2553 | <trans-unit id="4ae62d06d4ba0a78f3c5f478235cdb8cacc5f3e9" datatype="html"> |
2554 | <source>This live has ended.</source> | ||
2555 | <target state="translated">Bu canlı yayın bitti.</target> | ||
2556 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">37</context></context-group> | ||
2557 | </trans-unit> | ||
2270 | <trans-unit id="bbb57efb2edd572de832c8fff03bc85d7723abd3" datatype="html"> | 2558 | <trans-unit id="bbb57efb2edd572de832c8fff03bc85d7723abd3" datatype="html"> |
2271 | <source>This video is blocked.</source> | 2559 | <source>This video is blocked.</source> |
2272 | <target state="new">This video is blocked.</target> | 2560 | <target state="translated">Bu video engellendi.</target> |
2273 | 2561 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">41</context></context-group> | |
2274 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit><trans-unit id="1ade7342907e567e3c91d505719fac63d95324e0" datatype="html"> | 2562 | </trans-unit> |
2275 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source><target state="new">Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> | 2563 | <trans-unit id="1ade7342907e567e3c91d505719fac63d95324e0" datatype="html"> |
2276 | 2564 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> | |
2277 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">68</context></context-group></trans-unit> | 2565 | <target state="new">Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> |
2278 | 2566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">55</context></context-group> | |
2279 | 2567 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">68</context></context-group> | |
2568 | </trans-unit> | ||
2280 | <trans-unit id="74059c5dce671d464259e3ce37a5d408c3fd7720" datatype="html"> | 2569 | <trans-unit id="74059c5dce671d464259e3ce37a5d408c3fd7720" datatype="html"> |
2281 | <source>SUPPORT</source> | 2570 | <source>SUPPORT</source> |
2282 | <target state="new">SUPPORT</target> | 2571 | <target state="translated">DESTEKLE</target> |
2283 | 2572 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">104</context></context-group> | |
2284 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 2573 | </trans-unit> |
2285 | <trans-unit id="83ea0f7a6f84393af198d48193e01a96f3fcbc9a" datatype="html"> | 2574 | <trans-unit id="83ea0f7a6f84393af198d48193e01a96f3fcbc9a" datatype="html"> |
2286 | <source>SHARE</source> | 2575 | <source>SHARE</source> |
2287 | <target state="new">SHARE</target> | 2576 | <target state="translated">PAYLAŞ</target> |
2288 | 2577 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">109</context></context-group> | |
2289 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">109</context></context-group></trans-unit> | 2578 | </trans-unit> |
2290 | <trans-unit id="cf272d006ff8c0b60e61b14e17fa6a39b30d614a" datatype="html"> | 2579 | <trans-unit id="cf272d006ff8c0b60e61b14e17fa6a39b30d614a" datatype="html"> |
2291 | <source>SAVE</source> | 2580 | <source>SAVE</source> |
2292 | <target state="new">SAVE</target> | 2581 | <target state="translated">KAYDET</target> |
2293 | 2582 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">120</context></context-group> | |
2294 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">120</context></context-group></trans-unit> | 2583 | </trans-unit> |
2295 | <trans-unit id="8270eaeb2582eef4b7cde314c370aaf5b45c43d2" datatype="html"> | 2584 | <trans-unit id="8270eaeb2582eef4b7cde314c370aaf5b45c43d2" datatype="html"> |
2296 | <source>DOWNLOAD</source> | 2585 | <source>DOWNLOAD</source> |
2297 | <target state="new">DOWNLOAD</target> | 2586 | <target state="translated">İNDİR</target> |
2298 | 2587 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">134</context></context-group> | |
2299 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">134</context></context-group></trans-unit> | 2588 | </trans-unit> |
2300 | <trans-unit id="677619204556459328" datatype="html"> | 2589 | <trans-unit id="677619204556459328" datatype="html"> |
2301 | <source>Like this video</source> | 2590 | <source>Like this video</source> |
2302 | <target state="new">Like this video</target> | 2591 | <target state="translated">Bu videoyu beğen</target> |
2303 | 2592 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">132</context></context-group> | |
2304 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">132</context></context-group></trans-unit> | 2593 | </trans-unit> |
2305 | <trans-unit id="1979134407801821102" datatype="html"> | 2594 | <trans-unit id="1979134407801821102" datatype="html"> |
2306 | <source>Dislike this video</source> | 2595 | <source>Dislike this video</source> |
2307 | <target state="new">Dislike this video</target> | 2596 | <target state="translated">Bu videoyu beğenme</target> |
2308 | 2597 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">133</context></context-group> | |
2309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 2598 | </trans-unit> |
2310 | <trans-unit id="4001371302469308813" datatype="html"> | 2599 | <trans-unit id="4001371302469308813" datatype="html"> |
2311 | <source>Support options for this video</source> | 2600 | <source>Support options for this video</source> |
2312 | <target state="new">Support options for this video</target> | 2601 | <target state="new">Support options for this video</target> |
2313 | 2602 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">134</context></context-group> | |
2314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> | 2603 | </trans-unit> |
2315 | <trans-unit id="0b7f242da10ece3f2995095c455b9a92ebcdd3b4" datatype="html"> | 2604 | <trans-unit id="0b7f242da10ece3f2995095c455b9a92ebcdd3b4" datatype="html"> |
2316 | <source>By <x id="INTERPOLATION"/></source> | 2605 | <source>By <x id="INTERPOLATION"/></source> |
2317 | <target state="new">By | 2606 | <target state="new">By |
2318 | <x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> | 2607 | <x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> |
2319 | </target> | 2608 | </target> |
2320 | 2609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">186</context></context-group> | |
2321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">186</context></context-group></trans-unit> | 2610 | </trans-unit> |
2322 | <trans-unit id="d0336848b0c375a1c25ba369b3481ee383217a4f" datatype="html"> | 2611 | <trans-unit id="d0336848b0c375a1c25ba369b3481ee383217a4f" datatype="html"> |
2323 | <source>Subscribe</source> | 2612 | <source>Subscribe</source> |
2324 | <target state="new">Subscribe</target> | 2613 | <target state="translated">Abone ol</target> |
2325 | 2614 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">9</context></context-group> | |
2326 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 2615 | </trans-unit> |
2327 | <trans-unit id="6e215e23505768151b501b7e11dd5b864e604fd9" datatype="html"> | 2616 | <trans-unit id="6e215e23505768151b501b7e11dd5b864e604fd9" datatype="html"> |
2328 | <source>Subscribe to all channels</source> | 2617 | <source>Subscribe to all channels</source> |
2329 | <target state="new">Subscribe to all channels</target> | 2618 | <target state="translated">Bütün kanallara abone ol</target> |
2330 | 2619 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">11</context></context-group> | |
2331 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2620 | </trans-unit> |
2332 | <trans-unit id="c33a843e309de9d67771aa5e666f61e92f4c6216" datatype="html"> | 2621 | <trans-unit id="c33a843e309de9d67771aa5e666f61e92f4c6216" datatype="html"> |
2333 | <source>channels subscribed</source> | 2622 | <source>channels subscribed</source> |
2334 | <target state="new">channels subscribed</target> | 2623 | <target state="new">channels subscribed</target> |
2335 | 2624 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">13</context></context-group> | |
2336 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 2625 | </trans-unit> |
2337 | <trans-unit id="e01bfa3629e2133dbf307975446bde047eb8bd1f" datatype="html"> | 2626 | <trans-unit id="e01bfa3629e2133dbf307975446bde047eb8bd1f" datatype="html"> |
2338 | <source>{VAR_SELECT, select, undefined {Unsubscribe} other {Unsubscribe from all channels} }</source> | 2627 | <source>{VAR_SELECT, select, undefined {Unsubscribe} other {Unsubscribe from all channels} }</source> |
2339 | <target state="new">{VAR_SELECT, select, undefined {Unsubscribe} other {Unsubscribe from all channels} }</target> | 2628 | <target state="new">{VAR_SELECT, select, undefined {Unsubscribe} other {Unsubscribe from all channels} }</target> |
2340 | 2629 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">34</context></context-group> | |
2341 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 2630 | </trans-unit> |
2342 | <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b"> | 2631 | <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b"> |
2343 | <source>Show more</source> | 2632 | <source>Show more</source> |
2344 | <target>Daha fazlasını göster</target> | 2633 | <target>Daha fazla göster</target> |
2345 | 2634 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">213</context></context-group> | |
2346 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">213</context></context-group></trans-unit> | 2635 | </trans-unit> |
2347 | <trans-unit id="5403a767248e304199592271bba3366d2ca3f903"> | 2636 | <trans-unit id="5403a767248e304199592271bba3366d2ca3f903"> |
2348 | <source>Show less</source> | 2637 | <source>Show less</source> |
2349 | <target>Daha azını göster</target> | 2638 | <target>Daha az göster</target> |
2350 | 2639 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">219</context></context-group> | |
2351 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">219</context></context-group></trans-unit> | 2640 | </trans-unit> |
2352 | <trans-unit id="57bfd54c230fc20caff1f0b321ad42be3bf859a6" datatype="html"> | 2641 | <trans-unit id="57bfd54c230fc20caff1f0b321ad42be3bf859a6" datatype="html"> |
2353 | <source>Origin instance</source> | 2642 | <source>Origin instance</source> |
2354 | <target state="new">Origin instance</target> | 2643 | <target state="new">Origin instance</target> |
2355 | 2644 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">231</context></context-group> | |
2356 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">231</context></context-group></trans-unit> | 2645 | </trans-unit> |
2357 | <trans-unit id="284b55e2ae9f6e5bc78c92a18ef26da02f380079" datatype="html"> | 2646 | <trans-unit id="284b55e2ae9f6e5bc78c92a18ef26da02f380079" datatype="html"> |
2358 | <source>Originally published</source> | 2647 | <source>Originally published</source> |
2359 | <target state="new">Originally published</target> | 2648 | <target state="new">Originally published</target> |
2360 | 2649 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">236</context></context-group> | |
2361 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">236</context></context-group></trans-unit> | 2650 | </trans-unit> |
2362 | <trans-unit id="4c0ba3cde3b3c58b855ffb4beaa5804a2fc3826b" datatype="html"> | 2651 | <trans-unit id="4c0ba3cde3b3c58b855ffb4beaa5804a2fc3826b" datatype="html"> |
2363 | <source>Friendly Reminder:</source> | 2652 | <source>Friendly Reminder:</source> |
2364 | <target state="new">Friendly Reminder: </target> | 2653 | <target state="new">Friendly Reminder: </target> |
2365 | 2654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">299</context></context-group> | |
2366 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">299</context></context-group></trans-unit> | 2655 | </trans-unit> |
2367 | <trans-unit id="89707647cc7c304e499ae46a5a0c5b508c3c80a0" datatype="html"> | 2656 | <trans-unit id="89707647cc7c304e499ae46a5a0c5b508c3c80a0" datatype="html"> |
2368 | <source>the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers.</source> | 2657 | <source>the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers.</source> |
2369 | <target state="new"> | 2658 | <target state="new"> |
2370 | the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. | 2659 | the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. |
2371 | </target> | 2660 | </target> |
2372 | 2661 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">301</context></context-group> | |
2373 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">301</context></context-group></trans-unit> | 2662 | </trans-unit> |
2374 | <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e" datatype="html"> | 2663 | <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e" datatype="html"> |
2375 | <source>More information</source> | 2664 | <source>More information</source> |
2376 | <target state="new">More information</target> | 2665 | <target state="translated">Daha fazla bilgi</target> |
2377 | 2666 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">52</context></context-group> | |
2378 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">50</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">73</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">304</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">53</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> | 2667 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">50</context></context-group> |
2668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">73</context></context-group> | ||
2669 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">304</context></context-group> | ||
2670 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">53</context></context-group> | ||
2671 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">53</context></context-group> | ||
2672 | </trans-unit> | ||
2379 | <trans-unit id="75d9bb7a2e6256268cd0653aac75a8b994d3cf1f" datatype="html"> | 2673 | <trans-unit id="75d9bb7a2e6256268cd0653aac75a8b994d3cf1f" datatype="html"> |
2380 | <source>The video was blocked due to automatic blocking of new videos</source> | 2674 | <source>The video was blocked due to automatic blocking of new videos</source> |
2381 | <target state="new">The video was blocked due to automatic blocking of new videos</target> | 2675 | <target state="new">The video was blocked due to automatic blocking of new videos</target> |
2382 | 2676 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">74</context></context-group> | |
2383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit><trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9" datatype="html"> | 2677 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">74</context></context-group> |
2384 | <source>NSFW</source><target state="new">NSFW</target> | 2678 | </trans-unit> |
2385 | 2679 | <trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9" datatype="html"> | |
2386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> | 2680 | <source>NSFW</source> |
2681 | <target state="translated">Müstehcen</target> | ||
2682 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">84</context></context-group> | ||
2683 | </trans-unit> | ||
2387 | <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318" datatype="html"> | 2684 | <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318" datatype="html"> |
2388 | <source>Get more information</source> | 2685 | <source>Get more information</source> |
2389 | <target state="new">Get more information</target> | 2686 | <target state="translated">Daha fazla bilgi edin</target> |
2390 | 2687 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">304</context></context-group> | |
2391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">304</context></context-group></trans-unit> | 2688 | </trans-unit> |
2392 | <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f" datatype="html"> | 2689 | <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f" datatype="html"> |
2393 | <source>OK</source> | 2690 | <source>OK</source> |
2394 | <target state="new"> | 2691 | <target state="translated">Tamam</target> |
2395 | OK | 2692 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">308</context></context-group> |
2396 | </target> | 2693 | </trans-unit> |
2397 | |||
2398 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">308</context></context-group></trans-unit> | ||
2399 | <trans-unit id="a8db53a47543132da1a68066f0a9cba0551a8933" datatype="html"> | 2694 | <trans-unit id="a8db53a47543132da1a68066f0a9cba0551a8933" datatype="html"> |
2400 | <source>1 Comment</source> | 2695 | <source>1 Comment</source> |
2401 | <target state="new">1 Comment</target> | 2696 | <target state="translated">1 Yorum</target> |
2402 | 2697 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">6</context></context-group> | |
2403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2698 | </trans-unit> |
2404 | <trans-unit id="8164af7bbe7fb9a3d2064ddf2627a7a4d5446575" datatype="html"> | 2699 | <trans-unit id="8164af7bbe7fb9a3d2064ddf2627a7a4d5446575" datatype="html"> |
2405 | <source><x id="INTERPOLATION" equiv-text="{{ componentPagination.totalItems }}"/> Comments </source> | 2700 | <source><x id="INTERPOLATION" equiv-text="{{ componentPagination.totalItems }}"/> Comments </source> |
2406 | <target state="new"> | 2701 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ componentPagination.totalItems }}"/> Yorum </target> |
2407 | <x id="INTERPOLATION" equiv-text="{{ componentPagination.totalItems }}"/> Comments | 2702 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">7</context></context-group> |
2408 | </target> | 2703 | </trans-unit> |
2409 | |||
2410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | ||
2411 | <trans-unit id="c5bb9f8936cb33db2ca351a1b87a984fdf11917c" datatype="html"> | 2704 | <trans-unit id="c5bb9f8936cb33db2ca351a1b87a984fdf11917c" datatype="html"> |
2412 | <source>Comments</source> | 2705 | <source>Comments</source> |
2413 | <target state="new">Comments</target> | 2706 | <target state="new">Comments</target> |
2414 | 2707 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">9</context></context-group> | |
2415 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 2708 | </trans-unit> |
2416 | <trans-unit id="a87cd0a1633f944e697fa2ee68362d8bc11c41ee" datatype="html"> | 2709 | <trans-unit id="a87cd0a1633f944e697fa2ee68362d8bc11c41ee" datatype="html"> |
2417 | <source>SORT BY</source> | 2710 | <source>SORT BY</source> |
2418 | <target state="new"> | 2711 | <target state="new"> |
2419 | SORT BY | 2712 | SORT BY |
2420 | </target> | 2713 | </target> |
2421 | 2714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">16</context></context-group> | |
2422 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 2715 | </trans-unit> |
2423 | <trans-unit id="6d355ab9a2c6af4f7ffcb44dd8ca0c5572f958ca" datatype="html"> | 2716 | <trans-unit id="6d355ab9a2c6af4f7ffcb44dd8ca0c5572f958ca" datatype="html"> |
2424 | <source>Most recent first (default)</source> | 2717 | <source>Most recent first (default)</source> |
2425 | <target state="new">Most recent first (default)</target> | 2718 | <target state="translated">Önce en yeniler (varsayılan)</target> |
2426 | 2719 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">19</context></context-group> | |
2427 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 2720 | </trans-unit> |
2428 | <trans-unit id="df2d2cca87a54e75abb4196d10358579dd0321b4" datatype="html"> | 2721 | <trans-unit id="df2d2cca87a54e75abb4196d10358579dd0321b4" datatype="html"> |
2429 | <source>Most replies first</source> | 2722 | <source>Most replies first</source> |
2430 | <target state="new">Most replies first</target> | 2723 | <target state="translated">Önce en çok yanıtlananlar</target> |
2431 | 2724 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">20</context></context-group> | |
2432 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 2725 | </trans-unit> |
2433 | <trans-unit id="17810e68b0ba21e62e61eecfaf0a93b2c91033b4"> | 2726 | <trans-unit id="17810e68b0ba21e62e61eecfaf0a93b2c91033b4"> |
2434 | <source>No comments.</source> | 2727 | <source>No comments.</source> |
2435 | <target>Yorum yok.</target> | 2728 | <target>Yorum yok.</target> |
2436 | 2729 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group> | |
2437 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 2730 | </trans-unit> |
2438 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2731 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2439 | <source>View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2732 | <source>View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2440 | <target state="new"> | 2733 | <target state="new"> |
@@ -2443,8 +2736,8 @@ The link will expire within 1 hour.</target> | |||
2443 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> and others | 2736 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> and others |
2444 | 2737 | ||
2445 | </target> | 2738 | </target> |
2446 | 2739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">83</context></context-group> | |
2447 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 2740 | </trans-unit> |
2448 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2741 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2449 | <source>View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2742 | <source>View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2450 | <target state="new"> | 2743 | <target state="new"> |
@@ -2452,288 +2745,336 @@ The link will expire within 1 hour.</target> | |||
2452 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies from | 2745 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies from |
2453 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2746 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2454 | </target> | 2747 | </target> |
2455 | 2748 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">86</context></context-group> | |
2456 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 2749 | </trans-unit> |
2457 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2750 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2458 | <source>View <x id="INTERPOLATION"/> replies</source> | 2751 | <source>View <x id="INTERPOLATION"/> replies</source> |
2459 | <target state="new">View | 2752 | <target state="new">View |
2460 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2753 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2461 | </target> | 2754 | </target> |
2462 | 2755 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group> | |
2463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> | 2756 | </trans-unit> |
2464 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2757 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2465 | <source>Comments are disabled.</source> | 2758 | <source>Comments are disabled.</source> |
2466 | <target> | 2759 | <target> |
2467 | Yorumlar kapalı. | 2760 | Yorumlar kapalı. |
2468 | </target> | 2761 | </target> |
2469 | 2762 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group> | |
2470 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 2763 | </trans-unit> |
2471 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> | 2764 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> |
2472 | <source>Add comment...</source> | 2765 | <source>Add comment...</source> |
2473 | <target state="new">Add comment...</target> | 2766 | <target state="translated">Yorum yaz...</target> |
2474 | 2767 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group> | |
2475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2768 | </trans-unit> |
2476 | <trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> | 2769 | <trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2477 | <source>Markdown compatible</source> | 2770 | <source>Markdown compatible</source> |
2478 | <target state="new">Markdown compatible</target> | 2771 | <target state="new">Markdown compatible</target> |
2479 | 2772 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">13</context></context-group> | |
2480 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 2773 | </trans-unit> |
2481 | <trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | 2774 | <trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> |
2482 | <source>Markdown compatible that supports:</source> | 2775 | <source>Markdown compatible that supports:</source> |
2483 | <target state="new">Markdown compatible that supports:</target> | 2776 | <target state="new">Markdown compatible that supports:</target> |
2484 | 2777 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">15</context></context-group> | |
2485 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 2778 | </trans-unit> |
2486 | <trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | 2779 | <trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> |
2487 | <source>Auto generated links</source> | 2780 | <source>Auto generated links</source> |
2488 | <target state="new">Auto generated links</target> | 2781 | <target state="new">Auto generated links</target> |
2489 | 2782 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">18</context></context-group> | |
2490 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 2783 | </trans-unit> |
2491 | <trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | 2784 | <trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> |
2492 | <source>Break lines</source> | 2785 | <source>Break lines</source> |
2493 | <target state="new">Break lines</target> | 2786 | <target state="new">Break lines</target> |
2494 | 2787 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">19</context></context-group> | |
2495 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 2788 | </trans-unit> |
2496 | <trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | 2789 | <trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> |
2497 | <source>Lists</source> | 2790 | <source>Lists</source> |
2498 | <target state="new">Lists</target> | 2791 | <target state="new">Lists</target> |
2499 | 2792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">20</context></context-group> | |
2500 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 2793 | </trans-unit> |
2501 | <trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | 2794 | <trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> |
2502 | <source>Emphasis</source> | 2795 | <source>Emphasis</source> |
2503 | <target state="new">Emphasis</target> | 2796 | <target state="new">Emphasis</target> |
2504 | 2797 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group> | |
2505 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 2798 | </trans-unit> |
2506 | <trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | 2799 | <trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> |
2507 | <source>bold</source> | 2800 | <source>bold</source> |
2508 | <target state="new">bold</target> | 2801 | <target state="translated">kalın</target> |
2509 | 2802 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">23</context></context-group> | |
2510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 2803 | </trans-unit> |
2511 | <trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | 2804 | <trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> |
2512 | <source>italic</source> | 2805 | <source>italic</source> |
2513 | <target state="new">italic</target> | 2806 | <target state="translated">eğik</target> |
2514 | 2807 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">23</context></context-group> | |
2515 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 2808 | </trans-unit> |
2516 | <trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | 2809 | <trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> |
2517 | <source>Emoji shortcuts</source> | 2810 | <source>Emoji shortcuts</source> |
2518 | <target state="new">Emoji shortcuts</target> | 2811 | <target state="translated">Emoji kısayolları</target> |
2519 | 2812 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">26</context></context-group> | |
2520 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 2813 | </trans-unit> |
2521 | <trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | 2814 | <trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> |
2522 | <source>Emoji markup</source> | 2815 | <source>Emoji markup</source> |
2523 | <target state="new">Emoji markup</target> | 2816 | <target state="new">Emoji markup</target> |
2524 | 2817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">30</context></context-group> | |
2525 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 2818 | </trans-unit> |
2526 | <trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | 2819 | <trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> |
2527 | <source>See complete list</source> | 2820 | <source>See complete list</source> |
2528 | <target state="new">See complete list</target> | 2821 | <target state="new">See complete list</target> |
2529 | 2822 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">32</context></context-group> | |
2530 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2823 | </trans-unit> |
2531 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2824 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2532 | <source>You are one step away from commenting</source> | 2825 | <source>You are one step away from commenting</source> |
2533 | <target state="new">You are one step away from commenting</target> | 2826 | <target state="new">You are one step away from commenting</target> |
2534 | 2827 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group> | |
2535 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit><trans-unit id="6670e588ad98a777c18f30096aeff7687d53c1c4" datatype="html"> | 2828 | </trans-unit> |
2536 | <source> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </source><target state="new"> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </target> | 2829 | <trans-unit id="6670e588ad98a777c18f30096aeff7687d53c1c4" datatype="html"> |
2830 | <source>You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example).</source> | ||
2831 | <target state="new"> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </target> | ||
2537 | <context-group purpose="location"> | 2832 | <context-group purpose="location"> |
2538 | <context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context> | 2833 | <context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2539 | <context context-type="linenumber">60,61</context> | 2834 | <context context-type="linenumber">60,61</context> |
2540 | </context-group> | 2835 | </context-group> |
2541 | </trans-unit> | 2836 | </trans-unit> |
2542 | |||
2543 | |||
2544 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2837 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2545 | <source>Login to comment</source> | 2838 | <source>Login to comment</source> |
2546 | <target state="new">Login to comment</target> | 2839 | <target state="new">Login to comment</target> |
2547 | 2840 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">72</context></context-group> | |
2548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> | 2841 | </trans-unit> |
2549 | <trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> | 2842 | <trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2550 | <source>Markdown Emoji List</source> | 2843 | <source>Markdown Emoji List</source> |
2551 | <target state="new">Markdown Emoji List</target> | 2844 | <target state="new">Markdown Emoji List</target> |
2552 | 2845 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">80</context></context-group> | |
2553 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">80</context></context-group></trans-unit> | 2846 | </trans-unit> |
2554 | <trans-unit id="2662644497259948010" datatype="html"> | 2847 | <trans-unit id="2662644497259948010" datatype="html"> |
2555 | <source>Comment</source> | 2848 | <source>Comment</source> |
2556 | <target state="new">Comment</target> | 2849 | <target state="new">Comment</target> |
2557 | 2850 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.ts</context><context context-type="linenumber">67</context></context-group> | |
2558 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 2851 | </trans-unit> |
2559 | <trans-unit id="4502286564339177240" datatype="html"> | 2852 | <trans-unit id="4502286564339177240" datatype="html"> |
2560 | <source>Reply</source> | 2853 | <source>Reply</source> |
2561 | <target state="new">Reply</target> | 2854 | <target state="new">Reply</target> |
2562 | 2855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.ts</context><context context-type="linenumber">69</context></context-group> | |
2563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment-add.component.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> | 2856 | </trans-unit> |
2564 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 2857 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
2565 | <source>Highlighted comment</source> | 2858 | <source>Highlighted comment</source> |
2566 | <target state="new">Highlighted comment</target> | 2859 | <target state="new">Highlighted comment</target> |
2567 | 2860 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">20</context></context-group> | |
2568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 2861 | </trans-unit> |
2569 | <trans-unit id="cb23d4d98007aa4d7123837f4c17a671848377d6" datatype="html"> | 2862 | <trans-unit id="cb23d4d98007aa4d7123837f4c17a671848377d6" datatype="html"> |
2570 | <source>Reply</source> | 2863 | <source>Reply</source> |
2571 | <target state="new">Reply</target> | 2864 | <target state="new">Reply</target> |
2572 | 2865 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">46</context></context-group> | |
2573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 2866 | </trans-unit> |
2574 | <trans-unit id="3dc4cf221502c170c7fcd4b2bffc9b3aa46b84bb" datatype="html"> | 2867 | <trans-unit id="3dc4cf221502c170c7fcd4b2bffc9b3aa46b84bb" datatype="html"> |
2575 | <source>This comment has been deleted</source> | 2868 | <source>This comment has been deleted</source> |
2576 | <target state="new">This comment has been deleted</target> | 2869 | <target state="new">This comment has been deleted</target> |
2577 | 2870 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">63</context></context-group> | |
2578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">63</context></context-group></trans-unit> | 2871 | </trans-unit> |
2579 | <trans-unit id="9031514421077169181" datatype="html"> | 2872 | <trans-unit id="9031514421077169181" datatype="html"> |
2580 | <source>Video redundancies</source> | 2873 | <source>Video redundancies</source> |
2581 | <target state="new">Video redundancies</target> | 2874 | <target state="new">Video redundancies</target> |
2582 | 2875 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">39</context></context-group> | |
2583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 2876 | </trans-unit> |
2584 | <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396" datatype="html"> | 2877 | <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396" datatype="html"> |
2585 | <source>1 host (without "http://") per line</source> | 2878 | <source>1 host (without "http://") per line</source> |
2586 | <target state="new">1 host (without "http://") per line</target> | 2879 | <target state="new">1 host (without "http://") per line</target> |
2587 | 2880 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">11</context></context-group> | |
2588 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2881 | </trans-unit> |
2589 | <trans-unit id="b56702ff10875710f111634cc315cd3ef01b206f" datatype="html"> | 2882 | <trans-unit id="b56702ff10875710f111634cc315cd3ef01b206f" datatype="html"> |
2590 | <source>Your report will be sent to moderators of <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> and will be forwarded to the comment origin (<x id="INTERPOLATION_1"/>) too<x id="CLOSE_TAG_NG_CONTAINER"/>. </source> | 2883 | <source>Your report will be sent to moderators of <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> and will be forwarded to the comment origin (<x id="INTERPOLATION_1"/>) too<x id="CLOSE_TAG_NG_CONTAINER"/>. </source> |
2591 | <target state="new"> | 2884 | <target state="new"> |
2592 | Your report will be sent to moderators of | 2885 | Your report will be sent to moderators of |
2593 | <x id="INTERPOLATION" equiv-text="{{ currentHost }}"/> | 2886 | <x id="INTERPOLATION" equiv-text="{{ currentHost }}"/> |
2594 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> and will be forwarded to the comment origin ( | 2887 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> and will be forwarded to the comment origin ( |
2595 | <x id="INTERPOLATION_1" equiv-text="{{ originHost }}"/>) too | 2888 | <x id="INTERPOLATION_1" equiv-text="{{ originHost }}"/>) too |
2596 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/>. | 2889 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/>. |
2597 | 2890 | ||
2598 | </target> | 2891 | </target> |
2599 | 2892 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">36</context></context-group> | |
2600 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit><trans-unit id="658727060940996385" datatype="html"> | 2893 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">36</context></context-group> |
2601 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source><target state="new">Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</target> | 2894 | </trans-unit> |
2895 | <trans-unit id="658727060940996385" datatype="html"> | ||
2896 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source> | ||
2897 | <target state="new">Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</target> | ||
2602 | <context-group purpose="location"> | 2898 | <context-group purpose="location"> |
2603 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> | 2899 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> |
2604 | <context context-type="linenumber">41</context> | 2900 | <context context-type="linenumber">41</context> |
2605 | </context-group> | 2901 | </context-group> |
2606 | </trans-unit><trans-unit id="270726559962362501" datatype="html"> | 2902 | </trans-unit> |
2607 | <source>Renew token</source><target state="new">Renew token</target> | 2903 | <trans-unit id="270726559962362501" datatype="html"> |
2904 | <source>Renew token</source> | ||
2905 | <target state="new">Renew token</target> | ||
2608 | <context-group purpose="location"> | 2906 | <context-group purpose="location"> |
2609 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> | 2907 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> |
2610 | <context context-type="linenumber">42</context> | 2908 | <context context-type="linenumber">42</context> |
2611 | </context-group> | 2909 | </context-group> |
2612 | </trans-unit><trans-unit id="3029923402309610616" datatype="html"> | 2910 | </trans-unit> |
2613 | <source>Token renewed. Update your client configuration accordingly.</source><target state="new">Token renewed. Update your client configuration accordingly.</target> | 2911 | <trans-unit id="3029923402309610616" datatype="html"> |
2912 | <source>Token renewed. Update your client configuration accordingly.</source> | ||
2913 | <target state="new">Token renewed. Update your client configuration accordingly.</target> | ||
2614 | <context-group purpose="location"> | 2914 | <context-group purpose="location"> |
2615 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> | 2915 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> |
2616 | <context context-type="linenumber">49</context> | 2916 | <context context-type="linenumber">49</context> |
2617 | </context-group> | 2917 | </context-group> |
2618 | </trans-unit><trans-unit id="f1abafaeb40ce52355ddcc24686e3cd17b64e08a" datatype="html"> | 2918 | </trans-unit> |
2619 | <source>Applications</source><target state="new">Applications</target> | 2919 | <trans-unit id="f1abafaeb40ce52355ddcc24686e3cd17b64e08a" datatype="html"> |
2920 | <source>Applications</source> | ||
2921 | <target state="translated">Uygulamalar</target> | ||
2620 | <context-group purpose="location"> | 2922 | <context-group purpose="location"> |
2621 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2923 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2622 | <context context-type="linenumber">3</context> | 2924 | <context context-type="linenumber">3</context> |
2623 | </context-group> | 2925 | </context-group> |
2624 | </trans-unit><trans-unit id="a9dff163e112fd17d43b049f58d1f6a0ee60aab0" datatype="html"> | 2926 | </trans-unit> |
2625 | <source>SUBSCRIPTION FEED</source><target state="new">SUBSCRIPTION FEED</target> | 2927 | <trans-unit id="a9dff163e112fd17d43b049f58d1f6a0ee60aab0" datatype="html"> |
2928 | <source>SUBSCRIPTION FEED</source> | ||
2929 | <target state="new">SUBSCRIPTION FEED</target> | ||
2626 | <context-group purpose="location"> | 2930 | <context-group purpose="location"> |
2627 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2931 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2628 | <context context-type="linenumber">8</context> | 2932 | <context context-type="linenumber">8</context> |
2629 | </context-group> | 2933 | </context-group> |
2630 | </trans-unit><trans-unit id="065367408b21af81c55d4a12dad437ee1b726476" datatype="html"> | 2934 | </trans-unit> |
2631 | <source> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. </source><target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. </target> | 2935 | <trans-unit id="065367408b21af81c55d4a12dad437ee1b726476" datatype="html"> |
2936 | <source>Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to.</source> | ||
2937 | <target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. </target> | ||
2632 | <context-group purpose="location"> | 2938 | <context-group purpose="location"> |
2633 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2939 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2634 | <context context-type="linenumber">10,12</context> | 2940 | <context context-type="linenumber">10,12</context> |
2635 | </context-group> | 2941 | </context-group> |
2636 | </trans-unit><trans-unit id="70b989779eb53e6ff14d810336677dbc3bde4202" datatype="html"> | 2942 | </trans-unit> |
2637 | <source>Feed URL</source><target state="new">Feed URL</target> | 2943 | <trans-unit id="70b989779eb53e6ff14d810336677dbc3bde4202" datatype="html"> |
2944 | <source>Feed URL</source> | ||
2945 | <target state="new">Feed URL</target> | ||
2638 | <context-group purpose="location"> | 2946 | <context-group purpose="location"> |
2639 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2947 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2640 | <context context-type="linenumber">18</context> | 2948 | <context context-type="linenumber">18</context> |
2641 | </context-group> | 2949 | </context-group> |
2642 | </trans-unit><trans-unit id="87752e8ea0b8d9cc97d85d89a74b828c031242d2" datatype="html"> | 2950 | </trans-unit> |
2643 | <source>Feed Token</source><target state="new">Feed Token</target> | 2951 | <trans-unit id="87752e8ea0b8d9cc97d85d89a74b828c031242d2" datatype="html"> |
2952 | <source>Feed Token</source> | ||
2953 | <target state="new">Feed Token</target> | ||
2644 | <context-group purpose="location"> | 2954 | <context-group purpose="location"> |
2645 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2955 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2646 | <context context-type="linenumber">23</context> | 2956 | <context context-type="linenumber">23</context> |
2647 | </context-group> | 2957 | </context-group> |
2648 | </trans-unit><trans-unit id="7b4abd453d7f667c0aa6bce607433714511bae6e" datatype="html"> | 2958 | </trans-unit> |
2649 | <source>⚠️ Never share your feed token with anyone.</source><target state="new">⚠️ Never share your feed token with anyone.</target> | 2959 | <trans-unit id="7b4abd453d7f667c0aa6bce607433714511bae6e" datatype="html"> |
2960 | <source>⚠️ Never share your feed token with anyone.</source> | ||
2961 | <target state="new">⚠️ Never share your feed token with anyone.</target> | ||
2650 | <context-group purpose="location"> | 2962 | <context-group purpose="location"> |
2651 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 2963 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2652 | <context context-type="linenumber">26</context> | 2964 | <context context-type="linenumber">26</context> |
2653 | </context-group> | 2965 | </context-group> |
2654 | </trans-unit><trans-unit id="7a2fe0ebf8d14b0c59eae0b7a48ce23425d45eac" datatype="html"> | 2966 | </trans-unit> |
2655 | <source>Renew token</source><target state="new">Renew token</target> | 2967 | <trans-unit id="7a2fe0ebf8d14b0c59eae0b7a48ce23425d45eac" datatype="html"> |
2656 | 2968 | <source>Renew token</source> | |
2657 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 2969 | <target state="new">Renew token</target> |
2658 | 2970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context><context context-type="linenumber">35</context></context-group> | |
2971 | </trans-unit> | ||
2659 | <trans-unit id="25925fc5826bc5b3eeae7c45b08b0ed74b9e2954" datatype="html"> | 2972 | <trans-unit id="25925fc5826bc5b3eeae7c45b08b0ed74b9e2954" datatype="html"> |
2660 | <source>Filter...</source> | 2973 | <source>Filter...</source> |
2661 | <target state="new">Filter...</target> | 2974 | <target state="new">Filter...</target> |
2662 | 2975 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">23</context></context-group> | |
2663 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 2976 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">16</context></context-group> |
2977 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">27</context></context-group> | ||
2978 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">23</context></context-group> | ||
2979 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">16</context></context-group> | ||
2980 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">23</context></context-group> | ||
2981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">42</context></context-group> | ||
2982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">29</context></context-group> | ||
2983 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">37</context></context-group> | ||
2984 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">16</context></context-group> | ||
2985 | </trans-unit> | ||
2664 | <trans-unit id="1e5e23363e949f7dcbaf034bdb141a561132a10e" datatype="html"> | 2986 | <trans-unit id="1e5e23363e949f7dcbaf034bdb141a561132a10e" datatype="html"> |
2665 | <source>Clear filters</source> | 2987 | <source>Clear filters</source> |
2666 | <target state="new">Clear filters</target> | 2988 | <target state="new">Clear filters</target> |
2667 | 2989 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">26</context></context-group> | |
2668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">14</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">14</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">14</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">46</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 2990 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">13</context></context-group> |
2991 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">14</context></context-group> | ||
2992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">14</context></context-group> | ||
2993 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">27</context></context-group> | ||
2994 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">20</context></context-group> | ||
2995 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">31</context></context-group> | ||
2996 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">14</context></context-group> | ||
2997 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">27</context></context-group> | ||
2998 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">20</context></context-group> | ||
2999 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">27</context></context-group> | ||
3000 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">46</context></context-group> | ||
3001 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">33</context></context-group> | ||
3002 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">41</context></context-group> | ||
3003 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">20</context></context-group> | ||
3004 | </trans-unit> | ||
2669 | <trans-unit id="08658c558971c49d1120d6c8a5a4fecf5c3b1561" datatype="html"> | 3005 | <trans-unit id="08658c558971c49d1120d6c8a5a4fecf5c3b1561" datatype="html"> |
2670 | <source>Video/Comment/Account</source> | 3006 | <source>Video/Comment/Account</source> |
2671 | <target state="new">Video/Comment/Account</target> | 3007 | <target state="new">Video/Comment/Account</target> |
2672 | 3008 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">42</context></context-group> | |
2673 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 3009 | </trans-unit> |
2674 | <trans-unit id="45cc8ca94b5a50842a9a8ef804a5ab089a38ae5c" datatype="html"> | 3010 | <trans-unit id="45cc8ca94b5a50842a9a8ef804a5ab089a38ae5c" datatype="html"> |
2675 | <source>ID</source> | 3011 | <source>ID</source> |
2676 | <target state="new">ID</target> | 3012 | <target state="new">ID</target> |
2677 | 3013 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">41</context></context-group> | |
2678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 3014 | </trans-unit> |
2679 | <trans-unit id="1d284acc5ec053b3cd87e4e9fcd7aaefec0c54fb" datatype="html"> | 3015 | <trans-unit id="1d284acc5ec053b3cd87e4e9fcd7aaefec0c54fb" datatype="html"> |
2680 | <source>Follower handle</source> | 3016 | <source>Follower handle</source> |
2681 | <target state="new">Follower handle</target> | 3017 | <target state="new">Follower handle</target> |
2682 | 3018 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">28</context></context-group> | |
2683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 3019 | </trans-unit> |
2684 | <trans-unit id="873b72903b1858a9cd6c8967521030b4d7d1435b" datatype="html"> | 3020 | <trans-unit id="873b72903b1858a9cd6c8967521030b4d7d1435b" datatype="html"> |
2685 | <source>State</source> | 3021 | <source>State</source> |
2686 | <target state="new">State</target> | 3022 | <target state="new">State</target> |
2687 | 3023 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">19</context></context-group> | |
2688 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">19</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | 3024 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">43</context></context-group> |
2689 | 3025 | </trans-unit> | |
2690 | |||
2691 | |||
2692 | |||
2693 | |||
2694 | <trans-unit id="ff3173170e5b03536dd3b3e1afbae1f55356eb1b" datatype="html"> | 3026 | <trans-unit id="ff3173170e5b03536dd3b3e1afbae1f55356eb1b" datatype="html"> |
2695 | <source>Created <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3027 | <source>Created <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
2696 | <target state="new">Created | 3028 | <target state="new">Created |
2697 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 3029 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
2698 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 3030 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
2699 | </target> | 3031 | </target> |
2700 | 3032 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">20</context></context-group> | |
2701 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 3033 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">43</context></context-group> |
3034 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">44</context></context-group> | ||
3035 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">37</context></context-group> | ||
3036 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">31</context></context-group> | ||
3037 | </trans-unit> | ||
2702 | <trans-unit id="9c9e0eb0ce8abea8b4c7c5dbb6e80a9a5f5b4193" datatype="html"> | 3038 | <trans-unit id="9c9e0eb0ce8abea8b4c7c5dbb6e80a9a5f5b4193" datatype="html"> |
2703 | <source>Open actor page in a new tab</source> | 3039 | <source>Open actor page in a new tab</source> |
2704 | <target state="new">Open actor page in a new tab</target> | 3040 | <target state="new">Open actor page in a new tab</target> |
2705 | 3041 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">46</context></context-group> | |
2706 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 3042 | </trans-unit> |
2707 | <trans-unit id="7823909fb1d8d313382f6f4bd842f1a7ef6f08d1" datatype="html"> | 3043 | <trans-unit id="7823909fb1d8d313382f6f4bd842f1a7ef6f08d1" datatype="html"> |
2708 | <source>Accepted</source> | 3044 | <source>Accepted</source> |
2709 | <target state="new">Accepted</target> | 3045 | <target state="new">Accepted</target> |
2710 | 3046 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">55</context></context-group> | |
2711 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> | 3047 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">53</context></context-group> |
3048 | </trans-unit> | ||
2712 | <trans-unit id="e6a27066251ca1e04c5be86ad758380856df2506" datatype="html"> | 3049 | <trans-unit id="e6a27066251ca1e04c5be86ad758380856df2506" datatype="html"> |
2713 | <source>Pending</source> | 3050 | <source>Pending</source> |
2714 | <target state="new">Pending</target> | 3051 | <target state="new">Pending</target> |
2715 | 3052 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">58</context></context-group> | |
2716 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 3053 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">56</context></context-group> |
3054 | </trans-unit> | ||
2717 | <trans-unit id="6fc5e65900ae1415d3170d5d2842f0dcae1b6645" datatype="html"> | 3055 | <trans-unit id="6fc5e65900ae1415d3170d5d2842f0dcae1b6645" datatype="html"> |
2718 | <source>Accept</source> | 3056 | <source>Accept</source> |
2719 | <target state="new">Accept</target> | 3057 | <target state="new">Accept</target> |
2720 | 3058 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">33</context></context-group> | |
2721 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 3059 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">30</context></context-group> |
3060 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">39</context></context-group> | ||
3061 | </trans-unit> | ||
2722 | <trans-unit id="4a5613f6b472c1ed863dff1be932913a251f27a2" datatype="html"> | 3062 | <trans-unit id="4a5613f6b472c1ed863dff1be932913a251f27a2" datatype="html"> |
2723 | <source>Refuse</source> | 3063 | <source>Refuse</source> |
2724 | <target state="new">Refuse</target> | 3064 | <target state="new">Refuse</target> |
2725 | 3065 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">34</context></context-group> | |
2726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> | 3066 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">40</context></context-group> |
3067 | </trans-unit> | ||
2727 | <trans-unit id="ff772a40114c96a96d8f2bfe0394658eda5a51ca" datatype="html"> | 3068 | <trans-unit id="ff772a40114c96a96d8f2bfe0394658eda5a51ca" datatype="html"> |
2728 | <source>No follower found matching current filters.</source> | 3069 | <source>No follower found matching current filters.</source> |
2729 | <target state="new">No follower found matching current filters.</target> | 3070 | <target state="new">No follower found matching current filters.</target> |
2730 | 3071 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">68</context></context-group> | |
2731 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">68</context></context-group></trans-unit> | 3072 | </trans-unit> |
2732 | <trans-unit id="2bea79363bdef3300bdcad9ef20a680c05e9f781" datatype="html"> | 3073 | <trans-unit id="2bea79363bdef3300bdcad9ef20a680c05e9f781" datatype="html"> |
2733 | <source>Your instance doesn't have any follower.</source> | 3074 | <source>Your instance doesn't have any follower.</source> |
2734 | <target state="new">Your instance doesn't have any follower.</target> | 3075 | <target state="new">Your instance doesn't have any follower.</target> |
2735 | 3076 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">69</context></context-group> | |
2736 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 3077 | </trans-unit> |
2737 | <trans-unit id="57295ef79276c604cc86f130c0046469e150f7cd" datatype="html"> | 3078 | <trans-unit id="57295ef79276c604cc86f130c0046469e150f7cd" datatype="html"> |
2738 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> followers</source> | 3079 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> followers</source> |
2739 | <target state="new">Showing | 3080 | <target state="new">Showing |
@@ -2741,29 +3082,31 @@ The link will expire within 1 hour.</target> | |||
2741 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 3082 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
2742 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> followers | 3083 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> followers |
2743 | </target> | 3084 | </target> |
2744 | 3085 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">10</context></context-group> | |
2745 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3086 | </trans-unit> |
2746 | <trans-unit id="270a185f179774aa3cee3120ed4f5650e8816b9f" datatype="html"> | 3087 | <trans-unit id="270a185f179774aa3cee3120ed4f5650e8816b9f" datatype="html"> |
2747 | <source><x id="INTERPOLATION" equiv-text="{{ action }}"/> </source> | 3088 | <source><x id="INTERPOLATION" equiv-text="{{ action }}"/> </source> |
2748 | <target state="new"> | 3089 | <target state="new"> |
2749 | <x id="INTERPOLATION" equiv-text="{{ action }}"/> | 3090 | <x id="INTERPOLATION" equiv-text="{{ action }}"/> |
2750 | </target> | 3091 | </target> |
2751 | 3092 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">3</context></context-group> | |
2752 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3093 | </trans-unit> |
2753 | <trans-unit id="fe22ca53e651df951dac25b67c17894b0980f767" datatype="html"> | 3094 | <trans-unit id="fe22ca53e651df951dac25b67c17894b0980f767" datatype="html"> |
2754 | <source>Host</source> | 3095 | <source>Host</source> |
2755 | <target state="new">Host</target> | 3096 | <target state="new">Host</target> |
2756 | 3097 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">35</context></context-group> | |
2757 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 3098 | </trans-unit> |
2758 | <trans-unit id="107f0fef40ba00a1a183a03eba85054ed8413f92" datatype="html"> | 3099 | <trans-unit id="107f0fef40ba00a1a183a03eba85054ed8413f92" datatype="html"> |
2759 | <source>Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3100 | <source>Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
2760 | <target state="new">Redundancy allowed | 3101 | <target state="new">Redundancy allowed |
2761 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 3102 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
2762 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 3103 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
2763 | </target> | 3104 | </target> |
2764 | 3105 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">38</context></context-group> | |
2765 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="a89875525c82ab81ffe32e481a5475b43d0c2902" datatype="html"> | 3106 | </trans-unit> |
2766 | <source>Unfollow</source><target state="new">Unfollow</target> | 3107 | <trans-unit id="a89875525c82ab81ffe32e481a5475b43d0c2902" datatype="html"> |
3108 | <source>Unfollow</source> | ||
3109 | <target state="new">Unfollow</target> | ||
2767 | <context-group purpose="location"> | 3110 | <context-group purpose="location"> |
2768 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | 3111 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> |
2769 | <context context-type="linenumber">45</context> | 3112 | <context context-type="linenumber">45</context> |
@@ -2772,18 +3115,20 @@ The link will expire within 1 hour.</target> | |||
2772 | <trans-unit id="8cffa679dff97a096d44fca9348eeaa1867d40aa" datatype="html"> | 3115 | <trans-unit id="8cffa679dff97a096d44fca9348eeaa1867d40aa" datatype="html"> |
2773 | <source>Open instance in a new tab</source> | 3116 | <source>Open instance in a new tab</source> |
2774 | <target state="new">Open instance in a new tab</target> | 3117 | <target state="new">Open instance in a new tab</target> |
2775 | 3118 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">46</context></context-group> | |
2776 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">46</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">48</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 3119 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">48</context></context-group> |
3120 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">46</context></context-group> | ||
3121 | </trans-unit> | ||
2777 | <trans-unit id="d9b4b939363bf385cbb7828c1535f2e2a5e0d362" datatype="html"> | 3122 | <trans-unit id="d9b4b939363bf385cbb7828c1535f2e2a5e0d362" datatype="html"> |
2778 | <source>No host found matching current filters.</source> | 3123 | <source>No host found matching current filters.</source> |
2779 | <target state="new">No host found matching current filters.</target> | 3124 | <target state="new">No host found matching current filters.</target> |
2780 | 3125 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">74</context></context-group> | |
2781 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit> | 3126 | </trans-unit> |
2782 | <trans-unit id="6f635f2eba7fe60e4266192fbfef20948fbe3b0a" datatype="html"> | 3127 | <trans-unit id="6f635f2eba7fe60e4266192fbfef20948fbe3b0a" datatype="html"> |
2783 | <source>Your instance is not following anyone.</source> | 3128 | <source>Your instance is not following anyone.</source> |
2784 | <target state="new">Your instance is not following anyone.</target> | 3129 | <target state="new">Your instance is not following anyone.</target> |
2785 | 3130 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">75</context></context-group> | |
2786 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">75</context></context-group></trans-unit> | 3131 | </trans-unit> |
2787 | <trans-unit id="b2ddee45fe4c3ebc20f39ed10ef70505c9eb65ce" datatype="html"> | 3132 | <trans-unit id="b2ddee45fe4c3ebc20f39ed10ef70505c9eb65ce" datatype="html"> |
2788 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> hosts</source> | 3133 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> hosts</source> |
2789 | <target state="new">Showing | 3134 | <target state="new">Showing |
@@ -2791,14 +3136,16 @@ The link will expire within 1 hour.</target> | |||
2791 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 3136 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
2792 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> hosts | 3137 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> hosts |
2793 | </target> | 3138 | </target> |
2794 | 3139 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">10</context></context-group> | |
2795 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3140 | </trans-unit> |
2796 | <trans-unit id="f697b4a4f0b6413284269de48a9e1a43a362646f" datatype="html"> | 3141 | <trans-unit id="f697b4a4f0b6413284269de48a9e1a43a362646f" datatype="html"> |
2797 | <source>Follow domains</source> | 3142 | <source>Follow domains</source> |
2798 | <target state="new">Follow domains</target> | 3143 | <target state="new">Follow domains</target> |
2799 | 3144 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">82</context></context-group> | |
2800 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="428ed89aeb4bd5a1b5f39b674d2c476e18c55334" datatype="html"> | 3145 | </trans-unit> |
2801 | <source>Follow instances</source><target state="new">Follow instances</target> | 3146 | <trans-unit id="428ed89aeb4bd5a1b5f39b674d2c476e18c55334" datatype="html"> |
3147 | <source>Follow instances</source> | ||
3148 | <target state="new">Follow instances</target> | ||
2802 | <context-group purpose="location"> | 3149 | <context-group purpose="location"> |
2803 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | 3150 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> |
2804 | <context context-type="linenumber">17</context> | 3151 | <context context-type="linenumber">17</context> |
@@ -2807,169 +3154,196 @@ The link will expire within 1 hour.</target> | |||
2807 | <trans-unit id="1fc09996a8d49e3d1cc3abedb3edf3fa4c427a5f" datatype="html"> | 3154 | <trans-unit id="1fc09996a8d49e3d1cc3abedb3edf3fa4c427a5f" datatype="html"> |
2808 | <source>Videos redundancies</source> | 3155 | <source>Videos redundancies</source> |
2809 | <target state="new">Videos redundancies</target> | 3156 | <target state="new">Videos redundancies</target> |
2810 | 3157 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
2811 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3158 | </trans-unit> |
2812 | <trans-unit id="8a3b2dec938ae1c71320e653fb1fdb810e614f76" datatype="html"> | 3159 | <trans-unit id="8a3b2dec938ae1c71320e653fb1fdb810e614f76" datatype="html"> |
2813 | <source>My videos duplicated by remote instances</source> | 3160 | <source>My videos duplicated by remote instances</source> |
2814 | <target state="new">My videos duplicated by remote instances</target> | 3161 | <target state="new">My videos duplicated by remote instances</target> |
2815 | 3162 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">12</context></context-group> | |
2816 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> | 3163 | </trans-unit> |
2817 | <trans-unit id="cb2281bf5c9f420429bbd5c5473ee7aacc879e1e" datatype="html"> | 3164 | <trans-unit id="cb2281bf5c9f420429bbd5c5473ee7aacc879e1e" datatype="html"> |
2818 | <source>Remote videos duplicated by my instance</source> | 3165 | <source>Remote videos duplicated by my instance</source> |
2819 | <target state="new">Remote videos duplicated by my instance</target> | 3166 | <target state="new">Remote videos duplicated by my instance</target> |
2820 | 3167 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">13</context></context-group> | |
2821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 3168 | </trans-unit> |
2822 | <trans-unit id="31cf824034489eb42f6a388d5980b98b8e1de015" datatype="html"> | 3169 | <trans-unit id="31cf824034489eb42f6a388d5980b98b8e1de015" datatype="html"> |
2823 | <source>Create user</source> | 3170 | <source>Create user</source> |
2824 | <target state="new">Create user</target> | 3171 | <target state="new">Create user</target> |
2825 | 3172 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">20</context></context-group> | |
2826 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 3173 | </trans-unit> |
2827 | <trans-unit id="55d4cef22a65e0850dc95aa127f45e9df525f68f" datatype="html"> | 3174 | <trans-unit id="55d4cef22a65e0850dc95aa127f45e9df525f68f" datatype="html"> |
2828 | <source>Table parameters</source> | 3175 | <source>Table parameters</source> |
2829 | <target state="new">Table parameters</target> | 3176 | <target state="new">Table parameters</target> |
2830 | 3177 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">59</context></context-group> | |
2831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 3178 | </trans-unit> |
2832 | <trans-unit id="48c6910585f5bef4f725104287ec904c7cb8c6e9" datatype="html"> | 3179 | <trans-unit id="48c6910585f5bef4f725104287ec904c7cb8c6e9" datatype="html"> |
2833 | <source>Select columns</source> | 3180 | <source>Select columns</source> |
2834 | <target state="new">Select columns</target> | 3181 | <target state="new">Select columns</target> |
2835 | 3182 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">65</context></context-group> | |
2836 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> | 3183 | </trans-unit> |
2837 | <trans-unit id="ed66036cb394f49f63cb5fb5632f483613b790f6" datatype="html"> | 3184 | <trans-unit id="ed66036cb394f49f63cb5fb5632f483613b790f6" datatype="html"> |
2838 | <source>Highlight banned users</source> | 3185 | <source>Highlight banned users</source> |
2839 | <target state="new">Highlight banned users</target> | 3186 | <target state="new">Highlight banned users</target> |
2840 | 3187 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">71</context></context-group> | |
2841 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit> | 3188 | </trans-unit> |
2842 | <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> | 3189 | <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> |
2843 | <source>Username</source> | 3190 | <source>Username</source> |
2844 | <target>Kullanıcı adı</target> | 3191 | <target>Kullanıcı adı</target> |
2845 | 3192 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">23</context></context-group> | |
2846 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="498afab4384cdddd310de830b987345b71aee25f" datatype="html"> | 3193 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">6</context></context-group> |
2847 | <source>e.g. jane_doe</source><target state="new">e.g. jane_doe</target> | 3194 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> |
2848 | 3195 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> | |
3196 | </trans-unit> | ||
3197 | <trans-unit id="498afab4384cdddd310de830b987345b71aee25f" datatype="html"> | ||
3198 | <source>e.g. jane_doe</source> | ||
3199 | <target state="new">e.g. jane_doe</target> | ||
2849 | <note priority="1" from="description">Username choice placeholder in the registration form</note> | 3200 | <note priority="1" from="description">Username choice placeholder in the registration form</note> |
2850 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | 3201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">27</context></context-group> |
3202 | </trans-unit> | ||
2851 | <trans-unit id="1bd571d8f3981f6043b0df3402cc3d97e0d7ad2a" datatype="html"> | 3203 | <trans-unit id="1bd571d8f3981f6043b0df3402cc3d97e0d7ad2a" datatype="html"> |
2852 | <source>john</source> | 3204 | <source>john</source> |
2853 | <target state="new">john</target> | 3205 | <target state="new">john</target> |
2854 | 3206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">85</context></context-group> | |
2855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 3207 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">85</context></context-group> |
3208 | </trans-unit> | ||
2856 | <trans-unit id="bb3542ff8e5defa6d0c773799e5c8fe399605d05" datatype="html"> | 3209 | <trans-unit id="bb3542ff8e5defa6d0c773799e5c8fe399605d05" datatype="html"> |
2857 | <source>mail@example.com</source> | 3210 | <source>mail@example.com</source> |
2858 | <target state="new">mail@example.com</target> | 3211 | <target state="new">mail@example.com</target> |
2859 | 3212 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">107</context></context-group> | |
2860 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">107</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> | 3213 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">107</context></context-group> |
3214 | </trans-unit> | ||
2861 | <trans-unit id="8861667a66c0000e6ae144520026d55123cea117" datatype="html"> | 3215 | <trans-unit id="8861667a66c0000e6ae144520026d55123cea117" datatype="html"> |
2862 | <source>If you leave the password empty, an email will be sent to the user.</source> | 3216 | <source>If you leave the password empty, an email will be sent to the user.</source> |
2863 | <target state="new"> | 3217 | <target state="new"> |
2864 | If you leave the password empty, an email will be sent to the user. | 3218 | If you leave the password empty, an email will be sent to the user. |
2865 | </target> | 3219 | </target> |
2866 | 3220 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">121</context></context-group> | |
2867 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">121</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 3221 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">121</context></context-group> |
3222 | </trans-unit> | ||
2868 | <trans-unit id="c36a66f2107e8da5371ebc9d15c2008dff567f46" datatype="html"> | 3223 | <trans-unit id="c36a66f2107e8da5371ebc9d15c2008dff567f46" datatype="html"> |
2869 | <source>Role</source> | 3224 | <source>Role</source> |
2870 | <target state="new">Role</target> | 3225 | <target state="new">Role</target> |
2871 | 3226 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | |
2872 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group></trans-unit> | 3227 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> |
3228 | </trans-unit> | ||
2873 | <trans-unit id="2768c5a04ffea51e600e3b1e14ed676afb355f23" datatype="html"> | 3229 | <trans-unit id="2768c5a04ffea51e600e3b1e14ed676afb355f23" datatype="html"> |
2874 | <source>Transcoding is enabled. The video quota only takes into account <x id="START_TAG_STRONG"/>original<x id="CLOSE_TAG_STRONG"/> video size. <x id="LINE_BREAK"/> At most, this user could upload ~ <x id="INTERPOLATION"/>. </source> | 3230 | <source>Transcoding is enabled. The video quota only takes into account <x id="START_TAG_STRONG"/>original<x id="CLOSE_TAG_STRONG"/> video size. <x id="LINE_BREAK"/> At most, this user could upload ~ <x id="INTERPOLATION"/>. </source> |
2875 | <target state="new"> | 3231 | <target state="new"> |
2876 | Transcoding is enabled. The video quota only takes into account | 3232 | Transcoding is enabled. The video quota only takes into account |
2877 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>original | 3233 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>original |
2878 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> video size. | 3234 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> video size. |
2879 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 3235 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
2880 | At most, this user could upload ~ | 3236 | At most, this user could upload ~ |
2881 | <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. | 3237 | <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. |
2882 | 3238 | ||
2883 | </target> | 3239 | </target> |
2884 | 3240 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">161</context></context-group> | |
2885 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">161</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 3241 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">161</context></context-group> |
3242 | </trans-unit> | ||
2886 | <trans-unit id="6ded52553dd8720fd3698b8fbc3a6d037c07b496"> | 3243 | <trans-unit id="6ded52553dd8720fd3698b8fbc3a6d037c07b496"> |
2887 | <source>Daily video quota</source> | 3244 | <source>Daily video quota</source> |
2888 | <target>Günlük video kotası</target> | 3245 | <target>Günlük video kotası</target> |
2889 | 3246 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.html</context><context context-type="linenumber">13</context></context-group> | |
2890 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">167</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> | 3247 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">167</context></context-group> |
3248 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">167</context></context-group> | ||
3249 | </trans-unit> | ||
2891 | <trans-unit id="a0f69dcdccf2174aa7fa17708ac63c3a3104456c" datatype="html"> | 3250 | <trans-unit id="a0f69dcdccf2174aa7fa17708ac63c3a3104456c" datatype="html"> |
2892 | <source>Doesn't need review before a video goes public</source> | 3251 | <source>Doesn't need review before a video goes public</source> |
2893 | <target state="new">Doesn't need review before a video goes public</target> | 3252 | <target state="new">Doesn't need review before a video goes public</target> |
2894 | 3253 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">180</context></context-group> | |
2895 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">180</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">180</context></context-group></trans-unit> | 3254 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">180</context></context-group> |
3255 | </trans-unit> | ||
2896 | <trans-unit id="27a8f947ecc46bcad10d965360f500a14128bd7d" datatype="html"> | 3256 | <trans-unit id="27a8f947ecc46bcad10d965360f500a14128bd7d" datatype="html"> |
2897 | <source>Send a link to reset the password by email to the user</source> | 3257 | <source>Send a link to reset the password by email to the user</source> |
2898 | <target state="new">Send a link to reset the password by email to the user</target> | 3258 | <target state="new">Send a link to reset the password by email to the user</target> |
2899 | 3259 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">205</context></context-group> | |
2900 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">205</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">205</context></context-group></trans-unit> | 3260 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">205</context></context-group> |
3261 | </trans-unit> | ||
2901 | <trans-unit id="950adafba22e3c85e889f2c38faebe98145bfb7f" datatype="html"> | 3262 | <trans-unit id="950adafba22e3c85e889f2c38faebe98145bfb7f" datatype="html"> |
2902 | <source>Ask for new password</source> | 3263 | <source>Ask for new password</source> |
2903 | <target state="new">Ask for new password</target> | 3264 | <target state="new">Ask for new password</target> |
2904 | 3265 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">206</context></context-group> | |
2905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">206</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">206</context></context-group></trans-unit> | 3266 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">206</context></context-group> |
3267 | </trans-unit> | ||
2906 | <trans-unit id="e6a48b1ed6160a99fba3a1607e27e9e93a4f4244" datatype="html"> | 3268 | <trans-unit id="e6a48b1ed6160a99fba3a1607e27e9e93a4f4244" datatype="html"> |
2907 | <source>Manually set the user password</source> | 3269 | <source>Manually set the user password</source> |
2908 | <target state="new">Manually set the user password</target> | 3270 | <target state="new">Manually set the user password</target> |
2909 | 3271 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">210</context></context-group> | |
2910 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">210</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">210</context></context-group></trans-unit> | 3272 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">210</context></context-group> |
3273 | </trans-unit> | ||
2911 | <trans-unit id="2aba1e87039819aca3b70faa9aa848c12bf139ca"> | 3274 | <trans-unit id="2aba1e87039819aca3b70faa9aa848c12bf139ca"> |
2912 | <source>Show</source> | 3275 | <source>Show</source> |
2913 | <target>Göster</target> | 3276 | <target>Göster</target> |
2914 | 3277 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">10</context></context-group> | |
2915 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3278 | </trans-unit> |
2916 | <trans-unit id="1eede69e18c5ac9c0b0295b72cabb7e64e029e74" datatype="html"> | 3279 | <trans-unit id="1eede69e18c5ac9c0b0295b72cabb7e64e029e74" datatype="html"> |
2917 | <source>Hide</source> | 3280 | <source>Hide</source> |
2918 | <target state="new">Hide</target> | 3281 | <target state="new">Hide</target> |
2919 | 3282 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">11</context></context-group> | |
2920 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 3283 | </trans-unit> |
2921 | <trans-unit id="ea762ca1d74c96d8568ac68482778f52ca531cc4" datatype="html"> | 3284 | <trans-unit id="ea762ca1d74c96d8568ac68482778f52ca531cc4" datatype="html"> |
2922 | <source>Batch actions</source> | 3285 | <source>Batch actions</source> |
2923 | <target state="new">Batch actions</target> | 3286 | <target state="new">Batch actions</target> |
2924 | 3287 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">22</context></context-group> | |
2925 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 3288 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">22</context></context-group> |
3289 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">13</context></context-group> | ||
3290 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">13</context></context-group> | ||
3291 | </trans-unit> | ||
2926 | <trans-unit id="715d36ab50d156b744ffedc975ffb97cae75ff7b" datatype="html"> | 3292 | <trans-unit id="715d36ab50d156b744ffedc975ffb97cae75ff7b" datatype="html"> |
2927 | <source>Advanced user filters</source> | 3293 | <source>Advanced user filters</source> |
2928 | <target state="new">Advanced user filters</target> | 3294 | <target state="new">Advanced user filters</target> |
2929 | 3295 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">32</context></context-group> | |
2930 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 3296 | </trans-unit> |
2931 | <trans-unit id="765fcd9017ea1e180bbd266673d7cf11535d8c4a" datatype="html"> | 3297 | <trans-unit id="765fcd9017ea1e180bbd266673d7cf11535d8c4a" datatype="html"> |
2932 | <source>Banned users</source> | 3298 | <source>Banned users</source> |
2933 | <target state="new">Banned users</target> | 3299 | <target state="translated">Yasaklı kullanıcılar</target> |
2934 | 3300 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">33</context></context-group> | |
2935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 3301 | </trans-unit> |
2936 | <trans-unit id="7d88bb14f4ef7eaea7ca41c1832c66451410047a" datatype="html"> | 3302 | <trans-unit id="7d88bb14f4ef7eaea7ca41c1832c66451410047a" datatype="html"> |
2937 | <source>The user was banned</source> | 3303 | <source>The user was banned</source> |
2938 | <target state="new">The user was banned</target> | 3304 | <target state="translated">Kullanıcı yasaklandı</target> |
2939 | 3305 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">161</context></context-group> | |
2940 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">161</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 3306 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">161</context></context-group> |
3307 | </trans-unit> | ||
2941 | <trans-unit id="ed64ec2b14251cfbe9ab28abde51d3f052fde1e7" datatype="html"> | 3308 | <trans-unit id="ed64ec2b14251cfbe9ab28abde51d3f052fde1e7" datatype="html"> |
2942 | <source>Open account in a new tab</source> | 3309 | <source>Open account in a new tab</source> |
2943 | <target state="new">Open account in a new tab</target> | 3310 | <target state="new">Open account in a new tab</target> |
2944 | 3311 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">38</context></context-group> | |
2945 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">66</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">66</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">87</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> | 3312 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">39</context></context-group> |
3313 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">66</context></context-group> | ||
3314 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">66</context></context-group> | ||
3315 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">39</context></context-group> | ||
3316 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">87</context></context-group> | ||
3317 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">107</context></context-group> | ||
3318 | </trans-unit> | ||
2946 | <trans-unit id="d9e38d58225f58cb64126e4d5ec58f39dcb326df" datatype="html"> | 3319 | <trans-unit id="d9e38d58225f58cb64126e4d5ec58f39dcb326df" datatype="html"> |
2947 | <source>Deleted account</source> | 3320 | <source>Deleted account</source> |
2948 | <target state="new"> | 3321 | <target state="new"> |
2949 | Deleted account | 3322 | Deleted account |
2950 | </target> | 3323 | </target> |
2951 | 3324 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">82</context></context-group> | |
2952 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 3325 | </trans-unit> |
2953 | <trans-unit id="02ba1a65db92d1d0ab4ba380086e9be61891aaa5" datatype="html"> | 3326 | <trans-unit id="02ba1a65db92d1d0ab4ba380086e9be61891aaa5" datatype="html"> |
2954 | <source>User's email must be verified to login</source> | 3327 | <source>User's email must be verified to login</source> |
2955 | <target state="new">User's email must be verified to login</target> | 3328 | <target state="new">User's email must be verified to login</target> |
2956 | 3329 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">130</context></context-group> | |
2957 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">130</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">130</context></context-group></trans-unit> | 3330 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">130</context></context-group> |
3331 | </trans-unit> | ||
2958 | <trans-unit id="79cee9973620b2592ff2824c525aa8ed0b5e2b8b" datatype="html"> | 3332 | <trans-unit id="79cee9973620b2592ff2824c525aa8ed0b5e2b8b" datatype="html"> |
2959 | <source>User's email is verified / User can login without email verification</source> | 3333 | <source>User's email is verified / User can login without email verification</source> |
2960 | <target state="new">User's email is verified / User can login without email verification</target> | 3334 | <target state="new">User's email is verified / User can login without email verification</target> |
2961 | 3335 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">134</context></context-group> | |
2962 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">134</context></context-group></trans-unit> | 3336 | </trans-unit> |
2963 | <trans-unit id="12289e981bf1acd36d74ee0e50d6fb43ba29ca6a" datatype="html"> | 3337 | <trans-unit id="12289e981bf1acd36d74ee0e50d6fb43ba29ca6a" datatype="html"> |
2964 | <source>Total daily video quota</source> | 3338 | <source>Total daily video quota</source> |
2965 | <target state="new">Total daily video quota</target> | 3339 | <target state="new">Total daily video quota</target> |
2966 | 3340 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">151</context></context-group> | |
2967 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">151</context></context-group></trans-unit> | 3341 | </trans-unit> |
2968 | <trans-unit id="a9587caabf0dc5d824f817baae1c2f5521d9b1ee" datatype="html"> | 3342 | <trans-unit id="a9587caabf0dc5d824f817baae1c2f5521d9b1ee" datatype="html"> |
2969 | <source>Ban reason:</source> | 3343 | <source>Ban reason:</source> |
2970 | <target state="new">Ban reason:</target> | 3344 | <target state="translated">Yasak sebebi</target> |
2971 | 3345 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">178</context></context-group> | |
2972 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">178</context></context-group></trans-unit> | 3346 | </trans-unit> |
2973 | <trans-unit id="0fcb785bae83bfd5c1b1bbeb57cda21eec98ae1a" datatype="html"> | 3347 | <trans-unit id="0fcb785bae83bfd5c1b1bbeb57cda21eec98ae1a" datatype="html"> |
2974 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> users</source> | 3348 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> users</source> |
2975 | <target state="new">Showing | 3349 | <target state="new">Showing |
@@ -2977,177 +3351,203 @@ The link will expire within 1 hour.</target> | |||
2977 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 3351 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
2978 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> users | 3352 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> users |
2979 | </target> | 3353 | </target> |
2980 | 3354 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">6</context></context-group> | |
2981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 3355 | </trans-unit> |
2982 | <trans-unit id="2049290282534091182" datatype="html"> | 3356 | <trans-unit id="2049290282534091182" datatype="html"> |
2983 | <source>Moderation</source> | 3357 | <source>Moderation</source> |
2984 | <target state="new">Moderation</target> | 3358 | <target state="new">Moderation</target> |
2985 | 3359 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">28</context></context-group> | |
2986 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 3360 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">47</context></context-group> |
3361 | </trans-unit> | ||
2987 | <trans-unit id="1868606282505332204" datatype="html"> | 3362 | <trans-unit id="1868606282505332204" datatype="html"> |
2988 | <source>Reports</source> | 3363 | <source>Reports</source> |
2989 | <target state="new">Reports</target> | 3364 | <target state="new">Reports</target> |
2990 | 3365 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">53</context></context-group> | |
2991 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">53</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 3366 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">37</context></context-group> |
3367 | </trans-unit> | ||
2992 | <trans-unit id="746099155736913817" datatype="html"> | 3368 | <trans-unit id="746099155736913817" datatype="html"> |
2993 | <source>Video blocks</source> | 3369 | <source>Video blocks</source> |
2994 | <target state="new">Video blocks</target> | 3370 | <target state="new">Video blocks</target> |
2995 | 3371 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">60</context></context-group> | |
2996 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">60</context></context-group></trans-unit><trans-unit id="7427986413651551775" datatype="html"> | 3372 | </trans-unit> |
2997 | <source>Video comments</source><target state="new">Video comments</target> | 3373 | <trans-unit id="7427986413651551775" datatype="html"> |
2998 | 3374 | <source>Video comments</source> | |
2999 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">86</context></context-group></trans-unit> | 3375 | <target state="new">Video comments</target> |
3376 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">67</context></context-group> | ||
3377 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">86</context></context-group> | ||
3378 | </trans-unit> | ||
3000 | <trans-unit id="7815838401315213887" datatype="html"> | 3379 | <trans-unit id="7815838401315213887" datatype="html"> |
3001 | <source>Muted accounts</source> | 3380 | <source>Muted accounts</source> |
3002 | <target state="new">Muted accounts</target> | 3381 | <target state="new">Muted accounts</target> |
3003 | 3382 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">31</context></context-group> | |
3004 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">86</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">98</context></context-group></trans-unit> | 3383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">86</context></context-group> |
3384 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">74</context></context-group> | ||
3385 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">98</context></context-group> | ||
3386 | </trans-unit> | ||
3005 | <trans-unit id="5668793810321242853" datatype="html"> | 3387 | <trans-unit id="5668793810321242853" datatype="html"> |
3006 | <source>Muted servers</source> | 3388 | <source>Muted servers</source> |
3007 | <target state="new">Muted servers</target> | 3389 | <target state="new">Muted servers</target> |
3008 | 3390 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">36</context></context-group> | |
3009 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 3391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">95</context></context-group> |
3392 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">81</context></context-group> | ||
3393 | </trans-unit> | ||
3010 | <trans-unit id="4555457172864212828" datatype="html"> | 3394 | <trans-unit id="4555457172864212828" datatype="html"> |
3011 | <source>Users</source> | 3395 | <source>Users</source> |
3012 | <target state="new">Users</target> | 3396 | <target state="translated">Kullanıcılar</target> |
3013 | 3397 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">88</context></context-group> | |
3014 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">88</context></context-group></trans-unit> | 3398 | </trans-unit> |
3015 | <trans-unit id="3008420115644088420" datatype="html"> | 3399 | <trans-unit id="3008420115644088420" datatype="html"> |
3016 | <source>Configuration</source> | 3400 | <source>Configuration</source> |
3017 | <target state="new">Configuration</target> | 3401 | <target state="new">Configuration</target> |
3018 | 3402 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">95</context></context-group> | |
3019 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">95</context></context-group></trans-unit> | 3403 | </trans-unit> |
3020 | <trans-unit id="d2e7333704502d1720b353742634630b71ea8bd7" datatype="html"> | 3404 | <trans-unit id="d2e7333704502d1720b353742634630b71ea8bd7" datatype="html"> |
3021 | <source>Video blocks</source> | 3405 | <source>Video blocks</source> |
3022 | <target state="new">Video blocks</target> | 3406 | <target state="new">Video blocks</target> |
3023 | 3407 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
3024 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3408 | </trans-unit> |
3025 | <trans-unit id="b1ff109b26ae8f08650415454b9098c43eba2e2c" datatype="html"> | 3409 | <trans-unit id="b1ff109b26ae8f08650415454b9098c43eba2e2c" datatype="html"> |
3026 | <source>Muted accounts</source> | 3410 | <source>Muted accounts</source> |
3027 | <target state="new">Muted accounts</target> | 3411 | <target state="new">Muted accounts</target> |
3028 | 3412 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group> | |
3029 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3413 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group> |
3414 | </trans-unit> | ||
3030 | <trans-unit id="bd0611346af048015e0a1275091ef68ce98832d2" datatype="html"> | 3415 | <trans-unit id="bd0611346af048015e0a1275091ef68ce98832d2" datatype="html"> |
3031 | <source>Muted servers</source> | 3416 | <source>Muted servers</source> |
3032 | <target state="new">Muted servers</target> | 3417 | <target state="new">Muted servers</target> |
3033 | 3418 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">3</context></context-group> | |
3034 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3419 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">3</context></context-group> |
3420 | </trans-unit> | ||
3035 | <trans-unit id="2122599f5b51ab83849bc77fa5cafcdcd896ac72" datatype="html"> | 3421 | <trans-unit id="2122599f5b51ab83849bc77fa5cafcdcd896ac72" datatype="html"> |
3036 | <source>Advanced block filters</source> | 3422 | <source>Advanced block filters</source> |
3037 | <target state="new">Advanced block filters</target> | 3423 | <target state="new">Advanced block filters</target> |
3038 | 3424 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">23</context></context-group> | |
3039 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 3425 | </trans-unit> |
3040 | <trans-unit id="7d0cb3dbf192b9f3a5dbfb6d56d7609b200cbd4e" datatype="html"> | 3426 | <trans-unit id="7d0cb3dbf192b9f3a5dbfb6d56d7609b200cbd4e" datatype="html"> |
3041 | <source>Automatic blocks</source> | 3427 | <source>Automatic blocks</source> |
3042 | <target state="new">Automatic blocks</target> | 3428 | <target state="new">Automatic blocks</target> |
3043 | 3429 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">24</context></context-group> | |
3044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 3430 | </trans-unit> |
3045 | <trans-unit id="dfc11b6dc1387e59dbb79d248cf4c638fb9df3ea" datatype="html"> | 3431 | <trans-unit id="dfc11b6dc1387e59dbb79d248cf4c638fb9df3ea" datatype="html"> |
3046 | <source>Manual blocks</source> | 3432 | <source>Manual blocks</source> |
3047 | <target state="new">Manual blocks</target> | 3433 | <target state="new">Manual blocks</target> |
3048 | 3434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">25</context></context-group> | |
3049 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 3435 | </trans-unit> |
3050 | <trans-unit id="91bd2d52b840951d3b1f5830b023bee8bca91293" datatype="html"> | 3436 | <trans-unit id="91bd2d52b840951d3b1f5830b023bee8bca91293" datatype="html"> |
3051 | <source>Video <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3437 | <source>Video <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3052 | <target state="new">Video | 3438 | <target state="new">Video |
3053 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 3439 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
3054 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 3440 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
3055 | </target> | 3441 | </target> |
3056 | 3442 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">43</context></context-group> | |
3057 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 3443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">29</context></context-group> |
3444 | </trans-unit> | ||
3058 | <trans-unit id="b7237eade678ae47485fbd27ec7f8c1079a8c6b7" datatype="html"> | 3445 | <trans-unit id="b7237eade678ae47485fbd27ec7f8c1079a8c6b7" datatype="html"> |
3059 | <source>Total size</source> | 3446 | <source>Total size</source> |
3060 | <target state="new">Total size</target> | 3447 | <target state="translated">Toplam boyut</target> |
3061 | 3448 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">30</context></context-group> | |
3062 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 3449 | </trans-unit> |
3063 | <trans-unit id="e536fc8b9a652aa7f7b87193cdfa143481da3bad" datatype="html"> | 3450 | <trans-unit id="e536fc8b9a652aa7f7b87193cdfa143481da3bad" datatype="html"> |
3064 | <source>List redundancies</source> | 3451 | <source>List redundancies</source> |
3065 | <target state="new">List redundancies</target> | 3452 | <target state="new">List redundancies</target> |
3066 | 3453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">37</context></context-group> | |
3067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> | 3454 | </trans-unit> |
3068 | <trans-unit id="897116a91d135b1552880aed6050814a4a0df28a" datatype="html"> | 3455 | <trans-unit id="897116a91d135b1552880aed6050814a4a0df28a" datatype="html"> |
3069 | <source>Your instance doesn't mirror any video.</source> | 3456 | <source>Your instance doesn't mirror any video.</source> |
3070 | <target state="new">Your instance doesn't mirror any video.</target> | 3457 | <target state="new">Your instance doesn't mirror any video.</target> |
3071 | 3458 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">81</context></context-group> | |
3072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 3459 | </trans-unit> |
3073 | <trans-unit id="afc5c2bbf66996ab213f6eca65b24ca423d36e31" datatype="html"> | 3460 | <trans-unit id="afc5c2bbf66996ab213f6eca65b24ca423d36e31" datatype="html"> |
3074 | <source>Your instance has no mirrored videos.</source> | 3461 | <source>Your instance has no mirrored videos.</source> |
3075 | <target state="new">Your instance has no mirrored videos.</target> | 3462 | <target state="new">Your instance has no mirrored videos.</target> |
3076 | 3463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">82</context></context-group> | |
3077 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 3464 | </trans-unit> |
3078 | <trans-unit id="0e96ed54157e69989a2c0bcce2f62399accdaa27" datatype="html"> | 3465 | <trans-unit id="0e96ed54157e69989a2c0bcce2f62399accdaa27" datatype="html"> |
3079 | <source>Enabled strategies stats</source> | 3466 | <source>Enabled strategies stats</source> |
3080 | <target state="new">Enabled strategies stats</target> | 3467 | <target state="new">Enabled strategies stats</target> |
3081 | 3468 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">91</context></context-group> | |
3082 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 3469 | </trans-unit> |
3083 | <trans-unit id="0f6e6ec286d43c14f16444a077639090f38e29de" datatype="html"> | 3470 | <trans-unit id="0f6e6ec286d43c14f16444a077639090f38e29de" datatype="html"> |
3084 | <source>No redundancy strategy is enabled on your instance.</source> | 3471 | <source>No redundancy strategy is enabled on your instance.</source> |
3085 | <target state="new"> | 3472 | <target state="new"> |
3086 | No redundancy strategy is enabled on your instance. | 3473 | No redundancy strategy is enabled on your instance. |
3087 | </target> | 3474 | </target> |
3088 | 3475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">96</context></context-group> | |
3089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 3476 | </trans-unit> |
3090 | <trans-unit id="96dfa3efa02bfafc0bc6d4ab186ebef2813a9e8a" datatype="html"> | 3477 | <trans-unit id="96dfa3efa02bfafc0bc6d4ab186ebef2813a9e8a" datatype="html"> |
3091 | <source>Sensitive</source> | 3478 | <source>Sensitive</source> |
3092 | <target state="new">Sensitive</target> | 3479 | <target state="new">Sensitive</target> |
3093 | 3480 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">44</context></context-group> | |
3094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> | 3481 | </trans-unit> |
3095 | <trans-unit id="b748c96a1ee98d2fa9a645fb71838f5d4938855b" datatype="html"> | 3482 | <trans-unit id="b748c96a1ee98d2fa9a645fb71838f5d4938855b" datatype="html"> |
3096 | <source>Unfederated</source> | 3483 | <source>Unfederated</source> |
3097 | <target state="new">Unfederated</target> | 3484 | <target state="new">Unfederated</target> |
3098 | 3485 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">45</context></context-group> | |
3099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> | 3486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">88</context></context-group> |
3487 | </trans-unit> | ||
3100 | <trans-unit id="a7f42da3bb4eea0b71b0a20a2aff6612a82cab99" datatype="html"> | 3488 | <trans-unit id="a7f42da3bb4eea0b71b0a20a2aff6612a82cab99" datatype="html"> |
3101 | <source>Date <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3489 | <source>Date <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3102 | <target state="new">Date | 3490 | <target state="new">Date |
3103 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 3491 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
3104 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 3492 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
3105 | </target> | 3493 | </target> |
3106 | 3494 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">62</context></context-group> | |
3107 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">62</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit><trans-unit id="33115b0bb932b9b0e326d7433b6ea8e6609ea577" datatype="html"> | 3495 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">46</context></context-group> |
3108 | <source>Select this row</source><target state="new">Select this row</target> | 3496 | </trans-unit> |
3109 | 3497 | <trans-unit id="33115b0bb932b9b0e326d7433b6ea8e6609ea577" datatype="html"> | |
3110 | 3498 | <source>Select this row</source> | |
3111 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 3499 | <target state="new">Select this row</target> |
3500 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">70</context></context-group> | ||
3501 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">91</context></context-group> | ||
3502 | </trans-unit> | ||
3112 | <trans-unit id="030b4423b92167200e39519599f9b863b4f7c62c" datatype="html"> | 3503 | <trans-unit id="030b4423b92167200e39519599f9b863b4f7c62c" datatype="html"> |
3113 | <source>Actions</source> | 3504 | <source>Actions</source> |
3114 | <target state="new">Actions</target> | 3505 | <target state="new">Actions</target> |
3115 | 3506 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">18</context></context-group> | |
3116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">61</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">82</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit><trans-unit id="8c9050c6851a9df66791ce33bc05d6daff294921" datatype="html"> | 3507 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">61</context></context-group> |
3117 | <source>Commented video</source><target state="new">Commented video</target> | 3508 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">82</context></context-group> |
3118 | 3509 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">62</context></context-group> | |
3119 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="0b8869949ffd1265a194490cd96c74c4ad7c234a" datatype="html"> | 3510 | </trans-unit> |
3120 | <source>No comments found matching current filters.</source><target state="new">No comments found matching current filters.</target> | 3511 | <trans-unit id="8c9050c6851a9df66791ce33bc05d6daff294921" datatype="html"> |
3121 | 3512 | <source>Commented video</source> | |
3122 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">128</context></context-group></trans-unit><trans-unit id="fc9202e5b01bd5ec813af78b5d51d1204ab0777e" datatype="html"> | 3513 | <target state="new">Commented video</target> |
3123 | <source>No comments found.</source><target state="new">No comments found.</target> | 3514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">103</context></context-group> |
3124 | 3515 | </trans-unit> | |
3125 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">129</context></context-group></trans-unit> | 3516 | <trans-unit id="0b8869949ffd1265a194490cd96c74c4ad7c234a" datatype="html"> |
3517 | <source>No comments found matching current filters.</source> | ||
3518 | <target state="new">No comments found matching current filters.</target> | ||
3519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">128</context></context-group> | ||
3520 | </trans-unit> | ||
3521 | <trans-unit id="fc9202e5b01bd5ec813af78b5d51d1204ab0777e" datatype="html"> | ||
3522 | <source>No comments found.</source> | ||
3523 | <target state="new">No comments found.</target> | ||
3524 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">129</context></context-group> | ||
3525 | </trans-unit> | ||
3126 | <trans-unit id="c5cc399a82eb7993156daf2d6c1d9e071cde47ad" datatype="html"> | 3526 | <trans-unit id="c5cc399a82eb7993156daf2d6c1d9e071cde47ad" datatype="html"> |
3127 | <source>No abuses found matching current filters.</source> | 3527 | <source>No abuses found matching current filters.</source> |
3128 | <target state="new">No abuses found matching current filters.</target> | 3528 | <target state="new">No abuses found matching current filters.</target> |
3129 | 3529 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">188</context></context-group> | |
3130 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">188</context></context-group></trans-unit> | 3530 | </trans-unit> |
3131 | <trans-unit id="5d9dd64c1974b18918db7f24051bb385bd5558e1" datatype="html"> | 3531 | <trans-unit id="5d9dd64c1974b18918db7f24051bb385bd5558e1" datatype="html"> |
3132 | <source>No abuses found.</source> | 3532 | <source>No abuses found.</source> |
3133 | <target state="new">No abuses found.</target> | 3533 | <target state="new">No abuses found.</target> |
3134 | 3534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">189</context></context-group> | |
3135 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">189</context></context-group></trans-unit> | 3535 | </trans-unit> |
3136 | <trans-unit id="d2a65fafac0e4e0a3289ec54627bd7f691d8020d" datatype="html"> | 3536 | <trans-unit id="d2a65fafac0e4e0a3289ec54627bd7f691d8020d" datatype="html"> |
3137 | <source>Block reason:</source> | 3537 | <source>Block reason:</source> |
3138 | <target state="new">Block reason:</target> | 3538 | <target state="translated">Engel sebebi:</target> |
3139 | 3539 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">104</context></context-group> | |
3140 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 3540 | </trans-unit> |
3141 | <trans-unit id="f8add432da83aa37b8cf03c5b907c3a9e51088fd" datatype="html"> | 3541 | <trans-unit id="f8add432da83aa37b8cf03c5b907c3a9e51088fd" datatype="html"> |
3142 | <source>No blocked video found matching current filters.</source> | 3542 | <source>No blocked video found matching current filters.</source> |
3143 | <target state="new">No blocked video found matching current filters.</target> | 3543 | <target state="new">No blocked video found matching current filters.</target> |
3144 | 3544 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">124</context></context-group> | |
3145 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">124</context></context-group></trans-unit> | 3545 | </trans-unit> |
3146 | <trans-unit id="8d02797f76f99ad51f55e91ff82088e8772152e0" datatype="html"> | 3546 | <trans-unit id="8d02797f76f99ad51f55e91ff82088e8772152e0" datatype="html"> |
3147 | <source>No blocked video found.</source> | 3547 | <source>No blocked video found.</source> |
3148 | <target state="new">No blocked video found.</target> | 3548 | <target state="new">No blocked video found.</target> |
3149 | 3549 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">125</context></context-group> | |
3150 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 3550 | </trans-unit> |
3151 | <trans-unit id="9f5c75bd513580d630817cd39179fd41e5ec36f6" datatype="html"> | 3551 | <trans-unit id="9f5c75bd513580d630817cd39179fd41e5ec36f6" datatype="html"> |
3152 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> blocked videos</source> | 3552 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> blocked videos</source> |
3153 | <target state="new">Showing | 3553 | <target state="new">Showing |
@@ -3155,148 +3555,159 @@ The link will expire within 1 hour.</target> | |||
3155 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 3555 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
3156 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> blocked videos | 3556 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> blocked videos |
3157 | </target> | 3557 | </target> |
3158 | 3558 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">10</context></context-group> | |
3159 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3559 | </trans-unit> |
3160 | <trans-unit id="24968c3b9f7cb940df7e5bf46f61a11710481829" datatype="html"> | 3560 | <trans-unit id="24968c3b9f7cb940df7e5bf46f61a11710481829" datatype="html"> |
3161 | <source>Reports</source> | 3561 | <source>Reports</source> |
3162 | <target state="new">Reports</target> | 3562 | <target state="new">Reports</target> |
3163 | 3563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
3164 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/abuse-list/abuse-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3564 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/abuse-list/abuse-list.component.html</context><context context-type="linenumber">3</context></context-group> |
3565 | </trans-unit> | ||
3165 | <trans-unit id="bb863c794307735652d8695143e116eaee8a3c4f" datatype="html"> | 3566 | <trans-unit id="bb863c794307735652d8695143e116eaee8a3c4f" datatype="html"> |
3166 | <source>Moderation comment</source> | 3567 | <source>Moderation comment</source> |
3167 | <target state="new">Moderation comment</target> | 3568 | <target state="new">Moderation comment</target> |
3168 | 3569 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">3</context></context-group> | |
3169 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3570 | </trans-unit> |
3170 | <trans-unit id="5731e5d5ac989bf08848b5a57a5586cf84d80964" datatype="html"> | 3571 | <trans-unit id="5731e5d5ac989bf08848b5a57a5586cf84d80964" datatype="html"> |
3171 | <source>This comment can only be seen by you or the other moderators.</source> | 3572 | <source>This comment can only be seen by you or the other moderators.</source> |
3172 | <target state="new">This comment can only be seen by you or the other moderators.</target> | 3573 | <target state="new">This comment can only be seen by you or the other moderators.</target> |
3173 | 3574 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">21</context></context-group> | |
3174 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 3575 | </trans-unit> |
3175 | <trans-unit id="0562e455c88234829f3c27a38f3039f027bfd5d2" datatype="html"> | 3576 | <trans-unit id="0562e455c88234829f3c27a38f3039f027bfd5d2" datatype="html"> |
3176 | <source>Update this comment</source> | 3577 | <source>Update this comment</source> |
3177 | <target state="new">Update this comment</target> | 3578 | <target state="new">Update this comment</target> |
3178 | 3579 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">31</context></context-group> | |
3179 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 3580 | </trans-unit> |
3180 | <trans-unit id="f7753a5d0baa909f5860eb49e14c41fc4ae00fb4" datatype="html"> | 3581 | <trans-unit id="f7753a5d0baa909f5860eb49e14c41fc4ae00fb4" datatype="html"> |
3181 | <source>Advanced report filters</source> | 3582 | <source>Advanced report filters</source> |
3182 | <target state="new">Advanced report filters</target> | 3583 | <target state="new">Advanced report filters</target> |
3183 | 3584 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">18</context></context-group> | |
3184 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 3585 | </trans-unit> |
3185 | <trans-unit id="006dd388f1d14f58c33fb4ed4bb05a1dfbc42ffa" datatype="html"> | 3586 | <trans-unit id="006dd388f1d14f58c33fb4ed4bb05a1dfbc42ffa" datatype="html"> |
3186 | <source>Unsolved reports</source> | 3587 | <source>Unsolved reports</source> |
3187 | <target state="new">Unsolved reports</target> | 3588 | <target state="new">Unsolved reports</target> |
3188 | 3589 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">19</context></context-group> | |
3189 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 3590 | </trans-unit> |
3190 | <trans-unit id="dee7eb63010b67c2464dd7987307e85369f24b9d" datatype="html"> | 3591 | <trans-unit id="dee7eb63010b67c2464dd7987307e85369f24b9d" datatype="html"> |
3191 | <source>Accepted reports</source> | 3592 | <source>Accepted reports</source> |
3192 | <target state="new">Accepted reports</target> | 3593 | <target state="new">Accepted reports</target> |
3193 | 3594 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">20</context></context-group> | |
3194 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 3595 | </trans-unit> |
3195 | <trans-unit id="8140a31650a8a974acaf9f7e88cfb246ed6c9314" datatype="html"> | 3596 | <trans-unit id="8140a31650a8a974acaf9f7e88cfb246ed6c9314" datatype="html"> |
3196 | <source>Refused reports</source> | 3597 | <source>Refused reports</source> |
3197 | <target state="new">Refused reports</target> | 3598 | <target state="new">Refused reports</target> |
3198 | 3599 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">21</context></context-group> | |
3199 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 3600 | </trans-unit> |
3200 | <trans-unit id="1f5ed7018178a08c8eb17305833874a976fa428c" datatype="html"> | 3601 | <trans-unit id="1f5ed7018178a08c8eb17305833874a976fa428c" datatype="html"> |
3201 | <source>Reports with blocked videos</source> | 3602 | <source>Reports with blocked videos</source> |
3202 | <target state="new">Reports with blocked videos</target> | 3603 | <target state="new">Reports with blocked videos</target> |
3203 | 3604 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">22</context></context-group> | |
3204 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 3605 | </trans-unit> |
3205 | <trans-unit id="2f536bc37b142c0376631cefb992151fb733ce48" datatype="html"> | 3606 | <trans-unit id="2f536bc37b142c0376631cefb992151fb733ce48" datatype="html"> |
3206 | <source>Reports with deleted videos</source> | 3607 | <source>Reports with deleted videos</source> |
3207 | <target state="new">Reports with deleted videos</target> | 3608 | <target state="new">Reports with deleted videos</target> |
3208 | 3609 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">23</context></context-group> | |
3209 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 3610 | </trans-unit> |
3210 | <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2" datatype="html"> | 3611 | <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2" datatype="html"> |
3211 | <source>Reporter</source> | 3612 | <source>Reporter</source> |
3212 | <target state="new">Reporter</target> | 3613 | <target state="new">Reporter</target> |
3213 | 3614 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">41</context></context-group> | |
3214 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 3615 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">7</context></context-group> |
3616 | </trans-unit> | ||
3215 | <trans-unit id="fd7b8e728c25b616934661747224b1b2e7d9ea5c" datatype="html"> | 3617 | <trans-unit id="fd7b8e728c25b616934661747224b1b2e7d9ea5c" datatype="html"> |
3216 | <source> <x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 3618 | <source><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
3217 | <target state="new"> | 3619 | <target state="new"> |
3218 | <x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {...} other {...}}"/> | 3620 | <x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {...} other {...}}"/> |
3219 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> | 3621 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> |
3220 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> | 3622 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> |
3221 | </target> | 3623 | </target> |
3222 | 3624 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">27</context></context-group> | |
3223 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | 3625 | </trans-unit> |
3224 | <trans-unit id="fe8634bd713368d7971877c0e09d1869f09c924d" datatype="html"> | 3626 | <trans-unit id="fe8634bd713368d7971877c0e09d1869f09c924d" datatype="html"> |
3225 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> | 3627 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> |
3226 | <target state="new">{VAR_PLURAL, plural, =1 {1 report} other { | 3628 | <target state="new">{VAR_PLURAL, plural, =1 {1 report} other { |
3227 | <x id="INTERPOLATION" equiv-text="{{ abuse.countReportsForReporter }}"/> reports} } | 3629 | <x id="INTERPOLATION" equiv-text="{{ abuse.countReportsForReporter }}"/> reports} } |
3228 | </target> | 3630 | </target> |
3229 | 3631 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">27</context></context-group> | |
3230 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | 3632 | </trans-unit> |
3231 | <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4" datatype="html"> | 3633 | <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4" datatype="html"> |
3232 | <source>Video</source> | 3634 | <source>Video</source> |
3233 | <target state="new">Video</target> | 3635 | <target state="translated">Video</target> |
3234 | 3636 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">18</context></context-group> | |
3235 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit><trans-unit id="5a5d7ee2acbfa9c91ab7f41d26bda9ff0cafe42f" datatype="html"> | 3637 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">20</context></context-group> |
3236 | <source>Comment</source><target state="new">Comment</target> | 3638 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">60</context></context-group> |
3237 | 3639 | </trans-unit> | |
3238 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> | 3640 | <trans-unit id="5a5d7ee2acbfa9c91ab7f41d26bda9ff0cafe42f" datatype="html"> |
3641 | <source>Comment</source> | ||
3642 | <target state="translated">Yorum</target> | ||
3643 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">61</context></context-group> | ||
3644 | </trans-unit> | ||
3239 | <trans-unit id="dee48932053451ee2dfafe5500a5262cd4220d5e" datatype="html"> | 3645 | <trans-unit id="dee48932053451ee2dfafe5500a5262cd4220d5e" datatype="html"> |
3240 | <source>This video has been reported multiple times.</source> | 3646 | <source>This video has been reported multiple times.</source> |
3241 | <target state="new">This video has been reported multiple times.</target> | 3647 | <target state="new">This video has been reported multiple times.</target> |
3242 | 3648 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">95</context></context-group> | |
3243 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit> | 3649 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">95</context></context-group> |
3650 | </trans-unit> | ||
3244 | <trans-unit id="e9a289d014e33a5a45e1cf47131074f50abb7c18" datatype="html"> | 3651 | <trans-unit id="e9a289d014e33a5a45e1cf47131074f50abb7c18" datatype="html"> |
3245 | <source>The video was blocked</source> | 3652 | <source>The video was blocked</source> |
3246 | <target state="new">The video was blocked</target> | 3653 | <target state="new">The video was blocked</target> |
3247 | 3654 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">104</context></context-group> | |
3248 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">104</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 3655 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">104</context></context-group> |
3656 | </trans-unit> | ||
3249 | <trans-unit id="e186aa4dc511ff4347ec5304691000e3e0a4a048" datatype="html"> | 3657 | <trans-unit id="e186aa4dc511ff4347ec5304691000e3e0a4a048" datatype="html"> |
3250 | <source>by <x id="INTERPOLATION"/> on <x id="INTERPOLATION_1"/> </source> | 3658 | <source>by <x id="INTERPOLATION"/> on <x id="INTERPOLATION_1"/> </source> |
3251 | <target state="new">by | 3659 | <target state="new">by |
3252 | <x id="INTERPOLATION" equiv-text="{{ abuse.video.channel?.displayName }}"/> on | 3660 | <x id="INTERPOLATION" equiv-text="{{ abuse.video.channel?.displayName }}"/> on |
3253 | <x id="INTERPOLATION_1" equiv-text="{{ abuse.video.channel?.host }}"/> | 3661 | <x id="INTERPOLATION_1" equiv-text="{{ abuse.video.channel?.host }}"/> |
3254 | </target> | 3662 | </target> |
3255 | 3663 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">107</context></context-group> | |
3256 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">107</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">124</context></context-group></trans-unit> | 3664 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">124</context></context-group> |
3665 | </trans-unit> | ||
3257 | <trans-unit id="b0a337363ec610cf41744167b12f020e141a4617" datatype="html"> | 3666 | <trans-unit id="b0a337363ec610cf41744167b12f020e141a4617" datatype="html"> |
3258 | <source>Video was deleted</source> | 3667 | <source>Video was deleted</source> |
3259 | <target state="new">Video was deleted</target> | 3668 | <target state="new">Video was deleted</target> |
3260 | 3669 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">114</context></context-group> | |
3261 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">114</context></context-group></trans-unit> | 3670 | </trans-unit> |
3262 | <trans-unit id="c45d28b67fd917b804defbf9e465ec1abe0c67da" datatype="html"> | 3671 | <trans-unit id="c45d28b67fd917b804defbf9e465ec1abe0c67da" datatype="html"> |
3263 | <source>Account deleted</source> | 3672 | <source>Account deleted</source> |
3264 | <target state="new"> | 3673 | <target state="new"> |
3265 | Account deleted | 3674 | Account deleted |
3266 | </target> | 3675 | </target> |
3267 | 3676 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">150</context></context-group> | |
3268 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">150</context></context-group></trans-unit> | 3677 | </trans-unit> |
3269 | <trans-unit id="c1074e8c49b3cdfaeb7fcaf8cb27e44139389e29" datatype="html"> | 3678 | <trans-unit id="c1074e8c49b3cdfaeb7fcaf8cb27e44139389e29" datatype="html"> |
3270 | <source>Open video in a new tab</source> | 3679 | <source>Open video in a new tab</source> |
3271 | <target state="new">Open video in a new tab</target> | 3680 | <target state="translated">Videoyu yeni sekmede aç</target> |
3272 | 3681 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">49</context></context-group> | |
3273 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 3682 | </trans-unit> |
3274 | <trans-unit id="7e7ad19f1bcc2c33cdba4c1ad25e2b398ad453d9" datatype="html"> | 3683 | <trans-unit id="7e7ad19f1bcc2c33cdba4c1ad25e2b398ad453d9" datatype="html"> |
3275 | <source>State <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3684 | <source>State <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3276 | <target state="new">State | 3685 | <target state="new">State |
3277 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 3686 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
3278 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 3687 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
3279 | </target> | 3688 | </target> |
3280 | 3689 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">44</context></context-group> | |
3281 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 3690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">36</context></context-group> |
3691 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">29</context></context-group> | ||
3692 | </trans-unit> | ||
3282 | <trans-unit id="ea965d544a7dfd8185064c52cdfff553cf94d585" datatype="html"> | 3693 | <trans-unit id="ea965d544a7dfd8185064c52cdfff553cf94d585" datatype="html"> |
3283 | <source>Messages</source> | 3694 | <source>Messages</source> |
3284 | <target state="new">Messages</target> | 3695 | <target state="translated">Mesajlar</target> |
3285 | 3696 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">45</context></context-group> | |
3286 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 3697 | </trans-unit> |
3287 | <trans-unit id="31b1d714a41f00a1347b78884eee465b1d90f7e1" datatype="html"> | 3698 | <trans-unit id="31b1d714a41f00a1347b78884eee465b1d90f7e1" datatype="html"> |
3288 | <source>Internal note</source> | 3699 | <source>Internal note</source> |
3289 | <target state="new">Internal note</target> | 3700 | <target state="new">Internal note</target> |
3290 | 3701 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">46</context></context-group> | |
3291 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 3702 | </trans-unit> |
3292 | <trans-unit id="9a7b523cbbebabeb9b10482291b58c52825a4b05" datatype="html"> | 3703 | <trans-unit id="9a7b523cbbebabeb9b10482291b58c52825a4b05" datatype="html"> |
3293 | <source>Score <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3704 | <source>Score <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3294 | <target state="new">Score | 3705 | <target state="new">Score |
3295 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 3706 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
3296 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 3707 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
3297 | </target> | 3708 | </target> |
3298 | 3709 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">30</context></context-group> | |
3299 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 3710 | </trans-unit> |
3300 | <trans-unit id="8d1011bd5b502c857858a97d074118377d8fe714" datatype="html"> | 3711 | <trans-unit id="8d1011bd5b502c857858a97d074118377d8fe714" datatype="html"> |
3301 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> reports</source> | 3712 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> reports</source> |
3302 | <target state="new">Showing | 3713 | <target state="new">Showing |
@@ -3304,67 +3715,79 @@ The link will expire within 1 hour.</target> | |||
3304 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 3715 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
3305 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> reports | 3716 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> reports |
3306 | </target> | 3717 | </target> |
3307 | 3718 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">5</context></context-group> | |
3308 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 3719 | </trans-unit> |
3309 | <trans-unit id="4dbabcc6e79125d4b798ba8139a40202db712475" datatype="html"> | 3720 | <trans-unit id="4dbabcc6e79125d4b798ba8139a40202db712475" datatype="html"> |
3310 | <source>Reportee</source> | 3721 | <source>Reportee</source> |
3311 | <target state="new">Reportee</target> | 3722 | <target state="new">Reportee</target> |
3312 | 3723 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">33</context></context-group> | |
3313 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 3724 | </trans-unit> |
3314 | <trans-unit id="da3ebfaee320ad7a8a41c75d6ee19e687f9b484d" datatype="html"> | 3725 | <trans-unit id="da3ebfaee320ad7a8a41c75d6ee19e687f9b484d" datatype="html"> |
3315 | <source> <x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {1 report} other {{{ abuse.countReportsForReportee }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 3726 | <source><x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {1 report} other {{{ abuse.countReportsForReportee }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
3316 | <target state="new"> | 3727 | <target state="new"> |
3317 | <x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {...} other {...}}"/> | 3728 | <x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {...} other {...}}"/> |
3318 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> | 3729 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> |
3319 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> | 3730 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> |
3320 | </target> | 3731 | </target> |
3321 | 3732 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">52</context></context-group> | |
3322 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 3733 | </trans-unit> |
3323 | <trans-unit id="bdd37f55632abc18fb1fbf95d4b3f5f89ce3237b" datatype="html"> | 3734 | <trans-unit id="bdd37f55632abc18fb1fbf95d4b3f5f89ce3237b" datatype="html"> |
3324 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> | 3735 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> |
3325 | <target state="new">{VAR_PLURAL, plural, =1 {1 report} other { | 3736 | <target state="new">{VAR_PLURAL, plural, =1 {1 report} other { |
3326 | <x id="INTERPOLATION" equiv-text="{{ abuse.countReportsForReportee }}"/> reports} } | 3737 | <x id="INTERPOLATION" equiv-text="{{ abuse.countReportsForReportee }}"/> reports} } |
3327 | </target> | 3738 | </target> |
3328 | 3739 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">52</context></context-group> | |
3329 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 3740 | </trans-unit> |
3330 | <trans-unit id="9da0107a35751e722c8b4bca7636fc7645dbdbdc" datatype="html"> | 3741 | <trans-unit id="9da0107a35751e722c8b4bca7636fc7645dbdbdc" datatype="html"> |
3331 | <source>Updated</source> | 3742 | <source>Updated</source> |
3332 | <target state="new">Updated</target> | 3743 | <target state="new">Updated</target> |
3333 | 3744 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">58</context></context-group> | |
3334 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 3745 | </trans-unit> |
3335 | <trans-unit id="a3ae5c724857d00c006273db314041ab0664c269" datatype="html"> | 3746 | <trans-unit id="a3ae5c724857d00c006273db314041ab0664c269" datatype="html"> |
3336 | <source>Mute domain</source> | 3747 | <source>Mute domain</source> |
3337 | <target state="new">Mute domain</target> | 3748 | <target state="new">Mute domain</target> |
3338 | 3749 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">17</context></context-group> | |
3339 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 3750 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">17</context></context-group> |
3751 | </trans-unit> | ||
3340 | <trans-unit id="ff78f059449d44322f627d0f66df07abe476962b" datatype="html"> | 3752 | <trans-unit id="ff78f059449d44322f627d0f66df07abe476962b" datatype="html"> |
3341 | <source>Instance</source> | 3753 | <source>Instance</source> |
3342 | <target state="new">Instance</target> | 3754 | <target state="new">Instance</target> |
3343 | 3755 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">165</context></context-group> | |
3344 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">165</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">5</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 3756 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">35</context></context-group> |
3757 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">5</context></context-group> | ||
3758 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">35</context></context-group> | ||
3759 | </trans-unit> | ||
3345 | <trans-unit id="079e99cce11c87b142e80fdd14dae98a61012fc4" datatype="html"> | 3760 | <trans-unit id="079e99cce11c87b142e80fdd14dae98a61012fc4" datatype="html"> |
3346 | <source>Muted at <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3761 | <source>Muted at <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3347 | <target state="new">Muted at | 3762 | <target state="new">Muted at |
3348 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> | 3763 | <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> |
3349 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> | 3764 | <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/> |
3350 | </target> | 3765 | </target> |
3351 | 3766 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">36</context></context-group> | |
3352 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 3767 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">29</context></context-group> |
3768 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">29</context></context-group> | ||
3769 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">36</context></context-group> | ||
3770 | </trans-unit> | ||
3353 | <trans-unit id="1f689fada9748a830117f5b429a88ef8629082a8" datatype="html"> | 3771 | <trans-unit id="1f689fada9748a830117f5b429a88ef8629082a8" datatype="html"> |
3354 | <source>Unmute</source> | 3772 | <source>Unmute</source> |
3355 | <target state="new">Unmute</target> | 3773 | <target state="new">Unmute</target> |
3356 | 3774 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">43</context></context-group> | |
3357 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | 3775 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">36</context></context-group> |
3776 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">36</context></context-group> | ||
3777 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">43</context></context-group> | ||
3778 | </trans-unit> | ||
3358 | <trans-unit id="4cac34ce105daa25964c217fdf0515a0a6ee5db9" datatype="html"> | 3779 | <trans-unit id="4cac34ce105daa25964c217fdf0515a0a6ee5db9" datatype="html"> |
3359 | <source>No server found matching current filters.</source> | 3780 | <source>No server found matching current filters.</source> |
3360 | <target state="new">No server found matching current filters.</target> | 3781 | <target state="new">No server found matching current filters.</target> |
3361 | 3782 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">59</context></context-group> | |
3362 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">59</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 3783 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">59</context></context-group> |
3784 | </trans-unit> | ||
3363 | <trans-unit id="0ba22bd964baaf0c2f85d6731fccca31dbf06dae" datatype="html"> | 3785 | <trans-unit id="0ba22bd964baaf0c2f85d6731fccca31dbf06dae" datatype="html"> |
3364 | <source>No server found.</source> | 3786 | <source>No server found.</source> |
3365 | <target state="new">No server found.</target> | 3787 | <target state="new">No server found.</target> |
3366 | 3788 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">60</context></context-group> | |
3367 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">60</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 3789 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">60</context></context-group> |
3790 | </trans-unit> | ||
3368 | <trans-unit id="60cdb933d2c7051f3b5b23f9e5f8c83fa861b220" datatype="html"> | 3791 | <trans-unit id="60cdb933d2c7051f3b5b23f9e5f8c83fa861b220" datatype="html"> |
3369 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted instances</source> | 3792 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted instances</source> |
3370 | <target state="new">Showing | 3793 | <target state="new">Showing |
@@ -3372,50 +3795,56 @@ The link will expire within 1 hour.</target> | |||
3372 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 3795 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
3373 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> muted instances | 3796 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> muted instances |
3374 | </target> | 3797 | </target> |
3375 | 3798 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">10</context></context-group> | |
3376 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">10</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3799 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">10</context></context-group> |
3800 | </trans-unit> | ||
3377 | <trans-unit id="2aebea85561b74dd33ae2481bb942b8c4beb5524" datatype="html"> | 3801 | <trans-unit id="2aebea85561b74dd33ae2481bb942b8c4beb5524" datatype="html"> |
3378 | <source>It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers.</source> | 3802 | <source>It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers.</source> |
3379 | <target state="new"> | 3803 | <target state="new"> |
3380 | It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers. | 3804 | It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers. |
3381 | </target> | 3805 | </target> |
3382 | 3806 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">85</context></context-group> | |
3383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 3807 | </trans-unit> |
3384 | <trans-unit id="c7b73cded84adfa978aae675417f4bb688631a71" datatype="html"> | 3808 | <trans-unit id="c7b73cded84adfa978aae675417f4bb688631a71" datatype="html"> |
3385 | <source>Mute domains</source> | 3809 | <source>Mute domains</source> |
3386 | <target state="new">Mute domains</target> | 3810 | <target state="new">Mute domains</target> |
3387 | 3811 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">67</context></context-group> | |
3388 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> | 3812 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">67</context></context-group> |
3813 | </trans-unit> | ||
3389 | <trans-unit id="29881a45dafbe5aa05cd9d0441a4c0c2fb06df92" datatype="html"> | 3814 | <trans-unit id="29881a45dafbe5aa05cd9d0441a4c0c2fb06df92" datatype="html"> |
3390 | <source>Account</source> | 3815 | <source>Account</source> |
3391 | <target state="new">Account</target> | 3816 | <target state="translated">Hesap</target> |
3392 | 3817 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">28</context></context-group> | |
3393 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 3818 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">28</context></context-group> |
3819 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">59</context></context-group> | ||
3820 | </trans-unit> | ||
3394 | <trans-unit id="33c4091a2a2438ba655caa47ede7f7a82f5f0297" datatype="html"> | 3821 | <trans-unit id="33c4091a2a2438ba655caa47ede7f7a82f5f0297" datatype="html"> |
3395 | <source>No account found matching current filters.</source> | 3822 | <source>No account found matching current filters.</source> |
3396 | <target state="new">No account found matching current filters.</target> | 3823 | <target state="new">No account found matching current filters.</target> |
3397 | 3824 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">63</context></context-group> | |
3398 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">63</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">63</context></context-group></trans-unit> | 3825 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">63</context></context-group> |
3826 | </trans-unit> | ||
3399 | <trans-unit id="5d3b267bc054bb6b5743dd3d46ee58cff5141697" datatype="html"> | 3827 | <trans-unit id="5d3b267bc054bb6b5743dd3d46ee58cff5141697" datatype="html"> |
3400 | <source>No account found.</source> | 3828 | <source>No account found.</source> |
3401 | <target state="new">No account found.</target> | 3829 | <target state="new">No account found.</target> |
3402 | 3830 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group> | |
3403 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3831 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group> |
3832 | </trans-unit> | ||
3404 | <trans-unit id="2338185419645468935" datatype="html"> | 3833 | <trans-unit id="2338185419645468935" datatype="html"> |
3405 | <source>List installed plugins</source> | 3834 | <source>List installed plugins</source> |
3406 | <target state="new">List installed plugins</target> | 3835 | <target state="new">List installed plugins</target> |
3407 | 3836 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">28</context></context-group> | |
3408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 3837 | </trans-unit> |
3409 | <trans-unit id="8897412584195581488" datatype="html"> | 3838 | <trans-unit id="8897412584195581488" datatype="html"> |
3410 | <source>Search plugins</source> | 3839 | <source>Search plugins</source> |
3411 | <target state="new">Search plugins</target> | 3840 | <target state="new">Search plugins</target> |
3412 | 3841 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">37</context></context-group> | |
3413 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 3842 | </trans-unit> |
3414 | <trans-unit id="4994333937800672218" datatype="html"> | 3843 | <trans-unit id="4994333937800672218" datatype="html"> |
3415 | <source>Show plugin</source> | 3844 | <source>Show plugin</source> |
3416 | <target state="new">Show plugin</target> | 3845 | <target state="new">Show plugin</target> |
3417 | 3846 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">46</context></context-group> | |
3418 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 3847 | </trans-unit> |
3419 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3848 | <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> | 3849 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3421 | <target state="new">Showing | 3850 | <target state="new">Showing |
@@ -3423,543 +3852,609 @@ The link will expire within 1 hour.</target> | |||
3423 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 3852 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
3424 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> muted accounts | 3853 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> muted accounts |
3425 | </target> | 3854 | </target> |
3426 | 3855 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">10</context></context-group> | |
3427 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">10</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3856 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">10</context></context-group> |
3857 | </trans-unit> | ||
3428 | <trans-unit id="8259696070728377358" datatype="html"> | 3858 | <trans-unit id="8259696070728377358" datatype="html"> |
3429 | <source>Plugins/Themes</source> | 3859 | <source>Plugins/Themes</source> |
3430 | <target state="new">Plugins/Themes</target> | 3860 | <target state="new">Plugins/Themes</target> |
3431 | 3861 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">99</context></context-group> | |
3432 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">99</context></context-group></trans-unit> | 3862 | </trans-unit> |
3433 | <trans-unit id="86288c2ac6b43ed195f0bc8bce825a3ab8151b71" datatype="html"> | 3863 | <trans-unit id="86288c2ac6b43ed195f0bc8bce825a3ab8151b71" datatype="html"> |
3434 | <source>Installed</source> | 3864 | <source>Installed</source> |
3435 | <target state="new">Installed</target> | 3865 | <target state="new">Installed</target> |
3436 | 3866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">3</context></context-group> | |
3437 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3867 | </trans-unit> |
3438 | <trans-unit id="5a329cfc387d2231434afc2842ff649392da8921" datatype="html"> | 3868 | <trans-unit id="5a329cfc387d2231434afc2842ff649392da8921" datatype="html"> |
3439 | <source>Plugin homepage (new window)</source> | 3869 | <source>Plugin homepage (new window)</source> |
3440 | <target state="new">Plugin homepage (new window)</target> | 3870 | <target state="new">Plugin homepage (new window)</target> |
3441 | 3871 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">40</context></context-group> | |
3442 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">40</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 3872 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">17</context></context-group> |
3873 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">21</context></context-group> | ||
3874 | </trans-unit> | ||
3443 | <trans-unit id="7e892ba15f2c6c17e83510e273b3e10fc32ea016"> | 3875 | <trans-unit id="7e892ba15f2c6c17e83510e273b3e10fc32ea016"> |
3444 | <source>Search</source> | 3876 | <source>Search</source> |
3445 | <target>Ara</target> | 3877 | <target>Ara</target> |
3446 | 3878 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">8</context></context-group> | |
3447 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">122</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 3879 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">122</context></context-group> |
3880 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">5</context></context-group> | ||
3881 | </trans-unit> | ||
3448 | <trans-unit id="82c6fc1dfd67a87c2a9f54c221907d0d61c63b88" datatype="html"> | 3882 | <trans-unit id="82c6fc1dfd67a87c2a9f54c221907d0d61c63b88" datatype="html"> |
3449 | <source>Users can resolve distant content</source> | 3883 | <source>Users can resolve distant content</source> |
3450 | <target state="new">Users can resolve distant content</target> | 3884 | <target state="new">Users can resolve distant content</target> |
3451 | 3885 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">126</context></context-group> | |
3452 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 3886 | </trans-unit> |
3453 | <trans-unit id="0fab2b1e25b97842c52a6b95f139bda7e416fde6" datatype="html"> | 3887 | <trans-unit id="0fab2b1e25b97842c52a6b95f139bda7e416fde6" datatype="html"> |
3454 | <source>Close this message</source> | 3888 | <source>Close this message</source> |
3455 | <target state="new">Close this message</target> | 3889 | <target state="new">Close this message</target> |
3456 | 3890 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.html</context><context context-type="linenumber">34</context></context-group> | |
3457 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/app.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 3891 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.html</context><context context-type="linenumber">34</context></context-group> |
3892 | </trans-unit> | ||
3458 | <trans-unit id="121cc5391cd2a5115bc2b3160379ee5b36cd7716" datatype="html"> | 3893 | <trans-unit id="121cc5391cd2a5115bc2b3160379ee5b36cd7716" datatype="html"> |
3459 | <source>Settings</source> | 3894 | <source>Settings</source> |
3460 | <target state="new">Settings</target> | 3895 | <target state="translated">Ayarlar</target> |
3461 | 3896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">1</context></context-group> | |
3462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">1</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 3897 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">26</context></context-group> |
3898 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">26</context></context-group> | ||
3899 | </trans-unit> | ||
3463 | <trans-unit id="3b79d221458541611e8508d3551dd1ddd76b49d9" datatype="html"> | 3900 | <trans-unit id="3b79d221458541611e8508d3551dd1ddd76b49d9" datatype="html"> |
3464 | <source>Display settings</source> | 3901 | <source>Display settings</source> |
3465 | <target state="new">Display settings</target> | 3902 | <target state="new">Display settings</target> |
3466 | 3903 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">10</context></context-group> | |
3467 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3904 | </trans-unit> |
3468 | <trans-unit id="1dfba504a0d0bf41da961d89d402dedecde5e30d" datatype="html"> | 3905 | <trans-unit id="1dfba504a0d0bf41da961d89d402dedecde5e30d" datatype="html"> |
3469 | <source>Uninstall</source> | 3906 | <source>Uninstall</source> |
3470 | <target state="new">Uninstall</target> | 3907 | <target state="new">Uninstall</target> |
3471 | 3908 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">32</context></context-group> | |
3472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 3909 | </trans-unit> |
3473 | <trans-unit id="fcef699ec12dbd6fcf9881d527af2fd775ccfdc7" datatype="html"> | 3910 | <trans-unit id="fcef699ec12dbd6fcf9881d527af2fd775ccfdc7" datatype="html"> |
3474 | <source>To load your new installed plugins or themes, refresh the page.</source> | 3911 | <source>To load your new installed plugins or themes, refresh the page.</source> |
3475 | <target state="new">To load your new installed plugins or themes, refresh the page.</target> | 3912 | <target state="new">To load your new installed plugins or themes, refresh the page.</target> |
3476 | 3913 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">10</context></context-group> | |
3477 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 3914 | </trans-unit> |
3478 | <trans-unit id="8fc026bb4b317bf3a6159c364818202f5bb95a4e" datatype="html"> | 3915 | <trans-unit id="8fc026bb4b317bf3a6159c364818202f5bb95a4e" datatype="html"> |
3479 | <source>Popular</source> | 3916 | <source>Popular</source> |
3480 | <target state="new">Popular</target> | 3917 | <target state="translated">Popüler</target> |
3481 | 3918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">16</context></context-group> | |
3482 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 3919 | </trans-unit> |
3483 | <trans-unit id="2d336e3fe6d5d0cb687ea6413890930b3d709005" datatype="html"> | 3920 | <trans-unit id="2d336e3fe6d5d0cb687ea6413890930b3d709005" datatype="html"> |
3484 | <source> <x id="INTERPOLATION" equiv-text=" {{ pagination.totalIt"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}"/> for "<x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" </source> | 3921 | <source><x id="INTERPOLATION" equiv-text=" {{ pagination.totalIt"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}"/> for "<x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" </source> |
3485 | <target state="new"> | 3922 | <target state="new"> |
3486 | <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> | 3923 | <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> |
3487 | <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {...} other {...}}"/> for " | 3924 | <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {...} other {...}}"/> for " |
3488 | <x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" | 3925 | <x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" |
3489 | </target> | 3926 | </target> |
3490 | 3927 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">22</context></context-group> | |
3491 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 3928 | </trans-unit> |
3492 | <trans-unit id="16e81be2315b29492395d99ba53a83e770430494" datatype="html"> | 3929 | <trans-unit id="16e81be2315b29492395d99ba53a83e770430494" datatype="html"> |
3493 | <source>{VAR_PLURAL, plural, =1 {result} other {results} }</source> | 3930 | <source>{VAR_PLURAL, plural, =1 {result} other {results} }</source> |
3494 | <target state="new">{VAR_PLURAL, plural, =1 {result} other {results} }</target> | 3931 | <target state="new">{VAR_PLURAL, plural, =1 {result} other {results} }</target> |
3495 | 3932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">5</context></context-group> | |
3496 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">5</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 3933 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">23</context></context-group> |
3934 | </trans-unit> | ||
3497 | <trans-unit id="b1363973a9482c7b0a7c4a1d066fd64625d40207" datatype="html"> | 3935 | <trans-unit id="b1363973a9482c7b0a7c4a1d066fd64625d40207" datatype="html"> |
3498 | <source>No results.</source> | 3936 | <source>No results.</source> |
3499 | <target state="new">No results.</target> | 3937 | <target state="new">No results.</target> |
3500 | 3938 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">29</context></context-group> | |
3501 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 3939 | </trans-unit> |
3502 | <trans-unit id="fc06c11db79db253b0d0f1b070cf48e039e8a3a8" datatype="html"> | 3940 | <trans-unit id="fc06c11db79db253b0d0f1b070cf48e039e8a3a8" datatype="html"> |
3503 | <source>Plugin npm package (new window)</source> | 3941 | <source>Plugin npm package (new window)</source> |
3504 | <target state="new">Plugin npm package (new window)</target> | 3942 | <target state="new">Plugin npm package (new window)</target> |
3505 | 3943 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">44</context></context-group> | |
3506 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> | 3944 | </trans-unit> |
3507 | <trans-unit id="ba504ef7da4384f035fc148de2d121322aaa7407" datatype="html"> | 3945 | <trans-unit id="ba504ef7da4384f035fc148de2d121322aaa7407" datatype="html"> |
3508 | <source>This <x id="INTERPOLATION"/> does not have settings. </source> | 3946 | <source>This <x id="INTERPOLATION"/> does not have settings. </source> |
3509 | <target state="new">This | 3947 | <target state="new">This |
3510 | <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings. | 3948 | <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings. |
3511 | </target> | 3949 | </target> |
3512 | 3950 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context><context context-type="linenumber">16</context></context-group> | |
3513 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 3951 | </trans-unit> |
3514 | <trans-unit id="29832309535656200" datatype="html"> | 3952 | <trans-unit id="29832309535656200" datatype="html"> |
3515 | <source>System</source> | 3953 | <source>System</source> |
3516 | <target state="new">System</target> | 3954 | <target state="new">System</target> |
3517 | 3955 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">103</context></context-group> | |
3518 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | 3956 | </trans-unit> |
3519 | <trans-unit id="43f1cc191ebc0b8ce89f6916aa634f5a57158798" datatype="html"> | 3957 | <trans-unit id="43f1cc191ebc0b8ce89f6916aa634f5a57158798" datatype="html"> |
3520 | <source>Jobs</source> | 3958 | <source>Jobs</source> |
3521 | <target state="new">Jobs</target> | 3959 | <target state="new">Jobs</target> |
3522 | 3960 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">3</context></context-group> | |
3523 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3961 | </trans-unit> |
3524 | <trans-unit id="eb3d5aefff38a814b76da74371cbf02c0789a1ef" datatype="html"> | 3962 | <trans-unit id="eb3d5aefff38a814b76da74371cbf02c0789a1ef" datatype="html"> |
3525 | <source>Logs</source> | 3963 | <source>Logs</source> |
3526 | <target state="new">Logs</target> | 3964 | <target state="new">Logs</target> |
3527 | 3965 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">5</context></context-group> | |
3528 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 3966 | </trans-unit> |
3529 | <trans-unit id="dcfc990a822e11feb00eb91d9cf4d6ec0ed37dd0" datatype="html"> | 3967 | <trans-unit id="dcfc990a822e11feb00eb91d9cf4d6ec0ed37dd0" datatype="html"> |
3530 | <source>Debug</source> | 3968 | <source>Debug</source> |
3531 | <target state="new">Debug</target> | 3969 | <target state="new">Debug</target> |
3532 | 3970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">7</context></context-group> | |
3533 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit><trans-unit id="8949443215142664126" datatype="html"> | 3971 | </trans-unit> |
3534 | <source>Delete this comment</source><target state="new">Delete this comment</target> | 3972 | <trans-unit id="8949443215142664126" datatype="html"> |
3535 | 3973 | <source>Delete this comment</source> | |
3536 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">65</context></context-group></trans-unit><trans-unit id="3327751240218085797" datatype="html"> | 3974 | <target state="new">Delete this comment</target> |
3537 | <source>Delete all comments of this account</source><target state="new">Delete all comments of this account</target> | 3975 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">65</context></context-group> |
3538 | 3976 | </trans-unit> | |
3539 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">71</context></context-group></trans-unit><trans-unit id="2850960459131251840" datatype="html"> | 3977 | <trans-unit id="3327751240218085797" datatype="html"> |
3540 | <source>Comments are deleted after a few minutes</source><target state="new">Comments are deleted after a few minutes</target> | 3978 | <source>Delete all comments of this account</source> |
3541 | 3979 | <target state="new">Delete all comments of this account</target> | |
3542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">72</context></context-group></trans-unit><trans-unit id="545410448674339480" datatype="html"> | 3980 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">71</context></context-group> |
3543 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source><target state="new"><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</target> | 3981 | </trans-unit> |
3982 | <trans-unit id="2850960459131251840" datatype="html"> | ||
3983 | <source>Comments are deleted after a few minutes</source> | ||
3984 | <target state="new">Comments are deleted after a few minutes</target> | ||
3985 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">72</context></context-group> | ||
3986 | </trans-unit> | ||
3987 | <trans-unit id="545410448674339480" datatype="html"> | ||
3988 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> | ||
3989 | <target state="new"><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</target> | ||
3544 | <context-group purpose="location"> | 3990 | <context-group purpose="location"> |
3545 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | 3991 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> |
3546 | <context context-type="linenumber">137</context> | 3992 | <context context-type="linenumber">137</context> |
3547 | </context-group> | 3993 | </context-group> |
3548 | </trans-unit><trans-unit id="379090446060940062" datatype="html"> | 3994 | </trans-unit> |
3549 | <source>Do you really want to delete all comments of <x id="PH"/>?</source><target state="new">Do you really want to delete all comments of <x id="PH"/>?</target> | 3995 | <trans-unit id="379090446060940062" datatype="html"> |
3550 | 3996 | <source>Do you really want to delete all comments of <x id="PH"/>?</source> | |
3551 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">157</context></context-group></trans-unit><trans-unit id="4539246224625965241" datatype="html"> | 3997 | <target state="new">Do you really want to delete all comments of <x id="PH"/>?</target> |
3552 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source><target state="new">Comments of <x id="PH"/> will be deleted in a few minutes</target> | 3998 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">157</context></context-group> |
3553 | 3999 | </trans-unit> | |
3554 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="5b8782215fc5ae41cbbb41f92509192b66ee1246" datatype="html"> | 4000 | <trans-unit id="4539246224625965241" datatype="html"> |
3555 | <source>Video comments</source><target state="new">Video comments</target> | 4001 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source> |
3556 | 4002 | <target state="new">Comments of <x id="PH"/> will be deleted in a few minutes</target> | |
3557 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit><trans-unit id="e92e448d39ae2bbd73d8f44d2f167019fe45a622" datatype="html"> | 4003 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">169</context></context-group> |
3558 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</source><target state="new">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</target> | 4004 | </trans-unit> |
3559 | 4005 | <trans-unit id="5b8782215fc5ae41cbbb41f92509192b66ee1246" datatype="html"> | |
3560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="ebdc173a9acc638a634724d31684849ce15778c8" datatype="html"> | 4006 | <source>Video comments</source> |
3561 | <source>Advanced comments filters</source><target state="new">Advanced comments filters</target> | 4007 | <target state="new">Video comments</target> |
3562 | 4008 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
3563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit><trans-unit id="1f689bd2c3f3cfac3c800799545786e56aa5156d" datatype="html"> | 4009 | </trans-unit> |
3564 | <source>Local comments</source><target state="new">Local comments</target> | 4010 | <trans-unit id="e92e448d39ae2bbd73d8f44d2f167019fe45a622" datatype="html"> |
3565 | 4011 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</source> | |
3566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit><trans-unit id="3c770e01673ea017697b8c8a4feb63aefdd1f999" datatype="html"> | 4012 | <target state="new">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</target> |
3567 | <source>Remote comments</source><target state="new">Remote comments</target> | 4013 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">14</context></context-group> |
3568 | 4014 | </trans-unit> | |
3569 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="5cb90e520edbff8862ce9fbec8c377416c1c286b" datatype="html"> | 4015 | <trans-unit id="ebdc173a9acc638a634724d31684849ce15778c8" datatype="html"> |
3570 | <source>Select all rows</source><target state="new">Select all rows</target> | 4016 | <source>Advanced comments filters</source> |
3571 | 4017 | <target state="new">Advanced comments filters</target> | |
3572 | 4018 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">36</context></context-group> | |
3573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 4019 | </trans-unit> |
4020 | <trans-unit id="1f689bd2c3f3cfac3c800799545786e56aa5156d" datatype="html"> | ||
4021 | <source>Local comments</source> | ||
4022 | <target state="new">Local comments</target> | ||
4023 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">37</context></context-group> | ||
4024 | </trans-unit> | ||
4025 | <trans-unit id="3c770e01673ea017697b8c8a4feb63aefdd1f999" datatype="html"> | ||
4026 | <source>Remote comments</source> | ||
4027 | <target state="new">Remote comments</target> | ||
4028 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">38</context></context-group> | ||
4029 | </trans-unit> | ||
4030 | <trans-unit id="5cb90e520edbff8862ce9fbec8c377416c1c286b" datatype="html"> | ||
4031 | <source>Select all rows</source> | ||
4032 | <target state="new">Select all rows</target> | ||
4033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">55</context></context-group> | ||
4034 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">51</context></context-group> | ||
4035 | </trans-unit> | ||
3574 | <trans-unit id="555ae4dbd23d5056aeafc8f3f31ebbab170bb917" datatype="html"> | 4036 | <trans-unit id="555ae4dbd23d5056aeafc8f3f31ebbab170bb917" datatype="html"> |
3575 | <source>Job type</source> | 4037 | <source>Job type</source> |
3576 | <target state="new">Job type</target> | 4038 | <target state="new">Job type</target> |
3577 | 4039 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">3</context></context-group> | |
3578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 4040 | </trans-unit> |
3579 | <trans-unit id="723c95b5d673a557fa120aa65814a9f05c03e610" datatype="html"> | 4041 | <trans-unit id="723c95b5d673a557fa120aa65814a9f05c03e610" datatype="html"> |
3580 | <source>Job state</source> | 4042 | <source>Job state</source> |
3581 | <target state="new">Job state</target> | 4043 | <target state="new">Job state</target> |
3582 | 4044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">12</context></context-group> | |
3583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit><trans-unit id="5e85feb6f9f0334366e46ee09ca6b8df52397432" datatype="html"> | 4045 | </trans-unit> |
3584 | <source>any</source><target state="new">any</target> | 4046 | <trans-unit id="5e85feb6f9f0334366e46ee09ca6b8df52397432" datatype="html"> |
4047 | <source>any</source> | ||
4048 | <target state="new">any</target> | ||
3585 | <context-group purpose="location"> | 4049 | <context-group purpose="location"> |
3586 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | 4050 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> |
3587 | <context context-type="linenumber">21</context> | 4051 | <context context-type="linenumber">21</context> |
3588 | </context-group> | 4052 | </context-group> |
3589 | <note priority="1" from="description">Selector for the list displaying jobs, filtering by their state</note> | 4053 | <note priority="1" from="description">Selector for the list displaying jobs, filtering by their state</note> |
3590 | </trans-unit><trans-unit id="15d67169976ce05d49bc6e85e51597c957f0e37d" datatype="html"> | 4054 | </trans-unit> |
3591 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> jobs</source><target state="new">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> jobs</target> | 4055 | <trans-unit id="15d67169976ce05d49bc6e85e51597c957f0e37d" datatype="html"> |
3592 | 4056 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> jobs</source> | |
3593 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 4057 | <target state="new">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> jobs</target> |
4058 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">35</context></context-group> | ||
4059 | </trans-unit> | ||
3594 | <trans-unit id="f61c6867295f3b53d23557021f2f4e0aa1d0b8fc" datatype="html"> | 4060 | <trans-unit id="f61c6867295f3b53d23557021f2f4e0aa1d0b8fc" datatype="html"> |
3595 | <source>Type</source> | 4061 | <source>Type</source> |
3596 | <target state="new">Type</target> | 4062 | <target state="new">Type</target> |
3597 | 4063 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">42</context></context-group> | |
3598 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit><trans-unit id="e8d0453dbe7338287c348e1043da4620c218e9c4" datatype="html"> | 4064 | </trans-unit> |
3599 | <source>No jobs found.</source><target state="new">No jobs found.</target> | 4065 | <trans-unit id="e8d0453dbe7338287c348e1043da4620c218e9c4" datatype="html"> |
4066 | <source>No jobs found.</source> | ||
4067 | <target state="new">No jobs found.</target> | ||
3600 | <context-group purpose="location"> | 4068 | <context-group purpose="location"> |
3601 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | 4069 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> |
3602 | <context context-type="linenumber">94</context> | 4070 | <context context-type="linenumber">94</context> |
3603 | </context-group> | 4071 | </context-group> |
3604 | </trans-unit><trans-unit id="50140de8e198dcb486966365d1d4c01fd910cc46" datatype="html"> | 4072 | </trans-unit> |
3605 | <source>No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</source><target state="new">No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</target> | 4073 | <trans-unit id="50140de8e198dcb486966365d1d4c01fd910cc46" datatype="html"> |
4074 | <source>No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</source> | ||
4075 | <target state="new">No <x id="START_TAG_CODE" ctype="x-code" equiv-text="<code>"/><x id="INTERPOLATION" equiv-text="{{ jobType }}"/><x id="CLOSE_TAG_CODE" ctype="x-code" equiv-text="</code> "/> jobs found.</target> | ||
3606 | <context-group purpose="location"> | 4076 | <context-group purpose="location"> |
3607 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | 4077 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> |
3608 | <context context-type="linenumber">95</context> | 4078 | <context context-type="linenumber">95</context> |
3609 | </context-group> | 4079 | </context-group> |
3610 | </trans-unit><trans-unit id="34f47c715ccc293a1d86d7cee44515bbe0ab0db0" datatype="html"> | 4080 | </trans-unit> |
3611 | <source>No <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> jobs found.</source><target state="new">No <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> jobs found.</target> | 4081 | <trans-unit id="34f47c715ccc293a1d86d7cee44515bbe0ab0db0" datatype="html"> |
3612 | 4082 | <source>No <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> jobs found.</source> | |
3613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">98</context></context-group></trans-unit><trans-unit id="3fc9776f71b2244ce796c554d1b1d4c583f33c77" datatype="html"> | 4083 | <target state="new">No <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> jobs found.</target> |
3614 | <source>No <x id="START_TAG_CODE"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_CODE"/> jobs found that are <x id="START_TAG_SPAN"/><x id="INTERPOLATION_1"/><x id="CLOSE_TAG_SPAN"/>.</source><target state="new">No <x id="START_TAG_CODE"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_CODE"/> jobs found that are <x id="START_TAG_SPAN"/><x id="INTERPOLATION_1"/><x id="CLOSE_TAG_SPAN"/>.</target> | 4084 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">98</context></context-group> |
3615 | 4085 | </trans-unit> | |
3616 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">99</context></context-group></trans-unit> | 4086 | <trans-unit id="3fc9776f71b2244ce796c554d1b1d4c583f33c77" datatype="html"> |
4087 | <source>No <x id="START_TAG_CODE"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_CODE"/> jobs found that are <x id="START_TAG_SPAN"/><x id="INTERPOLATION_1"/><x id="CLOSE_TAG_SPAN"/>.</source> | ||
4088 | <target state="new">No <x id="START_TAG_CODE"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_CODE"/> jobs found that are <x id="START_TAG_SPAN"/><x id="INTERPOLATION_1"/><x id="CLOSE_TAG_SPAN"/>.</target> | ||
4089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">99</context></context-group> | ||
4090 | </trans-unit> | ||
3617 | <trans-unit id="c8d1785038d461ec66b5799db21864182b35900a" datatype="html"> | 4091 | <trans-unit id="c8d1785038d461ec66b5799db21864182b35900a" datatype="html"> |
3618 | <source>Refresh</source> | 4092 | <source>Refresh</source> |
3619 | <target state="new">Refresh</target> | 4093 | <target state="new">Refresh</target> |
3620 | 4094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">34</context></context-group> | |
3621 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit><trans-unit id="7f34c2aa1c5e1d4bc339995fe325e831d7fbe40a" datatype="html"> | 4095 | </trans-unit> |
3622 | <source>now</source><target state="new">now</target> | 4096 | <trans-unit id="7f34c2aa1c5e1d4bc339995fe325e831d7fbe40a" datatype="html"> |
3623 | 4097 | <source>now</source> | |
3624 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 4098 | <target state="new">now</target> |
4099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">15</context></context-group> | ||
4100 | </trans-unit> | ||
3625 | <trans-unit id="94516fa213706c67ce5a5b5765681d7fb032033a" datatype="html"> | 4101 | <trans-unit id="94516fa213706c67ce5a5b5765681d7fb032033a" datatype="html"> |
3626 | <source>Loading...</source> | 4102 | <source>Loading...</source> |
3627 | <target state="new">Loading...</target> | 4103 | <target state="new">Loading...</target> |
3628 | 4104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">38</context></context-group> | |
3629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 4105 | </trans-unit> |
3630 | <trans-unit id="e4ce2d897f4bdce126c9012769654301a587110a" datatype="html"> | 4106 | <trans-unit id="e4ce2d897f4bdce126c9012769654301a587110a" datatype="html"> |
3631 | <source>By <x id="INTERPOLATION"/> -></source> | 4107 | <source>By <x id="INTERPOLATION"/> -></source> |
3632 | <target state="new">By | 4108 | <target state="new">By |
3633 | <x id="INTERPOLATION" equiv-text="{{ log.by }}"/> -> | 4109 | <x id="INTERPOLATION" equiv-text="{{ log.by }}"/> -> |
3634 | </target> | 4110 | </target> |
3635 | 4111 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">46</context></context-group> | |
3636 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 4112 | </trans-unit> |
3637 | <trans-unit id="3441b78841dad60f36576d99e38241ae7fefa933" datatype="html"> | 4113 | <trans-unit id="3441b78841dad60f36576d99e38241ae7fefa933" datatype="html"> |
3638 | <source>INSTANCE</source> | 4114 | <source>INSTANCE</source> |
3639 | <target state="new">INSTANCE</target> | 4115 | <target state="new">INSTANCE</target> |
3640 | 4116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">15</context></context-group> | |
3641 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 4117 | </trans-unit> |
3642 | <trans-unit id="cff1428d10d59d14e45edec3c735a27b5482db59" datatype="html"> | 4118 | <trans-unit id="cff1428d10d59d14e45edec3c735a27b5482db59" datatype="html"> |
3643 | <source>Name</source> | 4119 | <source>Name</source> |
3644 | <target state="new">Name</target> | 4120 | <target state="translated">Ad</target> |
3645 | 4121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">32</context></context-group> | |
3646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">32</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">32</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 4122 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">32</context></context-group> |
4123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">21</context></context-group> | ||
4124 | </trans-unit> | ||
3647 | <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b" datatype="html"> | 4125 | <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b" datatype="html"> |
3648 | <source>Short description</source> | 4126 | <source>Short description</source> |
3649 | <target state="new">Short description</target> | 4127 | <target state="translated">Kısa açıklama</target> |
3650 | 4128 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">30</context></context-group> | |
3651 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 4129 | </trans-unit> |
3652 | <trans-unit id="f14028bddcf7760c635464db8a9d2f69afd81b92" datatype="html"> | 4130 | <trans-unit id="f14028bddcf7760c635464db8a9d2f69afd81b92" datatype="html"> |
3653 | <source>Main instance categories</source> | 4131 | <source>Main instance categories</source> |
3654 | <target state="new">Main instance categories</target> | 4132 | <target state="new">Main instance categories</target> |
3655 | 4133 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">48</context></context-group> | |
3656 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> | 4134 | </trans-unit> |
3657 | <trans-unit id="27ea89c8d39a59d9ff6c761fbad00d57b7863849" datatype="html"> | 4135 | <trans-unit id="27ea89c8d39a59d9ff6c761fbad00d57b7863849" datatype="html"> |
3658 | <source>Add a new category</source> | 4136 | <source>Add a new category</source> |
3659 | <target state="new">Add a new category</target> | 4137 | <target state="translated">Yeni bir kategori ekle</target> |
3660 | 4138 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">55</context></context-group> | |
3661 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 4139 | </trans-unit> |
3662 | <trans-unit id="a8544bac210fd102d71c5aaf1bef79c1fc48c079" datatype="html"> | 4140 | <trans-unit id="a8544bac210fd102d71c5aaf1bef79c1fc48c079" datatype="html"> |
3663 | <source>The <x id="START_LINK"/>sharing system<x id="CLOSE_LINK"/> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load.</source> | 4141 | <source>The <x id="START_LINK"/>sharing system<x id="CLOSE_LINK"/> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load.</source> |
3664 | <target state="new">The | 4142 | <target state="new">The |
3665 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>sharing system | 4143 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>sharing system |
3666 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load. | 4144 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load. |
3667 | </target> | 4145 | </target> |
3668 | 4146 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">50</context></context-group> | |
3669 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit> | 4147 | </trans-unit> |
3670 | <trans-unit id="0f9a16c167ea4f043577304b13046c143692cb99" datatype="html"> | 4148 | <trans-unit id="0f9a16c167ea4f043577304b13046c143692cb99" datatype="html"> |
3671 | <source>Help share videos being played</source> | 4149 | <source>Help share videos being played</source> |
3672 | <target state="new">Help share videos being played</target> | 4150 | <target state="new">Help share videos being played</target> |
3673 | 4151 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">47</context></context-group> | |
3674 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | 4152 | </trans-unit> |
3675 | <trans-unit id="8002f4cecaf491c2fa08a13cb18c8fda1996d92f" datatype="html"> | 4153 | <trans-unit id="8002f4cecaf491c2fa08a13cb18c8fda1996d92f" datatype="html"> |
3676 | <source>When on a video page, directly start playing the video.</source> | 4154 | <source>When on a video page, directly start playing the video.</source> |
3677 | <target state="new">When on a video page, directly start playing the video.</target> | 4155 | <target state="new">When on a video page, directly start playing the video.</target> |
3678 | 4156 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">61</context></context-group> | |
3679 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> | 4157 | </trans-unit> |
3680 | <trans-unit id="cd607ede7ce410c98c681f5ba435642fe25f5f9c" datatype="html"> | 4158 | <trans-unit id="cd607ede7ce410c98c681f5ba435642fe25f5f9c" datatype="html"> |
3681 | <source>Automatically play videos</source> | 4159 | <source>Automatically play videos</source> |
3682 | <target state="new">Automatically play videos</target> | 4160 | <target state="new">Automatically play videos</target> |
3683 | 4161 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">58</context></context-group> | |
3684 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 4162 | </trans-unit> |
3685 | <trans-unit id="6319d0030e9d382e5beb2baa5a399c0af3a27015" datatype="html"> | 4163 | <trans-unit id="6319d0030e9d382e5beb2baa5a399c0af3a27015" datatype="html"> |
3686 | <source>When a video ends, follow up with the next suggested video.</source> | 4164 | <source>When a video ends, follow up with the next suggested video.</source> |
3687 | <target state="new">When a video ends, follow up with the next suggested video.</target> | 4165 | <target state="new">When a video ends, follow up with the next suggested video.</target> |
3688 | 4166 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">72</context></context-group> | |
3689 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> | 4167 | </trans-unit> |
3690 | <trans-unit id="056097a75d29b732ec5ad97c2e90d6c9be6528e4" datatype="html"> | 4168 | <trans-unit id="056097a75d29b732ec5ad97c2e90d6c9be6528e4" datatype="html"> |
3691 | <source>Automatically start playing the next video</source> | 4169 | <source>Automatically start playing the next video</source> |
3692 | <target state="new">Automatically start playing the next video</target> | 4170 | <target state="new">Automatically start playing the next video</target> |
3693 | 4171 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">69</context></context-group> | |
3694 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4172 | </trans-unit> |
3695 | <trans-unit id="ccb0ae7ba7f7a83045f1ad78d0c0044b5ed80629" datatype="html"> | 4173 | <trans-unit id="ccb0ae7ba7f7a83045f1ad78d0c0044b5ed80629" datatype="html"> |
3696 | <source>Main languages you/your moderators speak</source> | 4174 | <source>Main languages you/your moderators speak</source> |
3697 | <target state="new">Main languages you/your moderators speak</target> | 4175 | <target state="new">Main languages you/your moderators speak</target> |
3698 | 4176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">62</context></context-group> | |
3699 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 4177 | </trans-unit> |
3700 | <trans-unit id="f27b192f4d3153db7dc7044bea37e71655bfb3ea" datatype="html"> | 4178 | <trans-unit id="f27b192f4d3153db7dc7044bea37e71655bfb3ea" datatype="html"> |
3701 | <source>MODERATION & NSFW</source> | 4179 | <source>MODERATION & NSFW</source> |
3702 | <target state="new">MODERATION & NSFW</target> | 4180 | <target state="new">MODERATION & NSFW</target> |
3703 | 4181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">80</context></context-group> | |
3704 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">80</context></context-group></trans-unit> | 4182 | </trans-unit> |
3705 | <trans-unit id="f0716b4964f9dc6437aaed3ae0c78e94fd259fb9" datatype="html"> | 4183 | <trans-unit id="f0716b4964f9dc6437aaed3ae0c78e94fd259fb9" datatype="html"> |
3706 | <source>Manage <x id="START_LINK"/>users<x id="CLOSE_LINK"/> to build a moderation team. </source> | 4184 | <source>Manage <x id="START_LINK"/>users<x id="CLOSE_LINK"/> to build a moderation team. </source> |
3707 | <target state="new"> | 4185 | <target state="new"> |
3708 | Manage | 4186 | Manage |
3709 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>users | 4187 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>users |
3710 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to build a moderation team. | 4188 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to build a moderation team. |
3711 | 4189 | ||
3712 | </target> | 4190 | </target> |
3713 | 4191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">82</context></context-group> | |
3714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 4192 | </trans-unit> |
3715 | <trans-unit id="aad49456e42847e2ea95fbaeb2f49387199e5634" datatype="html"> | 4193 | <trans-unit id="aad49456e42847e2ea95fbaeb2f49387199e5634" datatype="html"> |
3716 | <source>This instance is dedicated to sensitive or NSFW content</source> | 4194 | <source>This instance is dedicated to sensitive or NSFW content</source> |
3717 | <target state="new">This instance is dedicated to sensitive or NSFW content</target> | 4195 | <target state="new">This instance is dedicated to sensitive or NSFW content</target> |
3718 | 4196 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">91</context></context-group> | |
3719 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 4197 | </trans-unit> |
3720 | <trans-unit id="55c4d3cc288701854147f69ccf3d86d316589968" datatype="html"> | 4198 | <trans-unit id="55c4d3cc288701854147f69ccf3d86d316589968" datatype="html"> |
3721 | <source>Enabling it will allow other administrators to know that you are mainly federating sensitive content.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </source> | 4199 | <source>Enabling it will allow other administrators to know that you are mainly federating sensitive content.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </source> |
3722 | <target state="new"> | 4200 | <target state="new"> |
3723 | Enabling it will allow other administrators to know that you are mainly federating sensitive content. | 4201 | Enabling it will allow other administrators to know that you are mainly federating sensitive content. |
3724 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 4202 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
3725 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 4203 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
3726 | Moreover, the NSFW checkbox on video upload will be automatically checked by default. | 4204 | Moreover, the NSFW checkbox on video upload will be automatically checked by default. |
3727 | 4205 | ||
3728 | </target> | 4206 | </target> |
3729 | 4207 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">96</context></context-group> | |
3730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 4208 | </trans-unit> |
3731 | <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9" datatype="html"> | 4209 | <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9" datatype="html"> |
3732 | <source>Policy on videos containing sensitive content</source> | 4210 | <source>Policy on videos containing sensitive content</source> |
3733 | <target state="new">Policy on videos containing sensitive content</target> | 4211 | <target state="new">Policy on videos containing sensitive content</target> |
3734 | 4212 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">104</context></context-group> | |
3735 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> | 4213 | </trans-unit> |
3736 | <trans-unit id="8dccab3d8cadb847889ff89644d3f08ffee0d76e" datatype="html"> | 4214 | <trans-unit id="8dccab3d8cadb847889ff89644d3f08ffee0d76e" datatype="html"> |
3737 | <source>With <x id="START_TAG_STRONG"/>Do not list<x id="CLOSE_TAG_STRONG"/> or <x id="START_TAG_STRONG"/>Blur thumbnails<x id="CLOSE_TAG_STRONG"/>, a confirmation will be requested to watch the video. </source> | 4215 | <source>With <x id="START_TAG_STRONG"/>Do not list<x id="CLOSE_TAG_STRONG"/> or <x id="START_TAG_STRONG"/>Blur thumbnails<x id="CLOSE_TAG_STRONG"/>, a confirmation will be requested to watch the video. </source> |
3738 | <target state="new"> | 4216 | <target state="new"> |
3739 | With | 4217 | With |
3740 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Do not list | 4218 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Do not list |
3741 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or | 4219 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or |
3742 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails | 4220 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails |
3743 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. | 4221 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. |
3744 | 4222 | ||
3745 | </target> | 4223 | </target> |
3746 | 4224 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">109</context></context-group> | |
3747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">109</context></context-group></trans-unit> | 4225 | </trans-unit> |
3748 | <trans-unit id="5e155c34fb3ed8159bf0a486a366cfbc6874f9fe" datatype="html"> | 4226 | <trans-unit id="5e155c34fb3ed8159bf0a486a366cfbc6874f9fe" datatype="html"> |
3749 | <source>Do not list</source> | 4227 | <source>Do not list</source> |
3750 | <target state="new">Do not list</target> | 4228 | <target state="new">Do not list</target> |
3751 | 4229 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">16</context></context-group> | |
3752 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> | 4230 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">117</context></context-group> |
4231 | </trans-unit> | ||
3753 | <trans-unit id="aaa900149c2ca1575ac1918d1ded33fb69830ab2" datatype="html"> | 4232 | <trans-unit id="aaa900149c2ca1575ac1918d1ded33fb69830ab2" datatype="html"> |
3754 | <source>Blur thumbnails</source> | 4233 | <source>Blur thumbnails</source> |
3755 | <target state="new">Blur thumbnails</target> | 4234 | <target state="new">Blur thumbnails</target> |
3756 | 4235 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">17</context></context-group> | |
3757 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">118</context></context-group></trans-unit> | 4236 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">118</context></context-group> |
4237 | </trans-unit> | ||
3758 | <trans-unit id="010d24ef3c43b2d8f45a4d6cba7d73e12ee1557e" datatype="html"> | 4238 | <trans-unit id="010d24ef3c43b2d8f45a4d6cba7d73e12ee1557e" datatype="html"> |
3759 | <source>Display</source> | 4239 | <source>Display</source> |
3760 | <target state="new">Display</target> | 4240 | <target state="translated">Göster</target> |
3761 | 4241 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">18</context></context-group> | |
3762 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">119</context></context-group></trans-unit> | 4242 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">8</context></context-group> |
4243 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">119</context></context-group> | ||
4244 | </trans-unit> | ||
3763 | <trans-unit id="05f5612d42b02be4d6d9e0a99585ae7e30a91780" datatype="html"> | 4245 | <trans-unit id="05f5612d42b02be4d6d9e0a99585ae7e30a91780" datatype="html"> |
3764 | <source>Strategy</source> | 4246 | <source>Strategy</source> |
3765 | <target state="new">Strategy</target> | 4247 | <target state="new">Strategy</target> |
3766 | 4248 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">28</context></context-group> | |
3767 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4249 | </trans-unit> |
3768 | <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774" datatype="html"> | 4250 | <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774" datatype="html"> |
3769 | <source>Terms</source> | 4251 | <source>Terms</source> |
3770 | <target state="new">Terms</target> | 4252 | <target state="new">Terms</target> |
3771 | 4253 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">35</context></context-group> | |
3772 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">168</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 4254 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">35</context></context-group> |
4255 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">13</context></context-group> | ||
4256 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">168</context></context-group> | ||
4257 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">126</context></context-group> | ||
4258 | </trans-unit> | ||
3773 | <trans-unit id="2c88654dd44fe8477ce6f85c1081cd24a590701b" datatype="html"> | 4259 | <trans-unit id="2c88654dd44fe8477ce6f85c1081cd24a590701b" datatype="html"> |
3774 | <source>Code of conduct</source> | 4260 | <source>Code of conduct</source> |
3775 | <target state="new">Code of conduct</target> | 4261 | <target state="new">Code of conduct</target> |
3776 | 4262 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">47</context></context-group> | |
3777 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">154</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">135</context></context-group></trans-unit> | 4263 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">47</context></context-group> |
4264 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">154</context></context-group> | ||
4265 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">135</context></context-group> | ||
4266 | </trans-unit> | ||
3778 | <trans-unit id="06119c0230042048f8a3fd6aa9260934b6fa5878" datatype="html"> | 4267 | <trans-unit id="06119c0230042048f8a3fd6aa9260934b6fa5878" datatype="html"> |
3779 | <source>Moderation information</source> | 4268 | <source>Moderation information</source> |
3780 | <target state="new">Moderation information</target> | 4269 | <target state="new">Moderation information</target> |
3781 | 4270 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">41</context></context-group> | |
3782 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">140</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">144</context></context-group></trans-unit> | 4271 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">41</context></context-group> |
4272 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">140</context></context-group> | ||
4273 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">144</context></context-group> | ||
4274 | </trans-unit> | ||
3783 | <trans-unit id="d635f94dd3214d8e5fb83a2af04e7b96c861e91f" datatype="html"> | 4275 | <trans-unit id="d635f94dd3214d8e5fb83a2af04e7b96c861e91f" datatype="html"> |
3784 | <source>Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc</source> | 4276 | <source>Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc</source> |
3785 | <target state="new">Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc</target> | 4277 | <target state="new">Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc</target> |
3786 | 4278 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">145</context></context-group> | |
3787 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">145</context></context-group></trans-unit> | 4279 | </trans-unit> |
3788 | <trans-unit id="b222d95cb22ff8c295920ca10c188c5d94cb0aa9" datatype="html"> | 4280 | <trans-unit id="b222d95cb22ff8c295920ca10c188c5d94cb0aa9" datatype="html"> |
3789 | <source>YOU AND YOUR INSTANCE</source> | 4281 | <source>YOU AND YOUR INSTANCE</source> |
3790 | <target state="new">YOU AND YOUR INSTANCE</target> | 4282 | <target state="new">YOU AND YOUR INSTANCE</target> |
3791 | 4283 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">159</context></context-group> | |
3792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">159</context></context-group></trans-unit> | 4284 | </trans-unit> |
3793 | <trans-unit id="fdbabe6f967747b657518384b54bcc58d3913063" datatype="html"> | 4285 | <trans-unit id="fdbabe6f967747b657518384b54bcc58d3913063" datatype="html"> |
3794 | <source>Who is behind the instance?</source> | 4286 | <source>Who is behind the instance?</source> |
3795 | <target state="new">Who is behind the instance?</target> | 4287 | <target state="new">Who is behind the instance?</target> |
3796 | 4288 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">165</context></context-group> | |
3797 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 4289 | </trans-unit> |
3798 | <trans-unit id="963707d11903100147b40788e4f67cc93a234308" datatype="html"> | 4290 | <trans-unit id="963707d11903100147b40788e4f67cc93a234308" datatype="html"> |
3799 | <source>A single person? A non-profit? A company?</source> | 4291 | <source>A single person? A non-profit? A company?</source> |
3800 | <target state="new">A single person? A non-profit? A company?</target> | 4292 | <target state="new">A single person? A non-profit? A company?</target> |
3801 | 4293 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">166</context></context-group> | |
3802 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> | 4294 | </trans-unit> |
3803 | <trans-unit id="fef7c7a74c5646fe219d94db60e0652d6b878af5" datatype="html"> | 4295 | <trans-unit id="fef7c7a74c5646fe219d94db60e0652d6b878af5" datatype="html"> |
3804 | <source>Why did you create this instance?</source> | 4296 | <source>Why did you create this instance?</source> |
3805 | <target state="new">Why did you create this instance?</target> | 4297 | <target state="new">Why did you create this instance?</target> |
3806 | 4298 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">177</context></context-group> | |
3807 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> | 4299 | </trans-unit> |
3808 | <trans-unit id="53fe4c724dc3f942c4d1eac4206a9686cbbf968e" datatype="html"> | 4300 | <trans-unit id="53fe4c724dc3f942c4d1eac4206a9686cbbf968e" datatype="html"> |
3809 | <source>To share your personal videos? To open registrations and allow people to upload what they want?</source> | 4301 | <source>To share your personal videos? To open registrations and allow people to upload what they want?</source> |
3810 | <target state="new">To share your personal videos? To open registrations and allow people to upload what they want?</target> | 4302 | <target state="new">To share your personal videos? To open registrations and allow people to upload what they want?</target> |
3811 | 4303 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">178</context></context-group> | |
3812 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">178</context></context-group></trans-unit> | 4304 | </trans-unit> |
3813 | <trans-unit id="ac6b554b2f923239f6d7c5fcef8a7cce7d6b43b6" datatype="html"> | 4305 | <trans-unit id="ac6b554b2f923239f6d7c5fcef8a7cce7d6b43b6" datatype="html"> |
3814 | <source>How long do you plan to maintain this instance?</source> | 4306 | <source>How long do you plan to maintain this instance?</source> |
3815 | <target state="new">How long do you plan to maintain this instance?</target> | 4307 | <target state="new">How long do you plan to maintain this instance?</target> |
3816 | 4308 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">188</context></context-group> | |
3817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">188</context></context-group></trans-unit> | 4309 | </trans-unit> |
3818 | <trans-unit id="09d61fa0397899a1b26d09123aef7e7bf5bd78e1" datatype="html"> | 4310 | <trans-unit id="09d61fa0397899a1b26d09123aef7e7bf5bd78e1" datatype="html"> |
3819 | <source>It's important to know for users who want to register on your instance</source> | 4311 | <source>It's important to know for users who want to register on your instance</source> |
3820 | <target state="new">It's important to know for users who want to register on your instance</target> | 4312 | <target state="new">It's important to know for users who want to register on your instance</target> |
3821 | 4313 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">189</context></context-group> | |
3822 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">189</context></context-group></trans-unit> | 4314 | </trans-unit> |
3823 | <trans-unit id="1c0452d6bc62aace993630b59a085af1708a2f2d" datatype="html"> | 4315 | <trans-unit id="1c0452d6bc62aace993630b59a085af1708a2f2d" datatype="html"> |
3824 | <source>How will you finance the PeerTube server?</source> | 4316 | <source>How will you finance the PeerTube server?</source> |
3825 | <target state="new">How will you finance the PeerTube server?</target> | 4317 | <target state="new">How will you finance the PeerTube server?</target> |
3826 | 4318 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">199</context></context-group> | |
3827 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">199</context></context-group></trans-unit> | 4319 | </trans-unit> |
3828 | <trans-unit id="1bb1ca2264b1ab8be73deee74852a4e6d40101c5" datatype="html"> | 4320 | <trans-unit id="1bb1ca2264b1ab8be73deee74852a4e6d40101c5" datatype="html"> |
3829 | <source>With your own funds? With user donations? Advertising?</source> | 4321 | <source>With your own funds? With user donations? Advertising?</source> |
3830 | <target state="new">With your own funds? With user donations? Advertising?</target> | 4322 | <target state="new">With your own funds? With user donations? Advertising?</target> |
3831 | 4323 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">200</context></context-group> | |
3832 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">200</context></context-group></trans-unit> | 4324 | </trans-unit> |
3833 | <trans-unit id="434d9f89497fe693bb5e4cdce02925dec8d0281f" datatype="html"> | 4325 | <trans-unit id="434d9f89497fe693bb5e4cdce02925dec8d0281f" datatype="html"> |
3834 | <source>OTHER INFORMATION</source> | 4326 | <source>OTHER INFORMATION</source> |
3835 | <target state="new">OTHER INFORMATION</target> | 4327 | <target state="new">OTHER INFORMATION</target> |
3836 | 4328 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">214</context></context-group> | |
3837 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">214</context></context-group></trans-unit> | 4329 | </trans-unit> |
3838 | <trans-unit id="7dfc119f06b80d9324703c471b0c00118fa5849d" datatype="html"> | 4330 | <trans-unit id="7dfc119f06b80d9324703c471b0c00118fa5849d" datatype="html"> |
3839 | <source>What server/hardware does the instance run on?</source> | 4331 | <source>What server/hardware does the instance run on?</source> |
3840 | <target state="new">What server/hardware does the instance run on?</target> | 4332 | <target state="new">What server/hardware does the instance run on?</target> |
3841 | 4333 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">220</context></context-group> | |
3842 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">220</context></context-group></trans-unit> | 4334 | </trans-unit> |
3843 | <trans-unit id="4a58b1d4aff414350b701aa587aeb39a1276307a" datatype="html"> | 4335 | <trans-unit id="4a58b1d4aff414350b701aa587aeb39a1276307a" datatype="html"> |
3844 | <source>i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc.</source> | 4336 | <source>i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc.</source> |
3845 | <target state="new">i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc.</target> | 4337 | <target state="new">i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc.</target> |
3846 | 4338 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">221</context></context-group> | |
3847 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">221</context></context-group></trans-unit> | 4339 | </trans-unit> |
3848 | <trans-unit id="3070ae34708ac4b19ac0a2fdc2c0b82871754c7a" datatype="html"> | 4340 | <trans-unit id="3070ae34708ac4b19ac0a2fdc2c0b82871754c7a" datatype="html"> |
3849 | <source>Instance information</source> | 4341 | <source>Instance information</source> |
3850 | <target state="new">Instance information</target> | 4342 | <target state="new">Instance information</target> |
3851 | 4343 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">7</context></context-group> | |
3852 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 4344 | </trans-unit> |
3853 | <trans-unit id="e18e5566ca6266c849208665c731805571333a8b" datatype="html"> | 4345 | <trans-unit id="e18e5566ca6266c849208665c731805571333a8b" datatype="html"> |
3854 | <source>APPEARANCE</source> | 4346 | <source>APPEARANCE</source> |
3855 | <target state="new">APPEARANCE</target> | 4347 | <target state="new">APPEARANCE</target> |
3856 | 4348 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">245</context></context-group> | |
3857 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">245</context></context-group></trans-unit> | 4349 | </trans-unit> |
3858 | <trans-unit id="0aa2ad4efb780f946dd9a821fe7471dde20014c3" datatype="html"> | 4350 | <trans-unit id="0aa2ad4efb780f946dd9a821fe7471dde20014c3" datatype="html"> |
3859 | <source>Use <x id="START_LINK"/>plugins & themes<x id="CLOSE_LINK"/> for more involved changes, or <x id="START_LINK_1"/>add slight customizations<x id="CLOSE_LINK"/>. </source> | 4351 | <source>Use <x id="START_LINK"/>plugins & themes<x id="CLOSE_LINK"/> for more involved changes, or <x id="START_LINK_1"/>add slight customizations<x id="CLOSE_LINK"/>. </source> |
3860 | <target state="new"> | 4352 | <target state="new"> |
3861 | Use | 4353 | Use |
3862 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>plugins & themes | 4354 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>plugins & themes |
3863 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more involved changes, or | 4355 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more involved changes, or |
3864 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/>add slight customizations | 4356 | <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/>add slight customizations |
3865 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | 4357 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. |
3866 | 4358 | ||
3867 | </target> | 4359 | </target> |
3868 | 4360 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">247</context></context-group> | |
3869 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">247</context></context-group></trans-unit> | 4361 | </trans-unit> |
3870 | <trans-unit id="deca31fc7adad40d00bd63881d0c17124cd05beb" datatype="html"> | 4362 | <trans-unit id="deca31fc7adad40d00bd63881d0c17124cd05beb" datatype="html"> |
3871 | <source>default</source> | 4363 | <source>default</source> |
3872 | <target state="new">default</target> | 4364 | <target state="new">default</target> |
3873 | 4365 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">259</context></context-group> | |
3874 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">259</context></context-group></trans-unit> | 4366 | </trans-unit> |
3875 | <trans-unit id="a42daa4748e433f25a51f598627d10de9c88d5d3" datatype="html"> | 4367 | <trans-unit id="a42daa4748e433f25a51f598627d10de9c88d5d3" datatype="html"> |
3876 | <source>Landing page</source> | 4368 | <source>Landing page</source> |
3877 | <target state="new">Landing page</target> | 4369 | <target state="new">Landing page</target> |
3878 | 4370 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">268</context></context-group> | |
3879 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">268</context></context-group></trans-unit> | 4371 | </trans-unit> |
3880 | <trans-unit id="28aca3fd95c8d941f643c617058636715b6f87d9" datatype="html"> | 4372 | <trans-unit id="28aca3fd95c8d941f643c617058636715b6f87d9" datatype="html"> |
3881 | <source>Discover videos</source> | 4373 | <source>Discover videos</source> |
3882 | <target state="new">Discover videos</target> | 4374 | <target state="translated">Videoları keşfet</target> |
3883 | 4375 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">271</context></context-group> | |
3884 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">271</context></context-group></trans-unit> | 4376 | </trans-unit> |
3885 | <trans-unit id="9091b36f8890eabbd2305789eb826d16e8f4641d" datatype="html"> | 4377 | <trans-unit id="9091b36f8890eabbd2305789eb826d16e8f4641d" datatype="html"> |
3886 | <source>Trending videos</source> | 4378 | <source>Trending videos</source> |
3887 | <target state="new">Trending videos</target> | 4379 | <target state="new">Trending videos</target> |
3888 | 4380 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">272</context></context-group> | |
3889 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">272</context></context-group></trans-unit> | 4381 | </trans-unit> |
3890 | <trans-unit id="4c65fb9a424be158237157c16778273550a38c70" datatype="html"> | 4382 | <trans-unit id="4c65fb9a424be158237157c16778273550a38c70" datatype="html"> |
3891 | <source>Most liked videos</source> | 4383 | <source>Most liked videos</source> |
3892 | <target state="new">Most liked videos</target> | 4384 | <target state="translated">En beğenilen videolar</target> |
3893 | 4385 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">273</context></context-group> | |
3894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">273</context></context-group></trans-unit> | 4386 | </trans-unit> |
3895 | <trans-unit id="93d74eb49a5e5c2af5f815178909adf425000af8" datatype="html"> | 4387 | <trans-unit id="93d74eb49a5e5c2af5f815178909adf425000af8" datatype="html"> |
3896 | <source>Recently added videos</source> | 4388 | <source>Recently added videos</source> |
3897 | <target state="new">Recently added videos</target> | 4389 | <target state="translated">En son eklenen videolar</target> |
3898 | 4390 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">274</context></context-group> | |
3899 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">274</context></context-group></trans-unit> | 4391 | </trans-unit> |
3900 | <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f"> | 4392 | <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f"> |
3901 | <source>Local videos</source> | 4393 | <source>Local videos</source> |
3902 | <target>Yerel videolar</target> | 4394 | <target>Yerel videolar</target> |
3903 | 4395 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">147</context></context-group> | |
3904 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">147</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">275</context></context-group></trans-unit> | 4396 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">275</context></context-group> |
4397 | </trans-unit> | ||
3905 | <trans-unit id="c5d4e7a320b88bdcf7fb2b670b81173048af3956" datatype="html"> | 4398 | <trans-unit id="c5d4e7a320b88bdcf7fb2b670b81173048af3956" datatype="html"> |
3906 | <source>BROADCAST MESSAGE</source> | 4399 | <source>BROADCAST MESSAGE</source> |
3907 | <target state="new">BROADCAST MESSAGE</target> | 4400 | <target state="new">BROADCAST MESSAGE</target> |
3908 | 4401 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">286</context></context-group> | |
3909 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">286</context></context-group></trans-unit> | 4402 | </trans-unit> |
3910 | <trans-unit id="3a10a32f96683addb9e1335cdba7d6685587fe6e" datatype="html"> | 4403 | <trans-unit id="3a10a32f96683addb9e1335cdba7d6685587fe6e" datatype="html"> |
3911 | <source>Display a message on your instance</source> | 4404 | <source>Display a message on your instance</source> |
3912 | <target state="new"> | 4405 | <target state="new"> |
3913 | Display a message on your instance | 4406 | Display a message on your instance |
3914 | </target> | 4407 | </target> |
3915 | 4408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">288</context></context-group> | |
3916 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">288</context></context-group></trans-unit> | 4409 | </trans-unit> |
3917 | <trans-unit id="58be3e0a0ef272fbd6e715b44059c3d89b332d9b" datatype="html"> | 4410 | <trans-unit id="58be3e0a0ef272fbd6e715b44059c3d89b332d9b" datatype="html"> |
3918 | <source>Enable broadcast message</source> | 4411 | <source>Enable broadcast message</source> |
3919 | <target state="new">Enable broadcast message</target> | 4412 | <target state="new">Enable broadcast message</target> |
3920 | 4413 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">299</context></context-group> | |
3921 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">299</context></context-group></trans-unit> | 4414 | </trans-unit> |
3922 | <trans-unit id="6938c4a91284a1bc8b61b0d8085d9985e46c9f5b" datatype="html"> | 4415 | <trans-unit id="6938c4a91284a1bc8b61b0d8085d9985e46c9f5b" datatype="html"> |
3923 | <source>Allow users to dismiss the broadcast message</source> | 4416 | <source>Allow users to dismiss the broadcast message</source> |
3924 | <target state="new">Allow users to dismiss the broadcast message </target> | 4417 | <target state="new">Allow users to dismiss the broadcast message </target> |
3925 | 4418 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">306</context></context-group> | |
3926 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">306</context></context-group></trans-unit> | 4419 | </trans-unit> |
3927 | <trans-unit id="dd24d21f2898608f623ae2513e1eb0a08a442f7a" datatype="html"> | 4420 | <trans-unit id="dd24d21f2898608f623ae2513e1eb0a08a442f7a" datatype="html"> |
3928 | <source>Broadcast message level</source> | 4421 | <source>Broadcast message level</source> |
3929 | <target state="new">Broadcast message level</target> | 4422 | <target state="new">Broadcast message level</target> |
3930 | 4423 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">311</context></context-group> | |
3931 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">311</context></context-group></trans-unit> | 4424 | </trans-unit> |
3932 | <trans-unit id="ccac601bf473fa28c9ac46794f1cd40542f74347" datatype="html"> | 4425 | <trans-unit id="ccac601bf473fa28c9ac46794f1cd40542f74347" datatype="html"> |
3933 | <source>Message</source> | 4426 | <source>Message</source> |
3934 | <target state="new">Message</target> | 4427 | <target state="new">Message</target> |
3935 | 4428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">323</context></context-group> | |
3936 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">323</context></context-group></trans-unit> | 4429 | </trans-unit> |
3937 | <trans-unit id="0ea3c4f671addedc1fff64ba63adbf0629fab06a" datatype="html"> | 4430 | <trans-unit id="0ea3c4f671addedc1fff64ba63adbf0629fab06a" datatype="html"> |
3938 | <source>NEW USERS</source> | 4431 | <source>NEW USERS</source> |
3939 | <target state="new">NEW USERS</target> | 4432 | <target state="new">NEW USERS</target> |
3940 | 4433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">338</context></context-group> | |
3941 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">338</context></context-group></trans-unit> | 4434 | </trans-unit> |
3942 | <trans-unit id="eb55f6a974ace4bade90b976dba651c9545c979d" datatype="html"> | 4435 | <trans-unit id="eb55f6a974ace4bade90b976dba651c9545c979d" datatype="html"> |
3943 | <source>Manage <x id="START_LINK"/>users<x id="CLOSE_LINK"/> to set their quota individually. </source> | 4436 | <source>Manage <x id="START_LINK"/>users<x id="CLOSE_LINK"/> to set their quota individually. </source> |
3944 | <target state="new"> | 4437 | <target state="new"> |
3945 | Manage | 4438 | Manage |
3946 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>users | 4439 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>users |
3947 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to set their quota individually. | 4440 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to set their quota individually. |
3948 | 4441 | ||
3949 | </target> | 4442 | </target> |
3950 | 4443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">340</context></context-group> | |
3951 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">340</context></context-group></trans-unit> | 4444 | </trans-unit> |
3952 | <trans-unit id="90f449b1f4787e6c9731198a96d35399c1b340a7" datatype="html"> | 4445 | <trans-unit id="90f449b1f4787e6c9731198a96d35399c1b340a7" datatype="html"> |
3953 | <source>Signup requires email verification</source> | 4446 | <source>Signup requires email verification</source> |
3954 | <target state="new">Signup requires email verification</target> | 4447 | <target state="new">Signup requires email verification</target> |
3955 | 4448 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">360</context></context-group> | |
3956 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">360</context></context-group></trans-unit> | 4449 | </trans-unit> |
3957 | <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402" datatype="html"> | 4450 | <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402" datatype="html"> |
3958 | <source>Signup limit</source> | 4451 | <source>Signup limit</source> |
3959 | <target state="new">Signup limit</target> | 4452 | <target state="new">Signup limit</target> |
3960 | 4453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">364</context></context-group> | |
3961 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">364</context></context-group></trans-unit><trans-unit id="b4d3a94d4c67e02c861a8c7c66c34b74ad2ddf0d" datatype="html"> | 4454 | </trans-unit> |
3962 | <source>{VAR_PLURAL, plural, =1 {user} other {users}}</source><target state="new">{VAR_PLURAL, plural, =1 {user} other {users}}</target> | 4455 | <trans-unit id="b4d3a94d4c67e02c861a8c7c66c34b74ad2ddf0d" datatype="html"> |
4456 | <source>{VAR_PLURAL, plural, =1 {user} other {users}}</source> | ||
4457 | <target state="new">{VAR_PLURAL, plural, =1 {user} other {users}}</target> | ||
3963 | <context-group purpose="location"> | 4458 | <context-group purpose="location"> |
3964 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4459 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
3965 | <context context-type="linenumber">370</context> | 4460 | <context context-type="linenumber">370</context> |
@@ -3968,404 +4463,479 @@ The link will expire within 1 hour.</target> | |||
3968 | <trans-unit id="25de1b6d18bda68f72a31c4ce8aa1c493584764f" datatype="html"> | 4463 | <trans-unit id="25de1b6d18bda68f72a31c4ce8aa1c493584764f" datatype="html"> |
3969 | <source>Enable Signup</source> | 4464 | <source>Enable Signup</source> |
3970 | <target state="new">Enable Signup</target> | 4465 | <target state="new">Enable Signup</target> |
3971 | 4466 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">350</context></context-group> | |
3972 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">350</context></context-group></trans-unit> | 4467 | </trans-unit> |
3973 | <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be" datatype="html"> | 4468 | <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be" datatype="html"> |
3974 | <source>Users</source> | 4469 | <source>Users</source> |
3975 | <target state="new">Users</target> | 4470 | <target state="new">Users</target> |
3976 | 4471 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> | |
3977 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 4472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> |
4473 | </trans-unit> | ||
3978 | <trans-unit id="9a298b5ee14cc04a1cbef88cd1cc54fbb8176bc2" datatype="html"> | 4474 | <trans-unit id="9a298b5ee14cc04a1cbef88cd1cc54fbb8176bc2" datatype="html"> |
3979 | <source>{VAR_PLURAL, plural, =1 {Video} other {Videos} }</source> | 4475 | <source>{VAR_PLURAL, plural, =1 {Video} other {Videos} }</source> |
3980 | <target state="new">{VAR_PLURAL, plural, =1 {Video} other {Videos} }</target> | 4476 | <target state="new">{VAR_PLURAL, plural, =1 {Video} other {Videos} }</target> |
3981 | 4477 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">24</context></context-group> | |
3982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 4478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">24</context></context-group> |
4479 | </trans-unit> | ||
3983 | <trans-unit id="bcf8ce898a641416913d16b5dc39385e83ca069c" datatype="html"> | 4480 | <trans-unit id="bcf8ce898a641416913d16b5dc39385e83ca069c" datatype="html"> |
3984 | <source>{VAR_PLURAL, plural, =1 {Channel} other {Channels} }</source> | 4481 | <source>{VAR_PLURAL, plural, =1 {Channel} other {Channels} }</source> |
3985 | <target state="new">{VAR_PLURAL, plural, =1 {Channel} other {Channels} }</target> | 4482 | <target state="new">{VAR_PLURAL, plural, =1 {Channel} other {Channels} }</target> |
3986 | 4483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">30</context></context-group> | |
3987 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 4484 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">30</context></context-group> |
4485 | </trans-unit> | ||
3988 | <trans-unit id="8b3b364967f953009a4b83c53ed5cf0b5ff3902a" datatype="html"> | 4486 | <trans-unit id="8b3b364967f953009a4b83c53ed5cf0b5ff3902a" datatype="html"> |
3989 | <source>{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }</source> | 4487 | <source>{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }</source> |
3990 | <target state="new">{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }</target> | 4488 | <target state="new">{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }</target> |
3991 | 4489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group> | |
3992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 4490 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group> |
4491 | </trans-unit> | ||
3993 | <trans-unit id="89f26f7ae43839fb1c983c6dc82d7bb9f559ac98" datatype="html"> | 4492 | <trans-unit id="89f26f7ae43839fb1c983c6dc82d7bb9f559ac98" datatype="html"> |
3994 | <source>Incriminated in reports</source> | 4493 | <source>Incriminated in reports</source> |
3995 | <target state="new">Incriminated in reports</target> | 4494 | <target state="new">Incriminated in reports</target> |
3996 | 4495 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">42</context></context-group> | |
3997 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 4496 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">42</context></context-group> |
4497 | </trans-unit> | ||
3998 | <trans-unit id="374b01a6d0311b4e675834b47db9e34d3fb833e7" datatype="html"> | 4498 | <trans-unit id="374b01a6d0311b4e675834b47db9e34d3fb833e7" datatype="html"> |
3999 | <source>Authored reports accepted</source> | 4499 | <source>Authored reports accepted</source> |
4000 | <target state="new">Authored reports accepted</target> | 4500 | <target state="new">Authored reports accepted</target> |
4001 | 4501 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">48</context></context-group> | |
4002 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">48</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> | 4502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">48</context></context-group> |
4503 | </trans-unit> | ||
4003 | <trans-unit id="8e29da1e7e8def288e5cf788c6f5ac6e5824259c" datatype="html"> | 4504 | <trans-unit id="8e29da1e7e8def288e5cf788c6f5ac6e5824259c" datatype="html"> |
4004 | <source>{VAR_PLURAL, plural, =1 {Comment} other {Comments} }</source> | 4505 | <source>{VAR_PLURAL, plural, =1 {Comment} other {Comments} }</source> |
4005 | <target state="new">{VAR_PLURAL, plural, =1 {Comment} other {Comments} }</target> | 4506 | <target state="new">{VAR_PLURAL, plural, =1 {Comment} other {Comments} }</target> |
4006 | 4507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">54</context></context-group> | |
4007 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> | 4508 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">54</context></context-group> |
4509 | </trans-unit> | ||
4008 | <trans-unit id="53ddc7cf814d93205e987d607dbcfcf9cd74b59a" datatype="html"> | 4510 | <trans-unit id="53ddc7cf814d93205e987d607dbcfcf9cd74b59a" datatype="html"> |
4009 | <source>NEW USER</source> | 4511 | <source>NEW USER</source> |
4010 | <target state="new">NEW USER</target> | 4512 | <target state="new">NEW USER</target> |
4011 | 4513 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">73</context></context-group> | |
4012 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">73</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">73</context></context-group></trans-unit> | 4514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">73</context></context-group> |
4515 | </trans-unit> | ||
4013 | <trans-unit id="4a41f824a35ba01d5bd7be61aa06b3e8145209d0" datatype="html"> | 4516 | <trans-unit id="4a41f824a35ba01d5bd7be61aa06b3e8145209d0" datatype="html"> |
4014 | <source>Configuration</source> | 4517 | <source>Configuration</source> |
4015 | <target state="new">Configuration</target> | 4518 | <target state="new">Configuration</target> |
4016 | 4519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1</context></context-group> | |
4017 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 4520 | </trans-unit> |
4018 | <trans-unit id="ec47d80e9b5608ecd396c32a46ca6b87601e7b20" datatype="html"> | 4521 | <trans-unit id="ec47d80e9b5608ecd396c32a46ca6b87601e7b20" datatype="html"> |
4019 | <source>Default video quota per user</source> | 4522 | <source>Default video quota per user</source> |
4020 | <target state="new">Default video quota per user</target> | 4523 | <target state="new">Default video quota per user</target> |
4021 | 4524 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">382</context></context-group> | |
4022 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">382</context></context-group></trans-unit> | 4525 | </trans-unit> |
4023 | <trans-unit id="493c65a11deddda45b42a39f503fc4bb3f876cf2" datatype="html"> | 4526 | <trans-unit id="493c65a11deddda45b42a39f503fc4bb3f876cf2" datatype="html"> |
4024 | <source>Default daily upload limit per user</source> | 4527 | <source>Default daily upload limit per user</source> |
4025 | <target state="new">Default daily upload limit per user</target> | 4528 | <target state="new">Default daily upload limit per user</target> |
4026 | 4529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">394</context></context-group> | |
4027 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">394</context></context-group></trans-unit> | 4530 | </trans-unit> |
4028 | |||
4029 | <trans-unit id="ec3d83c2ae784e843fbe96eb368f9e6e0f26cc2e" datatype="html"> | 4531 | <trans-unit id="ec3d83c2ae784e843fbe96eb368f9e6e0f26cc2e" datatype="html"> |
4030 | <source>Allow import with a torrent file or a magnet URI</source> | 4532 | <source>Allow import with a torrent file or a magnet URI</source> |
4031 | <target state="new">Allow import with a torrent file or a magnet URI</target> | 4533 | <target state="new">Allow import with a torrent file or a magnet URI</target> |
4032 | 4534 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">429</context></context-group> | |
4033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">429</context></context-group></trans-unit> | 4535 | </trans-unit> |
4034 | <trans-unit id="c590ac6eba10ab6269e068156a910c7c58328cc5" datatype="html"> | 4536 | <trans-unit id="c590ac6eba10ab6269e068156a910c7c58328cc5" datatype="html"> |
4035 | <source>Unless a user is marked as trusted, their videos will stay private until a moderator reviews them.</source> | 4537 | <source>Unless a user is marked as trusted, their videos will stay private until a moderator reviews them.</source> |
4036 | <target state="new">Unless a user is marked as trusted, their videos will stay private until a moderator reviews them.</target> | 4538 | <target state="new">Unless a user is marked as trusted, their videos will stay private until a moderator reviews them.</target> |
4037 | 4539 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">446</context></context-group> | |
4038 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">446</context></context-group></trans-unit> | 4540 | </trans-unit> |
4039 | <trans-unit id="3097153cbaee3d44d0e298fbe9e8105b6e1fea0d" datatype="html"> | 4541 | <trans-unit id="3097153cbaee3d44d0e298fbe9e8105b6e1fea0d" datatype="html"> |
4040 | <source>Block new videos automatically</source> | 4542 | <source>Block new videos automatically</source> |
4041 | <target state="new">Block new videos automatically</target> | 4543 | <target state="new">Block new videos automatically</target> |
4042 | 4544 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">443</context></context-group> | |
4043 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">443</context></context-group></trans-unit> | 4545 | </trans-unit> |
4044 | <trans-unit id="7b6494fa44035831e1215cd4a0284aec00f8cbbd" datatype="html"> | 4546 | <trans-unit id="7b6494fa44035831e1215cd4a0284aec00f8cbbd" datatype="html"> |
4045 | <source>SEARCH</source> | 4547 | <source>SEARCH</source> |
4046 | <target state="new">SEARCH</target> | 4548 | <target state="new">SEARCH</target> |
4047 | 4549 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">460</context></context-group> | |
4048 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">460</context></context-group></trans-unit> | 4550 | </trans-unit> |
4049 | |||
4050 | <trans-unit id="273341057700e25fb8a19896b5039dcf3f14b9ba" datatype="html"> | 4551 | <trans-unit id="273341057700e25fb8a19896b5039dcf3f14b9ba" datatype="html"> |
4051 | <source>Allow users to do remote URI/handle search</source> | 4552 | <source>Allow users to do remote URI/handle search</source> |
4052 | <target state="new">Allow users to do remote URI/handle search</target> | 4553 | <target state="new">Allow users to do remote URI/handle search</target> |
4053 | 4554 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">471</context></context-group> | |
4054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">471</context></context-group></trans-unit><trans-unit id="24abd406ad31ca317072b179321ff7a7b2d56f86" datatype="html"> | 4555 | </trans-unit> |
4055 | <source>Allow <x id="START_TAG_STRONG"/>your users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</source><target state="new">Allow <x id="START_TAG_STRONG"/>your users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</target> | 4556 | <trans-unit id="24abd406ad31ca317072b179321ff7a7b2d56f86" datatype="html"> |
4056 | 4557 | <source>Allow <x id="START_TAG_STRONG"/>your users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</source> | |
4057 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">474</context></context-group></trans-unit> | 4558 | <target state="new">Allow <x id="START_TAG_STRONG"/>your users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</target> |
4058 | 4559 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">474</context></context-group> | |
4560 | </trans-unit> | ||
4059 | <trans-unit id="1a1dd78b1169f98fb2120c6af13e136aec2daf69" datatype="html"> | 4561 | <trans-unit id="1a1dd78b1169f98fb2120c6af13e136aec2daf69" datatype="html"> |
4060 | <source>Allow anonymous to do remote URI/handle search</source> | 4562 | <source>Allow anonymous to do remote URI/handle search</source> |
4061 | <target state="new">Allow anonymous to do remote URI/handle search</target> | 4563 | <target state="new">Allow anonymous to do remote URI/handle search</target> |
4062 | 4564 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">482</context></context-group> | |
4063 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">482</context></context-group></trans-unit><trans-unit id="0a82b1f5636ff3c47cddf9e4bffa86b5d696fe06" datatype="html"> | 4565 | </trans-unit> |
4064 | <source>Allow <x id="START_TAG_STRONG"/>anonymous users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</source><target state="new">Allow <x id="START_TAG_STRONG"/>anonymous users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</target> | 4566 | <trans-unit id="0a82b1f5636ff3c47cddf9e4bffa86b5d696fe06" datatype="html"> |
4065 | 4567 | <source>Allow <x id="START_TAG_STRONG"/>anonymous users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</source> | |
4066 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">485</context></context-group></trans-unit> | 4568 | <target state="new">Allow <x id="START_TAG_STRONG"/>anonymous users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</target> |
4569 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">485</context></context-group> | ||
4570 | </trans-unit> | ||
4067 | <trans-unit id="f3af9d2cf9a341ce634210908597e491e77e7376" datatype="html"> | 4571 | <trans-unit id="f3af9d2cf9a341ce634210908597e491e77e7376" datatype="html"> |
4068 | <source>⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select.</source> | 4572 | <source>⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select.</source> |
4069 | <target state="new">⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select.</target> | 4573 | <target state="new">⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select.</target> |
4070 | 4574 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">499</context></context-group> | |
4071 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">499</context></context-group></trans-unit> | 4575 | </trans-unit> |
4072 | <trans-unit id="0c43b766533e99e88f65a9f1c8d63fb1926ab5cc" datatype="html"> | 4576 | <trans-unit id="0c43b766533e99e88f65a9f1c8d63fb1926ab5cc" datatype="html"> |
4073 | <source>You should only use moderated search indexes in production, or <x id="START_LINK"/>host your own<x id="CLOSE_LINK"/>. </source> | 4577 | <source>You should only use moderated search indexes in production, or <x id="START_LINK"/>host your own<x id="CLOSE_LINK"/>. </source> |
4074 | <target state="new"> | 4578 | <target state="new"> |
4075 | You should only use moderated search indexes in production, or | 4579 | You should only use moderated search indexes in production, or |
4076 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>host your own | 4580 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>host your own |
4077 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | 4581 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. |
4078 | 4582 | ||
4079 | </target> | 4583 | </target> |
4080 | 4584 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">502</context></context-group> | |
4081 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">502</context></context-group></trans-unit> | 4585 | </trans-unit> |
4082 | <trans-unit id="e5cd21a49e6eefd0610106b6afcd4ed56baab566" datatype="html"> | 4586 | <trans-unit id="e5cd21a49e6eefd0610106b6afcd4ed56baab566" datatype="html"> |
4083 | <source>Search index URL</source> | 4587 | <source>Search index URL</source> |
4084 | <target state="new">Search index URL</target> | 4588 | <target state="new">Search index URL</target> |
4085 | 4589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">508</context></context-group> | |
4086 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">508</context></context-group></trans-unit> | 4590 | </trans-unit> |
4087 | <trans-unit id="8c720eb4f32907db445c969a451e59a28a15e89c" datatype="html"> | 4591 | <trans-unit id="8c720eb4f32907db445c969a451e59a28a15e89c" datatype="html"> |
4088 | <source>Disable local search in search bar</source> | 4592 | <source>Disable local search in search bar</source> |
4089 | <target state="new">Disable local search in search bar</target> | 4593 | <target state="new">Disable local search in search bar</target> |
4090 | 4594 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">519</context></context-group> | |
4091 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">519</context></context-group></trans-unit> | 4595 | </trans-unit> |
4092 | <trans-unit id="3b2b04802c47e4af0057651b972f52dffc92e8e1" datatype="html"> | 4596 | <trans-unit id="3b2b04802c47e4af0057651b972f52dffc92e8e1" datatype="html"> |
4093 | <source>Otherwise the local search stays used by default</source> | 4597 | <source>Otherwise the local search stays used by default</source> |
4094 | <target state="new">Otherwise the local search stays used by default</target> | 4598 | <target state="new">Otherwise the local search stays used by default</target> |
4095 | 4599 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">529</context></context-group> | |
4096 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">529</context></context-group></trans-unit> | 4600 | </trans-unit> |
4097 | <trans-unit id="be8b7fa8a3193d5015561140328a1240190842c1" datatype="html"> | 4601 | <trans-unit id="be8b7fa8a3193d5015561140328a1240190842c1" datatype="html"> |
4098 | <source>Search bar uses the global search index by default</source> | 4602 | <source>Search bar uses the global search index by default</source> |
4099 | <target state="new">Search bar uses the global search index by default</target> | 4603 | <target state="new">Search bar uses the global search index by default</target> |
4100 | 4604 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">526</context></context-group> | |
4101 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">526</context></context-group></trans-unit> | 4605 | </trans-unit> |
4102 | <trans-unit id="bcaa25583cd971359254080004fbbb71c2b97ad6" datatype="html"> | 4606 | <trans-unit id="bcaa25583cd971359254080004fbbb71c2b97ad6" datatype="html"> |
4103 | <source>Enable global search</source> | 4607 | <source>Enable global search</source> |
4104 | <target state="new">Enable global search</target> | 4608 | <target state="new">Enable global search</target> |
4105 | 4609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">496</context></context-group> | |
4106 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">496</context></context-group></trans-unit> | 4610 | </trans-unit> |
4107 | <trans-unit id="3f237e2a863d0308a21bdb0bb5d4b84e3376dbee" datatype="html"> | 4611 | <trans-unit id="3f237e2a863d0308a21bdb0bb5d4b84e3376dbee" datatype="html"> |
4108 | <source>FEDERATION</source> | 4612 | <source>FEDERATION</source> |
4109 | <target state="new">FEDERATION</target> | 4613 | <target state="new">FEDERATION</target> |
4110 | 4614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">547</context></context-group> | |
4111 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">547</context></context-group></trans-unit> | 4615 | </trans-unit> |
4112 | <trans-unit id="2cc42a6b77d06f99a195ef8f3324d49267eedf87" datatype="html"> | 4616 | <trans-unit id="2cc42a6b77d06f99a195ef8f3324d49267eedf87" datatype="html"> |
4113 | <source>Manage <x id="START_LINK"/>relations<x id="CLOSE_LINK"/> with other instances. </source> | 4617 | <source>Manage <x id="START_LINK"/>relations<x id="CLOSE_LINK"/> with other instances. </source> |
4114 | <target state="new"> | 4618 | <target state="new"> |
4115 | Manage | 4619 | Manage |
4116 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>relations | 4620 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>relations |
4117 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> with other instances. | 4621 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> with other instances. |
4118 | 4622 | ||
4119 | </target> | 4623 | </target> |
4120 | 4624 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">549</context></context-group> | |
4121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">549</context></context-group></trans-unit> | 4625 | </trans-unit> |
4122 | <trans-unit id="a7f09999dbd1438d803b28abe1eb769f75126b3e" datatype="html"> | 4626 | <trans-unit id="a7f09999dbd1438d803b28abe1eb769f75126b3e" datatype="html"> |
4123 | <source>Other instances can follow yours</source> | 4627 | <source>Other instances can follow yours</source> |
4124 | <target state="new">Other instances can follow yours</target> | 4628 | <target state="new">Other instances can follow yours</target> |
4125 | 4629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">561</context></context-group> | |
4126 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">561</context></context-group></trans-unit> | 4630 | </trans-unit> |
4127 | <trans-unit id="3d9ffce2b1f284cb60067de15a313d3ecde0875f" datatype="html"> | 4631 | <trans-unit id="3d9ffce2b1f284cb60067de15a313d3ecde0875f" datatype="html"> |
4128 | <source>Manually approve new instance followers</source> | 4632 | <source>Manually approve new instance followers</source> |
4129 | <target state="new">Manually approve new instance followers</target> | 4633 | <target state="new">Manually approve new instance followers</target> |
4130 | 4634 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">568</context></context-group> | |
4131 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">568</context></context-group></trans-unit> | 4635 | </trans-unit> |
4132 | <trans-unit id="9a3dd9c65ee3381ae3b78b9c56cc4e0d2e41f0e8" datatype="html"> | 4636 | <trans-unit id="9a3dd9c65ee3381ae3b78b9c56cc4e0d2e41f0e8" datatype="html"> |
4133 | <source>Automatically follow back instances</source> | 4637 | <source>Automatically follow back instances</source> |
4134 | <target state="new">Automatically follow back instances</target> | 4638 | <target state="new">Automatically follow back instances</target> |
4135 | 4639 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">581</context></context-group> | |
4136 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">581</context></context-group></trans-unit> | 4640 | </trans-unit> |
4137 | <trans-unit id="f183764323fcffd1b3ba4d13cdc21ec8971472cc" datatype="html"> | 4641 | <trans-unit id="f183764323fcffd1b3ba4d13cdc21ec8971472cc" datatype="html"> |
4138 | <source>You should only follow moderated indexes in production, or <x id="START_LINK"/>host your own<x id="CLOSE_LINK"/>. </source> | 4642 | <source>You should only follow moderated indexes in production, or <x id="START_LINK"/>host your own<x id="CLOSE_LINK"/>. </source> |
4139 | <target state="new"> | 4643 | <target state="new"> |
4140 | You should only follow moderated indexes in production, or | 4644 | You should only follow moderated indexes in production, or |
4141 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>host your own | 4645 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>host your own |
4142 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | 4646 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. |
4143 | 4647 | ||
4144 | </target> | 4648 | </target> |
4145 | 4649 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">600</context></context-group> | |
4146 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">600</context></context-group></trans-unit> | 4650 | </trans-unit> |
4147 | <trans-unit id="9bef6fc7194e11d18fdcac6aaccc816fe9ffc5a7" datatype="html"> | 4651 | <trans-unit id="9bef6fc7194e11d18fdcac6aaccc816fe9ffc5a7" datatype="html"> |
4148 | <source>⚠️ This functionality requires a lot of attention and extra moderation.</source> | 4652 | <source>⚠️ This functionality requires a lot of attention and extra moderation.</source> |
4149 | <target state="new">⚠️ This functionality requires a lot of attention and extra moderation.</target> | 4653 | <target state="new">⚠️ This functionality requires a lot of attention and extra moderation.</target> |
4150 | 4654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">353</context></context-group> | |
4151 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">353</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">584</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">597</context></context-group></trans-unit> | 4655 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">584</context></context-group> |
4656 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">597</context></context-group> | ||
4657 | </trans-unit> | ||
4152 | <trans-unit id="764910b42b08b8342f7ba5907b258341ec044fa0" datatype="html"> | 4658 | <trans-unit id="764910b42b08b8342f7ba5907b258341ec044fa0" datatype="html"> |
4153 | <source>Index URL</source> | 4659 | <source>Index URL</source> |
4154 | <target state="new">Index URL</target> | 4660 | <target state="new">Index URL</target> |
4155 | 4661 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">606</context></context-group> | |
4156 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">606</context></context-group></trans-unit> | 4662 | </trans-unit> |
4157 | <trans-unit id="62f023a56fd29518ab030384702362e6bf6a83e4" datatype="html"> | 4663 | <trans-unit id="62f023a56fd29518ab030384702362e6bf6a83e4" datatype="html"> |
4158 | <source>Automatically follow instances of a public index</source> | 4664 | <source>Automatically follow instances of a public index</source> |
4159 | <target state="new">Automatically follow instances of a public index</target> | 4665 | <target state="new">Automatically follow instances of a public index</target> |
4160 | 4666 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">594</context></context-group> | |
4161 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">594</context></context-group></trans-unit> | 4667 | </trans-unit> |
4162 | <trans-unit id="5805ff22d19f43016e2b1a0f7eff12185c78e89d" datatype="html"> | 4668 | <trans-unit id="5805ff22d19f43016e2b1a0f7eff12185c78e89d" datatype="html"> |
4163 | <source>ADMINISTRATORS</source> | 4669 | <source>ADMINISTRATORS</source> |
4164 | <target state="new">ADMINISTRATORS</target> | 4670 | <target state="translated">YÖNETİCİLER</target> |
4165 | 4671 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">626</context></context-group> | |
4166 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">626</context></context-group></trans-unit> | 4672 | </trans-unit> |
4167 | <trans-unit id="2149300564474427551" datatype="html"> | 4673 | <trans-unit id="2149300564474427551" datatype="html"> |
4168 | <source>Administrator</source> | 4674 | <source>Administrator</source> |
4169 | <target state="new">Administrator</target> | 4675 | <target state="translated">Yönetici</target> |
4170 | 4676 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">393</context></context-group> | |
4171 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">393</context></context-group></trans-unit> | 4677 | </trans-unit> |
4172 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> | 4678 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> |
4173 | <source>Admin email</source> | 4679 | <source>Admin email</source> |
4174 | <target state="new">Admin email</target> | 4680 | <target state="translated">Yönetici e-postası</target> |
4175 | 4681 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">632</context></context-group> | |
4176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">632</context></context-group></trans-unit> | 4682 | </trans-unit> |
4177 | <trans-unit id="f9bda6652199995a4bd4424f2e35b748eb0bda8a" datatype="html"> | 4683 | <trans-unit id="f9bda6652199995a4bd4424f2e35b748eb0bda8a" datatype="html"> |
4178 | <source>Enable contact form</source> | 4684 | <source>Enable contact form</source> |
4179 | <target state="new">Enable contact form</target> | 4685 | <target state="new">Enable contact form</target> |
4180 | 4686 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">643</context></context-group> | |
4181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">643</context></context-group></trans-unit> | 4687 | </trans-unit> |
4182 | <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5" datatype="html"> | 4688 | <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5" datatype="html"> |
4183 | <source>Basic configuration</source> | 4689 | <source>Basic configuration</source> |
4184 | <target state="new">Basic configuration</target> | 4690 | <target state="new">Basic configuration</target> |
4185 | 4691 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group> | |
4186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">239</context></context-group></trans-unit><trans-unit id="b20a7aabcda694678c9485942ba237b86fd0cc9a" datatype="html"> | 4692 | </trans-unit> |
4187 | <source>VOD Transcoding</source><target state="new">VOD Transcoding</target> | 4693 | <trans-unit id="b20a7aabcda694678c9485942ba237b86fd0cc9a" datatype="html"> |
4188 | 4694 | <source>VOD Transcoding</source> | |
4189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">701</context></context-group></trans-unit> | 4695 | <target state="new">VOD Transcoding</target> |
4696 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">701</context></context-group> | ||
4697 | </trans-unit> | ||
4190 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> | 4698 | <trans-unit id="51d86d65a52d00976c7cce4bdf8e144f956ef888" datatype="html"> |
4191 | <source>TWITTER</source> | 4699 | <source>TWITTER</source> |
4192 | <target state="new">TWITTER</target> | 4700 | <target state="new">TWITTER</target> |
4193 | 4701 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group> | |
4194 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">652</context></context-group></trans-unit><trans-unit id="953cc45f4ac17dee9271bd9a3667489c03c8076b" datatype="html"> | 4702 | </trans-unit> |
4195 | <source> Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. </source><target state="new"> Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. </target> | 4703 | <trans-unit id="953cc45f4ac17dee9271bd9a3667489c03c8076b" datatype="html"> |
4704 | <source>Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value.</source> | ||
4705 | <target state="new"> Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. </target> | ||
4196 | <context-group purpose="location"> | 4706 | <context-group purpose="location"> |
4197 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4707 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
4198 | <context context-type="linenumber">654,656</context> | 4708 | <context context-type="linenumber">654,656</context> |
4199 | </context-group> | 4709 | </context-group> |
4200 | </trans-unit> | 4710 | </trans-unit> |
4201 | |||
4202 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> | 4711 | <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> |
4203 | <source>Your Twitter username</source> | 4712 | <source>Your Twitter username</source> |
4204 | <target state="new">Your Twitter username</target> | 4713 | <target state="new">Your Twitter username</target> |
4205 | 4714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">665</context></context-group> | |
4206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">665</context></context-group></trans-unit> | 4715 | </trans-unit> |
4207 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> | 4716 | <trans-unit id="fcad8bedb9a3a3600c4f5c13e9f404e788dbf327" datatype="html"> |
4208 | <source>Instance allowed by Twitter</source> | 4717 | <source>Instance allowed by Twitter</source> |
4209 | <target state="new">Instance allowed by Twitter</target> | 4718 | <target state="new">Instance allowed by Twitter</target> |
4210 | 4719 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">677</context></context-group> | |
4211 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">677</context></context-group></trans-unit><trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> | 4720 | </trans-unit> |
4212 | <source> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source><target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> | 4721 | <trans-unit id="00d2522709d908c52395fc1865152ad37fe7eeae" datatype="html"> |
4213 | 4722 | <source>If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </source> | |
4214 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">682</context></context-group></trans-unit><trans-unit id="84fa6178d3a14368a4f2fde86c4c2c4e8764aa76" datatype="html"> | 4723 | <target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK"/><x id="LINE_BREAK"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on <x id="START_LINK"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK"/> to see if you instance is allowed. </target> |
4215 | <source> Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. </source><target state="new"> Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. </target> | 4724 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">682</context></context-group> |
4216 | 4725 | </trans-unit> | |
4217 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">711</context></context-group></trans-unit><trans-unit id="cf385a62ac2f7e599d5dab1ea3fcd86a739ec098" datatype="html"> | 4726 | <trans-unit id="84fa6178d3a14368a4f2fde86c4c2c4e8764aa76" datatype="html"> |
4218 | <source> However, you may want to read our guidelines before tweaking the following values. </source><target state="new"> However, you may want to read our guidelines before tweaking the following values. </target> | 4727 | <source>Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically.</source> |
4219 | 4728 | <target state="new"> Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. </target> | |
4220 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group></trans-unit><trans-unit id="6d13d93e4896cd78cf72a2c9d470aea192fcb33b" datatype="html"> | 4729 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">711</context></context-group> |
4221 | <source>Read guidelines</source><target state="new">Read guidelines</target> | 4730 | </trans-unit> |
4222 | 4731 | <trans-unit id="cf385a62ac2f7e599d5dab1ea3fcd86a739ec098" datatype="html"> | |
4223 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">718</context></context-group></trans-unit> | 4732 | <source>However, you may want to read our guidelines before tweaking the following values.</source> |
4733 | <target state="new"> However, you may want to read our guidelines before tweaking the following values. </target> | ||
4734 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">714</context></context-group> | ||
4735 | </trans-unit> | ||
4736 | <trans-unit id="6d13d93e4896cd78cf72a2c9d470aea192fcb33b" datatype="html"> | ||
4737 | <source>Read guidelines</source> | ||
4738 | <target state="new">Read guidelines</target> | ||
4739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">718</context></context-group> | ||
4740 | </trans-unit> | ||
4224 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> | 4741 | <trans-unit id="df754f9d47b1a072519f1c9f7f1726937f44040a" datatype="html"> |
4225 | <source>LIVE</source><target state="new">LIVE</target> | 4742 | <source>LIVE</source> |
4226 | 4743 | <target state="new">LIVE</target> | |
4227 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">881</context></context-group></trans-unit><trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> | 4744 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group> |
4228 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4745 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">881</context></context-group> |
4229 | 4746 | </trans-unit> | |
4230 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group></trans-unit><trans-unit id="c0b94592a561638caf765f2cc338cd04e306f1a8" datatype="html"> | 4747 | <trans-unit id="1972803cc06239fe6b7791763ce89b819bd24853" datatype="html"> |
4231 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source><target state="new">⚠️ Enabling live streaming requires trust in your users and extra moderation work</target> | 4748 | <source>Enable users of your instance to stream live.</source> |
4232 | 4749 | <target state="new"> Enable users of your instance to stream live. </target> | |
4233 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">898</context></context-group></trans-unit><trans-unit id="acdcf7ffe53af776994f9c393c1d20cdbc633ad4" datatype="html"> | 4750 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">883</context></context-group> |
4234 | <source>If enabled, your server needs to accept incoming TCP traffic on port <x id="INTERPOLATION" equiv-text="{{ liveRTMPPort }}"/></source><target state="new">If enabled, your server needs to accept incoming TCP traffic on port <x id="INTERPOLATION" equiv-text="{{ liveRTMPPort }}"/></target> | 4751 | </trans-unit> |
4235 | 4752 | <trans-unit id="c0b94592a561638caf765f2cc338cd04e306f1a8" datatype="html"> | |
4236 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">899</context></context-group></trans-unit><trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> | 4753 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source> |
4237 | <source>Allow your users to automatically publish a replay of their live</source><target state="new">Allow your users to automatically publish a replay of their live</target> | 4754 | <target state="new">⚠️ Enabling live streaming requires trust in your users and extra moderation work</target> |
4238 | 4755 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">898</context></context-group> | |
4239 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">907</context></context-group></trans-unit><trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | 4756 | </trans-unit> |
4240 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4757 | <trans-unit id="acdcf7ffe53af776994f9c393c1d20cdbc633ad4" datatype="html"> |
4241 | 4758 | <source>If enabled, your server needs to accept incoming TCP traffic on port <x id="INTERPOLATION" equiv-text="{{ liveRTMPPort }}"/></source> | |
4242 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group></trans-unit><trans-unit id="cf06f240dd01db03367a64c84e5513dd59f3a381" datatype="html"> | 4759 | <target state="new">If enabled, your server needs to accept incoming TCP traffic on port <x id="INTERPOLATION" equiv-text="{{ liveRTMPPort }}"/></target> |
4243 | <source>Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source><target state="new">Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 4760 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">899</context></context-group> |
4244 | 4761 | </trans-unit> | |
4245 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">916</context></context-group></trans-unit><trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> | 4762 | <trans-unit id="0c990b9d80188dd9edbbd945dbd8c66074ee62d8" datatype="html"> |
4246 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4763 | <source>Allow your users to automatically publish a replay of their live</source> |
4247 | 4764 | <target state="new">Allow your users to automatically publish a replay of their live</target> | |
4248 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">919</context></context-group></trans-unit><trans-unit id="bdc3da1a466b92c3da58c3dff5d47030ec9f6680" datatype="html"> | 4765 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">907</context></context-group> |
4249 | <source>Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source><target state="new">Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 4766 | </trans-unit> |
4250 | 4767 | <trans-unit id="f071c73e20463032b9e1f2ad2dacb54395a7b3bf" datatype="html"> | |
4251 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">924</context></context-group></trans-unit><trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> | 4768 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> |
4252 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source><target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4769 | <target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> |
4253 | 4770 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">910</context></context-group> | |
4254 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">927</context></context-group></trans-unit><trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> | 4771 | </trans-unit> |
4255 | <source>Max live duration</source><target state="new">Max live duration</target> | 4772 | <trans-unit id="cf06f240dd01db03367a64c84e5513dd59f3a381" datatype="html"> |
4256 | 4773 | <source>Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | |
4257 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">932</context></context-group></trans-unit><trans-unit id="7f5b08538d16c5f243789b4af4b3d888028ef2f9" datatype="html"> | 4774 | <target state="new">Max simultaneous lives created on your instance <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
4258 | <source> Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some. </source><target state="new"> Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some. </target> | 4775 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">916</context></context-group> |
4259 | 4776 | </trans-unit> | |
4260 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">951</context></context-group></trans-unit><trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | 4777 | <trans-unit id="0ba5a92f3fcf3c32561c73cd7e100776967d920b" datatype="html"> |
4261 | <source>Live transcoding threads</source><target state="new">Live transcoding threads</target> | 4778 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> |
4262 | 4779 | <target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | |
4263 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group></trans-unit><trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | 4780 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">919</context></context-group> |
4264 | <source>Live resolutions to generate</source><target state="new">Live resolutions to generate</target> | 4781 | </trans-unit> |
4265 | 4782 | <trans-unit id="bdc3da1a466b92c3da58c3dff5d47030ec9f6680" datatype="html"> | |
4266 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">971</context></context-group></trans-unit><trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | 4783 | <source>Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
4267 | <source>Allow live streaming</source><target state="new">Allow live streaming</target> | 4784 | <target state="new">Max simultaneous lives created per user <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 for "unlimited")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
4268 | 4785 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">924</context></context-group> | |
4269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">894</context></context-group></trans-unit><trans-unit id="be88ab2c149700f1e6e7595a1ad10b592acd9504" datatype="html"> | 4786 | </trans-unit> |
4270 | <source>Transcoding enabled for live streams</source><target state="new">Transcoding enabled for live streams</target> | 4787 | <trans-unit id="9f667199fbfe1db90e4f3b1a6634f6036db93ad0" datatype="html"> |
4271 | 4788 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> | |
4272 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">965</context></context-group></trans-unit><trans-unit id="12933ce3852d2abe0e36142c269e99cd772f4a89" datatype="html"> | 4789 | <target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4273 | <source>will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding</source><target state="new">will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding</target> | 4790 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">927</context></context-group> |
4274 | 4791 | </trans-unit> | |
4275 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group></trans-unit><trans-unit id="45f13883641cb1c796685a16cf3c156b89fd9a28" datatype="html"> | 4792 | <trans-unit id="4bddd185b531fa5ef6a1b5cebf46de5565968cb1" datatype="html"> |
4276 | <source>will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding</source><target state="new">will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding</target> | 4793 | <source>Max live duration</source> |
4277 | 4794 | <target state="new">Max live duration</target> | |
4278 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">993</context></context-group></trans-unit><trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | 4795 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">932</context></context-group> |
4279 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source><target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | 4796 | </trans-unit> |
4280 | 4797 | <trans-unit id="7f5b08538d16c5f243789b4af4b3d888028ef2f9" datatype="html"> | |
4281 | 4798 | <source>Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some.</source> | |
4282 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">999</context></context-group></trans-unit> | 4799 | <target state="new"> Same as VOD transcoding, transcoding live streams so that they are in a streamable form that any device can play. Requires a beefy CPU, and then some. </target> |
4800 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">951</context></context-group> | ||
4801 | </trans-unit> | ||
4802 | <trans-unit id="5ff339e5bc9b41411ce6401774483b0d6f8cbca8" datatype="html"> | ||
4803 | <source>Live transcoding threads</source> | ||
4804 | <target state="new">Live transcoding threads</target> | ||
4805 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">990</context></context-group> | ||
4806 | </trans-unit> | ||
4807 | <trans-unit id="bd9fc4914f5eeb416181cb966d98cadb94282485" datatype="html"> | ||
4808 | <source>Live resolutions to generate</source> | ||
4809 | <target state="new">Live resolutions to generate</target> | ||
4810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">971</context></context-group> | ||
4811 | </trans-unit> | ||
4812 | <trans-unit id="0dcaa17190a8baac67add948a7c63671f9027a7b" datatype="html"> | ||
4813 | <source>Allow live streaming</source> | ||
4814 | <target state="new">Allow live streaming</target> | ||
4815 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">894</context></context-group> | ||
4816 | </trans-unit> | ||
4817 | <trans-unit id="be88ab2c149700f1e6e7595a1ad10b592acd9504" datatype="html"> | ||
4818 | <source>Transcoding enabled for live streams</source> | ||
4819 | <target state="new">Transcoding enabled for live streams</target> | ||
4820 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">965</context></context-group> | ||
4821 | </trans-unit> | ||
4822 | <trans-unit id="12933ce3852d2abe0e36142c269e99cd772f4a89" datatype="html"> | ||
4823 | <source>will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding</source> | ||
4824 | <target state="new">will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding</target> | ||
4825 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">992</context></context-group> | ||
4826 | </trans-unit> | ||
4827 | <trans-unit id="45f13883641cb1c796685a16cf3c156b89fd9a28" datatype="html"> | ||
4828 | <source>will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding</source> | ||
4829 | <target state="new">will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding</target> | ||
4830 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">993</context></context-group> | ||
4831 | </trans-unit> | ||
4832 | <trans-unit id="54ffeb00b5c4525b0fe6deecb093e3db97d259f6" datatype="html"> | ||
4833 | <source>{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</source> | ||
4834 | <target state="new">{VAR_PLURAL, plural, =0 {} =1 {thread} other {threads}}</target> | ||
4835 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">859</context></context-group> | ||
4836 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">999</context></context-group> | ||
4837 | </trans-unit> | ||
4283 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> | 4838 | <trans-unit id="0a1a7d6e04056d30bb85aca5bb8bd47ced098167" datatype="html"> |
4284 | <source>Live streaming</source><target state="new">Live streaming</target> | 4839 | <source>Live streaming</source> |
4285 | 4840 | <target state="new">Live streaming</target> | |
4286 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">875</context></context-group></trans-unit> | 4841 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">67</context></context-group> |
4842 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">875</context></context-group> | ||
4843 | </trans-unit> | ||
4287 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> | 4844 | <trans-unit id="9a6dbeb95c096daa71967ac36a043de69d0cf72b" datatype="html"> |
4288 | <source>TRANSCODING</source> | 4845 | <source>TRANSCODING</source> |
4289 | <target state="new">TRANSCODING</target> | 4846 | <target state="new">TRANSCODING</target> |
4290 | 4847 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">728</context></context-group> | |
4291 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">728</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">949</context></context-group></trans-unit> | 4848 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">949</context></context-group> |
4849 | </trans-unit> | ||
4292 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> | 4850 | <trans-unit id="ee4b28ab2d3293d453dec75c6654c6425705283c" datatype="html"> |
4293 | <source>Process uploaded videos so that they are in a streamable form that any device can play. Though costly in resources, this is a critical part of PeerTube, so tread carefully.</source> | 4851 | <source>Process uploaded videos so that they are in a streamable form that any device can play. Though costly in resources, this is a critical part of PeerTube, so tread carefully.</source> |
4294 | <target state="new"> | 4852 | <target state="new"> |
4295 | Process uploaded videos so that they are in a streamable form that any device can play. Though costly in | 4853 | Process uploaded videos so that they are in a streamable form that any device can play. Though costly in |
4296 | resources, this is a critical part of PeerTube, so tread carefully. | 4854 | resources, this is a critical part of PeerTube, so tread carefully. |
4297 | </target> | 4855 | </target> |
4298 | 4856 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">730</context></context-group> | |
4299 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">730</context></context-group></trans-unit><trans-unit id="dd61ba82a1fe37408ee715264241c078530f8c6f" datatype="html"> | 4857 | </trans-unit> |
4300 | <source>Input formats</source><target state="new">Input formats</target> | 4858 | <trans-unit id="dd61ba82a1fe37408ee715264241c078530f8c6f" datatype="html"> |
4301 | 4859 | <source>Input formats</source> | |
4302 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group></trans-unit> | 4860 | <target state="new">Input formats</target> |
4861 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">748</context></context-group> | ||
4862 | </trans-unit> | ||
4303 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> | 4863 | <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> |
4304 | <source>Transcoding enabled</source> | 4864 | <source>Transcoding enabled</source> |
4305 | <target state="new">Transcoding enabled</target> | 4865 | <target state="new">Transcoding enabled</target> |
4306 | 4866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group> | |
4307 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">742</context></context-group></trans-unit><trans-unit id="5789fe6bacfbf750afc62f0399cadf899b67f348" datatype="html"> | 4867 | </trans-unit> |
4308 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | 4868 | <trans-unit id="5789fe6bacfbf750afc62f0399cadf899b67f348" datatype="html"> |
4309 | 4869 | <source><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | |
4310 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source><target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | 4870 | <target state="new"><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled HLS support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
4311 | 4871 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">785</context></context-group> | |
4312 | "/><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>If disabled, breaks federation with PeerTube instances < 2.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 4872 | </trans-unit> |
4313 | 4873 | <trans-unit id="db8369ea3a140ba4a114648ba204fb1a55ba742e" datatype="html"> | |
4314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">785</context></context-group></trans-unit><trans-unit id="db8369ea3a140ba4a114648ba204fb1a55ba742e" datatype="html"> | 4874 | <source><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Faster playback especially with long videos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></source> |
4315 | <source><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> | 4875 | <target state="new"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Faster playback especially with long videos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> |
4316 | "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Faster playback especially with long videos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></source><target state="new"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with plain WebTorrent:<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/><x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> | 4876 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">805</context></context-group> |
4317 | "/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Faster playback especially with long videos<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="CLOSE_UNORDERED_LIST" ctype="x-ul" equiv-text="</ul>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> | 4877 | </trans-unit> |
4318 | 4878 | <trans-unit id="0148700953243b0a7188dcbe233d8913c5cb6614" datatype="html"> | |
4319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">805</context></context-group></trans-unit><trans-unit id="0148700953243b0a7188dcbe233d8913c5cb6614" datatype="html"> | 4879 | <source>will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding</source> |
4320 | <source>will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding</source><target state="new">will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding</target> | 4880 | <target state="new">will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding</target> |
4321 | 4881 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">852</context></context-group> | |
4322 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">852</context></context-group></trans-unit><trans-unit id="cacc547b752d8bc881f267e940b6b46885b566d9" datatype="html"> | 4882 | </trans-unit> |
4323 | <source>will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding</source><target state="new">will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding</target> | 4883 | <trans-unit id="cacc547b752d8bc881f267e940b6b46885b566d9" datatype="html"> |
4324 | 4884 | <source>will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding</source> | |
4325 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">853</context></context-group></trans-unit> | 4885 | <target state="new">will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding</target> |
4326 | 4886 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">853</context></context-group> | |
4327 | 4887 | </trans-unit> | |
4328 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> | 4888 | <trans-unit id="0050a55afb9c565df1f9b3f750c2d4adb697698f" datatype="html"> |
4329 | <source>Allow additional extensions</source> | 4889 | <source>Allow additional extensions</source> |
4330 | <target state="new">Allow additional extensions</target> | 4890 | <target state="new">Allow additional extensions</target> |
4331 | 4891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">753</context></context-group> | |
4332 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">753</context></context-group></trans-unit><trans-unit id="0ff72c066084f3c420dde9febf4f7255e7511867" datatype="html"> | 4892 | </trans-unit> |
4333 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.</source><target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.</target> | 4893 | <trans-unit id="0ff72c066084f3c420dde9febf4f7255e7511867" datatype="html"> |
4894 | <source>Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.</source> | ||
4895 | <target state="new">Allows users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, .m2ts, .mxf, or .nut videos.</target> | ||
4334 | <context-group purpose="location"> | 4896 | <context-group purpose="location"> |
4335 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4897 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
4336 | <context context-type="linenumber">756</context> | 4898 | <context context-type="linenumber">756</context> |
4337 | </context-group> | 4899 | </context-group> |
4338 | </trans-unit> | 4900 | </trans-unit> |
4339 | |||
4340 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> | 4901 | <trans-unit id="88cfa6e185dd938361d1d9c04314bbd3afb54fb6" datatype="html"> |
4341 | <source>Allow audio files upload</source> | 4902 | <source>Allow audio files upload</source> |
4342 | <target state="new">Allow audio files upload</target> | 4903 | <target state="new">Allow audio files upload</target> |
4343 | 4904 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group> | |
4344 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">764</context></context-group></trans-unit><trans-unit id="49c85926a345d64c41d9fa85c9aa11f3fc2982f3" datatype="html"> | 4905 | </trans-unit> |
4345 | <source>Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files.</source><target state="new">Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files.</target> | 4906 | <trans-unit id="49c85926a345d64c41d9fa85c9aa11f3fc2982f3" datatype="html"> |
4346 | 4907 | <source>Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files.</source> | |
4347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">767</context></context-group></trans-unit><trans-unit id="02c07d8c482b71d6409c4cd3a20d604cc0e11ea1" datatype="html"> | 4908 | <target state="new">Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files.</target> |
4348 | <source>The file will be merged in a still image video with the preview file on upload.</source><target state="new">The file will be merged in a still image video with the preview file on upload.</target> | 4909 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">767</context></context-group> |
4349 | 4910 | </trans-unit> | |
4350 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">768</context></context-group></trans-unit><trans-unit id="9d90195d5f6d7aa869c86e331a91e0feef8e4657" datatype="html"> | 4911 | <trans-unit id="02c07d8c482b71d6409c4cd3a20d604cc0e11ea1" datatype="html"> |
4351 | <source>Output formats</source><target state="new">Output formats</target> | 4912 | <source>The file will be merged in a still image video with the preview file on upload.</source> |
4352 | 4913 | <target state="new">The file will be merged in a still image video with the preview file on upload.</target> | |
4353 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">775</context></context-group></trans-unit><trans-unit id="7ceaf938d33be18d0e221b07ac3ed9d7e7142054" datatype="html"> | 4914 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">768</context></context-group> |
4354 | <source>WebTorrent enabled</source><target state="new">WebTorrent enabled</target> | 4915 | </trans-unit> |
4355 | 4916 | <trans-unit id="9d90195d5f6d7aa869c86e331a91e0feef8e4657" datatype="html"> | |
4356 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">781</context></context-group></trans-unit> | 4917 | <source>Output formats</source> |
4357 | 4918 | <target state="new">Output formats</target> | |
4358 | 4919 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">775</context></context-group> | |
4359 | 4920 | </trans-unit> | |
4921 | <trans-unit id="7ceaf938d33be18d0e221b07ac3ed9d7e7142054" datatype="html"> | ||
4922 | <source>WebTorrent enabled</source> | ||
4923 | <target state="new">WebTorrent enabled</target> | ||
4924 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">781</context></context-group> | ||
4925 | </trans-unit> | ||
4360 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 4926 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
4361 | <source>HLS with P2P support enabled</source> | 4927 | <source>HLS with P2P support enabled</source> |
4362 | <target state="new">HLS with P2P support enabled</target> | 4928 | <target state="new">HLS with P2P support enabled</target> |
4363 | 4929 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">800</context></context-group> | |
4364 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">800</context></context-group></trans-unit><trans-unit id="4279c0d1cd3a3396e93020c46f9eab4189b3d279" datatype="html"> | 4930 | </trans-unit> |
4365 | <source>Resolutions to generate per enabled format</source><target state="new">Resolutions to generate per enabled format</target> | 4931 | <trans-unit id="4279c0d1cd3a3396e93020c46f9eab4189b3d279" datatype="html"> |
4366 | 4932 | <source>Resolutions to generate per enabled format</source> | |
4367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">822</context></context-group></trans-unit><trans-unit id="c5bc90e334dc36ba82d4050e69b024713f86e71f" datatype="html"> | 4933 | <target state="new">Resolutions to generate per enabled format</target> |
4368 | <source> The original file resolution will be the default target if no option is selected. </source><target state="new"> The original file resolution will be the default target if no option is selected. </target> | 4934 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">822</context></context-group> |
4935 | </trans-unit> | ||
4936 | <trans-unit id="c5bc90e334dc36ba82d4050e69b024713f86e71f" datatype="html"> | ||
4937 | <source>The original file resolution will be the default target if no option is selected.</source> | ||
4938 | <target state="new"> The original file resolution will be the default target if no option is selected. </target> | ||
4369 | <context-group purpose="location"> | 4939 | <context-group purpose="location"> |
4370 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4940 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
4371 | <context context-type="linenumber">838,839</context> | 4941 | <context context-type="linenumber">838,839</context> |
@@ -4374,407 +4944,415 @@ The link will expire within 1 hour.</target> | |||
4374 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> | 4944 | <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> |
4375 | <source>Transcoding threads</source> | 4945 | <source>Transcoding threads</source> |
4376 | <target state="new">Transcoding threads</target> | 4946 | <target state="new">Transcoding threads</target> |
4377 | 4947 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group> | |
4378 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">850</context></context-group></trans-unit> | 4948 | </trans-unit> |
4379 | |||
4380 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> | 4949 | <trans-unit id="f05f4a8b97269a2da6d7fcc6e86fbfafd16e30bd" datatype="html"> |
4381 | <source>CACHE</source> | 4950 | <source>CACHE</source> |
4382 | <target state="new">CACHE</target> | 4951 | <target state="new">CACHE</target> |
4383 | 4952 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1022</context></context-group> | |
4384 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1022</context></context-group></trans-unit> | 4953 | </trans-unit> |
4385 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> | 4954 | <trans-unit id="3469b0eb5bd7b7f0e85c029cd82ae1912bb51677" datatype="html"> |
4386 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 4955 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
4387 | <target state="new"> | 4956 | <target state="new"> |
4388 | Some files are not federated, and fetched when necessary. Define their caching policies. | 4957 | Some files are not federated, and fetched when necessary. Define their caching policies. |
4389 | </target> | 4958 | </target> |
4390 | 4959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1024</context></context-group> | |
4391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1024</context></context-group></trans-unit> | 4960 | </trans-unit> |
4392 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> | 4961 | <trans-unit id="e7845bb59f7887d60f1cf3b7b9fe5cfdb0b7e915" datatype="html"> |
4393 | <source>Number of previews to keep in cache</source> | 4962 | <source>Number of previews to keep in cache</source> |
4394 | <target state="new">Number of previews to keep in cache</target> | 4963 | <target state="new">Number of previews to keep in cache</target> |
4395 | 4964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1032</context></context-group> | |
4396 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1032</context></context-group></trans-unit><trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> | 4965 | </trans-unit> |
4397 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4966 | <trans-unit id="85d060be6823b8207e82fbc75429753f1beb06ce" datatype="html"> |
4398 | 4967 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source> | |
4399 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1038</context></context-group></trans-unit> | 4968 | <target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4969 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1038</context></context-group> | ||
4970 | </trans-unit> | ||
4400 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> | 4971 | <trans-unit id="478d017e2701ae21cefab20e7226702d77f15727" datatype="html"> |
4401 | <source>Number of video captions to keep in cache</source> | 4972 | <source>Number of video captions to keep in cache</source> |
4402 | <target state="new">Number of video captions to keep in cache</target> | 4973 | <target state="new">Number of video captions to keep in cache</target> |
4403 | 4974 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group> | |
4404 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1044</context></context-group></trans-unit><trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> | 4975 | </trans-unit> |
4405 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 4976 | <trans-unit id="05c5e2816638b3916627b407da27f08c4f0668d4" datatype="html"> |
4406 | 4977 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source> | |
4407 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1050</context></context-group></trans-unit> | 4978 | <target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> |
4979 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1050</context></context-group> | ||
4980 | </trans-unit> | ||
4408 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> | 4981 | <trans-unit id="ede5494c4a39e72d3e21a5fefdc3d966da4a3e00" datatype="html"> |
4409 | <source>CUSTOMIZATIONS</source> | 4982 | <source>CUSTOMIZATIONS</source> |
4410 | <target state="new">CUSTOMIZATIONS</target> | 4983 | <target state="new">CUSTOMIZATIONS</target> |
4411 | 4984 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1062</context></context-group> | |
4412 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1062</context></context-group></trans-unit> | 4985 | </trans-unit> |
4413 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> | 4986 | <trans-unit id="7473fbca4ff699b020fc8894bad4c88611c76f5c" datatype="html"> |
4414 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 4987 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
4415 | <target state="new"> | 4988 | <target state="new"> |
4416 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. | 4989 | Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. |
4417 | </target> | 4990 | </target> |
4418 | 4991 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1064</context></context-group> | |
4419 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1064</context></context-group></trans-unit> | 4992 | </trans-unit> |
4420 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> | 4993 | <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> |
4421 | <source>JavaScript</source> | 4994 | <source>JavaScript</source> |
4422 | <target state="new">JavaScript</target> | 4995 | <target state="new">JavaScript</target> |
4423 | 4996 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1073</context></context-group> | |
4424 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1073</context></context-group></trans-unit> | 4997 | </trans-unit> |
4425 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> | 4998 | <trans-unit id="782afa7c58d912592d73fce888ffce8542a4acf3" datatype="html"> |
4426 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> | 4999 | <source>Write JavaScript code directly.<x id="LINE_BREAK"/>Example: <x id="START_TAG_PRE"/>console.log('my instance is amazing');<x id="CLOSE_TAG_PRE"/></source> |
4427 | <target state="new"> | 5000 | <target state="new"> |
4428 | Write JavaScript code directly. | 5001 | Write JavaScript code directly. |
4429 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/>Example: | 5002 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/>Example: |
4430 | <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/>console.log('my instance is amazing'); | 5003 | <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/>console.log('my instance is amazing'); |
4431 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 5004 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4432 | </target> | 5005 | </target> |
4433 | 5006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1077</context></context-group> | |
4434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1077</context></context-group></trans-unit> | 5007 | </trans-unit> |
4435 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 5008 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
4436 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> | 5009 | <source>Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Prepend with <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> to override styles. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></source> |
4437 | color: red; | ||
4438 | <x id="INTERPOLATION_1"/> | ||
4439 | <x id="CLOSE_TAG_PRE"/> Prepend with <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> to override styles. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> | ||
4440 | color: red; | ||
4441 | <x id="INTERPOLATION_1"/> | ||
4442 | <x id="CLOSE_TAG_PRE"/></source> | ||
4443 | <target state="new"> | 5010 | <target state="new"> |
4444 | Write CSS code directly. Example: | 5011 | Write CSS code directly. Example: |
4445 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 5012 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
4446 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 5013 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
4447 | <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css | 5014 | <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css |
4448 | <x id="INTERPOLATION" equiv-text="{{ '{' }}"/> | 5015 | <x id="INTERPOLATION" equiv-text="{{ '{' }}"/> |
4449 | color: red; | 5016 | color: red; |
4450 | 5017 | ||
4451 | <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> | 5018 | <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> |
4452 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 5019 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4453 | Prepend with | 5020 | Prepend with |
4454 | <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>#custom-css | 5021 | <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>#custom-css |
4455 | <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> to override styles. Example: | 5022 | <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em>"/> to override styles. Example: |
4456 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 5023 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
4457 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> | 5024 | <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> |
4458 | <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css .logged-in-email | 5025 | <x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/> #custom-css .logged-in-email |
4459 | <x id="INTERPOLATION" equiv-text="{{ '{' }}"/> | 5026 | <x id="INTERPOLATION" equiv-text="{{ '{' }}"/> |
4460 | color: red; | 5027 | color: red; |
4461 | 5028 | ||
4462 | <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> | 5029 | <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/> |
4463 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> | 5030 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/> |
4464 | </target> | 5031 | </target> |
4465 | 5032 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1096</context></context-group> | |
4466 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1096</context></context-group></trans-unit><trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> | 5033 | </trans-unit> |
4467 | <source> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </source><target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> | 5034 | <trans-unit id="3128766f8e9bac2f95f5413fdb810e90c6084ef0" datatype="html"> |
4468 | 5035 | <source>It seems like the configuration is invalid. Please search for potential errors in the different tabs.</source> | |
4469 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1134</context></context-group></trans-unit><trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> | 5036 | <target state="new"> It seems like the configuration is invalid. Please search for potential errors in the different tabs. </target> |
4470 | <source> You cannot allow live replay if you don't enable transcoding. </source><target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 5037 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1134</context></context-group> |
4471 | 5038 | </trans-unit> | |
4472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1138</context></context-group></trans-unit> | 5039 | <trans-unit id="1411138433f379dbe80e0682284b2384d8e390cb" datatype="html"> |
5040 | <source>You cannot allow live replay if you don't enable transcoding.</source> | ||
5041 | <target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | ||
5042 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1138</context></context-group> | ||
5043 | </trans-unit> | ||
4473 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> | 5044 | <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> |
4474 | <source>Advanced configuration</source> | 5045 | <source>Advanced configuration</source> |
4475 | <target state="new">Advanced configuration</target> | 5046 | <target state="new">Advanced configuration</target> |
4476 | 5047 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1016</context></context-group> | |
4477 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1016</context></context-group></trans-unit> | 5048 | </trans-unit> |
4478 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> | 5049 | <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> |
4479 | <source>Update configuration</source> | 5050 | <source>Update configuration</source> |
4480 | <target state="new">Update configuration</target> | 5051 | <target state="new">Update configuration</target> |
4481 | 5052 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1141</context></context-group> | |
4482 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1141</context></context-group></trans-unit> | 5053 | </trans-unit> |
4483 | |||
4484 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 5054 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
4485 | <source>VIDEO SETTINGS</source> | 5055 | <source>VIDEO SETTINGS</source> |
4486 | <target state="new">VIDEO SETTINGS</target> | 5056 | <target state="translated">VİDEO AYARLARI</target> |
4487 | 5057 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group> | |
4488 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 5058 | </trans-unit> |
4489 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 5059 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4490 | <source>NOTIFICATIONS</source> | 5060 | <source>NOTIFICATIONS</source> |
4491 | <target state="new">NOTIFICATIONS</target> | 5061 | <target state="translated">BİLDİRİMLER</target> |
4492 | 5062 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group> | |
4493 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> | 5063 | </trans-unit> |
4494 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 5064 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4495 | <source>INTERFACE</source> | 5065 | <source>INTERFACE</source> |
4496 | <target state="new">INTERFACE</target> | 5066 | <target state="translated">ARAYÜZ</target> |
4497 | 5067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group> | |
4498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | 5068 | </trans-unit> |
4499 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 5069 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4500 | <source>PASSWORD</source> | 5070 | <source>PASSWORD</source> |
4501 | <target state="new">PASSWORD</target> | 5071 | <target state="translated">ŞİFRE</target> |
4502 | 5072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group> | |
4503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | 5073 | </trans-unit> |
4504 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 5074 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4505 | <source>EMAIL</source> | 5075 | <source>EMAIL</source> |
4506 | <target state="new">EMAIL</target> | 5076 | <target state="translated">E-POSTA</target> |
4507 | 5077 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group> | |
4508 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> | 5078 | </trans-unit> |
4509 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 5079 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4510 | <source>DANGER ZONE</source> | 5080 | <source>DANGER ZONE</source> |
4511 | <target state="new">DANGER ZONE</target> | 5081 | <target state="new">DANGER ZONE</target> |
4512 | 5082 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">77</context></context-group> | |
4513 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">198</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">198</context></context-group></trans-unit> | 5083 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">198</context></context-group> |
5084 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">198</context></context-group> | ||
5085 | </trans-unit> | ||
4514 | <trans-unit id="4915431133669985304" datatype="html"> | 5086 | <trans-unit id="4915431133669985304" datatype="html"> |
4515 | <source>Profile</source> | 5087 | <source>Profile</source> |
4516 | <target state="new">Profile</target> | 5088 | <target state="new">Profile</target> |
4517 | 5089 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">170</context></context-group> | |
4518 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">170</context></context-group></trans-unit> | 5090 | </trans-unit> |
4519 | <trans-unit id="1963136290621768454" datatype="html"> | 5091 | <trans-unit id="1963136290621768454" datatype="html"> |
4520 | <source>Resolution</source> | 5092 | <source>Resolution</source> |
4521 | <target state="new">Resolution</target> | 5093 | <target state="translated">Çözünürlük</target> |
4522 | 5094 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">179</context></context-group> | |
4523 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">179</context></context-group></trans-unit> | 5095 | </trans-unit> |
4524 | <trans-unit id="7814358426066520520" datatype="html"> | 5096 | <trans-unit id="7814358426066520520" datatype="html"> |
4525 | <source>Aspect ratio</source> | 5097 | <source>Aspect ratio</source> |
4526 | <target state="new">Aspect ratio</target> | 5098 | <target state="new">Aspect ratio</target> |
4527 | 5099 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">180</context></context-group> | |
4528 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">180</context></context-group></trans-unit> | 5100 | </trans-unit> |
4529 | <trans-unit id="44862519224794374" datatype="html"> | 5101 | <trans-unit id="44862519224794374" datatype="html"> |
4530 | <source>Average frame rate</source> | 5102 | <source>Average frame rate</source> |
4531 | <target state="new">Average frame rate</target> | 5103 | <target state="new">Average frame rate</target> |
4532 | 5104 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">181</context></context-group> | |
4533 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">181</context></context-group></trans-unit> | 5105 | </trans-unit> |
4534 | <trans-unit id="5053683525387462246" datatype="html"> | 5106 | <trans-unit id="5053683525387462246" datatype="html"> |
4535 | <source>Pixel format</source> | 5107 | <source>Pixel format</source> |
4536 | <target state="new">Pixel format</target> | 5108 | <target state="new">Pixel format</target> |
4537 | 5109 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">182</context></context-group> | |
4538 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> | 5110 | </trans-unit> |
4539 | <trans-unit id="7858676566953242358" datatype="html"> | 5111 | <trans-unit id="7858676566953242358" datatype="html"> |
4540 | <source>Sample rate</source> | 5112 | <source>Sample rate</source> |
4541 | <target state="new">Sample rate</target> | 5113 | <target state="new">Sample rate</target> |
4542 | 5114 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">186</context></context-group> | |
4543 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 5115 | </trans-unit> |
4544 | <trans-unit id="5403856660543890284" datatype="html"> | 5116 | <trans-unit id="5403856660543890284" datatype="html"> |
4545 | <source>Channel Layout</source> | 5117 | <source>Channel Layout</source> |
4546 | <target state="new">Channel Layout</target> | 5118 | <target state="new">Channel Layout</target> |
4547 | 5119 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">187</context></context-group> | |
4548 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">187</context></context-group></trans-unit> | 5120 | </trans-unit> |
4549 | <trans-unit id="b5398623f87ee72ed23f5023918db1707771e925" datatype="html"> | 5121 | <trans-unit id="b5398623f87ee72ed23f5023918db1707771e925" datatype="html"> |
4550 | <source>Video settings</source> | 5122 | <source>Video settings</source> |
4551 | <target state="new">Video settings</target> | 5123 | <target state="translated">Video ayarları</target> |
4552 | 5124 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">18</context></context-group> | |
4553 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 5125 | </trans-unit> |
4554 | <trans-unit id="dc7b800a27960e33af36f16f6c25aaf5776464f7" datatype="html"> | 5126 | <trans-unit id="dc7b800a27960e33af36f16f6c25aaf5776464f7" datatype="html"> |
4555 | <source>Interface settings</source> | 5127 | <source>Interface settings</source> |
4556 | <target state="new">Interface settings</target> | 5128 | <target state="translated">Arayüz ayarları</target> |
4557 | 5129 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">22</context></context-group> | |
4558 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 5130 | </trans-unit> |
4559 | <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9" datatype="html"> | 5131 | <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9" datatype="html"> |
4560 | <source>Change password</source> | 5132 | <source>Change password</source> |
4561 | <target state="new">Change password</target> | 5133 | <target state="translated">Şifreyi değiştir</target> |
4562 | 5134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">5</context></context-group> | |
4563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">5</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 5135 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">33</context></context-group> |
5136 | </trans-unit> | ||
4564 | <trans-unit id="0dd390d056411e1709ec97ec51c46d78600e3f7b" datatype="html"> | 5137 | <trans-unit id="0dd390d056411e1709ec97ec51c46d78600e3f7b" datatype="html"> |
4565 | <source>Current password</source> | 5138 | <source>Current password</source> |
4566 | <target state="new">Current password</target> | 5139 | <target state="translated">Şimdiki şifre</target> |
4567 | 5140 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">8</context></context-group> | |
4568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 5141 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">28</context></context-group> |
5142 | </trans-unit> | ||
4569 | <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229" datatype="html"> | 5143 | <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229" datatype="html"> |
4570 | <source>New password</source> | 5144 | <source>New password</source> |
4571 | <target state="new">New password</target> | 5145 | <target state="translated">Yeni şifre</target> |
4572 | 5146 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">17</context></context-group> | |
4573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 5147 | </trans-unit> |
4574 | <trans-unit id="ede41f01c781b168a783cfcefc6fb67d48780d9b" datatype="html"> | 5148 | <trans-unit id="ede41f01c781b168a783cfcefc6fb67d48780d9b" datatype="html"> |
4575 | <source>Confirm new password</source> | 5149 | <source>Confirm new password</source> |
4576 | <target state="new">Confirm new password</target> | 5150 | <target state="translated">Yeni şifreyi doğrula</target> |
4577 | 5151 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">26</context></context-group> | |
4578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 5152 | </trans-unit> |
4579 | <trans-unit id="20f62f24170d57b1efeb2387a0949f482cd4d129" datatype="html"> | 5153 | <trans-unit id="20f62f24170d57b1efeb2387a0949f482cd4d129" datatype="html"> |
4580 | <source>Default policy on videos containing sensitive content</source> | 5154 | <source>Default policy on videos containing sensitive content</source> |
4581 | <target state="new">Default policy on videos containing sensitive content</target> | 5155 | <target state="new">Default policy on videos containing sensitive content</target> |
4582 | 5156 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">4</context></context-group> | |
4583 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 5157 | </trans-unit> |
4584 | <trans-unit id="8fbbb5d7bbc4df74ac19fe046f7b9d4f2fd80737" datatype="html"> | 5158 | <trans-unit id="8fbbb5d7bbc4df74ac19fe046f7b9d4f2fd80737" datatype="html"> |
4585 | <source>With <x id="START_TAG_STRONG"/>Do not list<x id="CLOSE_TAG_STRONG"/> or <x id="START_TAG_STRONG"/>Blur thumbnails<x id="CLOSE_TAG_STRONG"/>, a confirmation will be requested to watch the video. </source> | 5159 | <source>With <x id="START_TAG_STRONG"/>Do not list<x id="CLOSE_TAG_STRONG"/> or <x id="START_TAG_STRONG"/>Blur thumbnails<x id="CLOSE_TAG_STRONG"/>, a confirmation will be requested to watch the video. </source> |
4586 | <target state="new">With | 5160 | <target state="new">With |
4587 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Do not list | 5161 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Do not list |
4588 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or | 5162 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> or |
4589 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails | 5163 | <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Blur thumbnails |
4590 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. | 5164 | <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, a confirmation will be requested to watch the video. |
4591 | </target> | 5165 | </target> |
4592 | 5166 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">8</context></context-group> | |
4593 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 5167 | </trans-unit> |
4594 | <trans-unit id="be05139c85b590f407c8204605601ab510247f9f" datatype="html"> | 5168 | <trans-unit id="be05139c85b590f407c8204605601ab510247f9f" datatype="html"> |
4595 | <source>Policy for sensitive videos</source> | 5169 | <source>Policy for sensitive videos</source> |
4596 | <target state="new">Policy for sensitive videos</target> | 5170 | <target state="new">Policy for sensitive videos</target> |
4597 | 5171 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">15</context></context-group> | |
4598 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 5172 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">116</context></context-group> |
5173 | </trans-unit> | ||
4599 | <trans-unit id="ea8e7b15807cce2fea74798db2396a4de016e5c7" datatype="html"> | 5174 | <trans-unit id="ea8e7b15807cce2fea74798db2396a4de016e5c7" datatype="html"> |
4600 | <source>Only display videos in the following languages/subtitles</source> | 5175 | <source>Only display videos in the following languages/subtitles</source> |
4601 | <target state="new">Only display videos in the following languages/subtitles</target> | 5176 | <target state="new">Only display videos in the following languages/subtitles</target> |
4602 | 5177 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">25</context></context-group> | |
4603 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 5178 | </trans-unit> |
4604 | <trans-unit id="db930d0e3dbcb12963bec15cfec67fac6534542d" datatype="html"> | 5179 | <trans-unit id="db930d0e3dbcb12963bec15cfec67fac6534542d" datatype="html"> |
4605 | <source>In Recently added, Trending, Local, Most liked and Search pages</source> | 5180 | <source>In Recently added, Trending, Local, Most liked and Search pages</source> |
4606 | <target state="new">In Recently added, Trending, Local, Most liked and Search pages</target> | 5181 | <target state="new">In Recently added, Trending, Local, Most liked and Search pages</target> |
4607 | 5182 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">28</context></context-group> | |
4608 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 5183 | </trans-unit> |
4609 | <trans-unit id="984be691d289644c6d40fa2cc858093be31ab58e" datatype="html"> | 5184 | <trans-unit id="984be691d289644c6d40fa2cc858093be31ab58e" datatype="html"> |
4610 | <source>Add a new language</source> | 5185 | <source>Add a new language</source> |
4611 | <target state="new">Add a new language</target> | 5186 | <target state="translated">Yeni bir dil ekle</target> |
4612 | 5187 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">36</context></context-group> | |
4613 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 5188 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">69</context></context-group> |
4614 | 5189 | </trans-unit> | |
4615 | <trans-unit id="03d1a9c026074c12ea3f2fb39a34bc6a18fedf05" datatype="html"> | 5190 | <trans-unit id="03d1a9c026074c12ea3f2fb39a34bc6a18fedf05" datatype="html"> |
4616 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> | 5191 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> |
4617 | <target state="new"> | 5192 | <target state="new"> |
4618 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> | 5193 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> |
4619 | <x id="INTERPOLATION" equiv-text="{{ user.pendingEmail }}"/> | 5194 | <x id="INTERPOLATION" equiv-text="{{ user.pendingEmail }}"/> |
4620 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> is awaiting email verification | 5195 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> is awaiting email verification |
4621 | </target> | 5196 | </target> |
4622 | 5197 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">10</context></context-group> | |
4623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 5198 | </trans-unit> |
4624 | <trans-unit id="d20a2fa4a3360caa8825e49a31b5fd3a442ac219" datatype="html"> | 5199 | <trans-unit id="d20a2fa4a3360caa8825e49a31b5fd3a442ac219" datatype="html"> |
4625 | <source>New email</source> | 5200 | <source>New email</source> |
4626 | <target state="new">New email</target> | 5201 | <target state="translated">Yeni e-posta</target> |
4627 | 5202 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">17</context></context-group> | |
4628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 5203 | </trans-unit> |
4629 | |||
4630 | |||
4631 | |||
4632 | <trans-unit id="820741079d4bc32fb98b7a871a6e507b18b6c85c" datatype="html"> | 5204 | <trans-unit id="820741079d4bc32fb98b7a871a6e507b18b6c85c" datatype="html"> |
4633 | <source>Change email</source> | 5205 | <source>Change email</source> |
4634 | <target state="new">Change email</target> | 5206 | <target state="translated">E-postayı değiştir</target> |
4635 | 5207 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">36</context></context-group> | |
4636 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 5208 | </trans-unit> |
4637 | <trans-unit id="27a56aad79d8b61269ed303f11664cc78bcc2522" datatype="html"> | 5209 | <trans-unit id="27a56aad79d8b61269ed303f11664cc78bcc2522" datatype="html"> |
4638 | <source>Theme</source> | 5210 | <source>Theme</source> |
4639 | <target state="new">Theme</target> | 5211 | <target state="translated">Tema</target> |
4640 | 5212 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">4</context></context-group> | |
4641 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">255</context></context-group></trans-unit> | 5213 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">255</context></context-group> |
5214 | </trans-unit> | ||
4642 | <trans-unit id="2fb6d9783b2c3ce93df9cee3542cda87aa60a808" datatype="html"> | 5215 | <trans-unit id="2fb6d9783b2c3ce93df9cee3542cda87aa60a808" datatype="html"> |
4643 | <source>instance default</source> | 5216 | <source>instance default</source> |
4644 | <target state="new">instance default</target> | 5217 | <target state="new">instance default</target> |
4645 | 5218 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">8</context></context-group> | |
4646 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 5219 | </trans-unit> |
4647 | <trans-unit id="2aad0303b66062ca5fb031b72df15b2cbce6e35d" datatype="html"> | 5220 | <trans-unit id="2aad0303b66062ca5fb031b72df15b2cbce6e35d" datatype="html"> |
4648 | <source>peertube default</source> | 5221 | <source>peertube default</source> |
4649 | <target state="new">peertube default</target> | 5222 | <target state="new">peertube default</target> |
4650 | 5223 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">9</context></context-group> | |
4651 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 5224 | </trans-unit> |
4652 | <trans-unit id="2dc22fcebf6aaa76196d2def33a827a34bf910bf" datatype="html"> | 5225 | <trans-unit id="2dc22fcebf6aaa76196d2def33a827a34bf910bf" datatype="html"> |
4653 | <source>Change ownership</source> | 5226 | <source>Change ownership</source> |
4654 | <target state="new">Change ownership</target> | 5227 | <target state="new">Change ownership</target> |
4655 | 5228 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">3</context></context-group> | |
4656 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 5229 | </trans-unit> |
4657 | <trans-unit id="046c4fa30411e6b1aa46dc51bf82d07b1adf14d4" datatype="html"> | 5230 | <trans-unit id="046c4fa30411e6b1aa46dc51bf82d07b1adf14d4" datatype="html"> |
4658 | <source>Select the next owner</source> | 5231 | <source>Select the next owner</source> |
4659 | <target state="new">Select the next owner</target> | 5232 | <target state="new">Select the next owner</target> |
4660 | 5233 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">10</context></context-group> | |
4661 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 5234 | </trans-unit> |
4662 | <trans-unit id="addd26e1d0d8a38fcfceeb76642c6f838f9525e3" datatype="html"> | 5235 | <trans-unit id="addd26e1d0d8a38fcfceeb76642c6f838f9525e3" datatype="html"> |
4663 | <source>Search your videos</source> | 5236 | <source>Search your videos</source> |
4664 | <target state="new">Search your videos</target> | 5237 | <target state="new">Search your videos</target> |
4665 | 5238 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">23</context></context-group> | |
4666 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 5239 | </trans-unit> |
4667 | <trans-unit id="fbc450919a486e8ed311a7e91a41987d47d83804" datatype="html"> | 5240 | <trans-unit id="fbc450919a486e8ed311a7e91a41987d47d83804" datatype="html"> |
4668 | <source>Accept ownership</source> | 5241 | <source>Accept ownership</source> |
4669 | <target state="new">Accept ownership</target> | 5242 | <target state="new">Accept ownership</target> |
4670 | 5243 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">3</context></context-group> | |
4671 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 5244 | </trans-unit> |
4672 | <trans-unit id="765e3847550ed5aab483c2a03f320090aa0a13f2" datatype="html"> | 5245 | <trans-unit id="765e3847550ed5aab483c2a03f320090aa0a13f2" datatype="html"> |
4673 | <source>Select a channel to receive the video</source> | 5246 | <source>Select a channel to receive the video</source> |
4674 | <target state="new">Select a channel to receive the video</target> | 5247 | <target state="new">Select a channel to receive the video</target> |
4675 | 5248 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">10</context></context-group> | |
4676 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 5249 | </trans-unit> |
4677 | <trans-unit id="798f761c8cf39e72ad38f2237dac3a3ad33c6a30" datatype="html"> | 5250 | <trans-unit id="798f761c8cf39e72ad38f2237dac3a3ad33c6a30" datatype="html"> |
4678 | <source>Channel that will receive the video</source> | 5251 | <source>Channel that will receive the video</source> |
4679 | <target state="new">Channel that will receive the video</target> | 5252 | <target state="new">Channel that will receive the video</target> |
4680 | 5253 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">13</context></context-group> | |
4681 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 5254 | </trans-unit> |
4682 | <trans-unit id="e03a27ba50b0be207b4d17d044ab5ea300d70b43" datatype="html"> | 5255 | <trans-unit id="e03a27ba50b0be207b4d17d044ab5ea300d70b43" datatype="html"> |
4683 | <source>My ownership changes</source> | 5256 | <source>My ownership changes</source> |
4684 | <target state="new">My ownership changes</target> | 5257 | <target state="new">My ownership changes</target> |
4685 | 5258 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">3</context></context-group> | |
4686 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 5259 | </trans-unit> |
4687 | <trans-unit id="e98239d8a6be1100119ff4b5630c822b82786740" datatype="html"> | 5260 | <trans-unit id="e98239d8a6be1100119ff4b5630c822b82786740" datatype="html"> |
4688 | <source>Initiator</source> | 5261 | <source>Initiator</source> |
4689 | <target state="new">Initiator</target> | 5262 | <target state="new">Initiator</target> |
4690 | 5263 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">19</context></context-group> | |
4691 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 5264 | </trans-unit> |
4692 | <trans-unit id="b08d67fe4e192ea8352bebdc6aabbd1bb7abed02" datatype="html"> | 5265 | <trans-unit id="b08d67fe4e192ea8352bebdc6aabbd1bb7abed02" datatype="html"> |
4693 | <source>Created <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 5266 | <source>Created <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
4694 | <target state="new"/> | 5267 | <target state="new"/> |
4695 | 5268 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">22</context></context-group> | |
4696 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 5269 | </trans-unit> |
4697 | <trans-unit id="81b97b8ea996ad1e4f9fca8415021850214884b1" datatype="html"> | 5270 | <trans-unit id="81b97b8ea996ad1e4f9fca8415021850214884b1" datatype="html"> |
4698 | <source>Status</source> | 5271 | <source>Status</source> |
4699 | <target state="new">Status</target> | 5272 | <target state="new">Status</target> |
4700 | 5273 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">25</context></context-group> | |
4701 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 5274 | </trans-unit> |
4702 | <trans-unit id="bde01505620f59f773377f94034e4038e6bd50c0" datatype="html"> | 5275 | <trans-unit id="bde01505620f59f773377f94034e4038e6bd50c0" datatype="html"> |
4703 | <source>Account page</source> | 5276 | <source>Account page</source> |
4704 | <target state="new">Account page</target> | 5277 | <target state="new">Account page</target> |
4705 | 5278 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">185</context></context-group> | |
4706 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">185</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">191</context></context-group></trans-unit> | 5279 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">191</context></context-group> |
5280 | </trans-unit> | ||
4707 | <trans-unit id="e8a34c00da7e95d407a66f33f28943a480dbba82" datatype="html"> | 5281 | <trans-unit id="e8a34c00da7e95d407a66f33f28943a480dbba82" datatype="html"> |
4708 | <source><x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> </source> | 5282 | <source><x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> </source> |
4709 | <target state="new"> | 5283 | <target state="new"> |
4710 | <x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> | 5284 | <x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> |
4711 | </target> | 5285 | </target> |
4712 | 5286 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">192</context></context-group> | |
4713 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">192</context></context-group></trans-unit> | 5287 | </trans-unit> |
4714 | <trans-unit id="cee3f34700944cc5786627e1b23073d946644620" datatype="html"> | 5288 | <trans-unit id="cee3f34700944cc5786627e1b23073d946644620" datatype="html"> |
4715 | <source>No ownership change request found.</source> | 5289 | <source>No ownership change request found.</source> |
4716 | <target state="new">No ownership change request found.</target> | 5290 | <target state="new">No ownership change request found.</target> |
4717 | 5291 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">83</context></context-group> | |
4718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 5292 | </trans-unit> |
4719 | <trans-unit id="4247400351982331798" datatype="html"> | 5293 | <trans-unit id="4247400351982331798" datatype="html"> |
4720 | <source>Account settings</source> | 5294 | <source>Account settings</source> |
4721 | <target state="new">Account settings</target> | 5295 | <target state="translated">Hesap ayarları</target> |
4722 | 5296 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">29</context></context-group> | |
4723 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">29</context></context-group></trans-unit> | 5297 | </trans-unit> |
4724 | |||
4725 | |||
4726 | <trans-unit id="2864486939135008600" datatype="html"> | 5298 | <trans-unit id="2864486939135008600" datatype="html"> |
4727 | <source>Playlist elements</source> | 5299 | <source>Playlist elements</source> |
4728 | <target state="new">Playlist elements</target> | 5300 | <target state="new">Playlist elements</target> |
4729 | 5301 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">58</context></context-group> | |
4730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 5302 | </trans-unit> |
4731 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 5303 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4732 | <source>My imports</source> | 5304 | <source>My imports</source> |
4733 | <target state="new">My imports</target> | 5305 | <target state="new">My imports</target> |
4734 | 5306 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">11</context></context-group> | |
4735 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 5307 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">3</context></context-group> |
5308 | </trans-unit> | ||
4736 | <trans-unit id="574cce019fb31925d11095591d4321847ff1c7a5" datatype="html"> | 5309 | <trans-unit id="574cce019fb31925d11095591d4321847ff1c7a5" datatype="html"> |
4737 | <source>Create video channel</source> | 5310 | <source>Create video channel</source> |
4738 | <target state="new">Create video channel</target> | 5311 | <target state="new">Create video channel</target> |
4739 | 5312 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">19</context></context-group> | |
4740 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 5313 | </trans-unit> |
4741 | <trans-unit id="8fef247fd0c5bf790151f7661cafc4b7fd0397f3" datatype="html"> | 5314 | <trans-unit id="8fef247fd0c5bf790151f7661cafc4b7fd0397f3" datatype="html"> |
4742 | <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers </source> | 5315 | <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers </source> |
4743 | <target state="new"> | 5316 | <target state="new"> |
4744 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers | 5317 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers |
4745 | </target> | 5318 | </target> |
4746 | 5319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">32</context></context-group> | |
4747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 5320 | </trans-unit> |
4748 | <trans-unit id="915d4704e1649016512cbf5eeac55b4dbf933558" datatype="html"> | 5321 | <trans-unit id="915d4704e1649016512cbf5eeac55b4dbf933558" datatype="html"> |
4749 | <source>Example: my_channel</source> | 5322 | <source>Example: my_channel</source> |
4750 | <target state="new">Example: my_channel</target> | 5323 | <target state="new">Example: my_channel</target> |
4751 | 5324 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">35</context></context-group> | |
4752 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 5325 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">35</context></context-group> |
5326 | </trans-unit> | ||
4753 | <trans-unit id="cc895c3d23ec739ac77d472ff979980195fd30c1" datatype="html"> | 5327 | <trans-unit id="cc895c3d23ec739ac77d472ff979980195fd30c1" datatype="html"> |
4754 | <source>CHANNEL</source> | 5328 | <source>CHANNEL</source> |
4755 | <target state="new">CHANNEL</target> | 5329 | <target state="new">CHANNEL</target> |
4756 | 5330 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">26</context></context-group> | |
4757 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 5331 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">26</context></context-group> |
5332 | </trans-unit> | ||
4758 | <trans-unit id="66ad6eb3f06251c75325b780943a07f94c949df7" datatype="html"> | 5333 | <trans-unit id="66ad6eb3f06251c75325b780943a07f94c949df7" datatype="html"> |
4759 | <source>Short text to tell people how they can support your channel (membership platform...).<br /><br /> | 5334 | <source>Short text to tell people how they can support your channel (membership platform...).<br /><br /> When you will upload a video in this channel, the video support field will be automatically filled by this text.</source> |
4760 | When you will upload a video in this channel, the video support field will be automatically filled by this text.</source> | 5335 | <target state="new">Short text to tell people how they can support your channel (membership platform...).<br /><br /> |
4761 | <target state="new">Short text to tell people how they can support your channel (membership platform...).<br /><br /> | ||
4762 | When you will upload a video in this channel, the video support field will be automatically filled by this text.</target> | 5336 | When you will upload a video in this channel, the video support field will be automatically filled by this text.</target> |
4763 | 5337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">77</context></context-group> | |
4764 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">77</context></context-group></trans-unit> | 5338 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">77</context></context-group> |
5339 | </trans-unit> | ||
4765 | <trans-unit id="6ff0350d2659cdb4722370bf5dafbad651f441cd" datatype="html"> | 5340 | <trans-unit id="6ff0350d2659cdb4722370bf5dafbad651f441cd" datatype="html"> |
4766 | <source>Overwrite support field of all videos of this channel</source> | 5341 | <source>Overwrite support field of all videos of this channel</source> |
4767 | <target state="new">Overwrite support field of all videos of this channel</target> | 5342 | <target state="new">Overwrite support field of all videos of this channel</target> |
4768 | 5343 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">92</context></context-group> | |
4769 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> | 5344 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">92</context></context-group> |
5345 | </trans-unit> | ||
4770 | <trans-unit id="4b50f2ef2e8b9a24e674d12012ee310f378a5503" datatype="html"> | 5346 | <trans-unit id="4b50f2ef2e8b9a24e674d12012ee310f378a5503" datatype="html"> |
4771 | <source><x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> subscribers </source> | 5347 | <source><x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> subscribers </source> |
4772 | <target state="new"> | 5348 | <target state="new"> |
4773 | <x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> subscribers | 5349 | <x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> subscribers |
4774 | </target> | 5350 | </target> |
4775 | 5351 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.html</context><context context-type="linenumber">28</context></context-group> | |
4776 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit><trans-unit id="82cc4fc020efd482bb931ebd71db5868fc904629" datatype="html"> | 5352 | </trans-unit> |
4777 | <source>Upload a new avatar</source><target state="new">Upload a new avatar</target> | 5353 | <trans-unit id="82cc4fc020efd482bb931ebd71db5868fc904629" datatype="html"> |
5354 | <source>Upload a new avatar</source> | ||
5355 | <target state="new">Upload a new avatar</target> | ||
4778 | <context-group purpose="location"> | 5356 | <context-group purpose="location"> |
4779 | <context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.html</context> | 5357 | <context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.html</context> |
4780 | <context context-type="linenumber">10</context> | 5358 | <context context-type="linenumber">10</context> |
@@ -4787,18 +5365,18 @@ The link will expire within 1 hour.</target> | |||
4787 | <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191" datatype="html"> | 5365 | <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191" datatype="html"> |
4788 | <source>Target</source> | 5366 | <source>Target</source> |
4789 | <target state="new">Target</target> | 5367 | <target state="new">Target</target> |
4790 | 5368 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">17</context></context-group> | |
4791 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 5369 | </trans-unit> |
4792 | <trans-unit id="a5707e9905e079605243397ee111b8be449941aa" datatype="html"> | 5370 | <trans-unit id="a5707e9905e079605243397ee111b8be449941aa" datatype="html"> |
4793 | <source>See the error</source> | 5371 | <source>See the error</source> |
4794 | <target state="new">See the error</target> | 5372 | <target state="new">See the error</target> |
4795 | 5373 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">26</context></context-group> | |
4796 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 5374 | </trans-unit> |
4797 | <trans-unit id="842b1f5e4942fb515ef790308ca9ea6a60b4b331" datatype="html"> | 5375 | <trans-unit id="842b1f5e4942fb515ef790308ca9ea6a60b4b331" datatype="html"> |
4798 | <source>This video was deleted</source> | 5376 | <source>This video was deleted</source> |
4799 | <target state="new">This video was deleted</target> | 5377 | <target state="new">This video was deleted</target> |
4800 | 5378 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">49</context></context-group> | |
4801 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 5379 | </trans-unit> |
4802 | <trans-unit id="a86239658c3cf042e7c987bb0df7473a53d7517e" datatype="html"> | 5380 | <trans-unit id="a86239658c3cf042e7c987bb0df7473a53d7517e" datatype="html"> |
4803 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> imports</source> | 5381 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> imports</source> |
4804 | <target state="new">Showing | 5382 | <target state="new">Showing |
@@ -4806,55 +5384,58 @@ The link will expire within 1 hour.</target> | |||
4806 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of | 5384 | <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> of |
4807 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> imports | 5385 | <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> imports |
4808 | </target> | 5386 | </target> |
4809 | 5387 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">10</context></context-group> | |
4810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 5388 | </trans-unit> |
4811 | <trans-unit id="0b68f86015522b0dbd374822caefe74a62e3470f" datatype="html"> | 5389 | <trans-unit id="0b68f86015522b0dbd374822caefe74a62e3470f" datatype="html"> |
4812 | <source>Once you delete your account, there is no going back. You will be asked to confirm this action.</source> | 5390 | <source>Once you delete your account, there is no going back. You will be asked to confirm this action.</source> |
4813 | <target state="new">Once you delete your account, there is no going back. You will be asked to confirm this action.</target> | 5391 | <target state="new">Once you delete your account, there is no going back. You will be asked to confirm this action.</target> |
4814 | 5392 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context><context context-type="linenumber">2</context></context-group> | |
4815 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit> | 5393 | </trans-unit> |
4816 | <trans-unit id="9a2f889dde4574a6883c853d1034e75891b28c45" datatype="html"> | 5394 | <trans-unit id="9a2f889dde4574a6883c853d1034e75891b28c45" datatype="html"> |
4817 | <source>Delete your account</source> | 5395 | <source>Delete your account</source> |
4818 | <target state="new">Delete your account</target> | 5396 | <target state="translated">Hesabınızı silin</target> |
4819 | 5397 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context><context context-type="linenumber">4</context></context-group> | |
4820 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 5398 | </trans-unit> |
4821 | |||
4822 | <trans-unit id="f886abe6ca73a34403dde0578e71173cebe00428" datatype="html"> | 5399 | <trans-unit id="f886abe6ca73a34403dde0578e71173cebe00428" datatype="html"> |
4823 | <source>Channel page</source> | 5400 | <source>Channel page</source> |
4824 | <target state="new">Channel page</target> | 5401 | <target state="new">Channel page</target> |
4825 | 5402 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">27</context></context-group> | |
4826 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">182</context></context-group></trans-unit> | 5403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">30</context></context-group> |
5404 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">182</context></context-group> | ||
5405 | </trans-unit> | ||
4827 | <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add" datatype="html"> | 5406 | <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add" datatype="html"> |
4828 | <source>Created by <x id="INTERPOLATION"/></source> | 5407 | <source>Created by <x id="INTERPOLATION"/></source> |
4829 | <target state="new">Created by | 5408 | <target state="new">Created by |
4830 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/> | 5409 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/> |
4831 | </target> | 5410 | </target> |
4832 | 5411 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">35</context></context-group> | |
4833 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 5412 | </trans-unit> |
4834 | <trans-unit id="cd2d9bfd5a5f7bdc1d4f1242e8a35d74830b6ffe" datatype="html"> | 5413 | <trans-unit id="cd2d9bfd5a5f7bdc1d4f1242e8a35d74830b6ffe" datatype="html"> |
4835 | <source>Owner account page</source> | 5414 | <source>Owner account page</source> |
4836 | <target state="new">Owner account page</target> | 5415 | <target state="new">Owner account page</target> |
4837 | 5416 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">34</context></context-group> | |
4838 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 5417 | </trans-unit> |
4839 | <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913" datatype="html"> | 5418 | <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913" datatype="html"> |
4840 | <source>Go the owner account page</source> | 5419 | <source>Go the owner account page</source> |
4841 | <target state="new">Go the owner account page</target> | 5420 | <target state="new">Go the owner account page</target> |
4842 | 5421 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">30</context></context-group> | |
4843 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 5422 | </trans-unit> |
4844 | |||
4845 | <trans-unit id="29c45bf49891748f930ef78b2e09857498b15131" datatype="html"> | 5423 | <trans-unit id="29c45bf49891748f930ef78b2e09857498b15131" datatype="html"> |
4846 | <source><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Delete history </source> | 5424 | <source><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Delete history </source> |
4847 | <target state="new"/> | 5425 | <target state="new"/> |
4848 | 5426 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">24</context></context-group> | |
4849 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit><trans-unit id="945ab39294575b7271dde42240c0806dc4ff5076" datatype="html"> | 5427 | </trans-unit> |
4850 | <source>You don't have any video in your watch history yet.</source><target state="new">You don't have any video in your watch history yet.</target> | 5428 | <trans-unit id="945ab39294575b7271dde42240c0806dc4ff5076" datatype="html"> |
5429 | <source>You don't have any video in your watch history yet.</source> | ||
5430 | <target state="new">You don't have any video in your watch history yet.</target> | ||
4851 | <context-group purpose="location"> | 5431 | <context-group purpose="location"> |
4852 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> | 5432 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> |
4853 | <context context-type="linenumber">30</context> | 5433 | <context context-type="linenumber">30</context> |
4854 | </context-group> | 5434 | </context-group> |
4855 | </trans-unit> | 5435 | </trans-unit> |
4856 | <trans-unit id="4cd6feecd3cc5b969cdff7e217f0582c49118ead" datatype="html"> | 5436 | <trans-unit id="4cd6feecd3cc5b969cdff7e217f0582c49118ead" datatype="html"> |
4857 | <source>Open syndication dropdown</source><target state="new">Open syndication dropdown</target> | 5437 | <source>Open syndication dropdown</source> |
5438 | <target state="new">Open syndication dropdown</target> | ||
4858 | <context-group purpose="location"> | 5439 | <context-group purpose="location"> |
4859 | <context context-type="sourcefile">src/app/shared/shared-main/feeds/feed.component.html</context> | 5440 | <context context-type="sourcefile">src/app/shared/shared-main/feeds/feed.component.html</context> |
4860 | <context context-type="linenumber">3</context> | 5441 | <context context-type="linenumber">3</context> |
@@ -4867,299 +5448,318 @@ The link will expire within 1 hour.</target> | |||
4867 | <trans-unit id="9d2d802fa417a5a3f230cb5bcc975551a252c59c" datatype="html"> | 5448 | <trans-unit id="9d2d802fa417a5a3f230cb5bcc975551a252c59c" datatype="html"> |
4868 | <source><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Notification preferences </source> | 5449 | <source><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Notification preferences </source> |
4869 | <target state="new"/> | 5450 | <target state="new"/> |
4870 | 5451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">4</context></context-group> | |
4871 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 5452 | </trans-unit> |
4872 | <trans-unit id="e7f88c481ecdda90467acd3f4dbe934465cee30f" datatype="html"> | 5453 | <trans-unit id="e7f88c481ecdda90467acd3f4dbe934465cee30f" datatype="html"> |
4873 | <source>Newest first</source> | 5454 | <source>Newest first</source> |
4874 | <target state="new">Newest first</target> | 5455 | <target state="new">Newest first</target> |
4875 | 5456 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">11</context></context-group> | |
4876 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 5457 | </trans-unit> |
4877 | <trans-unit id="a05dac5ded54ab304817a823693e2af2ad1cffef" datatype="html"> | 5458 | <trans-unit id="a05dac5ded54ab304817a823693e2af2ad1cffef" datatype="html"> |
4878 | <source>Unread first</source> | 5459 | <source>Unread first</source> |
4879 | <target state="new">Unread first</target> | 5460 | <target state="new">Unread first</target> |
4880 | 5461 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">12</context></context-group> | |
4881 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> | 5462 | </trans-unit> |
4882 | <trans-unit id="58479ebfcc980e1ee37a8102bc4f9a35eca2f680" datatype="html"> | 5463 | <trans-unit id="58479ebfcc980e1ee37a8102bc4f9a35eca2f680" datatype="html"> |
4883 | <source>All read</source> | 5464 | <source>All read</source> |
4884 | <target state="new">All read</target> | 5465 | <target state="new">All read</target> |
4885 | 5466 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">26</context></context-group> | |
4886 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 5467 | </trans-unit> |
4887 | <trans-unit id="dd3b6c367381ddfa8f317b8e9b31c55368c65136" datatype="html"> | 5468 | <trans-unit id="dd3b6c367381ddfa8f317b8e9b31c55368c65136" datatype="html"> |
4888 | <source>Activities</source> | 5469 | <source>Activities</source> |
4889 | <target state="new">Activities</target> | 5470 | <target state="new">Activities</target> |
4890 | 5471 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">2</context></context-group> | |
4891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit> | 5472 | </trans-unit> |
4892 | <trans-unit id="847dffd493abbb2a5c71f3313f0eb730dd88a355" datatype="html"> | 5473 | <trans-unit id="847dffd493abbb2a5c71f3313f0eb730dd88a355" datatype="html"> |
4893 | <source>Web</source> | 5474 | <source>Web</source> |
4894 | <target state="new">Web</target> | 5475 | <target state="new">Web</target> |
4895 | 5476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">3</context></context-group> | |
4896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 5477 | </trans-unit> |
4897 | <trans-unit id="9d7a1c199570d42b4cc40d7886fcc7c06b0a35d2" datatype="html"> | 5478 | <trans-unit id="9d7a1c199570d42b4cc40d7886fcc7c06b0a35d2" datatype="html"> |
4898 | <source>My Playlists</source> | 5479 | <source>My Playlists</source> |
4899 | <target state="new">My Playlists</target> | 5480 | <target state="translated">Oynatma Listelerim</target> |
4900 | 5481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">4</context></context-group> | |
4901 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 5482 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">4</context></context-group> |
5483 | </trans-unit> | ||
4902 | <trans-unit id="b91219836ab865fd8aa041a8d6c3d84dd78115a4" datatype="html"> | 5484 | <trans-unit id="b91219836ab865fd8aa041a8d6c3d84dd78115a4" datatype="html"> |
4903 | <source>NEW PLAYLIST</source> | 5485 | <source>NEW PLAYLIST</source> |
4904 | <target state="new">NEW PLAYLIST</target> | 5486 | <target state="translated">YENİ OYNATMA LİSTESİ</target> |
4905 | 5487 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">25</context></context-group> | |
4906 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 5488 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">25</context></context-group> |
5489 | </trans-unit> | ||
4907 | <trans-unit id="33ce1814b1079cb3a0c0605fc5b4e6f439d2b035" datatype="html"> | 5490 | <trans-unit id="33ce1814b1079cb3a0c0605fc5b4e6f439d2b035" datatype="html"> |
4908 | <source>PLAYLIST</source> | 5491 | <source>PLAYLIST</source> |
4909 | <target state="new">PLAYLIST</target> | 5492 | <target state="translated">OYNATMA LİSTESİ</target> |
4910 | 5493 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">26</context></context-group> | |
4911 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 5494 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">26</context></context-group> |
5495 | </trans-unit> | ||
4912 | <trans-unit id="61b31fe7bfae807e3ccc0dbf001c6dc9b72aaf19" datatype="html"> | 5496 | <trans-unit id="61b31fe7bfae807e3ccc0dbf001c6dc9b72aaf19" datatype="html"> |
4913 | <source>Create playlist</source> | 5497 | <source>Create playlist</source> |
4914 | <target state="new">Create playlist</target> | 5498 | <target state="translated">Oynatma listesi oluştur</target> |
4915 | 5499 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">18</context></context-group> | |
4916 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit><trans-unit id="7040375308762081154" datatype="html"> | 5500 | </trans-unit> |
4917 | <source>My video channels</source><target state="new">My video channels</target> | 5501 | <trans-unit id="7040375308762081154" datatype="html"> |
4918 | 5502 | <source>My video channels</source> | |
4919 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts</context><context context-type="linenumber">13</context></context-group></trans-unit><trans-unit id="7418836785553125957" datatype="html"> | 5503 | <target state="new">My video channels</target> |
4920 | <source>Create a new video channel</source><target state="new">Create a new video channel</target> | 5504 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts</context><context context-type="linenumber">13</context></context-group> |
4921 | 5505 | </trans-unit> | |
4922 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts</context><context context-type="linenumber">22</context></context-group></trans-unit> | 5506 | <trans-unit id="7418836785553125957" datatype="html"> |
5507 | <source>Create a new video channel</source> | ||
5508 | <target state="new">Create a new video channel</target> | ||
5509 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts</context><context context-type="linenumber">22</context></context-group> | ||
5510 | </trans-unit> | ||
4923 | <trans-unit id="8828123061564507501" datatype="html"> | 5511 | <trans-unit id="8828123061564507501" datatype="html"> |
4924 | <source>Playlist <x id="PH"/>} deleted.</source> | 5512 | <source>Playlist <x id="PH"/>} deleted.</source> |
4925 | <target state="new">Playlist <x id="PH"/>} deleted.</target> | 5513 | <target state="new">Playlist <x id="PH"/>} deleted.</target> |
4926 | 5514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">60</context></context-group> | |
4927 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 5515 | </trans-unit> |
4928 | <trans-unit id="88f1b36ea2f7544792f04ee6b58f8c55aaba5c96" datatype="html"> | 5516 | <trans-unit id="88f1b36ea2f7544792f04ee6b58f8c55aaba5c96" datatype="html"> |
4929 | <source>Playlist thumbnail</source> | 5517 | <source>Playlist thumbnail</source> |
4930 | <target state="new">Playlist thumbnail</target> | 5518 | <target state="new">Playlist thumbnail</target> |
4931 | 5519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">82</context></context-group> | |
4932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">82</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 5520 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">82</context></context-group> |
5521 | </trans-unit> | ||
4933 | <trans-unit id="a85c7d7a8dcc1ae0d2f945d77f4db36f02ead69b" datatype="html"> | 5522 | <trans-unit id="a85c7d7a8dcc1ae0d2f945d77f4db36f02ead69b" datatype="html"> |
4934 | <source>Search your playlists</source> | 5523 | <source>Search your playlists</source> |
4935 | <target state="new">Search your playlists</target> | 5524 | <target state="new">Search your playlists</target> |
4936 | 5525 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">10</context></context-group> | |
4937 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 5526 | </trans-unit> |
4938 | <trans-unit id="188014887f7188d90b39e41d9606b91c77c17861" datatype="html"> | 5527 | <trans-unit id="188014887f7188d90b39e41d9606b91c77c17861" datatype="html"> |
4939 | <source>No videos in this playlist.</source> | 5528 | <source>No videos in this playlist.</source> |
4940 | <target state="new">No videos in this playlist.</target> | 5529 | <target state="new">No videos in this playlist.</target> |
4941 | 5530 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">25</context></context-group> | |
4942 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 5531 | </trans-unit> |
4943 | <trans-unit id="25837d28a88f93b1fe278ca11099d7489ca0ac4b" datatype="html"> | 5532 | <trans-unit id="25837d28a88f93b1fe278ca11099d7489ca0ac4b" datatype="html"> |
4944 | <source>Browse videos on PeerTube to add them in your playlist.</source> | 5533 | <source>Browse videos on PeerTube to add them in your playlist.</source> |
4945 | <target state="new"> | 5534 | <target state="new"> |
4946 | Browse videos on PeerTube to add them in your playlist. | 5535 | Browse videos on PeerTube to add them in your playlist. |
4947 | </target> | 5536 | </target> |
4948 | 5537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">28</context></context-group> | |
4949 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 5538 | </trans-unit> |
4950 | <trans-unit id="28c9f2a23ea8f12710a011a965939a5af6980dd1" datatype="html"> | 5539 | <trans-unit id="28c9f2a23ea8f12710a011a965939a5af6980dd1" datatype="html"> |
4951 | <source>See the <x id="START_LINK"/>documentation<x id="CLOSE_LINK"/> for more information. </source> | 5540 | <source>See the <x id="START_LINK"/>documentation<x id="CLOSE_LINK"/> for more information. </source> |
4952 | <target state="new"> | 5541 | <target state="new"> |
4953 | See the | 5542 | See the |
4954 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>documentation | 5543 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>documentation |
4955 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more information. | 5544 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> for more information. |
4956 | 5545 | ||
4957 | </target> | 5546 | </target> |
4958 | 5547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">32</context></context-group> | |
4959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 5548 | </trans-unit> |
4960 | <trans-unit id="3346d8a0bf3dd8c25ddc561ccd5fafb6ee9fadc8" datatype="html"> | 5549 | <trans-unit id="3346d8a0bf3dd8c25ddc561ccd5fafb6ee9fadc8" datatype="html"> |
4961 | <source>Welcome to PeerTube!</source> | 5550 | <source>Welcome to PeerTube!</source> |
4962 | <target state="new">Welcome to PeerTube!</target> | 5551 | <target state="translated">PeerTube'a Hoş Geldiniz!</target> |
4963 | 5552 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">8</context></context-group> | |
4964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> | 5553 | </trans-unit> |
4965 | <trans-unit id="19886846ed573d0a74c61c4e8df073eb4f64acd0" datatype="html"> | 5554 | <trans-unit id="19886846ed573d0a74c61c4e8df073eb4f64acd0" datatype="html"> |
4966 | <source>If you need help to use PeerTube, you can have a look at the <x id="START_LINK"/>documentation<x id="CLOSE_LINK"/>. </source> | 5555 | <source>If you need help to use PeerTube, you can have a look at the <x id="START_LINK"/>documentation<x id="CLOSE_LINK"/>. </source> |
4967 | <target state="new">If you need help to use PeerTube, you can have a look at the | 5556 | <target state="new">If you need help to use PeerTube, you can have a look at the |
4968 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>documentation | 5557 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>documentation |
4969 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | 5558 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. |
4970 | </target> | 5559 | </target> |
4971 | 5560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group> | |
4972 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5561 | </trans-unit> |
4973 | <trans-unit id="2454050363478003966" datatype="html"> | 5562 | <trans-unit id="2454050363478003966" datatype="html"> |
4974 | <source>Login</source> | 5563 | <source>Login</source> |
4975 | <target state="new">Login</target> | 5564 | <target state="new">Login</target> |
4976 | 5565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login-routing.module.ts</context><context context-type="linenumber">14</context></context-group> | |
4977 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login-routing.module.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5566 | </trans-unit> |
4978 | <trans-unit id="09a69cde5889927629e2ac9dc63a71b88252b530" datatype="html"> | 5567 | <trans-unit id="09a69cde5889927629e2ac9dc63a71b88252b530" datatype="html"> |
4979 | <source>Verify account email confirmation</source> | 5568 | <source>Verify account email confirmation</source> |
4980 | <target state="new">Verify account email confirmation</target> | 5569 | <target state="new">Verify account email confirmation</target> |
4981 | 5570 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">3</context></context-group> | |
4982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 5571 | </trans-unit> |
4983 | <trans-unit id="b734a13448d714b0f68f49353607364ac3571c12" datatype="html"> | 5572 | <trans-unit id="b734a13448d714b0f68f49353607364ac3571c12" datatype="html"> |
4984 | <source>Email updated.</source> | 5573 | <source>Email updated.</source> |
4985 | <target state="new">Email updated.</target> | 5574 | <target state="new">Email updated.</target> |
4986 | 5575 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">10</context></context-group> | |
4987 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 5576 | </trans-unit> |
4988 | <trans-unit id="61fd1cffcb763cbfd5829071723cf9b647174bd9" datatype="html"> | 5577 | <trans-unit id="61fd1cffcb763cbfd5829071723cf9b647174bd9" datatype="html"> |
4989 | <source>An error occurred.</source> | 5578 | <source>An error occurred.</source> |
4990 | <target state="new">An error occurred.</target> | 5579 | <target state="new">An error occurred.</target> |
4991 | 5580 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group> | |
4992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5581 | </trans-unit> |
4993 | <trans-unit id="9128669621822125729" datatype="html"> | 5582 | <trans-unit id="9128669621822125729" datatype="html"> |
4994 | <source>Video channel videos</source> | 5583 | <source>Video channel videos</source> |
4995 | <target state="new">Video channel videos</target> | 5584 | <target state="new">Video channel videos</target> |
4996 | 5585 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context><context context-type="linenumber">25</context></context-group> | |
4997 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 5586 | </trans-unit> |
4998 | <trans-unit id="3193822049276963401" datatype="html"> | 5587 | <trans-unit id="3193822049276963401" datatype="html"> |
4999 | <source>Video channel playlists</source> | 5588 | <source>Video channel playlists</source> |
5000 | <target state="new">Video channel playlists</target> | 5589 | <target state="new">Video channel playlists</target> |
5001 | 5590 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context><context context-type="linenumber">38</context></context-group> | |
5002 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 5591 | </trans-unit> |
5003 | <trans-unit id="4723526509708949088" datatype="html"> | 5592 | <trans-unit id="4723526509708949088" datatype="html"> |
5004 | <source>About video channel</source> | 5593 | <source>About video channel</source> |
5005 | <target state="new">About video channel</target> | 5594 | <target state="new">About video channel</target> |
5006 | 5595 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context><context context-type="linenumber">47</context></context-group> | |
5007 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels-routing.module.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 5596 | </trans-unit> |
5008 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5597 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
5009 | <source>Request email for account verification</source> | 5598 | <source>Request email for account verification</source> |
5010 | <target state="new">Request email for account verification</target> | 5599 | <target state="new">Request email for account verification</target> |
5011 | 5600 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">3</context></context-group> | |
5012 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 5601 | </trans-unit> |
5013 | <trans-unit id="eb539ec6941044e284f237f5b40d6a0159afe7af" datatype="html"> | 5602 | <trans-unit id="eb539ec6941044e284f237f5b40d6a0159afe7af" datatype="html"> |
5014 | <source>Send verification email</source> | 5603 | <source>Send verification email</source> |
5015 | <target state="new">Send verification email</target> | 5604 | <target state="translated">Doğrulama e-postası gönder</target> |
5016 | 5605 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">17</context></context-group> | |
5017 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | 5606 | </trans-unit> |
5018 | <trans-unit id="a08080316e052053fd20647731a6de826dc8072f" datatype="html"> | 5607 | <trans-unit id="a08080316e052053fd20647731a6de826dc8072f" datatype="html"> |
5019 | <source>This instance does not require email verification.</source> | 5608 | <source>This instance does not require email verification.</source> |
5020 | <target state="new">This instance does not require email verification.</target> | 5609 | <target state="new">This instance does not require email verification.</target> |
5021 | 5610 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">20</context></context-group> | |
5022 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="248731258067914565" datatype="html"> | 5611 | </trans-unit> |
5023 | <source>Verify account via email</source><target state="new">Verify account via email</target> | 5612 | <trans-unit id="248731258067914565" datatype="html"> |
5024 | 5613 | <source>Verify account via email</source> | |
5025 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-routing.module.ts</context><context context-type="linenumber">17</context></context-group></trans-unit><trans-unit id="9197112111252826229" datatype="html"> | 5614 | <target state="new">Verify account via email</target> |
5026 | <source>Ask to send an email to verify you account</source><target state="new">Ask to send an email to verify you account</target> | 5615 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-routing.module.ts</context><context context-type="linenumber">17</context></context-group> |
5027 | 5616 | </trans-unit> | |
5028 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-routing.module.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 5617 | <trans-unit id="9197112111252826229" datatype="html"> |
5618 | <source>Ask to send an email to verify you account</source> | ||
5619 | <target state="new">Ask to send an email to verify you account</target> | ||
5620 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-routing.module.ts</context><context context-type="linenumber">26</context></context-group> | ||
5621 | </trans-unit> | ||
5029 | <trans-unit id="bd2edf99dd6562385ccec19a7ab2d1898e626605" datatype="html"> | 5622 | <trans-unit id="bd2edf99dd6562385ccec19a7ab2d1898e626605" datatype="html"> |
5030 | <source>Banned</source> | 5623 | <source>Banned</source> |
5031 | <target state="new">Banned</target> | 5624 | <target state="new">Banned</target> |
5032 | 5625 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">18</context></context-group> | |
5033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 5626 | </trans-unit> |
5034 | <trans-unit id="44bd08a7ec1e407356620967d65d8fe2d8639d0a" datatype="html"> | 5627 | <trans-unit id="44bd08a7ec1e407356620967d65d8fe2d8639d0a" datatype="html"> |
5035 | <source>Instance muted</source> | 5628 | <source>Instance muted</source> |
5036 | <target state="new">Instance muted</target> | 5629 | <target state="new">Instance muted</target> |
5037 | 5630 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">20</context></context-group> | |
5038 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 5631 | </trans-unit> |
5039 | <trans-unit id="48bbf6dbdb22e0ef4bd257eae2ab356f2ea66c89" datatype="html"> | 5632 | <trans-unit id="48bbf6dbdb22e0ef4bd257eae2ab356f2ea66c89" datatype="html"> |
5040 | <source>Muted by your instance</source> | 5633 | <source>Muted by your instance</source> |
5041 | <target state="new">Muted by your instance</target> | 5634 | <target state="new">Muted by your instance</target> |
5042 | 5635 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">21</context></context-group> | |
5043 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 5636 | </trans-unit> |
5044 | <trans-unit id="1a6443bb7ed01046dd83cf78806f795f1204ffa1" datatype="html"> | 5637 | <trans-unit id="1a6443bb7ed01046dd83cf78806f795f1204ffa1" datatype="html"> |
5045 | <source>Instance muted by your instance</source> | 5638 | <source>Instance muted by your instance</source> |
5046 | <target state="new">Instance muted by your instance</target> | 5639 | <target state="new">Instance muted by your instance</target> |
5047 | 5640 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">22</context></context-group> | |
5048 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 5641 | </trans-unit> |
5049 | <trans-unit id="1b9099f59dd3baaeeaac2c29fe653dc1b0436157" datatype="html"> | 5642 | <trans-unit id="1b9099f59dd3baaeeaac2c29fe653dc1b0436157" datatype="html"> |
5050 | <source>Manage account</source> | 5643 | <source>Manage account</source> |
5051 | <target state="new">Manage account</target> | 5644 | <target state="new">Manage account</target> |
5052 | 5645 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">36</context></context-group> | |
5053 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 5646 | </trans-unit> |
5054 | <trans-unit id="87f77a03c185ea644ed8378a562a2d0225513974" datatype="html"> | 5647 | <trans-unit id="87f77a03c185ea644ed8378a562a2d0225513974" datatype="html"> |
5055 | <source>This account does not have channels.</source> | 5648 | <source>This account does not have channels.</source> |
5056 | <target state="new">This account does not have channels.</target> | 5649 | <target state="new">This account does not have channels.</target> |
5057 | 5650 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">4</context></context-group> | |
5058 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 5651 | </trans-unit> |
5059 | <trans-unit id="f15780bbd2d7fa777071975f7445e98a33065e38" datatype="html"> | 5652 | <trans-unit id="f15780bbd2d7fa777071975f7445e98a33065e38" datatype="html"> |
5060 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> | 5653 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> |
5061 | <target state="new">{VAR_PLURAL, plural, =1 {1 subscriber} other { | 5654 | <target state="new">{VAR_PLURAL, plural, =1 {1 subscriber} other { |
5062 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers} } | 5655 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers} } |
5063 | </target> | 5656 | </target> |
5064 | 5657 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">28</context></context-group> | |
5065 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 5658 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">13</context></context-group> |
5659 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">35</context></context-group> | ||
5660 | </trans-unit> | ||
5066 | <trans-unit id="21dc89cfca84c2af7fdeb584b34e2529d842b72a" datatype="html"> | 5661 | <trans-unit id="21dc89cfca84c2af7fdeb584b34e2529d842b72a" datatype="html"> |
5067 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 5662 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
5068 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 5663 | <target state="new">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { |
5069 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.videosCount }}"/> videos} } | 5664 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.videosCount }}"/> videos} } |
5070 | </target> | 5665 | </target> |
5071 | 5666 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">37</context></context-group> | |
5072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> | 5667 | </trans-unit> |
5073 | <trans-unit id="7152797255397280410" datatype="html"> | 5668 | <trans-unit id="7152797255397280410" datatype="html"> |
5074 | <source>Do you really want to delete <x id="PH"/>? | 5669 | <source>Do you really want to delete <x id="PH"/>? It will delete <x id="PH_1"/> videos uploaded in this channel, and you will not be able to create another channel with the same name (<x id="PH_2"/>)!</source> |
5075 | It will delete <x id="PH_1"/> videos uploaded in this channel, and you will not be able to create another | ||
5076 | channel with the same name (<x id="PH_2"/>)!</source> | ||
5077 | <target state="new">Do you really want to delete <x id="PH"/>? | 5670 | <target state="new">Do you really want to delete <x id="PH"/>? |
5078 | It will delete <x id="PH_1"/> videos uploaded in this channel, and you will not be able to create another | 5671 | It will delete <x id="PH_1"/> videos uploaded in this channel, and you will not be able to create another |
5079 | channel with the same name (<x id="PH_2"/>)!</target> | 5672 | channel with the same name (<x id="PH_2"/>)!</target> |
5080 | 5673 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">63</context></context-group> | |
5081 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 5674 | </trans-unit> |
5082 | <trans-unit id="d5f0913d08d01648d7e6165c168a99ccd06d1f4c" datatype="html"> | 5675 | <trans-unit id="d5f0913d08d01648d7e6165c168a99ccd06d1f4c" datatype="html"> |
5083 | <source>My Channels</source> | 5676 | <source>My Channels</source> |
5084 | <target state="new">My Channels</target> | 5677 | <target state="new">My Channels</target> |
5085 | 5678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">4</context></context-group> | |
5086 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 5679 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">4</context></context-group> |
5680 | </trans-unit> | ||
5087 | <trans-unit id="dff0536e48bacc3a4b568f32f9ed8ffc14767cbb" datatype="html"> | 5681 | <trans-unit id="dff0536e48bacc3a4b568f32f9ed8ffc14767cbb" datatype="html"> |
5088 | <source>NEW CHANNEL</source> | 5682 | <source>NEW CHANNEL</source> |
5089 | <target state="new">NEW CHANNEL</target> | 5683 | <target state="translated">YENİ KANAL</target> |
5090 | 5684 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">25</context></context-group> | |
5091 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 5685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">25</context></context-group> |
5686 | </trans-unit> | ||
5092 | <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f" datatype="html"> | 5687 | <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f" datatype="html"> |
5093 | <source>See this video channel</source> | 5688 | <source>See this video channel</source> |
5094 | <target state="new">See this video channel</target> | 5689 | <target state="new">See this video channel</target> |
5095 | 5690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">9</context></context-group> | |
5096 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 5691 | </trans-unit> |
5097 | <trans-unit id="7bfe8fdef5d1a90e5bf286ec6ed4c079522a9b44" datatype="html"> | 5692 | <trans-unit id="7bfe8fdef5d1a90e5bf286ec6ed4c079522a9b44" datatype="html"> |
5098 | <source>This channel doesn't have any videos.</source> | 5693 | <source>This channel doesn't have any videos.</source> |
5099 | <target state="new">This channel doesn't have any videos.</target> | 5694 | <target state="new">This channel doesn't have any videos.</target> |
5100 | 5695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">20</context></context-group> | |
5101 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 5696 | </trans-unit> |
5102 | <trans-unit id="5c2b42818f05eafa2690d5eac6bcde295c713097" datatype="html"> | 5697 | <trans-unit id="5c2b42818f05eafa2690d5eac6bcde295c713097" datatype="html"> |
5103 | <source>SHOW THIS CHANNEL</source> | 5698 | <source>SHOW THIS CHANNEL</source> |
5104 | <target state="new"> | 5699 | <target state="new"> |
5105 | SHOW THIS CHANNEL | 5700 | SHOW THIS CHANNEL |
5106 | </target> | 5701 | </target> |
5107 | 5702 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">29</context></context-group> | |
5108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 5703 | </trans-unit> |
5109 | <trans-unit id="4af6287e70a4a87329affe109839f14ae598f0ca" datatype="html"> | 5704 | <trans-unit id="4af6287e70a4a87329affe109839f14ae598f0ca" datatype="html"> |
5110 | <source>DESCRIPTION</source> | 5705 | <source>DESCRIPTION</source> |
5111 | <target state="new">DESCRIPTION</target> | 5706 | <target state="translated">AÇIKLAMA</target> |
5112 | 5707 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context><context context-type="linenumber">5</context></context-group> | |
5113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context><context context-type="linenumber">5</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 5708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context><context context-type="linenumber">5</context></context-group> |
5709 | </trans-unit> | ||
5114 | <trans-unit id="bfc87613409a6cfae59b79ead5d910d8d3c216f5" datatype="html"> | 5710 | <trans-unit id="bfc87613409a6cfae59b79ead5d910d8d3c216f5" datatype="html"> |
5115 | <source>STATS</source> | 5711 | <source>STATS</source> |
5116 | <target state="new">STATS</target> | 5712 | <target state="new">STATS</target> |
5117 | 5713 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context><context context-type="linenumber">17</context></context-group> | |
5118 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 5714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context><context context-type="linenumber">10</context></context-group> |
5715 | </trans-unit> | ||
5119 | <trans-unit id="299f97b8ee9c62d45f2cc01961aa1e5101d6d05a" datatype="html"> | 5716 | <trans-unit id="299f97b8ee9c62d45f2cc01961aa1e5101d6d05a" datatype="html"> |
5120 | <source>Stats</source> | 5717 | <source>Stats</source> |
5121 | <target state="new">Stats</target> | 5718 | <target state="new">Stats</target> |
5122 | 5719 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group> | |
5123 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> | 5720 | </trans-unit> |
5124 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> | 5721 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> |
5125 | <source>Joined <x id="INTERPOLATION"/></source> | 5722 | <source>Joined <x id="INTERPOLATION"/></source> |
5126 | <target state="new">Joined | 5723 | <target state="new">Joined |
5127 | <x id="INTERPOLATION" equiv-text="{{ account.createdAt | date }}"/> | 5724 | <x id="INTERPOLATION" equiv-text="{{ account.createdAt | date }}"/> |
5128 | </target> | 5725 | </target> |
5129 | 5726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context><context context-type="linenumber">12</context></context-group> | |
5130 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> | 5727 | </trans-unit> |
5131 | <trans-unit id="f696d5719a2a79916d44a175743591dc0d5629fe" datatype="html"> | 5728 | <trans-unit id="f696d5719a2a79916d44a175743591dc0d5629fe" datatype="html"> |
5132 | <source>Manage channel</source> | 5729 | <source>Manage channel</source> |
5133 | <target state="new"> | 5730 | <target state="new"> |
5134 | Manage channel | 5731 | Manage channel |
5135 | </target> | 5732 | </target> |
5136 | 5733 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">22</context></context-group> | |
5137 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 5734 | </trans-unit> |
5138 | <trans-unit id="29b4ae3296e239446fa0dea88a5112de15cffa54" datatype="html"> | 5735 | <trans-unit id="29b4ae3296e239446fa0dea88a5112de15cffa54" datatype="html"> |
5139 | <source>Created by</source> | 5736 | <source>Created by</source> |
5140 | <target state="new">Created by</target> | 5737 | <target state="new">Created by</target> |
5141 | 5738 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">31</context></context-group> | |
5142 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 5739 | </trans-unit> |
5143 | <trans-unit id="b8bf6036a9fb05c08cdb190cdf4e3becc6e6fa0a" datatype="html"> | 5740 | <trans-unit id="b8bf6036a9fb05c08cdb190cdf4e3becc6e6fa0a" datatype="html"> |
5144 | <source>SUPPORT THIS CHANNEL</source> | 5741 | <source>SUPPORT THIS CHANNEL</source> |
5145 | <target state="new">SUPPORT THIS CHANNEL</target> | 5742 | <target state="new">SUPPORT THIS CHANNEL</target> |
5146 | 5743 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context><context context-type="linenumber">10</context></context-group> | |
5147 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 5744 | </trans-unit> |
5148 | <trans-unit id="8177374861384376651" datatype="html"> | 5745 | <trans-unit id="8177374861384376651" datatype="html"> |
5149 | <source>Most liked videos</source> | 5746 | <source>Most liked videos</source> |
5150 | <target state="new">Most liked videos</target> | 5747 | <target state="translated">En beğenilen videolar</target> |
5151 | 5748 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">46</context></context-group> | |
5152 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">46</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-most-liked.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit><trans-unit id="2494835943815843060" datatype="html"> | 5749 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-most-liked.component.ts</context><context context-type="linenumber">41</context></context-group> |
5153 | <source>Videos that have the most likes.</source><target state="new">Videos that have the most likes.</target> | 5750 | </trans-unit> |
5154 | 5751 | <trans-unit id="2494835943815843060" datatype="html"> | |
5155 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-most-liked.component.ts</context><context context-type="linenumber">42</context></context-group></trans-unit> | 5752 | <source>Videos that have the most likes.</source> |
5753 | <target state="new">Videos that have the most likes.</target> | ||
5754 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-most-liked.component.ts</context><context context-type="linenumber">42</context></context-group> | ||
5755 | </trans-unit> | ||
5156 | <trans-unit id="5523952d0300c96cfba2ec5a693c95f923e90c40" datatype="html"> | 5756 | <trans-unit id="5523952d0300c96cfba2ec5a693c95f923e90c40" datatype="html"> |
5157 | <source>Created <x id="INTERPOLATION"/></source> | 5757 | <source>Created <x id="INTERPOLATION"/></source> |
5158 | <target state="new">Created | 5758 | <target state="new">Created |
5159 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.createdAt | date }}"/> | 5759 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.createdAt | date }}"/> |
5160 | </target> | 5760 | </target> |
5161 | 5761 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context><context context-type="linenumber">18</context></context-group> | |
5162 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 5762 | </trans-unit> |
5163 | <trans-unit id="5ebd76e736e1c58a1850234d1d26f1ab8c9ad11f" datatype="html"> | 5763 | <trans-unit id="5ebd76e736e1c58a1850234d1d26f1ab8c9ad11f" datatype="html"> |
5164 | <source>Created <x id="INTERPOLATION"/> playlists </source> | 5764 | <source>Created <x id="INTERPOLATION"/> playlists </source> |
5165 | <target state="new"> | 5765 | <target state="new"> |
@@ -5167,33 +5767,39 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5167 | <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> playlists | 5767 | <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> playlists |
5168 | 5768 | ||
5169 | </target> | 5769 | </target> |
5170 | 5770 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context><context context-type="linenumber">2</context></context-group> | |
5171 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit> | 5771 | </trans-unit> |
5172 | <trans-unit id="fbbe62dee434f0521e0dfb8e3957d92fc5fcd76f" datatype="html"> | 5772 | <trans-unit id="fbbe62dee434f0521e0dfb8e3957d92fc5fcd76f" datatype="html"> |
5173 | <source>This channel does not have playlists.</source> | 5773 | <source>This channel does not have playlists.</source> |
5174 | <target state="new">This channel does not have playlists.</target> | 5774 | <target state="new">This channel does not have playlists.</target> |
5175 | 5775 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context><context context-type="linenumber">6</context></context-group> | |
5176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 5776 | </trans-unit> |
5177 | <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390" datatype="html"> | 5777 | <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390" datatype="html"> |
5178 | <source>PeerTube</source> | 5778 | <source>PeerTube</source> |
5179 | <target state="new">PeerTube</target> | 5779 | <target state="translated">PeerTube</target> |
5180 | 5780 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">7</context></context-group> | |
5181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit><trans-unit id="2c7cd7912f61e528f6b38d4bc28733135931042b" datatype="html"> | 5781 | </trans-unit> |
5182 | <source>Network</source><target state="new">Network</target> | 5782 | <trans-unit id="2c7cd7912f61e528f6b38d4bc28733135931042b" datatype="html"> |
5183 | 5783 | <source>Network</source> | |
5184 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 5784 | <target state="new">Network</target> |
5785 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">9</context></context-group> | ||
5786 | </trans-unit> | ||
5185 | <trans-unit id="fc978c97e261ee6494db916622339aedb633da3a" datatype="html"> | 5787 | <trans-unit id="fc978c97e261ee6494db916622339aedb633da3a" datatype="html"> |
5186 | <source>Follows</source> | 5788 | <source>Follows</source> |
5187 | <target state="new">Follows</target> | 5789 | <target state="new">Follows</target> |
5188 | 5790 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">2</context></context-group> | |
5189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit><trans-unit id="33a9a4343ee46c354d8b716167990efeea654382" datatype="html"> | 5791 | </trans-unit> |
5190 | <source>Followers instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</source><target state="new">Followers instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</target> | 5792 | <trans-unit id="33a9a4343ee46c354d8b716167990efeea654382" datatype="html"> |
5793 | <source>Followers instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</source> | ||
5794 | <target state="new">Followers instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</target> | ||
5191 | <context-group purpose="location"> | 5795 | <context-group purpose="location"> |
5192 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 5796 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
5193 | <context context-type="linenumber">4</context> | 5797 | <context context-type="linenumber">4</context> |
5194 | </context-group> | 5798 | </context-group> |
5195 | </trans-unit><trans-unit id="aed1bb4393932c974d4347ff743a2253cc64ef02" datatype="html"> | 5799 | </trans-unit> |
5196 | <source>Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</source><target state="new">Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</target> | 5800 | <trans-unit id="aed1bb4393932c974d4347ff743a2253cc64ef02" datatype="html"> |
5801 | <source>Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</source> | ||
5802 | <target state="new">Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</target> | ||
5197 | <context-group purpose="location"> | 5803 | <context-group purpose="location"> |
5198 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 5804 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
5199 | <context context-type="linenumber">16</context> | 5805 | <context context-type="linenumber">16</context> |
@@ -5204,185 +5810,186 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5204 | <target state="new">Contact | 5810 | <target state="new">Contact |
5205 | <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> administrator | 5811 | <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> administrator |
5206 | </target> | 5812 | </target> |
5207 | 5813 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">3</context></context-group> | |
5208 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 5814 | </trans-unit> |
5209 | <trans-unit id="533b2b9a76ee1335cb44c01f0bfd50d43e9400b0" datatype="html"> | 5815 | <trans-unit id="533b2b9a76ee1335cb44c01f0bfd50d43e9400b0" datatype="html"> |
5210 | <source>Your name</source> | 5816 | <source>Your name</source> |
5211 | <target state="new">Your name</target> | 5817 | <target state="translated">Adınız</target> |
5212 | 5818 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">11</context></context-group> | |
5213 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 5819 | </trans-unit> |
5214 | <trans-unit id="0b892c7805a1c5afc0b7c21c3449760860fe7f3d" datatype="html"> | 5820 | <trans-unit id="0b892c7805a1c5afc0b7c21c3449760860fe7f3d" datatype="html"> |
5215 | <source>Your email</source> | 5821 | <source>Your email</source> |
5216 | <target state="new">Your email</target> | 5822 | <target state="translated">E-postanız</target> |
5217 | 5823 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">20</context></context-group> | |
5218 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 5824 | </trans-unit> |
5219 | <trans-unit id="4b0ca852bafa5037c4e64c7b18f9cd1e14b799de" datatype="html"> | 5825 | <trans-unit id="4b0ca852bafa5037c4e64c7b18f9cd1e14b799de" datatype="html"> |
5220 | <source>Subject</source> | 5826 | <source>Subject</source> |
5221 | <target state="new">Subject</target> | 5827 | <target state="translated">Konu</target> |
5222 | 5828 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">29</context></context-group> | |
5223 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 5829 | </trans-unit> |
5224 | <trans-unit id="d2815c9b510b8172d8cac4008b9709df69d636df" datatype="html"> | 5830 | <trans-unit id="d2815c9b510b8172d8cac4008b9709df69d636df" datatype="html"> |
5225 | <source>Your message</source> | 5831 | <source>Your message</source> |
5226 | <target state="new">Your message</target> | 5832 | <target state="new">Your message</target> |
5227 | 5833 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">38</context></context-group> | |
5228 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 5834 | </trans-unit> |
5229 | <trans-unit id="ce301bc59085d13cf569fb7a97f073148435ec27" datatype="html"> | 5835 | <trans-unit id="ce301bc59085d13cf569fb7a97f073148435ec27" datatype="html"> |
5230 | <source>About <x id="INTERPOLATION"/></source> | 5836 | <source>About <x id="INTERPOLATION"/></source> |
5231 | <target state="new">About | 5837 | <target state="new">About |
5232 | <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> | 5838 | <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> |
5233 | </target> | 5839 | </target> |
5234 | 5840 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">5</context></context-group> | |
5235 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 5841 | </trans-unit> |
5236 | <trans-unit id="3c1aff50472b313c70a72ee02c081b8eeb1c616c" datatype="html"> | 5842 | <trans-unit id="3c1aff50472b313c70a72ee02c081b8eeb1c616c" datatype="html"> |
5237 | <source>Contact administrator</source> | 5843 | <source>Contact administrator</source> |
5238 | <target state="new">Contact administrator</target> | 5844 | <target state="new">Contact administrator</target> |
5239 | 5845 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">7</context></context-group> | |
5240 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 5846 | </trans-unit> |
5241 | <trans-unit id="aaa2830aa30a5565ec06c852178ea7f181c693ea" datatype="html"> | 5847 | <trans-unit id="aaa2830aa30a5565ec06c852178ea7f181c693ea" datatype="html"> |
5242 | <source>This instance is dedicated to sensitive/NSFW content.</source> | 5848 | <source>This instance is dedicated to sensitive/NSFW content.</source> |
5243 | <target state="new">This instance is dedicated to sensitive/NSFW content.</target> | 5849 | <target state="new">This instance is dedicated to sensitive/NSFW content.</target> |
5244 | 5850 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">19</context></context-group> | |
5245 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 5851 | </trans-unit> |
5246 | <trans-unit id="5e595f291985655929e0348cf68ead712a081061" datatype="html"> | 5852 | <trans-unit id="5e595f291985655929e0348cf68ead712a081061" datatype="html"> |
5247 | <source>ADMINISTRATORS & SUSTAINABILITY</source> | 5853 | <source>ADMINISTRATORS & SUSTAINABILITY</source> |
5248 | <target state="new"> | 5854 | <target state="new"> |
5249 | ADMINISTRATORS & SUSTAINABILITY | 5855 | ADMINISTRATORS & SUSTAINABILITY |
5250 | </target> | 5856 | </target> |
5251 | 5857 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">32</context></context-group> | |
5252 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 5858 | </trans-unit> |
5253 | <trans-unit id="f6a8cb2287c0c738d3d02ca36e145830c9734db5" datatype="html"> | 5859 | <trans-unit id="f6a8cb2287c0c738d3d02ca36e145830c9734db5" datatype="html"> |
5254 | <source>Who we are</source> | 5860 | <source>Who we are</source> |
5255 | <target state="new">Who we are</target> | 5861 | <target state="translated">Biz kimiz</target> |
5256 | 5862 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">44</context></context-group> | |
5257 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> | 5863 | </trans-unit> |
5258 | <trans-unit id="911fb379526b62e9a62590722830c146ebd31be8" datatype="html"> | 5864 | <trans-unit id="911fb379526b62e9a62590722830c146ebd31be8" datatype="html"> |
5259 | <source>Why we created this instance</source> | 5865 | <source>Why we created this instance</source> |
5260 | <target state="new">Why we created this instance</target> | 5866 | <target state="new">Why we created this instance</target> |
5261 | 5867 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">58</context></context-group> | |
5262 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 5868 | </trans-unit> |
5263 | <trans-unit id="3f264e961636eb6eff1dbae7e3887447e22be154" datatype="html"> | 5869 | <trans-unit id="3f264e961636eb6eff1dbae7e3887447e22be154" datatype="html"> |
5264 | <source>How long we plan to maintain this instance</source> | 5870 | <source>How long we plan to maintain this instance</source> |
5265 | <target state="new">How long we plan to maintain this instance</target> | 5871 | <target state="new">How long we plan to maintain this instance</target> |
5266 | 5872 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">72</context></context-group> | |
5267 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> | 5873 | </trans-unit> |
5268 | <trans-unit id="2646614e3af5f103885f64e4f097e45569091fd6" datatype="html"> | 5874 | <trans-unit id="2646614e3af5f103885f64e4f097e45569091fd6" datatype="html"> |
5269 | <source>How we will pay for this instance</source> | 5875 | <source>How we will pay for this instance</source> |
5270 | <target state="new">How we will pay for this instance</target> | 5876 | <target state="new">How we will pay for this instance</target> |
5271 | 5877 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">86</context></context-group> | |
5272 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 5878 | </trans-unit> |
5273 | <trans-unit id="2a422d9f181480a3199d18e7d5d616ad4e75530a" datatype="html"> | 5879 | <trans-unit id="2a422d9f181480a3199d18e7d5d616ad4e75530a" datatype="html"> |
5274 | <source>INFORMATION</source> | 5880 | <source>INFORMATION</source> |
5275 | <target state="new"> | 5881 | <target state="new"> |
5276 | INFORMATION | 5882 | INFORMATION |
5277 | </target> | 5883 | </target> |
5278 | 5884 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">101</context></context-group> | |
5279 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 5885 | </trans-unit> |
5280 | <trans-unit id="c47227276184c2145c8ca1161ce08075df573568" datatype="html"> | 5886 | <trans-unit id="c47227276184c2145c8ca1161ce08075df573568" datatype="html"> |
5281 | <source>MODERATION</source> | 5887 | <source>MODERATION</source> |
5282 | <target state="new"> | 5888 | <target state="new"> |
5283 | MODERATION | 5889 | MODERATION |
5284 | </target> | 5890 | </target> |
5285 | 5891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">128</context></context-group> | |
5286 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">128</context></context-group></trans-unit> | 5892 | </trans-unit> |
5287 | <trans-unit id="e00d53801f276434a03bbfd4a8443651f46ef91a" datatype="html"> | 5893 | <trans-unit id="e00d53801f276434a03bbfd4a8443651f46ef91a" datatype="html"> |
5288 | <source>OTHER INFORMATION</source> | 5894 | <source>OTHER INFORMATION</source> |
5289 | <target state="new"> | 5895 | <target state="new"> |
5290 | OTHER INFORMATION | 5896 | OTHER INFORMATION |
5291 | </target> | 5897 | </target> |
5292 | 5898 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">183</context></context-group> | |
5293 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">183</context></context-group></trans-unit> | 5899 | </trans-unit> |
5294 | <trans-unit id="3624f527ba5d5ed005a4ff2540d1a210233aa320" datatype="html"> | 5900 | <trans-unit id="3624f527ba5d5ed005a4ff2540d1a210233aa320" datatype="html"> |
5295 | <source>Hardware information</source> | 5901 | <source>Hardware information</source> |
5296 | <target state="new">Hardware information</target> | 5902 | <target state="new">Hardware information</target> |
5297 | 5903 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">195</context></context-group> | |
5298 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">195</context></context-group></trans-unit> | 5904 | </trans-unit> |
5299 | <trans-unit id="d84d2cd0e5c2053a4451e7f77b81269e157cc5af" datatype="html"> | 5905 | <trans-unit id="d84d2cd0e5c2053a4451e7f77b81269e157cc5af" datatype="html"> |
5300 | <source>FEATURES</source> | 5906 | <source>FEATURES</source> |
5301 | <target state="new">FEATURES</target> | 5907 | <target state="new">FEATURES</target> |
5302 | 5908 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">203</context></context-group> | |
5303 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">203</context></context-group></trans-unit> | 5909 | </trans-unit> |
5304 | <trans-unit id="fa48c3ddc2ef8e40e5c317e68bc05ae62c93b0c1"> | 5910 | <trans-unit id="fa48c3ddc2ef8e40e5c317e68bc05ae62c93b0c1"> |
5305 | <source>Features found on this instance</source> | 5911 | <source>Features found on this instance</source> |
5306 | <target>Bu örnekte bulunan özellikler</target> | 5912 | <target>Bu örnekte bulunan özellikler</target> |
5307 | 5913 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">4</context></context-group> | |
5308 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 5914 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">6</context></context-group> |
5915 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">6</context></context-group> | ||
5916 | </trans-unit> | ||
5309 | <trans-unit id="92538de0e2f6e64f1d05291132b93c32bed81237" datatype="html"> | 5917 | <trans-unit id="92538de0e2f6e64f1d05291132b93c32bed81237" datatype="html"> |
5310 | <source>STATISTICS</source> | 5918 | <source>STATISTICS</source> |
5311 | <target state="new">STATISTICS</target> | 5919 | <target state="new">STATISTICS</target> |
5312 | 5920 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">215</context></context-group> | |
5313 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">215</context></context-group></trans-unit> | 5921 | </trans-unit> |
5314 | <trans-unit id="6b8b10fedeff64aa441ebedc2b7fbd07f6f246c1" datatype="html"> | 5922 | <trans-unit id="6b8b10fedeff64aa441ebedc2b7fbd07f6f246c1" datatype="html"> |
5315 | <source>What is PeerTube?</source> | 5923 | <source>What is PeerTube?</source> |
5316 | <target state="new"> | 5924 | <target state="translated">PeerTube nedir?</target> |
5317 | What is PeerTube? | 5925 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">3</context></context-group> |
5318 | </target> | 5926 | </trans-unit> |
5319 | |||
5320 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | ||
5321 | <trans-unit id="49ea58bdafe3b72efaa42bac13d7d9b2f22a2990" datatype="html"> | 5927 | <trans-unit id="49ea58bdafe3b72efaa42bac13d7d9b2f22a2990" datatype="html"> |
5322 | <source>PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser.</source> | 5928 | <source>PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser.</source> |
5323 | <target state="new"> | 5929 | <target state="new"> |
5324 | PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser. | 5930 | PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser. |
5325 | </target> | 5931 | </target> |
5326 | 5932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">10</context></context-group> | |
5327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit><trans-unit id="ccbfd56f7d72ca5055b86a35f66b7a6d0a250d03" datatype="html"> | 5933 | </trans-unit> |
5328 | <source> It is free and open-source software, under <x id="START_LINK"/>AGPLv3 licence<x id="CLOSE_LINK"/>. </source><target state="new"> It is free and open-source software, under <x id="START_LINK"/>AGPLv3 licence<x id="CLOSE_LINK"/>. </target> | 5934 | <trans-unit id="ccbfd56f7d72ca5055b86a35f66b7a6d0a250d03" datatype="html"> |
5329 | 5935 | <source>It is free and open-source software, under <x id="START_LINK"/>AGPLv3 licence<x id="CLOSE_LINK"/>. </source> | |
5330 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5936 | <target state="new"> It is free and open-source software, under <x id="START_LINK"/>AGPLv3 licence<x id="CLOSE_LINK"/>. </target> |
5331 | 5937 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">14</context></context-group> | |
5938 | </trans-unit> | ||
5332 | <trans-unit id="7b85d0debc419e6c9c390ce02686b57d256cd139" datatype="html"> | 5939 | <trans-unit id="7b85d0debc419e6c9c390ce02686b57d256cd139" datatype="html"> |
5333 | <source>For more information, please visit <x id="START_LINK"/>joinpeertube.org<x id="CLOSE_LINK"/>. </source> | 5940 | <source>For more information, please visit <x id="START_LINK"/>joinpeertube.org<x id="CLOSE_LINK"/>. </source> |
5334 | <target state="new"> | 5941 | <target state="new"> |
5335 | For more information, please visit | 5942 | For more information, please visit |
5336 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>joinpeertube.org | 5943 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>joinpeertube.org |
5337 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | 5944 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. |
5338 | 5945 | ||
5339 | </target> | 5946 | </target> |
5340 | 5947 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">19</context></context-group> | |
5341 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 5948 | </trans-unit> |
5342 | <trans-unit id="0f972eed0e4c81f8006cf8061a400304b2c62b21" datatype="html"> | 5949 | <trans-unit id="0f972eed0e4c81f8006cf8061a400304b2c62b21" datatype="html"> |
5343 | <source>Use PeerTube documentation</source> | 5950 | <source>Use PeerTube documentation</source> |
5344 | <target state="new">Use PeerTube | 5951 | <target state="new">Use PeerTube |
5345 | documentation</target> | 5952 | documentation</target> |
5346 | 5953 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">28</context></context-group> | |
5347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 5954 | </trans-unit> |
5348 | <trans-unit id="80c7532b45374a38b6c5f3bd5576464660b95b89" datatype="html"> | 5955 | <trans-unit id="80c7532b45374a38b6c5f3bd5576464660b95b89" datatype="html"> |
5349 | <source>Discover how to setup your account, what is a channel, how to create a playlist and more!</source> | 5956 | <source>Discover how to setup your account, what is a channel, how to create a playlist and more!</source> |
5350 | <target state="new"> | 5957 | <target state="new"> |
5351 | Discover how to setup your account, what is a channel, how to create a playlist and more! | 5958 | Discover how to setup your account, what is a channel, how to create a playlist and more! |
5352 | </target> | 5959 | </target> |
5353 | 5960 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">33</context></context-group> | |
5354 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 5961 | </trans-unit> |
5355 | <trans-unit id="08d65d76b1b4f8b5d802900b539b1d2e16a71756" datatype="html"> | 5962 | <trans-unit id="08d65d76b1b4f8b5d802900b539b1d2e16a71756" datatype="html"> |
5356 | <source>PeerTube Applications</source> | 5963 | <source>PeerTube Applications</source> |
5357 | <target state="new">PeerTube | 5964 | <target state="new">PeerTube |
5358 | Applications</target> | 5965 | Applications</target> |
5359 | 5966 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">41</context></context-group> | |
5360 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 5967 | </trans-unit> |
5361 | <trans-unit id="41d3c1ad1b83498b20d96d74bc14e0a1e9749529" datatype="html"> | 5968 | <trans-unit id="41d3c1ad1b83498b20d96d74bc14e0a1e9749529" datatype="html"> |
5362 | <source>Discover unofficial Android applications or browser addons!</source> | 5969 | <source>Discover unofficial Android applications or browser addons!</source> |
5363 | <target state="new"> | 5970 | <target state="new"> |
5364 | Discover unofficial Android applications or browser addons! | 5971 | Discover unofficial Android applications or browser addons! |
5365 | </target> | 5972 | </target> |
5366 | 5973 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">46</context></context-group> | |
5367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 5974 | </trans-unit> |
5368 | <trans-unit id="a1b892a310faf2ee74544d659ce968314997d56a" datatype="html"> | 5975 | <trans-unit id="a1b892a310faf2ee74544d659ce968314997d56a" datatype="html"> |
5369 | <source>Contribute on PeerTube</source> | 5976 | <source>Contribute on PeerTube</source> |
5370 | <target state="new">Contribute on | 5977 | <target state="new">Contribute on |
5371 | PeerTube</target> | 5978 | PeerTube</target> |
5372 | 5979 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">54</context></context-group> | |
5373 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> | 5980 | </trans-unit> |
5374 | <trans-unit id="2c4788d7843d80bf5aad6283aba75c8151807e8c" datatype="html"> | 5981 | <trans-unit id="2c4788d7843d80bf5aad6283aba75c8151807e8c" datatype="html"> |
5375 | <source>Want to help to improve PeerTube? You can translate the web interface, give your feedback or directly contribute to the code!</source> | 5982 | <source>Want to help to improve PeerTube? You can translate the web interface, give your feedback or directly contribute to the code!</source> |
5376 | <target state="new"> | 5983 | <target state="new"> |
5377 | Want to help to improve PeerTube? You can translate the web interface, give your feedback or directly contribute to the code! | 5984 | Want to help to improve PeerTube? You can translate the web interface, give your feedback or directly contribute to the code! |
5378 | </target> | 5985 | </target> |
5379 | 5986 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">59</context></context-group> | |
5380 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 5987 | </trans-unit> |
5381 | <trans-unit id="c02493cfa08b82c468233b83069b5baff23890e1" datatype="html"> | 5988 | <trans-unit id="c02493cfa08b82c468233b83069b5baff23890e1" datatype="html"> |
5382 | <source>P2P & Privacy</source> | 5989 | <source>P2P & Privacy</source> |
5383 | <target state="new">P2P & Privacy</target> | 5990 | <target state="new">P2P & Privacy</target> |
5384 | 5991 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">71</context></context-group> | |
5385 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit> | 5992 | </trans-unit> |
5386 | <trans-unit id="d0a97e9255fb49b92504d36516f902f440bc8878" datatype="html"> | 5993 | <trans-unit id="d0a97e9255fb49b92504d36516f902f440bc8878" datatype="html"> |
5387 | <source>PeerTube uses the BitTorrent protocol to share bandwidth between users by default to help lower the load on the server, but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What follows applies only if you want to keep using the P2P mode of PeerTube.</source> | 5994 | <source>PeerTube uses the BitTorrent protocol to share bandwidth between users by default to help lower the load on the server, but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What follows applies only if you want to keep using the P2P mode of PeerTube.</source> |
5388 | <target state="new"> | 5995 | <target state="new"> |
@@ -5390,9 +5997,11 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5390 | but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What | 5997 | but ultimately leaves you the choice to switch back to regular streaming exclusively from the server of the video. What |
5391 | follows applies only if you want to keep using the P2P mode of PeerTube. | 5998 | follows applies only if you want to keep using the P2P mode of PeerTube. |
5392 | </target> | 5999 | </target> |
5393 | 6000 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">75</context></context-group> | |
5394 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">75</context></context-group></trans-unit><trans-unit id="eb99819c4e231fb1efe7f0856756941908ddf172" datatype="html"> | 6001 | </trans-unit> |
5395 | <source> The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video. </source><target state="new"> The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video. </target> | 6002 | <trans-unit id="eb99819c4e231fb1efe7f0856756941908ddf172" datatype="html"> |
6003 | <source>The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video.</source> | ||
6004 | <target state="new"> The main threat to your privacy induced by BitTorrent lies in your IP address being stored in the instance's BitTorrent tracker as long as you download or watch the video. </target> | ||
5396 | <context-group purpose="location"> | 6005 | <context-group purpose="location"> |
5397 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> | 6006 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> |
5398 | <context context-type="linenumber">81,83</context> | 6007 | <context context-type="linenumber">81,83</context> |
@@ -5401,24 +6010,24 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5401 | <trans-unit id="e4ce50f3019e3ebe9a479784c6cb68a31c7a8231" datatype="html"> | 6010 | <trans-unit id="e4ce50f3019e3ebe9a479784c6cb68a31c7a8231" datatype="html"> |
5402 | <source>What are the consequences?</source> | 6011 | <source>What are the consequences?</source> |
5403 | <target state="new">What are the consequences?</target> | 6012 | <target state="new">What are the consequences?</target> |
5404 | 6013 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">85</context></context-group> | |
5405 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 6014 | </trans-unit> |
5406 | <trans-unit id="14d3bc3dafb4a09f3c79daac07ebf30e76457f63" datatype="html"> | 6015 | <trans-unit id="14d3bc3dafb4a09f3c79daac07ebf30e76457f63" datatype="html"> |
5407 | <source>In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. In practice, this is much more difficult because:</source> | 6016 | <source>In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. In practice, this is much more difficult because:</source> |
5408 | <target state="new"> | 6017 | <target state="new"> |
5409 | In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. | 6018 | In theory, someone with enough technical skills could create a script that tracks which IP is downloading which video. |
5410 | In practice, this is much more difficult because: | 6019 | In practice, this is much more difficult because: |
5411 | </target> | 6020 | </target> |
5412 | 6021 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">88</context></context-group> | |
5413 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> | 6022 | </trans-unit> |
5414 | <trans-unit id="fc899a02306f4fd2ce20978136d252dd6eb346cf" datatype="html"> | 6023 | <trans-unit id="fc899a02306f4fd2ce20978136d252dd6eb346cf" datatype="html"> |
5415 | <source>An HTTP request has to be sent on each tracker for each video to spy. If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot)</source> | 6024 | <source>An HTTP request has to be sent on each tracker for each video to spy. If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot)</source> |
5416 | <target state="new"> | 6025 | <target state="new"> |
5417 | An HTTP request has to be sent on each tracker for each video to spy. | 6026 | An HTTP request has to be sent on each tracker for each video to spy. |
5418 | If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot) | 6027 | If we want to spy all PeerTube's videos, we have to send as many requests as there are videos (so potentially a lot) |
5419 | </target> | 6028 | </target> |
5420 | 6029 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">94</context></context-group> | |
5421 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">94</context></context-group></trans-unit> | 6030 | </trans-unit> |
5422 | <trans-unit id="278669a7857ee77786cf4578b11bb601002cf7a8" datatype="html"> | 6031 | <trans-unit id="278669a7857ee77786cf4578b11bb601002cf7a8" datatype="html"> |
5423 | <source>For each request sent, the tracker returns random peers at a limited number. For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50 requests sent to know every peer in the swarm</source> | 6032 | <source>For each request sent, the tracker returns random peers at a limited number. For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50 requests sent to know every peer in the swarm</source> |
5424 | <target state="new"> | 6033 | <target state="new"> |
@@ -5426,50 +6035,51 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5426 | For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50 | 6035 | For instance, if there are 1000 peers in the swarm and the tracker sends only 20 peers for each request, there must be at least 50 |
5427 | requests sent to know every peer in the swarm | 6036 | requests sent to know every peer in the swarm |
5428 | </target> | 6037 | </target> |
5429 | 6038 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">99</context></context-group> | |
5430 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">99</context></context-group></trans-unit> | 6039 | </trans-unit> |
5431 | <trans-unit id="3f47eec5fb00ae46a0035cc8f9e428e3d549e337" datatype="html"> | 6040 | <trans-unit id="3f47eec5fb00ae46a0035cc8f9e428e3d549e337" datatype="html"> |
5432 | <source>Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour</source> | 6041 | <source>Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour</source> |
5433 | <target state="new"> | 6042 | <target state="new"> |
5434 | Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour | 6043 | Those requests have to be sent regularly to know who starts/stops watching a video. It is easy to detect that kind of behaviour |
5435 | </target> | 6044 | </target> |
5436 | 6045 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">105</context></context-group> | |
5437 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">105</context></context-group></trans-unit> | 6046 | </trans-unit> |
5438 | <trans-unit id="a5089b43b2fd8a2639bc7a4cdfaa90e869f51cc3" datatype="html"> | 6047 | <trans-unit id="a5089b43b2fd8a2639bc7a4cdfaa90e869f51cc3" datatype="html"> |
5439 | <source>If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the video</source> | 6048 | <source>If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the video</source> |
5440 | <target state="new"> | 6049 | <target state="new"> |
5441 | If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the | 6050 | If an IP address is stored in the tracker, it doesn't mean that the person behind the IP (if this person exists) has watched the |
5442 | video | 6051 | video |
5443 | </target> | 6052 | </target> |
5444 | 6053 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">109</context></context-group> | |
5445 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">109</context></context-group></trans-unit> | 6054 | </trans-unit> |
5446 | <trans-unit id="ff5458261525060246f1f49a740c8d094dc4bac4" datatype="html"> | 6055 | <trans-unit id="ff5458261525060246f1f49a740c8d094dc4bac4" datatype="html"> |
5447 | <source>The IP address is a vague information: usually, it regularly changes and can represent many persons or entities</source> | 6056 | <source>The IP address is a vague information: usually, it regularly changes and can represent many persons or entities</source> |
5448 | <target state="new"> | 6057 | <target state="new"> |
5449 | The IP address is a vague information: usually, it regularly changes and can represent many persons or entities | 6058 | The IP address is a vague information: usually, it regularly changes and can represent many persons or entities |
5450 | </target> | 6059 | </target> |
5451 | 6060 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">114</context></context-group> | |
5452 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">114</context></context-group></trans-unit><trans-unit id="f360bcf79135ae541bdb1bbd419ccc4cb2fb6ab3" datatype="html"> | 6061 | </trans-unit> |
5453 | <source> Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </source><target state="new"> Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </target> | 6062 | <trans-unit id="f360bcf79135ae541bdb1bbd419ccc4cb2fb6ab3" datatype="html"> |
6063 | <source>Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </source> | ||
6064 | <target state="new"> Web peers are not publicly accessible: because we use the websocket transport, the protocol is different from classic BitTorrent tracker. When you are in a web browser, you send a signal containing your IP address to the tracker that will randomly choose other peers to forward the information to. See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://github.com/yciabaud/webtorrent/blob/beps/bep_webrtc.rst">"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> for more information </target> | ||
5454 | <context-group purpose="location"> | 6065 | <context-group purpose="location"> |
5455 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> | 6066 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> |
5456 | <context context-type="linenumber">118,122</context> | 6067 | <context context-type="linenumber">118,122</context> |
5457 | </context-group> | 6068 | </context-group> |
5458 | </trans-unit> | 6069 | </trans-unit> |
5459 | |||
5460 | <trans-unit id="e916a82a25fb892f83d2b63ca55594dc7d02f36a" datatype="html"> | 6070 | <trans-unit id="e916a82a25fb892f83d2b63ca55594dc7d02f36a" datatype="html"> |
5461 | <source>The worst-case scenario of an average person spying on their friends is quite unlikely. There are much more effective ways to get that kind of information.</source> | 6071 | <source>The worst-case scenario of an average person spying on their friends is quite unlikely. There are much more effective ways to get that kind of information.</source> |
5462 | <target state="new"> | 6072 | <target state="new"> |
5463 | The worst-case scenario of an average person spying on their friends is quite unlikely. | 6073 | The worst-case scenario of an average person spying on their friends is quite unlikely. |
5464 | There are much more effective ways to get that kind of information. | 6074 | There are much more effective ways to get that kind of information. |
5465 | </target> | 6075 | </target> |
5466 | 6076 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">126</context></context-group> | |
5467 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 6077 | </trans-unit> |
5468 | <trans-unit id="4bf47a1ae952bf42a4682a5ecddb0bfb8c9adfaf" datatype="html"> | 6078 | <trans-unit id="4bf47a1ae952bf42a4682a5ecddb0bfb8c9adfaf" datatype="html"> |
5469 | <source>How does PeerTube compare with YouTube?</source> | 6079 | <source>How does PeerTube compare with YouTube?</source> |
5470 | <target state="new">How does PeerTube compare with YouTube?</target> | 6080 | <target state="new">How does PeerTube compare with YouTube?</target> |
5471 | 6081 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">130</context></context-group> | |
5472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">130</context></context-group></trans-unit> | 6082 | </trans-unit> |
5473 | <trans-unit id="1fd22031e4f7920db2300cc76ee9c8516b25f50d" datatype="html"> | 6083 | <trans-unit id="1fd22031e4f7920db2300cc76ee9c8516b25f50d" datatype="html"> |
5474 | <source>The threats to privacy with YouTube are different from PeerTube's. In YouTube's case, the platform gathers a huge amount of your personal information (not only your IP) to analyze them and track you. Moreover, YouTube is owned by Google/Alphabet, a company that tracks you across many websites (via AdSense or Google Analytics).</source> | 6084 | <source>The threats to privacy with YouTube are different from PeerTube's. In YouTube's case, the platform gathers a huge amount of your personal information (not only your IP) to analyze them and track you. Moreover, YouTube is owned by Google/Alphabet, a company that tracks you across many websites (via AdSense or Google Analytics).</source> |
5475 | <target state="new"> | 6085 | <target state="new"> |
@@ -5477,13 +6087,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5477 | In YouTube's case, the platform gathers a huge amount of your personal information (not only your IP) to analyze them and track you. | 6087 | In YouTube's case, the platform gathers a huge amount of your personal information (not only your IP) to analyze them and track you. |
5478 | Moreover, YouTube is owned by Google/Alphabet, a company that tracks you across many websites (via AdSense or Google Analytics). | 6088 | Moreover, YouTube is owned by Google/Alphabet, a company that tracks you across many websites (via AdSense or Google Analytics). |
5479 | </target> | 6089 | </target> |
5480 | 6090 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">133</context></context-group> | |
5481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">133</context></context-group></trans-unit> | 6091 | </trans-unit> |
5482 | <trans-unit id="3c2990d5e452bdf2317ff23745db70705d848d99" datatype="html"> | 6092 | <trans-unit id="3c2990d5e452bdf2317ff23745db70705d848d99" datatype="html"> |
5483 | <source>What can I do to limit the exposure of my IP address?</source> | 6093 | <source>What can I do to limit the exposure of my IP address?</source> |
5484 | <target state="new">What can I do to limit the exposure of my IP address?</target> | 6094 | <target state="new">What can I do to limit the exposure of my IP address?</target> |
5485 | 6095 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">138</context></context-group> | |
5486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">138</context></context-group></trans-unit> | 6096 | </trans-unit> |
5487 | <trans-unit id="301e86f807ed659ff42d3b4bba6e03b88bff7907" datatype="html"> | 6097 | <trans-unit id="301e86f807ed659ff42d3b4bba6e03b88bff7907" datatype="html"> |
5488 | <source>Your IP address is public so every time you consult a website, there is a number of actors (in addition to the final website) seeing your IP in their connection logs: ISP/routers/trackers/CDN and more. PeerTube is transparent about it: we warn you that if you want to keep your IP private, you must use a VPN or Tor Browser. Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense.</source> | 6098 | <source>Your IP address is public so every time you consult a website, there is a number of actors (in addition to the final website) seeing your IP in their connection logs: ISP/routers/trackers/CDN and more. PeerTube is transparent about it: we warn you that if you want to keep your IP private, you must use a VPN or Tor Browser. Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense.</source> |
5489 | <target state="new"> | 6099 | <target state="new"> |
@@ -5492,52 +6102,52 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5492 | PeerTube is transparent about it: we warn you that if you want to keep your IP private, you must use a VPN or Tor Browser. | 6102 | PeerTube is transparent about it: we warn you that if you want to keep your IP private, you must use a VPN or Tor Browser. |
5493 | Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense. | 6103 | Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense. |
5494 | </target> | 6104 | </target> |
5495 | 6105 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">141</context></context-group> | |
5496 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">141</context></context-group></trans-unit> | 6106 | </trans-unit> |
5497 | <trans-unit id="8ce78dd287b9a9dde5079916425ea66466530e41" datatype="html"> | 6107 | <trans-unit id="8ce78dd287b9a9dde5079916425ea66466530e41" datatype="html"> |
5498 | <source>What will be done to mitigate this problem?</source> | 6108 | <source>What will be done to mitigate this problem?</source> |
5499 | <target state="new">What will be done to mitigate this problem?</target> | 6109 | <target state="new">What will be done to mitigate this problem?</target> |
5500 | 6110 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">147</context></context-group> | |
5501 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">147</context></context-group></trans-unit> | 6111 | </trans-unit> |
5502 | <trans-unit id="db4d65ed605b948169d51eac4c1b2ff662088eb7" datatype="html"> | 6112 | <trans-unit id="db4d65ed605b948169d51eac4c1b2ff662088eb7" datatype="html"> |
5503 | <source>PeerTube wants to deliver the best countermeasures possible, to give you more choice and render attacks less likely. Here is what we put in place so far:</source> | 6113 | <source>PeerTube wants to deliver the best countermeasures possible, to give you more choice and render attacks less likely. Here is what we put in place so far:</source> |
5504 | <target state="new"> | 6114 | <target state="new"> |
5505 | PeerTube wants to deliver the best countermeasures possible, to give you more choice | 6115 | PeerTube wants to deliver the best countermeasures possible, to give you more choice |
5506 | and render attacks less likely. Here is what we put in place so far: | 6116 | and render attacks less likely. Here is what we put in place so far: |
5507 | </target> | 6117 | </target> |
5508 | 6118 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">150</context></context-group> | |
5509 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">150</context></context-group></trans-unit> | 6119 | </trans-unit> |
5510 | <trans-unit id="89c0c2c3150b99bbea20214895df56c8f8d6125d" datatype="html"> | 6120 | <trans-unit id="89c0c2c3150b99bbea20214895df56c8f8d6125d" datatype="html"> |
5511 | <source>We set a limit to the number of peers sent by the tracker</source> | 6121 | <source>We set a limit to the number of peers sent by the tracker</source> |
5512 | <target state="new">We set a limit to the number of peers sent by the tracker</target> | 6122 | <target state="new">We set a limit to the number of peers sent by the tracker</target> |
5513 | 6123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">155</context></context-group> | |
5514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">155</context></context-group></trans-unit> | 6124 | </trans-unit> |
5515 | <trans-unit id="b23c2b01db8b09f1a9bc6144d66291e28f02daf4" datatype="html"> | 6125 | <trans-unit id="b23c2b01db8b09f1a9bc6144d66291e28f02daf4" datatype="html"> |
5516 | <source>We set a limit on the request frequency received by the tracker</source> | 6126 | <source>We set a limit on the request frequency received by the tracker</source> |
5517 | <target state="new">We set a limit on the request frequency received by the tracker</target> | 6127 | <target state="new">We set a limit on the request frequency received by the tracker</target> |
5518 | 6128 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">156</context></context-group> | |
5519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 6129 | </trans-unit> |
5520 | <trans-unit id="b6f5d5d1aab25c1e675c66ea5dbb987654e9c0b0" datatype="html"> | 6130 | <trans-unit id="b6f5d5d1aab25c1e675c66ea5dbb987654e9c0b0" datatype="html"> |
5521 | <source>Allow instance admins to disable P2P from the administration interface</source> | 6131 | <source>Allow instance admins to disable P2P from the administration interface</source> |
5522 | <target state="new">Allow instance admins to disable P2P from the administration interface</target> | 6132 | <target state="new">Allow instance admins to disable P2P from the administration interface</target> |
5523 | 6133 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">157</context></context-group> | |
5524 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">157</context></context-group></trans-unit> | 6134 | </trans-unit> |
5525 | |||
5526 | <trans-unit id="a4a403ca6ccc6c4bd590cdfb045474270625ea12" datatype="html"> | 6135 | <trans-unit id="a4a403ca6ccc6c4bd590cdfb045474270625ea12" datatype="html"> |
5527 | <source>Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling WebRTC in your browser.</source> | 6136 | <source>Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling WebRTC in your browser.</source> |
5528 | <target state="new"> | 6137 | <target state="new"> |
5529 | Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling | 6138 | Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling |
5530 | WebRTC in your browser. | 6139 | WebRTC in your browser. |
5531 | </target> | 6140 | </target> |
5532 | 6141 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">161</context></context-group> | |
5533 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 6142 | </trans-unit> |
5534 | |||
5535 | <trans-unit id="39dabfebe4a70cc00aa454f790b81cf453d38304" datatype="html"> | 6143 | <trans-unit id="39dabfebe4a70cc00aa454f790b81cf453d38304" datatype="html"> |
5536 | <source>This instance does not have instances followers.</source> | 6144 | <source>This instance does not have instances followers.</source> |
5537 | <target state="new">This instance does not have instances followers.</target> | 6145 | <target state="new">This instance does not have instances followers.</target> |
5538 | 6146 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">6</context></context-group> | |
5539 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="144d423719b19c9f99ee6aaff85aed693d5cdd97" datatype="html"> | 6147 | </trans-unit> |
5540 | <source>Show full list</source><target state="new">Show full list</target> | 6148 | <trans-unit id="144d423719b19c9f99ee6aaff85aed693d5cdd97" datatype="html"> |
6149 | <source>Show full list</source> | ||
6150 | <target state="new">Show full list</target> | ||
5541 | <context-group purpose="location"> | 6151 | <context-group purpose="location"> |
5542 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 6152 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
5543 | <context context-type="linenumber">12</context> | 6153 | <context context-type="linenumber">12</context> |
@@ -5546,138 +6156,146 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5546 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 6156 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
5547 | <context context-type="linenumber">24</context> | 6157 | <context context-type="linenumber">24</context> |
5548 | </context-group> | 6158 | </context-group> |
5549 | </trans-unit><trans-unit id="9a9dcdc62c7e0048f4f4702b0327dda350341abc" datatype="html"> | 6159 | </trans-unit> |
5550 | <source>This instance is not following any other.</source><target state="new">This instance is not following any other.</target> | 6160 | <trans-unit id="9a9dcdc62c7e0048f4f4702b0327dda350341abc" datatype="html"> |
5551 | 6161 | <source>This instance is not following any other.</source> | |
5552 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 6162 | <target state="new">This instance is not following any other.</target> |
5553 | 6163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">18</context></context-group> | |
5554 | 6164 | </trans-unit> | |
5555 | <trans-unit id="4195286790385468087" datatype="html"> | 6165 | <trans-unit id="4195286790385468087" datatype="html"> |
5556 | <source>About this instance</source> | 6166 | <source>About this instance</source> |
5557 | <target state="new">About this instance</target> | 6167 | <target state="new">About this instance</target> |
5558 | 6168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">26</context></context-group> | |
5559 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 6169 | </trans-unit> |
5560 | <trans-unit id="8773846522957677259" datatype="html"> | 6170 | <trans-unit id="8773846522957677259" datatype="html"> |
5561 | <source>About PeerTube</source> | 6171 | <source>About PeerTube</source> |
5562 | <target state="new">About PeerTube</target> | 6172 | <target state="translated">PeerTube hakkında</target> |
5563 | 6173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">38</context></context-group> | |
5564 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="1812900507515561988" datatype="html"> | 6174 | </trans-unit> |
5565 | <source>About this instance's network</source><target state="new">About this instance's network</target> | 6175 | <trans-unit id="1812900507515561988" datatype="html"> |
5566 | 6176 | <source>About this instance's network</source> | |
5567 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">47</context></context-group></trans-unit><trans-unit id="892073694820881630" datatype="html"> | 6177 | <target state="new">About this instance's network</target> |
5568 | <source>Link copied</source><target state="new">Link copied</target> | 6178 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">47</context></context-group> |
5569 | 6179 | </trans-unit> | |
5570 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.ts</context><context context-type="linenumber">91</context></context-group></trans-unit> | 6180 | <trans-unit id="892073694820881630" datatype="html"> |
5571 | 6181 | <source>Link copied</source> | |
6182 | <target state="translated">Bağlantı kopyalandı</target> | ||
6183 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.ts</context><context context-type="linenumber">91</context></context-group> | ||
6184 | </trans-unit> | ||
5572 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 6185 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5573 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 6186 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5574 | <target state="new">Developed with ❤ by | 6187 | <target state="new">Developed with ❤ by |
5575 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Framasoft | 6188 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Framasoft |
5576 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 6189 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
5577 | </target> | 6190 | </target> |
5578 | 6191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube-contributors.component.html</context><context context-type="linenumber">3</context></context-group> | |
5579 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube-contributors.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 6192 | </trans-unit> |
5580 | <trans-unit id="4499806949402133d08a5029cb5462c5ea25336d" datatype="html"> | 6193 | <trans-unit id="4499806949402133d08a5029cb5462c5ea25336d" datatype="html"> |
5581 | <source>Create an account</source> | 6194 | <source>Create an account</source> |
5582 | <target state="new">Create an account</target> | 6195 | <target state="new">Create an account</target> |
5583 | 6196 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">4</context></context-group> | |
5584 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 6197 | </trans-unit> |
5585 | |||
5586 | <trans-unit id="9082008222523034483" datatype="html"> | 6198 | <trans-unit id="9082008222523034483" datatype="html"> |
5587 | <source>Get help</source> | 6199 | <source>Get help</source> |
5588 | <target state="new">Get help</target> | 6200 | <target state="new">Get help</target> |
5589 | 6201 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">16</context></context-group> | |
5590 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">16</context></context-group></trans-unit> | 6202 | </trans-unit> |
5591 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 6203 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5592 | <source>Create my account</source> | 6204 | <source>Create my account</source> |
5593 | <target state="new">Create my account</target> | 6205 | <target state="new">Create my account</target> |
5594 | 6206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">38</context></context-group> | |
5595 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6207 | </trans-unit> |
5596 | <trans-unit id="cb9d0623f382c9803df997fb30b9a33a5438d919" datatype="html"> | 6208 | <trans-unit id="cb9d0623f382c9803df997fb30b9a33a5438d919" datatype="html"> |
5597 | <source>PeerTube is creating your account...</source> | 6209 | <source>PeerTube is creating your account...</source> |
5598 | <target state="new">PeerTube is creating your account...</target> | 6210 | <target state="new">PeerTube is creating your account...</target> |
5599 | 6211 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">46</context></context-group> | |
5600 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 6212 | </trans-unit> |
5601 | <trans-unit id="8dd413cee2228118c536f503709329a4d1a395e2" datatype="html"> | 6213 | <trans-unit id="8dd413cee2228118c536f503709329a4d1a395e2" datatype="html"> |
5602 | <source>Done</source> | 6214 | <source>Done</source> |
5603 | <target state="new">Done</target> | 6215 | <target state="new">Done</target> |
5604 | 6216 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">42</context></context-group> | |
5605 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 6217 | </trans-unit> |
5606 | <trans-unit id="88b19801d99f5dcc4043d6d30dfa32c3f68da5ea" datatype="html"> | 6218 | <trans-unit id="88b19801d99f5dcc4043d6d30dfa32c3f68da5ea" datatype="html"> |
5607 | <source>Who are we?</source> | 6219 | <source>Who are we?</source> |
5608 | <target state="new">Who are we?</target> | 6220 | <target state="translated">Biz kimiz?</target> |
5609 | 6221 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">19</context></context-group> | |
5610 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 6222 | </trans-unit> |
5611 | <trans-unit id="05db4afa3e85d23d29fcfacaa5a61f0d2ae02dc0" datatype="html"> | 6223 | <trans-unit id="05db4afa3e85d23d29fcfacaa5a61f0d2ae02dc0" datatype="html"> |
5612 | <source>How long do we plan to maintain this instance?</source> | 6224 | <source>How long do we plan to maintain this instance?</source> |
5613 | <target state="new">How long do we plan to maintain this instance?</target> | 6225 | <target state="new">How long do we plan to maintain this instance?</target> |
5614 | 6226 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">24</context></context-group> | |
5615 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 6227 | </trans-unit> |
5616 | <trans-unit id="b7ad73ca1e5e4a530ca4eaa5285e4fd0c376c089" datatype="html"> | 6228 | <trans-unit id="b7ad73ca1e5e4a530ca4eaa5285e4fd0c376c089" datatype="html"> |
5617 | <source>How will we finance this instance?</source> | 6229 | <source>How will we finance this instance?</source> |
5618 | <target state="new">How will we finance this instance?</target> | 6230 | <target state="new">How will we finance this instance?</target> |
5619 | 6231 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">29</context></context-group> | |
5620 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 6232 | </trans-unit> |
5621 | <trans-unit id="24e4921833f6fff4376e0ec13a33c44a85922355" datatype="html"> | 6233 | <trans-unit id="24e4921833f6fff4376e0ec13a33c44a85922355" datatype="html"> |
5622 | <source>Administrators & Sustainability</source> | 6234 | <source>Administrators & Sustainability</source> |
5623 | <target state="new">Administrators & Sustainability</target> | 6235 | <target state="new">Administrators & Sustainability</target> |
5624 | 6236 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">15</context></context-group> | |
5625 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 6237 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">15</context></context-group> |
6238 | </trans-unit> | ||
5626 | <trans-unit id="041620337eaebda87971d345d05697639dfe78e4" datatype="html"> | 6239 | <trans-unit id="041620337eaebda87971d345d05697639dfe78e4" datatype="html"> |
5627 | <source>Step</source> | 6240 | <source>Step</source> |
5628 | <target state="new">Step</target> | 6241 | <target state="new">Step</target> |
5629 | 6242 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/custom-stepper.component.html</context><context context-type="linenumber">9</context></context-group> | |
5630 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/custom-stepper.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> | 6243 | </trans-unit> |
5631 | <trans-unit id="6c7534a7c0265f2285e952978b4241211199172b" datatype="html"> | 6244 | <trans-unit id="6c7534a7c0265f2285e952978b4241211199172b" datatype="html"> |
5632 | <source>A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content.<x id="LINE_BREAK"/> For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. </source> | 6245 | <source>A channel is an entity in which you upload your videos. Creating several of them helps you to organize and separate your content.<x id="LINE_BREAK"/> For example, you could decide to have a channel to publish your piano concerts, and another channel in which you publish your videos talking about ecology. </source> |
5633 | <target state="new"/> | 6246 | <target state="new"/> |
5634 | 6247 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">5</context></context-group> | |
5635 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 6248 | </trans-unit> |
5636 | <trans-unit id="df3021e29cbce57c12151ae6e1e0bf8c640e87da" datatype="html"> | 6249 | <trans-unit id="df3021e29cbce57c12151ae6e1e0bf8c640e87da" datatype="html"> |
5637 | <source>Other users can decide to subscribe any channel they want, to be notified when you publish a new video.</source> | 6250 | <source>Other users can decide to subscribe any channel they want, to be notified when you publish a new video.</source> |
5638 | <target state="new">Other users can decide to subscribe any channel they want, to be notified when you publish a new video.</target> | 6251 | <target state="new">Other users can decide to subscribe any channel they want, to be notified when you publish a new video.</target> |
5639 | 6252 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">10</context></context-group> | |
5640 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> | 6253 | </trans-unit> |
5641 | <trans-unit id="79b3619b36af71e5c70394a3a7b31545e32d83f0" datatype="html"> | 6254 | <trans-unit id="79b3619b36af71e5c70394a3a7b31545e32d83f0" datatype="html"> |
5642 | <source>Channel display name</source> | 6255 | <source>Channel display name</source> |
5643 | <target state="new">Channel display name</target> | 6256 | <target state="new">Channel display name</target> |
5644 | 6257 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">15</context></context-group> | |
5645 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 6258 | </trans-unit> |
5646 | <trans-unit id="306a2ab7f93c214af3f5579f54bd8b3ad0d5560e" datatype="html"> | 6259 | <trans-unit id="306a2ab7f93c214af3f5579f54bd8b3ad0d5560e" datatype="html"> |
5647 | <source>Channel name</source> | 6260 | <source>Channel name</source> |
5648 | <target state="new">Channel name</target> | 6261 | <target state="new">Channel name</target> |
5649 | 6262 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">30</context></context-group> | |
5650 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">94</context></context-group></trans-unit> | 6263 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">94</context></context-group> |
6264 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">94</context></context-group> | ||
6265 | </trans-unit> | ||
5651 | <trans-unit id="4ddf54b5beec24b3fe074bfb9cbbc175613634ab" datatype="html"> | 6266 | <trans-unit id="4ddf54b5beec24b3fe074bfb9cbbc175613634ab" datatype="html"> |
5652 | <source>john_channel</source> | 6267 | <source>john_channel</source> |
5653 | <target state="new">john_channel</target> | 6268 | <target state="new">john_channel</target> |
5654 | 6269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">96</context></context-group> | |
5655 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">96</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 6270 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">96</context></context-group> |
6271 | </trans-unit> | ||
5656 | <trans-unit id="cb4c2c5a4f4b34d3158f2344a3e625d0dc321f4d" datatype="html"> | 6272 | <trans-unit id="cb4c2c5a4f4b34d3158f2344a3e625d0dc321f4d" datatype="html"> |
5657 | <source>Example: my_super_channel</source> | 6273 | <source>Example: my_super_channel</source> |
5658 | <target state="new">Example: my_super_channel</target> | 6274 | <target state="new">Example: my_super_channel</target> |
5659 | 6275 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">34</context></context-group> | |
5660 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 6276 | </trans-unit> |
5661 | <trans-unit id="4a935862bd3120d5878e9635a9d46dfc1bcaedb4" datatype="html"> | 6277 | <trans-unit id="4a935862bd3120d5878e9635a9d46dfc1bcaedb4" datatype="html"> |
5662 | <source>The channel name is a unique identifier of your channel on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it.</source> | 6278 | <source>The channel name is a unique identifier of your channel on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it.</source> |
5663 | <target state="new"> | 6279 | <target state="new"> |
5664 | The channel name is a unique identifier of your channel on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it. | 6280 | The channel name is a unique identifier of your channel on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it. |
5665 | </target> | 6281 | </target> |
5666 | 6282 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">43</context></context-group> | |
5667 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit><trans-unit id="4b84dbfc388651c74c77bba7ee0078b5714baf00" datatype="html"> | 6283 | </trans-unit> |
5668 | <source> Channel name cannot be the same as your account name. You can click on the first step to update your account name. </source><target state="new"> Channel name cannot be the same as your account name. You can click on the first step to update your account name. </target> | 6284 | <trans-unit id="4b84dbfc388651c74c77bba7ee0078b5714baf00" datatype="html"> |
5669 | 6285 | <source>Channel name cannot be the same as your account name. You can click on the first step to update your account name.</source> | |
5670 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> | 6286 | <target state="new"> Channel name cannot be the same as your account name. You can click on the first step to update your account name. </target> |
5671 | 6287 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">51</context></context-group> | |
5672 | 6288 | </trans-unit> | |
5673 | <trans-unit id="095664da04cb19afa1c2bb5992db6e253a664dd6" datatype="html"> | 6289 | <trans-unit id="095664da04cb19afa1c2bb5992db6e253a664dd6" datatype="html"> |
5674 | <source>The username is a unique identifier of your account on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it.</source> | 6290 | <source>The username is a unique identifier of your account on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it.</source> |
5675 | <target state="new"> | 6291 | <target state="new"> |
5676 | The username is a unique identifier of your account on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it. | 6292 | The username is a unique identifier of your account on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it. |
5677 | </target> | 6293 | </target> |
5678 | 6294 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">36</context></context-group> | |
5679 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit><trans-unit id="76118692a327ca6158811d5c3f4e9eeea30dc8b1" datatype="html"> | 6295 | </trans-unit> |
5680 | <source> Video uploads are disabled on this instance, hence your account won't be able to upload videos. </source><target state="new"> Video uploads are disabled on this instance, hence your account won't be able to upload videos. </target> | 6296 | <trans-unit id="76118692a327ca6158811d5c3f4e9eeea30dc8b1" datatype="html"> |
6297 | <source>Video uploads are disabled on this instance, hence your account won't be able to upload videos.</source> | ||
6298 | <target state="new"> Video uploads are disabled on this instance, hence your account won't be able to upload videos. </target> | ||
5681 | <context-group purpose="location"> | 6299 | <context-group purpose="location"> |
5682 | <context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context> | 6300 | <context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context> |
5683 | <context context-type="linenumber">4,5</context> | 6301 | <context context-type="linenumber">4,5</context> |
@@ -5686,35 +6304,37 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5686 | <trans-unit id="d315d635144b1104f1c1e9ef80ff3d07fcfa571c" datatype="html"> | 6304 | <trans-unit id="d315d635144b1104f1c1e9ef80ff3d07fcfa571c" datatype="html"> |
5687 | <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> | 6305 | <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> |
5688 | <target state="new"/> | 6306 | <target state="new"/> |
5689 | 6307 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-terms.component.html</context><context context-type="linenumber">6</context></context-group> | |
5690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-terms.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 6308 | </trans-unit> |
5691 | <trans-unit id="3301086086650990787" datatype="html"> | 6309 | <trans-unit id="3301086086650990787" datatype="html"> |
5692 | <source>Register</source> | 6310 | <source>Register</source> |
5693 | <target state="new">Register</target> | 6311 | <target state="new">Register</target> |
5694 | 6312 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-routing.module.ts</context><context context-type="linenumber">14</context></context-group> | |
5695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-routing.module.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 6313 | </trans-unit> |
5696 | |||
5697 | <trans-unit id="6979021199788941693" datatype="html"> | 6314 | <trans-unit id="6979021199788941693" datatype="html"> |
5698 | <source>Your message has been sent.</source> | 6315 | <source>Your message has been sent.</source> |
5699 | <target state="new">Your message has been sent.</target> | 6316 | <target state="new">Your message has been sent.</target> |
5700 | 6317 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.ts</context><context context-type="linenumber">77</context></context-group> | |
5701 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 6318 | </trans-unit> |
5702 | <trans-unit id="2072135752262464360" datatype="html"> | 6319 | <trans-unit id="2072135752262464360" datatype="html"> |
5703 | <source>You already sent this form recently</source> | 6320 | <source>You already sent this form recently</source> |
5704 | <target state="new">You already sent this form recently</target> | 6321 | <target state="new">You already sent this form recently</target> |
5705 | 6322 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.ts</context><context context-type="linenumber">83</context></context-group> | |
5706 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> | 6323 | </trans-unit> |
5707 | <trans-unit id="3830487495946043372" datatype="html"> | 6324 | <trans-unit id="3830487495946043372" datatype="html"> |
5708 | <source>No description</source> | 6325 | <source>No description</source> |
5709 | <target state="new">No description</target> | 6326 | <target state="new">No description</target> |
5710 | 6327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.ts</context><context context-type="linenumber">41</context></context-group> | |
5711 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-about/video-channel-about.component.ts</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6328 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group> |
6329 | </trans-unit> | ||
5712 | <trans-unit id="819067926858619041" datatype="html"> | 6330 | <trans-unit id="819067926858619041" datatype="html"> |
5713 | <source>Account videos</source> | 6331 | <source>Account videos</source> |
5714 | <target state="new">Account videos</target> | 6332 | <target state="new">Account videos</target> |
5715 | 6333 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">48</context></context-group> | |
5716 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">48</context></context-group></trans-unit><trans-unit id="2131232107132374967" datatype="html"> | 6334 | </trans-unit> |
5717 | <source>Search videos within account</source><target state="new">Search videos within account</target> | 6335 | <trans-unit id="2131232107132374967" datatype="html"> |
6336 | <source>Search videos within account</source> | ||
6337 | <target state="new">Search videos within account</target> | ||
5718 | <context-group purpose="location"> | 6338 | <context-group purpose="location"> |
5719 | <context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context> | 6339 | <context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context> |
5720 | <context context-type="linenumber">61</context> | 6340 | <context context-type="linenumber">61</context> |
@@ -5723,36 +6343,48 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5723 | <trans-unit id="6823616469362610020" datatype="html"> | 6343 | <trans-unit id="6823616469362610020" datatype="html"> |
5724 | <source>Account video channels</source> | 6344 | <source>Account video channels</source> |
5725 | <target state="new">Account video channels</target> | 6345 | <target state="new">Account video channels</target> |
5726 | 6346 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">30</context></context-group> | |
5727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">30</context></context-group></trans-unit> | 6347 | </trans-unit> |
5728 | <trans-unit id="7678273613459026643" datatype="html"> | 6348 | <trans-unit id="7678273613459026643" datatype="html"> |
5729 | <source>About account</source> | 6349 | <source>About account</source> |
5730 | <target state="new">About account</target> | 6350 | <target state="new">About account</target> |
5731 | 6351 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">39</context></context-group> | |
5732 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 6352 | </trans-unit> |
5733 | <trans-unit id="3755500631176893489" datatype="html"> | 6353 | <trans-unit id="3755500631176893489" datatype="html"> |
5734 | <source>Published <x id="PH"/> videos</source> | 6354 | <source>Published <x id="PH"/> videos</source> |
5735 | <target state="new">Published | 6355 | <target state="new">Published |
5736 | <x id="PH"/> videos | 6356 | <x id="PH"/> videos |
5737 | </target> | 6357 | </target> |
5738 | 6358 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">87</context></context-group> | |
5739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">87</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-search/account-search.component.ts</context><context context-type="linenumber">90</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-videos/account-videos.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit><trans-unit id="e4965e47ed9cd6553d9a87a5112871a2dcbbe132" datatype="html"> | 6359 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-search/account-search.component.ts</context><context context-type="linenumber">90</context></context-group> |
5740 | <source>Display all videos (private, unlisted or not yet published)</source><target state="new">Display all videos (private, unlisted or not yet published)</target> | 6360 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-videos/account-videos.component.ts</context><context context-type="linenumber">79</context></context-group> |
5741 | 6361 | </trans-unit> | |
5742 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 6362 | <trans-unit id="e4965e47ed9cd6553d9a87a5112871a2dcbbe132" datatype="html"> |
6363 | <source>Display all videos (private, unlisted or not yet published)</source> | ||
6364 | <target state="new">Display all videos (private, unlisted or not yet published)</target> | ||
6365 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group> | ||
6366 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group> | ||
6367 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group> | ||
6368 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group> | ||
6369 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group> | ||
6370 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group> | ||
6371 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">39</context></context-group> | ||
6372 | </trans-unit> | ||
5743 | <trans-unit id="4856575356061361269" datatype="html"> | 6373 | <trans-unit id="4856575356061361269" datatype="html"> |
5744 | <source><x id="PH"/> direct account followers </source> | 6374 | <source><x id="PH"/> direct account followers </source> |
5745 | <target state="new"> | 6375 | <target state="new"> |
5746 | <x id="PH"/> direct account followers | 6376 | <x id="PH"/> direct account followers |
5747 | </target> | 6377 | </target> |
5748 | 6378 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">127</context></context-group> | |
5749 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 6379 | </trans-unit> |
5750 | <trans-unit id="6250999352462648289" datatype="html"> | 6380 | <trans-unit id="6250999352462648289" datatype="html"> |
5751 | <source>Report this account</source> | 6381 | <source>Report this account</source> |
5752 | <target state="new">Report this account</target> | 6382 | <target state="new">Report this account</target> |
5753 | 6383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">133</context></context-group> | |
5754 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit><trans-unit id="230b7aa1bc012b2e5bafc1f24b6aa734a978183c" datatype="html"> | 6384 | </trans-unit> |
5755 | <source>Search videos</source><target state="new">Search videos</target> | 6385 | <trans-unit id="230b7aa1bc012b2e5bafc1f24b6aa734a978183c" datatype="html"> |
6386 | <source>Search videos</source> | ||
6387 | <target state="new">Search videos</target> | ||
5756 | <context-group purpose="location"> | 6388 | <context-group purpose="location"> |
5757 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> | 6389 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> |
5758 | <context context-type="linenumber">48</context> | 6390 | <context context-type="linenumber">48</context> |
@@ -5761,79 +6393,84 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5761 | <trans-unit id="424703522835656806" datatype="html"> | 6393 | <trans-unit id="424703522835656806" datatype="html"> |
5762 | <source>VIDEO CHANNELS</source> | 6394 | <source>VIDEO CHANNELS</source> |
5763 | <target state="new">VIDEO CHANNELS</target> | 6395 | <target state="new">VIDEO CHANNELS</target> |
5764 | 6396 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">65</context></context-group> | |
5765 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">65</context></context-group></trans-unit> | 6397 | </trans-unit> |
5766 | <trans-unit id="1504521795586863905" datatype="html"> | 6398 | <trans-unit id="1504521795586863905" datatype="html"> |
5767 | <source>VIDEOS</source> | 6399 | <source>VIDEOS</source> |
5768 | <target state="new">VIDEOS</target> | 6400 | <target state="translated">VİDEOLAR</target> |
5769 | 6401 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">69</context></context-group> | |
5770 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6402 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">66</context></context-group> |
6403 | </trans-unit> | ||
5771 | <trans-unit id="1341921152640000230" datatype="html"> | 6404 | <trans-unit id="1341921152640000230" datatype="html"> |
5772 | <source>ABOUT</source> | 6405 | <source>ABOUT</source> |
5773 | <target state="new">ABOUT</target> | 6406 | <target state="translated">HAKKINDA</target> |
5774 | 6407 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</context></context-group> | |
5775 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 6408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">67</context></context-group> |
6409 | </trans-unit> | ||
5776 | <trans-unit id="25349740244798533" datatype="html"> | 6410 | <trans-unit id="25349740244798533" datatype="html"> |
5777 | <source>Username copied</source> | 6411 | <source>Username copied</source> |
5778 | <target state="new">Username copied</target> | 6412 | <target state="translated">Kullanıcı adı kopyalandı</target> |
5779 | 6413 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">96</context></context-group> | |
5780 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">96</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">95</context></context-group></trans-unit> | 6414 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">95</context></context-group> |
6415 | </trans-unit> | ||
5781 | <trans-unit id="9221735175659318025" datatype="html"> | 6416 | <trans-unit id="9221735175659318025" datatype="html"> |
5782 | <source>1 subscriber</source> | 6417 | <source>1 subscriber</source> |
5783 | <target state="new">1 subscriber</target> | 6418 | <target state="translated">1 abone</target> |
5784 | 6419 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">99</context></context-group> | |
5785 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">99</context></context-group></trans-unit> | 6420 | </trans-unit> |
5786 | <trans-unit id="4097331874769079975" datatype="html"> | 6421 | <trans-unit id="4097331874769079975" datatype="html"> |
5787 | <source><x id="PH"/> subscribers</source> | 6422 | <source><x id="PH"/> subscribers</source> |
5788 | <target state="new"><x id="PH"/> subscribers</target> | 6423 | <target state="translated"><x id="PH"/> abone</target> |
5789 | 6424 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">101</context></context-group> | |
5790 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">101</context></context-group></trans-unit> | 6425 | </trans-unit> |
5791 | <trans-unit id="db28493f1be1ed4d0edfea612181d27c9c530270" datatype="html"> | 6426 | <trans-unit id="db28493f1be1ed4d0edfea612181d27c9c530270" datatype="html"> |
5792 | <source>Instances you follow</source> | 6427 | <source>Instances you follow</source> |
5793 | <target state="new">Instances you follow</target> | 6428 | <target state="new">Instances you follow</target> |
5794 | 6429 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
5795 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 6430 | </trans-unit> |
5796 | <trans-unit id="5bd2577f482e8ac75e9fd9970c58b7f4b2995e56" datatype="html"> | 6431 | <trans-unit id="5bd2577f482e8ac75e9fd9970c58b7f4b2995e56" datatype="html"> |
5797 | <source>Instances following you</source> | 6432 | <source>Instances following you</source> |
5798 | <target state="new">Instances following you</target> | 6433 | <target state="new">Instances following you</target> |
5799 | 6434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">3</context></context-group> | |
5800 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 6435 | </trans-unit> |
5801 | <trans-unit id="1035838766454786107" datatype="html"> | 6436 | <trans-unit id="1035838766454786107" datatype="html"> |
5802 | <source>Audio-only</source> | 6437 | <source>Audio-only</source> |
5803 | <target state="new">Audio-only</target> | 6438 | <target state="translated">Yalnızca ses</target> |
5804 | 6439 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">61</context></context-group> | |
5805 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 6440 | </trans-unit> |
5806 | <trans-unit id="8011855989482474311" datatype="html"> | 6441 | <trans-unit id="8011855989482474311" datatype="html"> |
5807 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> | 6442 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> |
5808 | <target state="new">A <code>.mp4</code> that keeps the original audio track, with no video</target> | 6443 | <target state="new">A <code>.mp4</code> that keeps the original audio track, with no video</target> |
5809 | 6444 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">62</context></context-group> | |
5810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">62</context></context-group></trans-unit> | 6445 | </trans-unit> |
5811 | <trans-unit id="3768852440495368591" datatype="html"> | 6446 | <trans-unit id="3768852440495368591" datatype="html"> |
5812 | <source>240p</source> | 6447 | <source>240p</source> |
5813 | <target state="new">240p</target> | 6448 | <target state="translated">240p</target> |
5814 | 6449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">66</context></context-group> | |
5815 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6450 | </trans-unit> |
5816 | <trans-unit id="6824490596490222280" datatype="html"> | 6451 | <trans-unit id="6824490596490222280" datatype="html"> |
5817 | <source>360p</source> | 6452 | <source>360p</source> |
5818 | <target state="new">360p</target> | 6453 | <target state="translated">360p</target> |
5819 | 6454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">70</context></context-group> | |
5820 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">70</context></context-group></trans-unit> | 6455 | </trans-unit> |
5821 | <trans-unit id="4039682741786530029" datatype="html"> | 6456 | <trans-unit id="4039682741786530029" datatype="html"> |
5822 | <source>480p</source> | 6457 | <source>480p</source> |
5823 | <target state="new">480p</target> | 6458 | <target state="translated">480p</target> |
5824 | 6459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">74</context></context-group> | |
5825 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">74</context></context-group></trans-unit> | 6460 | </trans-unit> |
5826 | <trans-unit id="5165245100010036661" datatype="html"> | 6461 | <trans-unit id="5165245100010036661" datatype="html"> |
5827 | <source>720p</source> | 6462 | <source>720p</source> |
5828 | <target state="new">720p</target> | 6463 | <target state="translated">720p</target> |
5829 | 6464 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">78</context></context-group> | |
5830 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 6465 | </trans-unit> |
5831 | <trans-unit id="7709767791012306261" datatype="html"> | 6466 | <trans-unit id="7709767791012306261" datatype="html"> |
5832 | <source>1080p</source> | 6467 | <source>1080p</source> |
5833 | <target state="new">1080p</target> | 6468 | <target state="translated">1080p</target> |
5834 | 6469 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">82</context></context-group> | |
5835 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3671005503070777897" datatype="html"> | 6470 | </trans-unit> |
5836 | <source>1440p</source><target state="new">1440p</target> | 6471 | <trans-unit id="3671005503070777897" datatype="html"> |
6472 | <source>1440p</source> | ||
6473 | <target state="translated">1440p</target> | ||
5837 | <context-group purpose="location"> | 6474 | <context-group purpose="location"> |
5838 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> | 6475 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> |
5839 | <context context-type="linenumber">86</context> | 6476 | <context context-type="linenumber">86</context> |
@@ -5841,819 +6478,903 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5841 | </trans-unit> | 6478 | </trans-unit> |
5842 | <trans-unit id="597839553814574067" datatype="html"> | 6479 | <trans-unit id="597839553814574067" datatype="html"> |
5843 | <source>2160p</source> | 6480 | <source>2160p</source> |
5844 | <target state="new">2160p</target> | 6481 | <target state="translated">2160p</target> |
5845 | 6482 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">90</context></context-group> | |
5846 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">90</context></context-group></trans-unit> | 6483 | </trans-unit> |
5847 | <trans-unit id="3957742085471141221" datatype="html"> | 6484 | <trans-unit id="3957742085471141221" datatype="html"> |
5848 | <source>Auto (via ffmpeg)</source> | 6485 | <source>Auto (via ffmpeg)</source> |
5849 | <target state="new">Auto (via ffmpeg)</target> | 6486 | <target state="new">Auto (via ffmpeg)</target> |
5850 | 6487 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">97</context></context-group> | |
5851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">97</context></context-group></trans-unit><trans-unit id="931255636742351800" datatype="html"> | 6488 | </trans-unit> |
5852 | <source>No limit</source><target state="new">No limit</target> | 6489 | <trans-unit id="931255636742351800" datatype="html"> |
5853 | 6490 | <source>No limit</source> | |
5854 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">105</context></context-group></trans-unit><trans-unit id="5250062810079582285" datatype="html"> | 6491 | <target state="new">No limit</target> |
5855 | <source>1 hour</source><target state="new">1 hour</target> | 6492 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">105</context></context-group> |
5856 | 6493 | </trans-unit> | |
5857 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">106</context></context-group></trans-unit><trans-unit id="8662356672298904015" datatype="html"> | 6494 | <trans-unit id="5250062810079582285" datatype="html"> |
5858 | <source>3 hours</source><target state="new">3 hours</target> | 6495 | <source>1 hour</source> |
5859 | 6496 | <target state="translated">1 saat</target> | |
5860 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">107</context></context-group></trans-unit><trans-unit id="1794624538833178491" datatype="html"> | 6497 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">106</context></context-group> |
5861 | <source>5 hours</source><target state="new">5 hours</target> | 6498 | </trans-unit> |
5862 | 6499 | <trans-unit id="8662356672298904015" datatype="html"> | |
5863 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">108</context></context-group></trans-unit><trans-unit id="4941148355486671862" datatype="html"> | 6500 | <source>3 hours</source> |
5864 | <source>10 hours</source><target state="new">10 hours</target> | 6501 | <target state="translated">3 saat</target> |
5865 | 6502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">107</context></context-group> | |
5866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">109</context></context-group></trans-unit><trans-unit id="1618463615802675111" datatype="html"> | 6503 | </trans-unit> |
5867 | <source>threads</source><target state="new">threads</target> | 6504 | <trans-unit id="1794624538833178491" datatype="html"> |
5868 | 6505 | <source>5 hours</source> | |
5869 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">149</context></context-group></trans-unit><trans-unit id="593234948551881507" datatype="html"> | 6506 | <target state="translated">5 saat</target> |
5870 | <source>thread</source><target state="new">thread</target> | 6507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">108</context></context-group> |
5871 | 6508 | </trans-unit> | |
5872 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">150</context></context-group></trans-unit> | 6509 | <trans-unit id="4941148355486671862" datatype="html"> |
6510 | <source>10 hours</source> | ||
6511 | <target state="translated">10 saat</target> | ||
6512 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">109</context></context-group> | ||
6513 | </trans-unit> | ||
6514 | <trans-unit id="1618463615802675111" datatype="html"> | ||
6515 | <source>threads</source> | ||
6516 | <target state="new">threads</target> | ||
6517 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">149</context></context-group> | ||
6518 | </trans-unit> | ||
6519 | <trans-unit id="593234948551881507" datatype="html"> | ||
6520 | <source>thread</source> | ||
6521 | <target state="new">thread</target> | ||
6522 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">150</context></context-group> | ||
6523 | </trans-unit> | ||
5873 | <trans-unit id="2060042292048624940" datatype="html"> | 6524 | <trans-unit id="2060042292048624940" datatype="html"> |
5874 | <source>Configuration updated.</source> | 6525 | <source>Configuration updated.</source> |
5875 | <target state="new">Configuration updated.</target> | 6526 | <target state="new">Configuration updated.</target> |
5876 | 6527 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">380</context></context-group> | |
5877 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">380</context></context-group></trans-unit><trans-unit id="3203902538239082422" datatype="html"> | 6528 | </trans-unit> |
5878 | <source>You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</source><target state="new">You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</target> | 6529 | <trans-unit id="3203902538239082422" datatype="html"> |
5879 | 6530 | <source>You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</source> | |
5880 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">473</context></context-group></trans-unit> | 6531 | <target state="new">You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</target> |
6532 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">473</context></context-group> | ||
6533 | </trans-unit> | ||
5881 | <trans-unit id="6284468333579755406" datatype="html"> | 6534 | <trans-unit id="6284468333579755406" datatype="html"> |
5882 | <source>Edit custom configuration</source> | 6535 | <source>Edit custom configuration</source> |
5883 | <target state="new">Edit custom configuration</target> | 6536 | <target state="new">Edit custom configuration</target> |
5884 | 6537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/config.routes.ts</context><context context-type="linenumber">26</context></context-group> | |
5885 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/config.routes.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 6538 | </trans-unit> |
5886 | <trans-unit id="6549061957433635758" datatype="html"> | 6539 | <trans-unit id="6549061957433635758" datatype="html"> |
5887 | <source>Process domains</source> | 6540 | <source>Process domains</source> |
5888 | <target state="new">Process domains</target> | 6541 | <target state="new">Process domains</target> |
5889 | 6542 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.ts</context><context context-type="linenumber">28</context></context-group> | |
5890 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 6543 | </trans-unit> |
5891 | <trans-unit id="1909009883731319373" datatype="html"> | 6544 | <trans-unit id="1909009883731319373" datatype="html"> |
5892 | <source>Report <x id="PH"/> </source> | 6545 | <source>Report <x id="PH"/> </source> |
5893 | <target state="new">Report | 6546 | <target state="new">Report |
5894 | <x id="PH"/> | 6547 | <x id="PH"/> |
5895 | </target> | 6548 | </target> |
5896 | 6549 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/account-report.component.ts</context><context context-type="linenumber">51</context></context-group> | |
5897 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/account-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 6550 | </trans-unit> |
5898 | <trans-unit id="5065410539274460415" datatype="html"> | 6551 | <trans-unit id="5065410539274460415" datatype="html"> |
5899 | <source>Account reported.</source> | 6552 | <source>Account reported.</source> |
5900 | <target state="new">Account reported.</target> | 6553 | <target state="new">Account reported.</target> |
5901 | 6554 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/account-report.component.ts</context><context context-type="linenumber">82</context></context-group> | |
5902 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/account-report.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 6555 | </trans-unit> |
5903 | <trans-unit id="6245265026120479954" datatype="html"> | 6556 | <trans-unit id="6245265026120479954" datatype="html"> |
5904 | <source>Comment reported.</source> | 6557 | <source>Comment reported.</source> |
5905 | <target state="new">Comment reported.</target> | 6558 | <target state="new">Comment reported.</target> |
5906 | 6559 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">82</context></context-group> | |
5907 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 6560 | </trans-unit> |
5908 | <trans-unit id="2127446333083057097" datatype="html"> | 6561 | <trans-unit id="2127446333083057097" datatype="html"> |
5909 | <source>Domain is required.</source> | 6562 | <source>Domain is required.</source> |
5910 | <target state="new">Domain is required.</target> | 6563 | <target state="new">Domain is required.</target> |
5911 | 6564 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context><context context-type="linenumber">56</context></context-group> | |
5912 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context><context context-type="linenumber">56</context></context-group></trans-unit> | 6565 | </trans-unit> |
5913 | <trans-unit id="6780793142903080663" datatype="html"> | 6566 | <trans-unit id="6780793142903080663" datatype="html"> |
5914 | <source>Domains entered are invalid.</source> | 6567 | <source>Domains entered are invalid.</source> |
5915 | <target state="new">Domains entered are invalid.</target> | 6568 | <target state="new">Domains entered are invalid.</target> |
5916 | 6569 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context><context context-type="linenumber">57</context></context-group> | |
5917 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> | 6570 | </trans-unit> |
5918 | <trans-unit id="5886492514458202177" datatype="html"> | 6571 | <trans-unit id="5886492514458202177" datatype="html"> |
5919 | <source>Domains entered contain duplicates.</source> | 6572 | <source>Domains entered contain duplicates.</source> |
5920 | <target state="new">Domains entered contain duplicates.</target> | 6573 | <target state="new">Domains entered contain duplicates.</target> |
5921 | 6574 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context><context context-type="linenumber">58</context></context-group> | |
5922 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 6575 | </trans-unit> |
5923 | <trans-unit id="240806681889331244" datatype="html"> | 6576 | <trans-unit id="240806681889331244" datatype="html"> |
5924 | <source>Unlimited</source> | 6577 | <source>Unlimited</source> |
5925 | <target state="new">Unlimited</target> | 6578 | <target state="new">Unlimited</target> |
5926 | 6579 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.ts</context><context context-type="linenumber">32</context></context-group> | |
5927 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.ts</context><context context-type="linenumber">32</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 6580 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-quota.component.ts</context><context context-type="linenumber">38</context></context-group> |
6581 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">26</context></context-group> | ||
6582 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">33</context></context-group> | ||
6583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">21</context></context-group> | ||
6584 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">34</context></context-group> | ||
6585 | </trans-unit> | ||
5928 | <trans-unit id="5504952199515017930" datatype="html"> | 6586 | <trans-unit id="5504952199515017930" datatype="html"> |
5929 | <source>None - no upload possible</source> | 6587 | <source>None - no upload possible</source> |
5930 | <target state="new">None - no upload possible</target> | 6588 | <target state="new">None - no upload possible</target> |
5931 | 6589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">23</context></context-group> | |
5932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">36</context></context-group></trans-unit> | 6590 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">36</context></context-group> |
6591 | </trans-unit> | ||
5933 | <trans-unit id="616370606803836610" datatype="html"> | 6592 | <trans-unit id="616370606803836610" datatype="html"> |
5934 | <source>100MB</source> | 6593 | <source>100MB</source> |
5935 | <target state="new">100MB</target> | 6594 | <target state="translated">100MB</target> |
5936 | 6595 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">24</context></context-group> | |
5937 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 6596 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">39</context></context-group> |
6597 | </trans-unit> | ||
5938 | <trans-unit id="9162997081789455476" datatype="html"> | 6598 | <trans-unit id="9162997081789455476" datatype="html"> |
5939 | <source>500MB</source> | 6599 | <source>500MB</source> |
5940 | <target state="new">500MB</target> | 6600 | <target state="translated">500MB</target> |
5941 | 6601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">25</context></context-group> | |
5942 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> | 6602 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">40</context></context-group> |
6603 | </trans-unit> | ||
5943 | <trans-unit id="1541266817985876981" datatype="html"> | 6604 | <trans-unit id="1541266817985876981" datatype="html"> |
5944 | <source>1GB</source> | 6605 | <source>1GB</source> |
5945 | <target state="new">1GB</target> | 6606 | <target state="translated">1GB</target> |
5946 | 6607 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">26</context></context-group> | |
5947 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 6608 | </trans-unit> |
5948 | <trans-unit id="6075751004411938819" datatype="html"> | 6609 | <trans-unit id="6075751004411938819" datatype="html"> |
5949 | <source>5GB</source> | 6610 | <source>5GB</source> |
5950 | <target state="new">5GB</target> | 6611 | <target state="translated">5GB</target> |
5951 | 6612 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">27</context></context-group> | |
5952 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">42</context></context-group></trans-unit> | 6613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">42</context></context-group> |
6614 | </trans-unit> | ||
5953 | <trans-unit id="246811372655482890" datatype="html"> | 6615 | <trans-unit id="246811372655482890" datatype="html"> |
5954 | <source>20GB</source> | 6616 | <source>20GB</source> |
5955 | <target state="new">20GB</target> | 6617 | <target state="translated">20GB</target> |
5956 | 6618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">28</context></context-group> | |
5957 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 6619 | </trans-unit> |
5958 | <trans-unit id="2491910291056632032" datatype="html"> | 6620 | <trans-unit id="2491910291056632032" datatype="html"> |
5959 | <source>50GB</source> | 6621 | <source>50GB</source> |
5960 | <target state="new">50GB</target> | 6622 | <target state="translated">50GB</target> |
5961 | 6623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">29</context></context-group> | |
5962 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">29</context></context-group></trans-unit> | 6624 | </trans-unit> |
5963 | <trans-unit id="3977630500122496087" datatype="html"> | 6625 | <trans-unit id="3977630500122496087" datatype="html"> |
5964 | <source>10MB</source> | 6626 | <source>10MB</source> |
5965 | <target state="new">10MB</target> | 6627 | <target state="translated">10MB</target> |
5966 | 6628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">37</context></context-group> | |
5967 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 6629 | </trans-unit> |
5968 | <trans-unit id="2060593120571755546" datatype="html"> | 6630 | <trans-unit id="2060593120571755546" datatype="html"> |
5969 | <source>50MB</source> | 6631 | <source>50MB</source> |
5970 | <target state="new">50MB</target> | 6632 | <target state="translated">50MB</target> |
5971 | 6633 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">38</context></context-group> | |
5972 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6634 | </trans-unit> |
5973 | <trans-unit id="7653028819867308249" datatype="html"> | 6635 | <trans-unit id="7653028819867308249" datatype="html"> |
5974 | <source>2GB</source> | 6636 | <source>2GB</source> |
5975 | <target state="new">2GB</target> | 6637 | <target state="translated">2GB</target> |
5976 | 6638 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">41</context></context-group> | |
5977 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> | 6639 | </trans-unit> |
5978 | <trans-unit id="2520968456492632777" datatype="html"> | 6640 | <trans-unit id="2520968456492632777" datatype="html"> |
5979 | <source><x id="PH"/> accepted in instance followers </source> | 6641 | <source><x id="PH"/> accepted in instance followers </source> |
5980 | <target state="new"> | 6642 | <target state="new"> |
5981 | <x id="PH"/> accepted in instance followers | 6643 | <x id="PH"/> accepted in instance followers |
5982 | </target> | 6644 | </target> |
5983 | 6645 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">41</context></context-group> | |
5984 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> | 6646 | </trans-unit> |
5985 | <trans-unit id="450530533730658004" datatype="html"> | 6647 | <trans-unit id="450530533730658004" datatype="html"> |
5986 | <source>Do you really want to reject this follower?</source> | 6648 | <source>Do you really want to reject this follower?</source> |
5987 | <target state="new">Do you really want to reject this follower?</target> | 6649 | <target state="new">Do you really want to reject this follower?</target> |
5988 | 6650 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">52</context></context-group> | |
5989 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6651 | </trans-unit> |
5990 | <trans-unit id="7378878529334768232" datatype="html"> | 6652 | <trans-unit id="7378878529334768232" datatype="html"> |
5991 | <source>Reject</source> | 6653 | <source>Reject</source> |
5992 | <target state="new">Reject</target> | 6654 | <target state="new">Reject</target> |
5993 | 6655 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">53</context></context-group> | |
5994 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">53</context></context-group></trans-unit> | 6656 | </trans-unit> |
5995 | <trans-unit id="2040902819815401278" datatype="html"> | 6657 | <trans-unit id="2040902819815401278" datatype="html"> |
5996 | <source><x id="PH"/> rejected from instance followers </source> | 6658 | <source><x id="PH"/> rejected from instance followers </source> |
5997 | <target state="new"> | 6659 | <target state="new"> |
5998 | <x id="PH"/> rejected from instance followers | 6660 | <x id="PH"/> rejected from instance followers |
5999 | </target> | 6661 | </target> |
6000 | 6662 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">60</context></context-group> | |
6001 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 6663 | </trans-unit> |
6002 | <trans-unit id="3620117223790525725" datatype="html"> | 6664 | <trans-unit id="3620117223790525725" datatype="html"> |
6003 | <source>Do you really want to delete this follower?</source> | 6665 | <source>Do you really want to delete this follower?</source> |
6004 | <target state="new">Do you really want to delete this follower?</target> | 6666 | <target state="new">Do you really want to delete this follower?</target> |
6005 | 6667 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">73</context></context-group> | |
6006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">73</context></context-group></trans-unit> | 6668 | </trans-unit> |
6007 | <trans-unit id="7022070615528435141" datatype="html"> | 6669 | <trans-unit id="7022070615528435141" datatype="html"> |
6008 | <source>Delete</source> | 6670 | <source>Delete</source> |
6009 | <target state="new">Delete</target> | 6671 | <target state="new">Delete</target> |
6010 | 6672 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">104</context></context-group> | |
6011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">104</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">131</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">172</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">50</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">127</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">91</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">208</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">308</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">129</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">371</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">406</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">71</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">86</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">158</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">167</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">75</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">79</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">76</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">194</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">74</context></context-group></trans-unit> | 6673 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">131</context></context-group> |
6674 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">172</context></context-group> | ||
6675 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">50</context></context-group> | ||
6676 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">127</context></context-group> | ||
6677 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">16</context></context-group> | ||
6678 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">21</context></context-group> | ||
6679 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">91</context></context-group> | ||
6680 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">208</context></context-group> | ||
6681 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">308</context></context-group> | ||
6682 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">129</context></context-group> | ||
6683 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">371</context></context-group> | ||
6684 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">406</context></context-group> | ||
6685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">71</context></context-group> | ||
6686 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">86</context></context-group> | ||
6687 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">158</context></context-group> | ||
6688 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">167</context></context-group> | ||
6689 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">75</context></context-group> | ||
6690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">79</context></context-group> | ||
6691 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">76</context></context-group> | ||
6692 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">194</context></context-group> | ||
6693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">74</context></context-group> | ||
6694 | </trans-unit> | ||
6012 | <trans-unit id="2452034338905853167" datatype="html"> | 6695 | <trans-unit id="2452034338905853167" datatype="html"> |
6013 | <source><x id="PH"/> removed from instance followers </source> | 6696 | <source><x id="PH"/> removed from instance followers </source> |
6014 | <target state="new"> | 6697 | <target state="new"> |
6015 | <x id="PH"/> removed from instance followers | 6698 | <x id="PH"/> removed from instance followers |
6016 | </target> | 6699 | </target> |
6017 | 6700 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">81</context></context-group> | |
6018 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 6701 | </trans-unit> |
6019 | <trans-unit id="2740793005745065895" datatype="html"> | 6702 | <trans-unit id="2740793005745065895" datatype="html"> |
6020 | <source><x id="PH"/> is not valid </source> | 6703 | <source><x id="PH"/> is not valid </source> |
6021 | <target state="new"> | 6704 | <target state="new"> |
6022 | <x id="PH"/> is not valid | 6705 | <x id="PH"/> is not valid |
6023 | </target> | 6706 | </target> |
6024 | 6707 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context><context context-type="linenumber">19</context></context-group> | |
6025 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/batch-domains-validators.ts</context><context context-type="linenumber">19</context></context-group></trans-unit> | 6708 | </trans-unit> |
6026 | <trans-unit id="2355066641781598196" datatype="html"> | 6709 | <trans-unit id="2355066641781598196" datatype="html"> |
6027 | <source>Follow request(s) sent!</source> | 6710 | <source>Follow request(s) sent!</source> |
6028 | <target state="new">Follow request(s) sent!</target> | 6711 | <target state="new">Follow request(s) sent!</target> |
6029 | 6712 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">47</context></context-group> | |
6030 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 6713 | </trans-unit> |
6031 | <trans-unit id="4245720728052819482" datatype="html"> | 6714 | <trans-unit id="4245720728052819482" datatype="html"> |
6032 | <source>Do you really want to unfollow <x id="PH"/>?</source> | 6715 | <source>Do you really want to unfollow <x id="PH"/>?</source> |
6033 | <target state="new">Do you really want to unfollow | 6716 | <target state="new">Do you really want to unfollow |
6034 | <x id="PH"/>? | 6717 | <x id="PH"/>? |
6035 | </target> | 6718 | </target> |
6036 | 6719 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">57</context></context-group> | |
6037 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> | 6720 | </trans-unit> |
6038 | <trans-unit id="9160510009013134726" datatype="html"> | 6721 | <trans-unit id="9160510009013134726" datatype="html"> |
6039 | <source>Unfollow</source> | 6722 | <source>Unfollow</source> |
6040 | <target state="new">Unfollow</target> | 6723 | <target state="new">Unfollow</target> |
6041 | 6724 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">58</context></context-group> | |
6042 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 6725 | </trans-unit> |
6043 | <trans-unit id="3935234189109112926" datatype="html"> | 6726 | <trans-unit id="3935234189109112926" datatype="html"> |
6044 | <source>You are not following <x id="PH"/> anymore.</source> | 6727 | <source>You are not following <x id="PH"/> anymore.</source> |
6045 | <target state="new">You are not following | 6728 | <target state="new">You are not following |
6046 | <x id="PH"/> anymore. | 6729 | <x id="PH"/> anymore. |
6047 | </target> | 6730 | </target> |
6048 | 6731 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">64</context></context-group> | |
6049 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit> | 6732 | </trans-unit> |
6050 | <trans-unit id="2593763089859685916" datatype="html"> | 6733 | <trans-unit id="2593763089859685916" datatype="html"> |
6051 | <source>enabled</source> | 6734 | <source>enabled</source> |
6052 | <target state="new">enabled</target> | 6735 | <target state="new">enabled</target> |
6053 | 6736 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">23</context></context-group> | |
6054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">23</context></context-group></trans-unit> | 6737 | </trans-unit> |
6055 | <trans-unit id="8444272719785117681" datatype="html"> | 6738 | <trans-unit id="8444272719785117681" datatype="html"> |
6056 | <source>disabled</source> | 6739 | <source>disabled</source> |
6057 | <target state="new">disabled</target> | 6740 | <target state="new">disabled</target> |
6058 | 6741 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">23</context></context-group> | |
6059 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">23</context></context-group></trans-unit> | 6742 | </trans-unit> |
6060 | <trans-unit id="135214224090612796" datatype="html"> | 6743 | <trans-unit id="135214224090612796" datatype="html"> |
6061 | <source>Redundancy for <x id="PH"/> is <x id="PH_1"/></source> | 6744 | <source>Redundancy for <x id="PH"/> is <x id="PH_1"/></source> |
6062 | <target state="new">Redundancy for | 6745 | <target state="new">Redundancy for |
6063 | <x id="PH"/> is | 6746 | <x id="PH"/> is |
6064 | <x id="PH_1"/> | 6747 | <x id="PH_1"/> |
6065 | </target> | 6748 | </target> |
6066 | 6749 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">25</context></context-group> | |
6067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 6750 | </trans-unit> |
6068 | <trans-unit id="81585474102700882" datatype="html"> | 6751 | <trans-unit id="81585474102700882" datatype="html"> |
6069 | <source>Used</source> | 6752 | <source>Used</source> |
6070 | <target state="new">Used</target> | 6753 | <target state="new">Used</target> |
6071 | 6754 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">101</context></context-group> | |
6072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">101</context></context-group></trans-unit> | 6755 | </trans-unit> |
6073 | <trans-unit id="3955868613858648955" datatype="html"> | 6756 | <trans-unit id="3955868613858648955" datatype="html"> |
6074 | <source>Available</source> | 6757 | <source>Available</source> |
6075 | <target state="new">Available</target> | 6758 | <target state="new">Available</target> |
6076 | 6759 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">101</context></context-group> | |
6077 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">101</context></context-group></trans-unit> | 6760 | </trans-unit> |
6078 | <trans-unit id="5875705095657098468" datatype="html"> | 6761 | <trans-unit id="5875705095657098468" datatype="html"> |
6079 | <source>Do you really want to remove this video redundancy?</source> | 6762 | <source>Do you really want to remove this video redundancy?</source> |
6080 | <target state="new">Do you really want to remove this video redundancy?</target> | 6763 | <target state="new">Do you really want to remove this video redundancy?</target> |
6081 | 6764 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">140</context></context-group> | |
6082 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">140</context></context-group></trans-unit> | 6765 | </trans-unit> |
6083 | <trans-unit id="9098272570113000349" datatype="html"> | 6766 | <trans-unit id="9098272570113000349" datatype="html"> |
6084 | <source>Remove redundancy</source> | 6767 | <source>Remove redundancy</source> |
6085 | <target state="new">Remove redundancy</target> | 6768 | <target state="new">Remove redundancy</target> |
6086 | 6769 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">141</context></context-group> | |
6087 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">141</context></context-group></trans-unit> | 6770 | </trans-unit> |
6088 | <trans-unit id="6537102123107780785" datatype="html"> | 6771 | <trans-unit id="6537102123107780785" datatype="html"> |
6089 | <source>Video redundancies removed!</source> | 6772 | <source>Video redundancies removed!</source> |
6090 | <target state="new">Video redundancies removed!</target> | 6773 | <target state="new">Video redundancies removed!</target> |
6091 | 6774 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">147</context></context-group> | |
6092 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">147</context></context-group></trans-unit> | 6775 | </trans-unit> |
6093 | <trans-unit id="8639315630141911544" datatype="html"> | 6776 | <trans-unit id="8639315630141911544" datatype="html"> |
6094 | <source>Account <x id="PH"/> unmuted by your instance.</source> | 6777 | <source>Account <x id="PH"/> unmuted by your instance.</source> |
6095 | <target state="new">Account | 6778 | <target state="new">Account |
6096 | <x id="PH"/> unmuted by your instance. | 6779 | <x id="PH"/> unmuted by your instance. |
6097 | </target> | 6780 | </target> |
6098 | 6781 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">48</context></context-group> | |
6099 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 6782 | </trans-unit> |
6100 | <trans-unit id="3371601176452094961" datatype="html"> | 6783 | <trans-unit id="3371601176452094961" datatype="html"> |
6101 | <source>Instance <x id="PH"/> unmuted by your instance.</source> | 6784 | <source>Instance <x id="PH"/> unmuted by your instance.</source> |
6102 | <target state="new">Instance | 6785 | <target state="new">Instance |
6103 | <x id="PH"/> unmuted by your instance. | 6786 | <x id="PH"/> unmuted by your instance. |
6104 | </target> | 6787 | </target> |
6105 | 6788 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">46</context></context-group> | |
6106 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 6789 | </trans-unit> |
6107 | <trans-unit id="1598375456114200087" datatype="html"> | 6790 | <trans-unit id="1598375456114200087" datatype="html"> |
6108 | <source>Instance <x id="PH"/> muted.</source> | 6791 | <source>Instance <x id="PH"/> muted.</source> |
6109 | <target state="new">Instance | 6792 | <target state="new">Instance |
6110 | <x id="PH"/> muted. | 6793 | <x id="PH"/> muted. |
6111 | </target> | 6794 | </target> |
6112 | 6795 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">147</context></context-group> | |
6113 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">147</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">68</context></context-group></trans-unit> | 6796 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">68</context></context-group> |
6797 | </trans-unit> | ||
6114 | <trans-unit id="3096398988891996621" datatype="html"> | 6798 | <trans-unit id="3096398988891996621" datatype="html"> |
6115 | <source>Instance <x id="PH"/> muted by your instance.</source> | 6799 | <source>Instance <x id="PH"/> muted by your instance.</source> |
6116 | <target state="new">Instance | 6800 | <target state="new">Instance |
6117 | <x id="PH"/> muted by your instance. | 6801 | <x id="PH"/> muted by your instance. |
6118 | </target> | 6802 | </target> |
6119 | 6803 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">69</context></context-group> | |
6120 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> | 6804 | </trans-unit> |
6121 | <trans-unit id="2393853062458645999" datatype="html"> | 6805 | <trans-unit id="2393853062458645999" datatype="html"> |
6122 | <source>Comment updated.</source> | 6806 | <source>Comment updated.</source> |
6123 | <target state="new">Comment updated.</target> | 6807 | <target state="new">Comment updated.</target> |
6124 | 6808 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts</context><context context-type="linenumber">58</context></context-group> | |
6125 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 6809 | </trans-unit> |
6126 | <trans-unit id="149121389669248117" datatype="html"> | 6810 | <trans-unit id="149121389669248117" datatype="html"> |
6127 | <source>Violent or Repulsive</source> | 6811 | <source>Violent or Repulsive</source> |
6128 | <target state="new">Violent or Repulsive</target> | 6812 | <target state="new">Violent or Repulsive</target> |
6129 | 6813 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">21</context></context-group> | |
6130 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">21</context></context-group></trans-unit> | 6814 | </trans-unit> |
6131 | <trans-unit id="2493388551376623687" datatype="html"> | 6815 | <trans-unit id="2493388551376623687" datatype="html"> |
6132 | <source>Hateful or Abusive</source> | 6816 | <source>Hateful or Abusive</source> |
6133 | <target state="new">Hateful or Abusive</target> | 6817 | <target state="new">Hateful or Abusive</target> |
6134 | 6818 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">22</context></context-group> | |
6135 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">22</context></context-group></trans-unit> | 6819 | </trans-unit> |
6136 | <trans-unit id="5124757565683866220" datatype="html"> | 6820 | <trans-unit id="5124757565683866220" datatype="html"> |
6137 | <source>Spam or Misleading</source> | 6821 | <source>Spam or Misleading</source> |
6138 | <target state="new">Spam or Misleading</target> | 6822 | <target state="new">Spam or Misleading</target> |
6139 | 6823 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">23</context></context-group> | |
6140 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">23</context></context-group></trans-unit> | 6824 | </trans-unit> |
6141 | <trans-unit id="8440128775129354214" datatype="html"> | 6825 | <trans-unit id="8440128775129354214" datatype="html"> |
6142 | <source>Privacy</source> | 6826 | <source>Privacy</source> |
6143 | <target state="new">Privacy</target> | 6827 | <target state="translated">Gizlilik</target> |
6144 | 6828 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">24</context></context-group> | |
6145 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">24</context></context-group></trans-unit> | 6829 | </trans-unit> |
6146 | <trans-unit id="8768506950499277937" datatype="html"> | 6830 | <trans-unit id="8768506950499277937" datatype="html"> |
6147 | <source>Copyright</source> | 6831 | <source>Copyright</source> |
6148 | <target state="new">Copyright</target> | 6832 | <target state="translated">Telif hakkı</target> |
6149 | 6833 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">159</context></context-group> | |
6150 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">159</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 6834 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">25</context></context-group> |
6835 | </trans-unit> | ||
6151 | <trans-unit id="3776575731053010580" datatype="html"> | 6836 | <trans-unit id="3776575731053010580" datatype="html"> |
6152 | <source>Server rules</source> | 6837 | <source>Server rules</source> |
6153 | <target state="new">Server rules</target> | 6838 | <target state="translated">Sunucu kuralları</target> |
6154 | 6839 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">26</context></context-group> | |
6155 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 6840 | </trans-unit> |
6156 | <trans-unit id="6907161397537530258" datatype="html"> | 6841 | <trans-unit id="6907161397537530258" datatype="html"> |
6157 | <source>Thumbnails</source> | 6842 | <source>Thumbnails</source> |
6158 | <target state="new">Thumbnails</target> | 6843 | <target state="translated">Küçük resimler</target> |
6159 | 6844 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">173</context></context-group> | |
6160 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">173</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">27</context></context-group></trans-unit> | 6845 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">27</context></context-group> |
6846 | </trans-unit> | ||
6161 | <trans-unit id="6473213678768782133" datatype="html"> | 6847 | <trans-unit id="6473213678768782133" datatype="html"> |
6162 | <source>Internal actions</source> | 6848 | <source>Internal actions</source> |
6163 | <target state="new">Internal actions</target> | 6849 | <target state="new">Internal actions</target> |
6164 | 6850 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">239</context></context-group> | |
6165 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">239</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> | 6851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">43</context></context-group> |
6852 | </trans-unit> | ||
6166 | <trans-unit id="4559872264406386913" datatype="html"> | 6853 | <trans-unit id="4559872264406386913" datatype="html"> |
6167 | <source>Delete report</source> | 6854 | <source>Delete report</source> |
6168 | <target state="new">Delete report</target> | 6855 | <target state="new">Delete report</target> |
6169 | 6856 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">270</context></context-group> | |
6170 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">270</context></context-group></trans-unit> | 6857 | </trans-unit> |
6171 | <trans-unit id="5793550984155962433" datatype="html"> | 6858 | <trans-unit id="5793550984155962433" datatype="html"> |
6172 | <source>Actions for the flagged account</source> | 6859 | <source>Actions for the flagged account</source> |
6173 | <target state="new">Actions for the flagged account</target> | 6860 | <target state="new">Actions for the flagged account</target> |
6174 | 6861 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">281</context></context-group> | |
6175 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">281</context></context-group></trans-unit> | 6862 | </trans-unit> |
6176 | <trans-unit id="1679841953757186358" datatype="html"> | 6863 | <trans-unit id="1679841953757186358" datatype="html"> |
6177 | <source>Mark as accepted</source> | 6864 | <source>Mark as accepted</source> |
6178 | <target state="new">Mark as accepted</target> | 6865 | <target state="new">Mark as accepted</target> |
6179 | 6866 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">255</context></context-group> | |
6180 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">255</context></context-group></trans-unit> | 6867 | </trans-unit> |
6181 | <trans-unit id="7993358694073742566" datatype="html"> | 6868 | <trans-unit id="7993358694073742566" datatype="html"> |
6182 | <source>Mark as rejected</source> | 6869 | <source>Mark as rejected</source> |
6183 | <target state="new">Mark as rejected</target> | 6870 | <target state="new">Mark as rejected</target> |
6184 | 6871 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">260</context></context-group> | |
6185 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">260</context></context-group></trans-unit> | 6872 | </trans-unit> |
6186 | <trans-unit id="4175703770051343108" datatype="html"> | 6873 | <trans-unit id="4175703770051343108" datatype="html"> |
6187 | <source>Add internal note</source> | 6874 | <source>Add internal note</source> |
6188 | <target state="new">Add internal note</target> | 6875 | <target state="new">Add internal note</target> |
6189 | 6876 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">265</context></context-group> | |
6190 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">265</context></context-group></trans-unit> | 6877 | </trans-unit> |
6191 | <trans-unit id="296166371893775555" datatype="html"> | 6878 | <trans-unit id="296166371893775555" datatype="html"> |
6192 | <source>Actions for the video</source> | 6879 | <source>Actions for the video</source> |
6193 | <target state="new">Actions for the video</target> | 6880 | <target state="new">Actions for the video</target> |
6194 | 6881 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">329</context></context-group> | |
6195 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">329</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6882 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">66</context></context-group> |
6883 | </trans-unit> | ||
6196 | <trans-unit id="3924877328520650445" datatype="html"> | 6884 | <trans-unit id="3924877328520650445" datatype="html"> |
6197 | <source>Block video</source> | 6885 | <source>Block video</source> |
6198 | <target state="new">Block video</target> | 6886 | <target state="translated">Videoyu engelle</target> |
6199 | 6887 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">334</context></context-group> | |
6200 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">334</context></context-group></trans-unit> | 6888 | </trans-unit> |
6201 | <trans-unit id="4762794934098378428" datatype="html"> | 6889 | <trans-unit id="4762794934098378428" datatype="html"> |
6202 | <source>Video blocked.</source> | 6890 | <source>Video blocked.</source> |
6203 | <target state="new">Video blocked.</target> | 6891 | <target state="translated">Video engellendi.</target> |
6204 | 6892 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context><context context-type="linenumber">60</context></context-group> | |
6205 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context><context context-type="linenumber">60</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 6893 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">340</context></context-group> |
6894 | </trans-unit> | ||
6206 | <trans-unit id="4328862996304258770" datatype="html"> | 6895 | <trans-unit id="4328862996304258770" datatype="html"> |
6207 | <source>Unblock video</source> | 6896 | <source>Unblock video</source> |
6208 | <target state="new">Unblock video</target> | 6897 | <target state="new">Unblock video</target> |
6209 | 6898 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">350</context></context-group> | |
6210 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">350</context></context-group></trans-unit> | 6899 | </trans-unit> |
6211 | <trans-unit id="9065327551191479877" datatype="html"> | 6900 | <trans-unit id="9065327551191479877" datatype="html"> |
6212 | <source>Video unblocked.</source> | 6901 | <source>Video unblocked.</source> |
6213 | <target state="new">Video unblocked.</target> | 6902 | <target state="new">Video unblocked.</target> |
6214 | 6903 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">356</context></context-group> | |
6215 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">356</context></context-group></trans-unit> | 6904 | </trans-unit> |
6216 | <trans-unit id="1250415136605923486" datatype="html"> | 6905 | <trans-unit id="1250415136605923486" datatype="html"> |
6217 | <source>Do you really want to delete this abuse report?</source> | 6906 | <source>Do you really want to delete this abuse report?</source> |
6218 | <target state="new">Do you really want to delete this abuse report?</target> | 6907 | <target state="new">Do you really want to delete this abuse report?</target> |
6219 | 6908 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">129</context></context-group> | |
6220 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> | 6909 | </trans-unit> |
6221 | <trans-unit id="3482559157143817408" datatype="html"> | 6910 | <trans-unit id="3482559157143817408" datatype="html"> |
6222 | <source>Abuse deleted.</source> | 6911 | <source>Abuse deleted.</source> |
6223 | <target state="new">Abuse deleted.</target> | 6912 | <target state="new">Abuse deleted.</target> |
6224 | 6913 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">134</context></context-group> | |
6225 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> | 6914 | </trans-unit> |
6226 | <trans-unit id="6282990098351939529" datatype="html"> | 6915 | <trans-unit id="6282990098351939529" datatype="html"> |
6227 | <source>Deleted comment</source> | 6916 | <source>Deleted comment</source> |
6228 | <target state="new">Deleted comment</target> | 6917 | <target state="new">Deleted comment</target> |
6229 | 6918 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">210</context></context-group> | |
6230 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">210</context></context-group></trans-unit> | 6919 | </trans-unit> |
6231 | <trans-unit id="9196775343330824083" datatype="html"> | 6920 | <trans-unit id="9196775343330824083" datatype="html"> |
6232 | <source>Messages with reporter</source> | 6921 | <source>Messages with reporter</source> |
6233 | <target state="new">Messages with reporter</target> | 6922 | <target state="new">Messages with reporter</target> |
6234 | 6923 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">244</context></context-group> | |
6235 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">244</context></context-group></trans-unit> | 6924 | </trans-unit> |
6236 | <trans-unit id="8770468575924421391" datatype="html"> | 6925 | <trans-unit id="8770468575924421391" datatype="html"> |
6237 | <source>Messages with moderators</source> | 6926 | <source>Messages with moderators</source> |
6238 | <target state="new">Messages with moderators</target> | 6927 | <target state="new">Messages with moderators</target> |
6239 | 6928 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">245</context></context-group> | |
6240 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">245</context></context-group></trans-unit> | 6929 | </trans-unit> |
6241 | <trans-unit id="8528549800795985099" datatype="html"> | 6930 | <trans-unit id="8528549800795985099" datatype="html"> |
6242 | <source>Update internal note</source> | 6931 | <source>Update internal note</source> |
6243 | <target state="new">Update internal note</target> | 6932 | <target state="new">Update internal note</target> |
6244 | 6933 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">250</context></context-group> | |
6245 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> | 6934 | </trans-unit> |
6246 | <trans-unit id="3962242315365992494" datatype="html"> | 6935 | <trans-unit id="3962242315365992494" datatype="html"> |
6247 | <source>Switch video block to manual</source> | 6936 | <source>Switch video block to manual</source> |
6248 | <target state="new">Switch video block to manual</target> | 6937 | <target state="new">Switch video block to manual</target> |
6249 | 6938 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">48</context></context-group> | |
6250 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 6939 | </trans-unit> |
6251 | <trans-unit id="6906423861055262169" datatype="html"> | 6940 | <trans-unit id="6906423861055262169" datatype="html"> |
6252 | <source>Video <x id="PH"/> switched to manual block.</source> | 6941 | <source>Video <x id="PH"/> switched to manual block.</source> |
6253 | <target state="new">Video | 6942 | <target state="new">Video |
6254 | <x id="PH"/> switched to manual block. | 6943 | <x id="PH"/> switched to manual block. |
6255 | </target> | 6944 | </target> |
6256 | 6945 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">54</context></context-group> | |
6257 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">54</context></context-group></trans-unit> | 6946 | </trans-unit> |
6258 | <trans-unit id="7293356040886494773" datatype="html"> | 6947 | <trans-unit id="7293356040886494773" datatype="html"> |
6259 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> | 6948 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> |
6260 | <target state="new">Do you really want to unblock this video? It will be available again in the videos list.</target> | 6949 | <target state="new">Do you really want to unblock this video? It will be available again in the videos list.</target> |
6261 | 6950 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">180</context></context-group> | |
6262 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">180</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">146</context></context-group></trans-unit> | 6951 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">146</context></context-group> |
6952 | </trans-unit> | ||
6263 | <trans-unit id="4859202148272511129" datatype="html"> | 6953 | <trans-unit id="4859202148272511129" datatype="html"> |
6264 | <source>Unblock</source> | 6954 | <source>Unblock</source> |
6265 | <target state="new">Unblock</target> | 6955 | <target state="new">Unblock</target> |
6266 | 6956 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">182</context></context-group> | |
6267 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">182</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">296</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit> | 6957 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">296</context></context-group> |
6958 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">70</context></context-group> | ||
6959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">148</context></context-group> | ||
6960 | </trans-unit> | ||
6268 | <trans-unit id="4922469417589203720" datatype="html"> | 6961 | <trans-unit id="4922469417589203720" datatype="html"> |
6269 | <source>Video <x id="PH"/> unblocked.</source> | 6962 | <source>Video <x id="PH"/> unblocked.</source> |
6270 | <target state="new">Video | 6963 | <target state="new">Video |
6271 | <x id="PH"/> unblocked. | 6964 | <x id="PH"/> unblocked. |
6272 | </target> | 6965 | </target> |
6273 | 6966 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">188</context></context-group> | |
6274 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">188</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">153</context></context-group></trans-unit> | 6967 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">153</context></context-group> |
6968 | </trans-unit> | ||
6275 | <trans-unit id="0594812d4c50c2adbd1a892a3497c4e5c19e4b32" datatype="html"> | 6969 | <trans-unit id="0594812d4c50c2adbd1a892a3497c4e5c19e4b32" datatype="html"> |
6276 | <source>yes</source> | 6970 | <source>yes</source> |
6277 | <target state="new">yes</target> | 6971 | <target state="translated">evet</target> |
6278 | 6972 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">1</context></context-group> | |
6279 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">1</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 6973 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">1</context></context-group> |
6974 | </trans-unit> | ||
6280 | <trans-unit id="6320692861e01fa9c9d4e692d0d27b6c12b21c3b" datatype="html"> | 6975 | <trans-unit id="6320692861e01fa9c9d4e692d0d27b6c12b21c3b" datatype="html"> |
6281 | <source>no</source> | 6976 | <source>no</source> |
6282 | <target state="new">no</target> | 6977 | <target state="translated">hayır</target> |
6283 | 6978 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">2</context></context-group> | |
6284 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">2</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit> | 6979 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">2</context></context-group> |
6980 | </trans-unit> | ||
6285 | <trans-unit id="212615365039028546" datatype="html"> | 6981 | <trans-unit id="212615365039028546" datatype="html"> |
6286 | <source>You don't have plugins installed yet.</source> | 6982 | <source>You don't have plugins installed yet.</source> |
6287 | <target state="new">You don't have plugins installed yet.</target> | 6983 | <target state="new">You don't have plugins installed yet.</target> |
6288 | 6984 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">89</context></context-group> | |
6289 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">89</context></context-group></trans-unit> | 6985 | </trans-unit> |
6290 | <trans-unit id="1710094819987243777" datatype="html"> | 6986 | <trans-unit id="1710094819987243777" datatype="html"> |
6291 | <source>You don't have themes installed yet.</source> | 6987 | <source>You don't have themes installed yet.</source> |
6292 | <target state="new">You don't have themes installed yet.</target> | 6988 | <target state="new">You don't have themes installed yet.</target> |
6293 | 6989 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">92</context></context-group> | |
6294 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 6990 | </trans-unit> |
6295 | <trans-unit id="931472057457682240" datatype="html"> | 6991 | <trans-unit id="931472057457682240" datatype="html"> |
6296 | <source>Update to <x id="PH"/> </source> | 6992 | <source>Update to <x id="PH"/> </source> |
6297 | <target state="new">Update to | 6993 | <target state="new">Update to |
6298 | <x id="PH"/> | 6994 | <x id="PH"/> |
6299 | </target> | 6995 | </target> |
6300 | 6996 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">100</context></context-group> | |
6301 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">100</context></context-group></trans-unit> | 6997 | </trans-unit> |
6302 | <trans-unit id="9107383323119159110" datatype="html"> | 6998 | <trans-unit id="9107383323119159110" datatype="html"> |
6303 | <source>Do you really want to uninstall <x id="PH"/>?</source> | 6999 | <source>Do you really want to uninstall <x id="PH"/>?</source> |
6304 | <target state="new">Do you really want to uninstall | 7000 | <target state="new">Do you really want to uninstall |
6305 | <x id="PH"/>? | 7001 | <x id="PH"/>? |
6306 | </target> | 7002 | </target> |
6307 | 7003 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">109</context></context-group> | |
6308 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">109</context></context-group></trans-unit> | 7004 | </trans-unit> |
6309 | <trans-unit id="4474510732215437338" datatype="html"> | 7005 | <trans-unit id="4474510732215437338" datatype="html"> |
6310 | <source>Uninstall</source> | 7006 | <source>Uninstall</source> |
6311 | <target state="new">Uninstall</target> | 7007 | <target state="new">Uninstall</target> |
6312 | 7008 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">110</context></context-group> | |
6313 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">110</context></context-group></trans-unit> | 7009 | </trans-unit> |
6314 | <trans-unit id="3773378957693174719" datatype="html"> | 7010 | <trans-unit id="3773378957693174719" datatype="html"> |
6315 | <source><x id="PH"/> uninstalled. </source> | 7011 | <source><x id="PH"/> uninstalled. </source> |
6316 | <target state="new"> | 7012 | <target state="new"> |
6317 | <x id="PH"/> uninstalled. | 7013 | <x id="PH"/> uninstalled. |
6318 | </target> | 7014 | </target> |
6319 | 7015 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">117</context></context-group> | |
6320 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">117</context></context-group></trans-unit> | 7016 | </trans-unit> |
6321 | <trans-unit id="7830308409197461339" datatype="html"> | 7017 | <trans-unit id="7830308409197461339" datatype="html"> |
6322 | <source><x id="PH"/> updated. </source> | 7018 | <source><x id="PH"/> updated. </source> |
6323 | <target state="new"> | 7019 | <target state="new"> |
6324 | <x id="PH"/> updated. | 7020 | <x id="PH"/> updated. |
6325 | </target> | 7021 | </target> |
6326 | 7022 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group> | |
6327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 7023 | </trans-unit> |
6328 | <trans-unit id="3229595422546554334" datatype="html"> | 7024 | <trans-unit id="3229595422546554334" datatype="html"> |
6329 | <source>Jobs</source> | 7025 | <source>Jobs</source> |
6330 | <target state="new">Jobs</target> | 7026 | <target state="new">Jobs</target> |
6331 | 7027 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">26</context></context-group> | |
6332 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 7028 | </trans-unit> |
6333 | <trans-unit id="4804785061014590286" datatype="html"> | 7029 | <trans-unit id="4804785061014590286" datatype="html"> |
6334 | <source>Logs</source> | 7030 | <source>Logs</source> |
6335 | <target state="new">Logs</target> | 7031 | <target state="new">Logs</target> |
6336 | 7032 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">37</context></context-group> | |
6337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 7033 | </trans-unit> |
6338 | <trans-unit id="3150704904301058778" datatype="html"> | 7034 | <trans-unit id="3150704904301058778" datatype="html"> |
6339 | <source>The plugin index is not available. Please retry later.</source> | 7035 | <source>The plugin index is not available. Please retry later.</source> |
6340 | <target state="new">The plugin index is not available. Please retry later.</target> | 7036 | <target state="new">The plugin index is not available. Please retry later.</target> |
6341 | 7037 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">100</context></context-group> | |
6342 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">100</context></context-group></trans-unit> | 7038 | </trans-unit> |
6343 | <trans-unit id="1387301493234848481" datatype="html"> | 7039 | <trans-unit id="1387301493234848481" datatype="html"> |
6344 | <source>Please only install plugins or themes you trust, since they can execute any code on your instance.</source> | 7040 | <source>Please only install plugins or themes you trust, since they can execute any code on your instance.</source> |
6345 | <target state="new">Please only install plugins or themes you trust, since they can execute any code on your instance.</target> | 7041 | <target state="new">Please only install plugins or themes you trust, since they can execute any code on your instance.</target> |
6346 | 7042 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">126</context></context-group> | |
6347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 7043 | </trans-unit> |
6348 | <trans-unit id="2994182849694226596" datatype="html"> | 7044 | <trans-unit id="2994182849694226596" datatype="html"> |
6349 | <source>Install <x id="PH"/>?</source> | 7045 | <source>Install <x id="PH"/>?</source> |
6350 | <target state="new">Install | 7046 | <target state="new">Install |
6351 | <x id="PH"/>? | 7047 | <x id="PH"/>? |
6352 | </target> | 7048 | </target> |
6353 | 7049 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">127</context></context-group> | |
6354 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 7050 | </trans-unit> |
6355 | <trans-unit id="6703720397495603345" datatype="html"> | 7051 | <trans-unit id="6703720397495603345" datatype="html"> |
6356 | <source><x id="PH"/> installed. </source> | 7052 | <source><x id="PH"/> installed. </source> |
6357 | <target state="new"> | 7053 | <target state="new"> |
6358 | <x id="PH"/> installed. | 7054 | <x id="PH"/> installed. |
6359 | </target> | 7055 | </target> |
6360 | 7056 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">139</context></context-group> | |
6361 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 7057 | </trans-unit> |
6362 | <trans-unit id="1875025899004073421" datatype="html"> | 7058 | <trans-unit id="1875025899004073421" datatype="html"> |
6363 | <source>Settings updated.</source> | 7059 | <source>Settings updated.</source> |
6364 | <target state="new">Settings updated.</target> | 7060 | <target state="new">Settings updated.</target> |
6365 | 7061 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts</context><context context-type="linenumber">52</context></context-group> | |
6366 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 7062 | </trans-unit> |
6367 | <trans-unit id="6901018060567164184" datatype="html"> | 7063 | <trans-unit id="6901018060567164184" datatype="html"> |
6368 | <source>Plugins</source> | 7064 | <source>Plugins</source> |
6369 | <target state="new">Plugins</target> | 7065 | <target state="new">Plugins</target> |
6370 | 7066 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">33</context></context-group> | |
6371 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">33</context></context-group></trans-unit> | 7067 | </trans-unit> |
6372 | <trans-unit id="2798270190074840767" datatype="html"> | 7068 | <trans-unit id="2798270190074840767" datatype="html"> |
6373 | <source>Themes</source> | 7069 | <source>Themes</source> |
6374 | <target state="new">Themes</target> | 7070 | <target state="translated">Temalar</target> |
6375 | 7071 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">37</context></context-group> | |
6376 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 7072 | </trans-unit> |
6377 | <trans-unit id="2941409202780782189" datatype="html"> | 7073 | <trans-unit id="2941409202780782189" datatype="html"> |
6378 | <source>plugin</source> | 7074 | <source>plugin</source> |
6379 | <target state="new">plugin</target> | 7075 | <target state="translated">eklenti</target> |
6380 | 7076 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">45</context></context-group> | |
6381 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7077 | </trans-unit> |
6382 | <trans-unit id="840045833311458646" datatype="html"> | 7078 | <trans-unit id="840045833311458646" datatype="html"> |
6383 | <source>theme</source> | 7079 | <source>theme</source> |
6384 | <target state="new">theme</target> | 7080 | <target state="translated">tema</target> |
6385 | 7081 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">48</context></context-group> | |
6386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7082 | </trans-unit> |
6387 | <trans-unit id="7591870443991978948" datatype="html"> | 7083 | <trans-unit id="7591870443991978948" datatype="html"> |
6388 | <source>Last week</source> | 7084 | <source>Last week</source> |
6389 | <target state="new">Last week</target> | 7085 | <target state="translated">Geçen hafta</target> |
6390 | 7086 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">79</context></context-group> | |
6391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7087 | </trans-unit> |
6392 | <trans-unit id="4981709795568846080" datatype="html"> | 7088 | <trans-unit id="4981709795568846080" datatype="html"> |
6393 | <source>Last day</source> | 7089 | <source>Last day</source> |
6394 | <target state="new">Last day</target> | 7090 | <target state="translated">Geçen gün</target> |
6395 | 7091 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">84</context></context-group> | |
6396 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> | 7092 | </trans-unit> |
6397 | <trans-unit id="9178360613965745088" datatype="html"> | 7093 | <trans-unit id="9178360613965745088" datatype="html"> |
6398 | <source>Last hour</source> | 7094 | <source>Last hour</source> |
6399 | <target state="new">Last hour</target> | 7095 | <target state="translated">Geçen saat</target> |
6400 | 7096 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">89</context></context-group> | |
6401 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">89</context></context-group></trans-unit><trans-unit id="3164845764519833078" datatype="html"> | 7097 | </trans-unit> |
6402 | <source>debug</source><target state="new">debug</target> | 7098 | <trans-unit id="3164845764519833078" datatype="html"> |
6403 | 7099 | <source>debug</source> | |
6404 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="4279081882680795350" datatype="html"> | 7100 | <target state="new">debug</target> |
6405 | <source>info</source><target state="new">info</target> | 7101 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">101</context></context-group> |
6406 | 7102 | </trans-unit> | |
6407 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">105</context></context-group></trans-unit><trans-unit id="3379167598974960777" datatype="html"> | 7103 | <trans-unit id="4279081882680795350" datatype="html"> |
6408 | <source>warning</source><target state="new">warning</target> | 7104 | <source>info</source> |
6409 | 7105 | <target state="new">info</target> | |
6410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">109</context></context-group></trans-unit><trans-unit id="8772116786769251214" datatype="html"> | 7106 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">105</context></context-group> |
6411 | <source>error</source><target state="new">error</target> | 7107 | </trans-unit> |
6412 | 7108 | <trans-unit id="3379167598974960777" datatype="html"> | |
6413 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">113</context></context-group></trans-unit> | 7109 | <source>warning</source> |
7110 | <target state="new">warning</target> | ||
7111 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">109</context></context-group> | ||
7112 | </trans-unit> | ||
7113 | <trans-unit id="8772116786769251214" datatype="html"> | ||
7114 | <source>error</source> | ||
7115 | <target state="new">error</target> | ||
7116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">113</context></context-group> | ||
7117 | </trans-unit> | ||
6414 | <trans-unit id="3422890808980876594" datatype="html"> | 7118 | <trans-unit id="3422890808980876594" datatype="html"> |
6415 | <source>Debug</source> | 7119 | <source>Debug</source> |
6416 | <target state="new">Debug</target> | 7120 | <target state="new">Debug</target> |
6417 | 7121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">48</context></context-group> | |
6418 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7122 | </trans-unit> |
6419 | <trans-unit id="314315645942131479" datatype="html"> | 7123 | <trans-unit id="314315645942131479" datatype="html"> |
6420 | <source>Info</source> | 7124 | <source>Info</source> |
6421 | <target state="new">Info</target> | 7125 | <target state="new">Info</target> |
6422 | 7126 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">11</context></context-group> | |
6423 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">11</context></context-group></trans-unit> | 7127 | </trans-unit> |
6424 | <trans-unit id="6759205696902713848" datatype="html"> | 7128 | <trans-unit id="6759205696902713848" datatype="html"> |
6425 | <source>Warning</source> | 7129 | <source>Warning</source> |
6426 | <target state="new">Warning</target> | 7130 | <target state="new">Warning</target> |
6427 | 7131 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/routing/can-deactivate-guard.service.ts</context><context context-type="linenumber">23</context></context-group> | |
6428 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/routing/can-deactivate-guard.service.ts</context><context context-type="linenumber">23</context></context-group></trans-unit> | 7132 | </trans-unit> |
6429 | <trans-unit id="1519954996184640001" datatype="html"> | 7133 | <trans-unit id="1519954996184640001" datatype="html"> |
6430 | <source>Error</source> | 7134 | <source>Error</source> |
6431 | <target state="new">Error</target> | 7135 | <target state="new">Error</target> |
6432 | 7136 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">104</context></context-group> | |
6433 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">104</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">18</context></context-group></trans-unit> | 7137 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">18</context></context-group> |
7138 | </trans-unit> | ||
6434 | <trans-unit id="5076187961693950167" datatype="html"> | 7139 | <trans-unit id="5076187961693950167" datatype="html"> |
6435 | <source>Standard logs</source> | 7140 | <source>Standard logs</source> |
6436 | <target state="new">Standard logs</target> | 7141 | <target state="new">Standard logs</target> |
6437 | 7142 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">124</context></context-group> | |
6438 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7143 | </trans-unit> |
6439 | <trans-unit id="4737341634746310376" datatype="html"> | 7144 | <trans-unit id="4737341634746310376" datatype="html"> |
6440 | <source>Audit logs</source> | 7145 | <source>Audit logs</source> |
6441 | <target state="new">Audit logs</target> | 7146 | <target state="new">Audit logs</target> |
6442 | 7147 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">128</context></context-group> | |
6443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 7148 | </trans-unit> |
6444 | <trans-unit id="1886888801485703107" datatype="html"> | 7149 | <trans-unit id="1886888801485703107" datatype="html"> |
6445 | <source>User <x id="PH"/> created.</source> | 7150 | <source>User <x id="PH"/> created.</source> |
6446 | <target state="new">User | 7151 | <target state="new">User |
6447 | <x id="PH"/> created. | 7152 | <x id="PH"/> created. |
6448 | </target> | 7153 | </target> |
6449 | 7154 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">77</context></context-group> | |
6450 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 7155 | </trans-unit> |
6451 | <trans-unit id="8286337167859377104" datatype="html"> | 7156 | <trans-unit id="8286337167859377104" datatype="html"> |
6452 | <source>Create user</source> | 7157 | <source>Create user</source> |
6453 | <target state="new">Create user</target> | 7158 | <target state="new">Create user</target> |
6454 | 7159 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">95</context></context-group> | |
6455 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="7098180453085889026" datatype="html"> | 7160 | </trans-unit> |
6456 | <source>Blocked videos</source><target state="new">Blocked videos</target> | 7161 | <trans-unit id="7098180453085889026" datatype="html"> |
6457 | 7162 | <source>Blocked videos</source> | |
6458 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> | 7163 | <target state="translated">Engellenmiş videolar</target> |
6459 | 7164 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">69</context></context-group> | |
7165 | </trans-unit> | ||
6460 | <trans-unit id="7805059636749367886" datatype="html"> | 7166 | <trans-unit id="7805059636749367886" datatype="html"> |
6461 | <source>Muted instances</source> | 7167 | <source>Muted instances</source> |
6462 | <target state="new">Muted instances</target> | 7168 | <target state="new">Muted instances</target> |
6463 | 7169 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">109</context></context-group> | |
6464 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">109</context></context-group></trans-unit> | 7170 | </trans-unit> |
6465 | <trans-unit id="5974506725502681113" datatype="html"> | 7171 | <trans-unit id="5974506725502681113" datatype="html"> |
6466 | <source>Password changed for user <x id="PH"/>.</source> | 7172 | <source>Password changed for user <x id="PH"/>.</source> |
6467 | <target state="new">Password changed for user | 7173 | <target state="new">Password changed for user |
6468 | <x id="PH"/>. | 7174 | <x id="PH"/>. |
6469 | </target> | 7175 | </target> |
6470 | 7176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">40</context></context-group> | |
6471 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> | 7177 | </trans-unit> |
6472 | <trans-unit id="149953821752893163" datatype="html"> | 7178 | <trans-unit id="149953821752893163" datatype="html"> |
6473 | <source>Update user password</source> | 7179 | <source>Update user password</source> |
6474 | <target state="new">Update user password</target> | 7180 | <target state="new">Update user password</target> |
6475 | 7181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group> | |
6476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 7182 | </trans-unit> |
6477 | <trans-unit id="177544274549739411" datatype="html"> | 7183 | <trans-unit id="177544274549739411" datatype="html"> |
6478 | <source>Following list</source> | 7184 | <source>Following list</source> |
6479 | <target state="new">Following list</target> | 7185 | <target state="new">Following list</target> |
6480 | 7186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">28</context></context-group> | |
6481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 7187 | </trans-unit> |
6482 | <trans-unit id="8092429110007204784" datatype="html"> | 7188 | <trans-unit id="8092429110007204784" datatype="html"> |
6483 | <source>Followers list</source> | 7189 | <source>Followers list</source> |
6484 | <target state="new">Followers list</target> | 7190 | <target state="new">Followers list</target> |
6485 | 7191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">37</context></context-group> | |
6486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 7192 | </trans-unit> |
6487 | <trans-unit id="780323526182667308" datatype="html"> | 7193 | <trans-unit id="780323526182667308" datatype="html"> |
6488 | <source>User <x id="PH"/> updated.</source> | 7194 | <source>User <x id="PH"/> updated.</source> |
6489 | <target state="new">User | 7195 | <target state="new">User |
6490 | <x id="PH"/> updated. | 7196 | <x id="PH"/> updated. |
6491 | </target> | 7197 | </target> |
6492 | 7198 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">85</context></context-group> | |
6493 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> | 7199 | </trans-unit> |
6494 | <trans-unit id="1349763489797682899" datatype="html"> | 7200 | <trans-unit id="1349763489797682899" datatype="html"> |
6495 | <source>Update user</source> | 7201 | <source>Update user</source> |
6496 | <target state="new">Update user</target> | 7202 | <target state="new">Update user</target> |
6497 | 7203 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">102</context></context-group> | |
6498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">102</context></context-group></trans-unit> | 7204 | </trans-unit> |
6499 | <trans-unit id="8819563010322372715" datatype="html"> | 7205 | <trans-unit id="8819563010322372715" datatype="html"> |
6500 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> | 7206 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> |
6501 | <target state="new">An email asking for password reset has been sent to | 7207 | <target state="new">An email asking for password reset has been sent to |
6502 | <x id="PH"/>. | 7208 | <x id="PH"/>. |
6503 | </target> | 7209 | </target> |
6504 | 7210 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">108</context></context-group> | |
6505 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">108</context></context-group></trans-unit> | 7211 | </trans-unit> |
6506 | <trans-unit id="7483807629538115183" datatype="html"> | 7212 | <trans-unit id="7483807629538115183" datatype="html"> |
6507 | <source>Users list</source> | 7213 | <source>Users list</source> |
6508 | <target state="new">Users list</target> | 7214 | <target state="new">Users list</target> |
6509 | 7215 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">27</context></context-group> | |
6510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">27</context></context-group></trans-unit> | 7216 | </trans-unit> |
6511 | <trans-unit id="1525334987774465166" datatype="html"> | 7217 | <trans-unit id="1525334987774465166" datatype="html"> |
6512 | <source>Create a user</source> | 7218 | <source>Create a user</source> |
6513 | <target state="new">Create a user</target> | 7219 | <target state="new">Create a user</target> |
6514 | 7220 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">36</context></context-group> | |
6515 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">36</context></context-group></trans-unit> | 7221 | </trans-unit> |
6516 | <trans-unit id="5552039423287890133" datatype="html"> | 7222 | <trans-unit id="5552039423287890133" datatype="html"> |
6517 | <source>Update a user</source> | 7223 | <source>Update a user</source> |
6518 | <target state="new">Update a user</target> | 7224 | <target state="new">Update a user</target> |
6519 | 7225 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">48</context></context-group> | |
6520 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7226 | </trans-unit> |
6521 | <trans-unit id="8564701209009684429" datatype="html"> | 7227 | <trans-unit id="8564701209009684429" datatype="html"> |
6522 | <source>Federation</source> | 7228 | <source>Federation</source> |
6523 | <target state="new">Federation</target> | 7229 | <target state="new">Federation</target> |
6524 | 7230 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group> | |
6525 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 7231 | </trans-unit> |
6526 | <trans-unit id="4682675125751819107" datatype="html"> | 7232 | <trans-unit id="4682675125751819107" datatype="html"> |
6527 | <source>Instances you follow</source> | 7233 | <source>Instances you follow</source> |
6528 | <target state="new">Instances you follow</target> | 7234 | <target state="new">Instances you follow</target> |
6529 | 7235 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">29</context></context-group> | |
6530 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">29</context></context-group></trans-unit> | 7236 | </trans-unit> |
6531 | <trans-unit id="8899833753704589712" datatype="html"> | 7237 | <trans-unit id="8899833753704589712" datatype="html"> |
6532 | <source>Instances following you</source> | 7238 | <source>Instances following you</source> |
6533 | <target state="new">Instances following you</target> | 7239 | <target state="new">Instances following you</target> |
6534 | 7240 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">34</context></context-group> | |
6535 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 7241 | </trans-unit> |
6536 | <trans-unit id="3767259920053407667" datatype="html"> | 7242 | <trans-unit id="3767259920053407667" datatype="html"> |
6537 | <source>Videos will be deleted, comments will be tombstoned.</source> | 7243 | <source>Videos will be deleted, comments will be tombstoned.</source> |
6538 | <target state="new">Videos will be deleted, comments will be tombstoned.</target> | 7244 | <target state="new">Videos will be deleted, comments will be tombstoned.</target> |
6539 | 7245 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">269</context></context-group> | |
6540 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">269</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 7246 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">77</context></context-group> |
7247 | </trans-unit> | ||
6541 | <trans-unit id="4209525355702493436" datatype="html"> | 7248 | <trans-unit id="4209525355702493436" datatype="html"> |
6542 | <source>Ban</source> | 7249 | <source>Ban</source> |
6543 | <target state="new">Ban</target> | 7250 | <target state="new">Ban</target> |
6544 | 7251 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">273</context></context-group> | |
6545 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">273</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 7252 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">82</context></context-group> |
7253 | </trans-unit> | ||
6546 | <trans-unit id="3855396975723886053" datatype="html"> | 7254 | <trans-unit id="3855396975723886053" datatype="html"> |
6547 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> | 7255 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> |
6548 | <target state="new">User won't be able to login anymore, but videos and comments will be kept as is.</target> | 7256 | <target state="new">User won't be able to login anymore, but videos and comments will be kept as is.</target> |
6549 | 7257 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group> | |
6550 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> | 7258 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">83</context></context-group> |
7259 | </trans-unit> | ||
6551 | <trans-unit id="4451482225013335720" datatype="html"> | 7260 | <trans-unit id="4451482225013335720" datatype="html"> |
6552 | <source>Unban</source> | 7261 | <source>Unban</source> |
6553 | <target state="new">Unban</target> | 7262 | <target state="new">Unban</target> |
6554 | 7263 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">70</context></context-group> | |
6555 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">88</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit> | 7264 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">88</context></context-group> |
7265 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">171</context></context-group> | ||
7266 | </trans-unit> | ||
6556 | <trans-unit id="7210277223053877333" datatype="html"> | 7267 | <trans-unit id="7210277223053877333" datatype="html"> |
6557 | <source>Set Email as Verified</source> | 7268 | <source>Set Email as Verified</source> |
6558 | <target state="new">Set Email as Verified</target> | 7269 | <target state="new">Set Email as Verified</target> |
6559 | 7270 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">285</context></context-group> | |
6560 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">285</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">95</context></context-group></trans-unit> | 7271 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">95</context></context-group> |
7272 | </trans-unit> | ||
6561 | <trans-unit id="3403978719736970622" datatype="html"> | 7273 | <trans-unit id="3403978719736970622" datatype="html"> |
6562 | <source>You cannot ban root.</source> | 7274 | <source>You cannot ban root.</source> |
6563 | <target state="new">You cannot ban root.</target> | 7275 | <target state="new">You cannot ban root.</target> |
6564 | 7276 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">58</context></context-group> | |
6565 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">154</context></context-group></trans-unit> | 7277 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">154</context></context-group> |
7278 | </trans-unit> | ||
6566 | <trans-unit id="4884272193574287483" datatype="html"> | 7279 | <trans-unit id="4884272193574287483" datatype="html"> |
6567 | <source>Do you really want to unban <x id="PH"/> users?</source> | 7280 | <source>Do you really want to unban <x id="PH"/> users?</source> |
6568 | <target state="new">Do you really want to unban | 7281 | <target state="new">Do you really want to unban |
6569 | <x id="PH"/> users? | 7282 | <x id="PH"/> users? |
6570 | </target> | 7283 | </target> |
6571 | 7284 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">171</context></context-group> | |
6572 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit> | 7285 | </trans-unit> |
6573 | <trans-unit id="8712248120167780385" datatype="html"> | 7286 | <trans-unit id="8712248120167780385" datatype="html"> |
6574 | <source><x id="PH"/> users unbanned. </source> | 7287 | <source><x id="PH"/> users unbanned. </source> |
6575 | <target state="new"> | 7288 | <target state="new"> |
6576 | <x id="PH"/> users unbanned. | 7289 | <x id="PH"/> users unbanned. |
6577 | </target> | 7290 | </target> |
6578 | 7291 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">177</context></context-group> | |
6579 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">177</context></context-group></trans-unit> | 7292 | </trans-unit> |
6580 | <trans-unit id="5325873477837320044" datatype="html"> | 7293 | <trans-unit id="5325873477837320044" datatype="html"> |
6581 | <source>You cannot delete root.</source> | 7294 | <source>You cannot delete root.</source> |
6582 | <target state="new">You cannot delete root.</target> | 7295 | <target state="new">You cannot delete root.</target> |
6583 | 7296 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">86</context></context-group> | |
6584 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">86</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">188</context></context-group></trans-unit> | 7297 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">188</context></context-group> |
7298 | </trans-unit> | ||
6585 | <trans-unit id="4086135983283545219" datatype="html"> | 7299 | <trans-unit id="4086135983283545219" datatype="html"> |
6586 | <source>If you remove these users, you will not be able to create others with the same username!</source> | 7300 | <source>If you remove these users, you will not be able to create others with the same username!</source> |
6587 | <target state="new">If you remove these users, you will not be able to create others with the same username!</target> | 7301 | <target state="new">If you remove these users, you will not be able to create others with the same username!</target> |
6588 | 7302 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">193</context></context-group> | |
6589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> | 7303 | </trans-unit> |
6590 | <trans-unit id="7166936623843420016" datatype="html"> | 7304 | <trans-unit id="7166936623843420016" datatype="html"> |
6591 | <source><x id="PH"/> users deleted. </source> | 7305 | <source><x id="PH"/> users deleted. </source> |
6592 | <target state="new"> | 7306 | <target state="new"> |
6593 | <x id="PH"/> users deleted. | 7307 | <x id="PH"/> users deleted. |
6594 | </target> | 7308 | </target> |
6595 | 7309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">199</context></context-group> | |
6596 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">199</context></context-group></trans-unit> | 7310 | </trans-unit> |
6597 | <trans-unit id="8360664597512051242" datatype="html"> | 7311 | <trans-unit id="8360664597512051242" datatype="html"> |
6598 | <source><x id="PH"/> users email set as verified. </source> | 7312 | <source><x id="PH"/> users email set as verified. </source> |
6599 | <target state="new"> | 7313 | <target state="new"> |
6600 | <x id="PH"/> users email set as verified. | 7314 | <x id="PH"/> users email set as verified. |
6601 | </target> | 7315 | </target> |
6602 | 7316 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">210</context></context-group> | |
6603 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">210</context></context-group></trans-unit> | 7317 | </trans-unit> |
6604 | <trans-unit id="7390990800435887351" datatype="html"> | 7318 | <trans-unit id="7390990800435887351" datatype="html"> |
6605 | <source>Account <x id="PH"/> unmuted.</source> | 7319 | <source>Account <x id="PH"/> unmuted.</source> |
6606 | <target state="new">Account | 7320 | <target state="new">Account |
6607 | <x id="PH"/> unmuted. | 7321 | <x id="PH"/> unmuted. |
6608 | </target> | 7322 | </target> |
6609 | 7323 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">133</context></context-group> | |
6610 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">133</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 7324 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">47</context></context-group> |
7325 | </trans-unit> | ||
6611 | <trans-unit id="7246356397085094208" datatype="html"> | 7326 | <trans-unit id="7246356397085094208" datatype="html"> |
6612 | <source>Instance <x id="PH"/> unmuted.</source> | 7327 | <source>Instance <x id="PH"/> unmuted.</source> |
6613 | <target state="new">Instance | 7328 | <target state="new">Instance |
6614 | <x id="PH"/> unmuted. | 7329 | <x id="PH"/> unmuted. |
6615 | </target> | 7330 | </target> |
6616 | 7331 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">161</context></context-group> | |
6617 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">161</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7332 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">45</context></context-group> |
6618 | 7333 | </trans-unit> | |
6619 | <trans-unit id="5551551295632950210" datatype="html"> | 7334 | <trans-unit id="5551551295632950210" datatype="html"> |
6620 | <source>Videos history is enabled</source> | 7335 | <source>Videos history is enabled</source> |
6621 | <target state="new">Videos history is enabled</target> | 7336 | <target state="translated">Video geçmişi açıldı</target> |
6622 | 7337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">106</context></context-group> | |
6623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">106</context></context-group></trans-unit> | 7338 | </trans-unit> |
6624 | <trans-unit id="9136227503281311926" datatype="html"> | 7339 | <trans-unit id="9136227503281311926" datatype="html"> |
6625 | <source>Videos history is disabled</source> | 7340 | <source>Videos history is disabled</source> |
6626 | <target state="new">Videos history is disabled</target> | 7341 | <target state="translated">Video geçmişi kapatıldı</target> |
6627 | 7342 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">107</context></context-group> | |
6628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">107</context></context-group></trans-unit> | 7343 | </trans-unit> |
6629 | <trans-unit id="8966726118414892732" datatype="html"> | 7344 | <trans-unit id="8966726118414892732" datatype="html"> |
6630 | <source>Delete videos history</source> | 7345 | <source>Delete videos history</source> |
6631 | <target state="new">Delete videos history</target> | 7346 | <target state="translated">Video geçmişini sil</target> |
6632 | 7347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">119</context></context-group> | |
6633 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">119</context></context-group></trans-unit> | 7348 | </trans-unit> |
6634 | <trans-unit id="2482543433481435105" datatype="html"> | 7349 | <trans-unit id="2482543433481435105" datatype="html"> |
6635 | <source>Are you sure you want to delete all your videos history?</source> | 7350 | <source>Are you sure you want to delete all your videos history?</source> |
6636 | <target state="new">Are you sure you want to delete all your videos history?</target> | 7351 | <target state="translated">Bütün video geçmişinizi silmek istediğinize emin misiniz?</target> |
6637 | 7352 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">120</context></context-group> | |
6638 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">120</context></context-group></trans-unit> | 7353 | </trans-unit> |
6639 | <trans-unit id="4051606152827088952" datatype="html"> | 7354 | <trans-unit id="4051606152827088952" datatype="html"> |
6640 | <source>Videos history deleted</source> | 7355 | <source>Videos history deleted</source> |
6641 | <target state="new">Videos history deleted</target> | 7356 | <target state="translated">Video geçmişi silindi</target> |
6642 | 7357 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">128</context></context-group> | |
6643 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit><trans-unit id="192815f43d0d7337dbf99f84281f5a4c3155af8f" datatype="html"> | 7358 | </trans-unit> |
6644 | <source>My watch history</source><target state="new">My watch history</target> | 7359 | <trans-unit id="192815f43d0d7337dbf99f84281f5a4c3155af8f" datatype="html"> |
7360 | <source>My watch history</source> | ||
7361 | <target state="translated">İzleme geçmişim</target> | ||
6645 | <context-group purpose="location"> | 7362 | <context-group purpose="location"> |
6646 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> | 7363 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> |
6647 | <context context-type="linenumber">3</context> | 7364 | <context context-type="linenumber">3</context> |
6648 | </context-group> | 7365 | </context-group> |
6649 | </trans-unit><trans-unit id="f2540f4ffc5bbb12e034a4c9e118bbc680c62e61" datatype="html"> | 7366 | </trans-unit> |
6650 | <source>Search your history</source><target state="new">Search your history</target> | 7367 | <trans-unit id="f2540f4ffc5bbb12e034a4c9e118bbc680c62e61" datatype="html"> |
7368 | <source>Search your history</source> | ||
7369 | <target state="translated">Geçmişinizde arayın</target> | ||
6651 | <context-group purpose="location"> | 7370 | <context-group purpose="location"> |
6652 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> | 7371 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> |
6653 | <context context-type="linenumber">10</context> | 7372 | <context context-type="linenumber">10</context> |
6654 | </context-group> | 7373 | </context-group> |
6655 | </trans-unit><trans-unit id="777ef31e4dfcb08a00e23b586a50f0ffe94f0c72" datatype="html"> | 7374 | </trans-unit> |
6656 | <source>Track watch history</source><target state="new">Track watch history</target> | 7375 | <trans-unit id="777ef31e4dfcb08a00e23b586a50f0ffe94f0c72" datatype="html"> |
7376 | <source>Track watch history</source> | ||
7377 | <target state="new">Track watch history</target> | ||
6657 | <context-group purpose="location"> | 7378 | <context-group purpose="location"> |
6658 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> | 7379 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> |
6659 | <context context-type="linenumber">20</context> | 7380 | <context context-type="linenumber">20</context> |
@@ -6662,20 +7383,21 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6662 | <trans-unit id="3183245287221165928" datatype="html"> | 7383 | <trans-unit id="3183245287221165928" datatype="html"> |
6663 | <source>Ownership accepted</source> | 7384 | <source>Ownership accepted</source> |
6664 | <target state="new">Ownership accepted</target> | 7385 | <target state="new">Ownership accepted</target> |
6665 | 7386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts</context><context context-type="linenumber">71</context></context-group> | |
6666 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts</context><context context-type="linenumber">71</context></context-group></trans-unit> | 7387 | </trans-unit> |
6667 | <trans-unit id="6012072687166259654" datatype="html"> | 7388 | <trans-unit id="6012072687166259654" datatype="html"> |
6668 | <source>Please check your emails to verify your new email.</source> | 7389 | <source>Please check your emails to verify your new email.</source> |
6669 | <target state="new">Please check your emails to verify your new email.</target> | 7390 | <target state="new">Please check your emails to verify your new email.</target> |
6670 | 7391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">53</context></context-group> | |
6671 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">53</context></context-group></trans-unit> | 7392 | </trans-unit> |
6672 | <trans-unit id="6585766371605707311" datatype="html"> | 7393 | <trans-unit id="6585766371605707311" datatype="html"> |
6673 | <source>Email updated.</source> | 7394 | <source>Email updated.</source> |
6674 | <target state="new">Email updated.</target> | 7395 | <target state="new">Email updated.</target> |
6675 | 7396 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">55</context></context-group> | |
6676 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit><trans-unit id="73fc884417b68de6671fbab6e72e054c38a1990a" datatype="html"> | 7397 | </trans-unit> |
6677 | <source> Your current email is <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.email }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/>. It is never shown to the public. | 7398 | <trans-unit id="73fc884417b68de6671fbab6e72e054c38a1990a" datatype="html"> |
6678 | </source><target state="new"> Your current email is <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.email }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/>. It is never shown to the public. | 7399 | <source>Your current email is <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.email }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/>. It is never shown to the public. </source> |
7400 | <target state="new"> Your current email is <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="email">"/><x id="INTERPOLATION" equiv-text="{{ user.email }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/>. It is never shown to the public. | ||
6679 | </target> | 7401 | </target> |
6680 | <context-group purpose="location"> | 7402 | <context-group purpose="location"> |
6681 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> | 7403 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> |
@@ -6685,124 +7407,128 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6685 | <trans-unit id="853586874765134886" datatype="html"> | 7407 | <trans-unit id="853586874765134886" datatype="html"> |
6686 | <source>You current password is invalid.</source> | 7408 | <source>You current password is invalid.</source> |
6687 | <target state="new">You current password is invalid.</target> | 7409 | <target state="new">You current password is invalid.</target> |
6688 | 7410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context><context context-type="linenumber">56</context></context-group> | |
6689 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 7411 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context><context context-type="linenumber">61</context></context-group> |
7412 | </trans-unit> | ||
6690 | <trans-unit id="6159571046971090595" datatype="html"> | 7413 | <trans-unit id="6159571046971090595" datatype="html"> |
6691 | <source>Password updated.</source> | 7414 | <source>Password updated.</source> |
6692 | <target state="new">Password updated.</target> | 7415 | <target state="new">Password updated.</target> |
6693 | 7416 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context><context context-type="linenumber">48</context></context-group> | |
6694 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7417 | </trans-unit> |
6695 | <trans-unit id="5179099584732142331" datatype="html"> | 7418 | <trans-unit id="5179099584732142331" datatype="html"> |
6696 | <source>Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</source> | 7419 | <source>Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</source> |
6697 | <target state="new">Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</target> | 7420 | <target state="new">Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</target> |
6698 | 7421 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">22</context></context-group> | |
6699 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">22</context></context-group></trans-unit> | 7422 | </trans-unit> |
6700 | <trans-unit id="6897292459203320054" datatype="html"> | 7423 | <trans-unit id="6897292459203320054" datatype="html"> |
6701 | <source>Type your username to confirm</source> | 7424 | <source>Type your username to confirm</source> |
6702 | <target state="new">Type your username to confirm</target> | 7425 | <target state="new">Type your username to confirm</target> |
6703 | 7426 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">23</context></context-group> | |
6704 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">23</context></context-group></trans-unit> | 7427 | </trans-unit> |
6705 | <trans-unit id="3122895472333547524" datatype="html"> | 7428 | <trans-unit id="3122895472333547524" datatype="html"> |
6706 | <source>Delete your account</source> | 7429 | <source>Delete your account</source> |
6707 | <target state="new">Delete your account</target> | 7430 | <target state="new">Delete your account</target> |
6708 | 7431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">25</context></context-group> | |
6709 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 7432 | </trans-unit> |
6710 | <trans-unit id="2520605306994744004" datatype="html"> | 7433 | <trans-unit id="2520605306994744004" datatype="html"> |
6711 | <source>Delete my account</source> | 7434 | <source>Delete my account</source> |
6712 | <target state="new">Delete my account</target> | 7435 | <target state="translated">Hesabımı sil</target> |
6713 | 7436 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">26</context></context-group> | |
6714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 7437 | </trans-unit> |
6715 | <trans-unit id="3902597758945766483" datatype="html"> | 7438 | <trans-unit id="3902597758945766483" datatype="html"> |
6716 | <source>Your account is deleted.</source> | 7439 | <source>Your account is deleted.</source> |
6717 | <target state="new">Your account is deleted.</target> | 7440 | <target state="translated">Hesabınız silindi.</target> |
6718 | 7441 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">32</context></context-group> | |
6719 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 7442 | </trans-unit> |
6720 | <trans-unit id="4776289814033837037" datatype="html"> | 7443 | <trans-unit id="4776289814033837037" datatype="html"> |
6721 | <source>Interface settings updated.</source> | 7444 | <source>Interface settings updated.</source> |
6722 | <target state="new">Interface settings updated.</target> | 7445 | <target state="new">Interface settings updated.</target> |
6723 | 7446 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">74</context></context-group> | |
6724 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 7447 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">81</context></context-group> |
7448 | </trans-unit> | ||
6725 | <trans-unit id="77907918814566205" datatype="html"> | 7449 | <trans-unit id="77907918814566205" datatype="html"> |
6726 | <source>New video from your subscriptions</source> | 7450 | <source>New video from your subscriptions</source> |
6727 | <target state="new">New video from your subscriptions</target> | 7451 | <target state="new">New video from your subscriptions</target> |
6728 | 7452 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">32</context></context-group> | |
6729 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 7453 | </trans-unit> |
6730 | <trans-unit id="4343589211916204486" datatype="html"> | 7454 | <trans-unit id="4343589211916204486" datatype="html"> |
6731 | <source>New comment on your video</source> | 7455 | <source>New comment on your video</source> |
6732 | <target state="new">New comment on your video</target> | 7456 | <target state="new">New comment on your video</target> |
6733 | 7457 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">33</context></context-group> | |
6734 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">33</context></context-group></trans-unit> | 7458 | </trans-unit> |
6735 | <trans-unit id="7130088765428829942" datatype="html"> | 7459 | <trans-unit id="7130088765428829942" datatype="html"> |
6736 | <source>New abuse</source> | 7460 | <source>New abuse</source> |
6737 | <target state="new">New abuse</target> | 7461 | <target state="new">New abuse</target> |
6738 | 7462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">34</context></context-group> | |
6739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 7463 | </trans-unit> |
6740 | <trans-unit id="2265829846010085268" datatype="html"> | 7464 | <trans-unit id="2265829846010085268" datatype="html"> |
6741 | <source>Video blocked automatically waiting review</source> | 7465 | <source>Video blocked automatically waiting review</source> |
6742 | <target state="new">Video blocked automatically waiting review</target> | 7466 | <target state="new">Video blocked automatically waiting review</target> |
6743 | 7467 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">35</context></context-group> | |
6744 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 7468 | </trans-unit> |
6745 | <trans-unit id="5671547068905553663" datatype="html"> | 7469 | <trans-unit id="5671547068905553663" datatype="html"> |
6746 | <source>One of your video is blocked/unblocked</source> | 7470 | <source>One of your video is blocked/unblocked</source> |
6747 | <target state="new">One of your video is blocked/unblocked</target> | 7471 | <target state="new">One of your video is blocked/unblocked</target> |
6748 | 7472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">36</context></context-group> | |
6749 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">36</context></context-group></trans-unit> | 7473 | </trans-unit> |
6750 | <trans-unit id="1158912204255103651" datatype="html"> | 7474 | <trans-unit id="1158912204255103651" datatype="html"> |
6751 | <source>Video published (after transcoding/scheduled update)</source> | 7475 | <source>Video published (after transcoding/scheduled update)</source> |
6752 | <target state="new">Video published (after transcoding/scheduled update)</target> | 7476 | <target state="new">Video published (after transcoding/scheduled update)</target> |
6753 | 7477 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">37</context></context-group> | |
6754 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 7478 | </trans-unit> |
6755 | <trans-unit id="3809414664640924954" datatype="html"> | 7479 | <trans-unit id="3809414664640924954" datatype="html"> |
6756 | <source>Video import finished</source> | 7480 | <source>Video import finished</source> |
6757 | <target state="new">Video import finished</target> | 7481 | <target state="new">Video import finished</target> |
6758 | 7482 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">38</context></context-group> | |
6759 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 7483 | </trans-unit> |
6760 | <trans-unit id="3268838889659873892" datatype="html"> | 7484 | <trans-unit id="3268838889659873892" datatype="html"> |
6761 | <source>A new user registered on your instance</source> | 7485 | <source>A new user registered on your instance</source> |
6762 | <target state="new">A new user registered on your instance</target> | 7486 | <target state="new">A new user registered on your instance</target> |
6763 | 7487 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">39</context></context-group> | |
6764 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 7488 | </trans-unit> |
6765 | <trans-unit id="7373104725413001009" datatype="html"> | 7489 | <trans-unit id="7373104725413001009" datatype="html"> |
6766 | <source>You or your channel(s) has a new follower</source> | 7490 | <source>You or your channel(s) has a new follower</source> |
6767 | <target state="new">You or your channel(s) has a new follower</target> | 7491 | <target state="new">You or your channel(s) has a new follower</target> |
6768 | 7492 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">40</context></context-group> | |
6769 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> | 7493 | </trans-unit> |
6770 | <trans-unit id="5315689532659759332"> | 7494 | <trans-unit id="5315689532659759332"> |
6771 | <source>Someone mentioned you in video comments</source> | 7495 | <source>Someone mentioned you in video comments</source> |
6772 | <target>Birisi video yorumlarında sizden bahsetti</target> | 7496 | <target>Birisi video yorumlarında sizden bahsetti</target> |
6773 | 7497 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">41</context></context-group> | |
6774 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> | 7498 | </trans-unit> |
6775 | <trans-unit id="2018794201569157817" datatype="html"> | 7499 | <trans-unit id="2018794201569157817" datatype="html"> |
6776 | <source>Your instance has a new follower</source> | 7500 | <source>Your instance has a new follower</source> |
6777 | <target state="new">Your instance has a new follower</target> | 7501 | <target state="new">Your instance has a new follower</target> |
6778 | 7502 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">42</context></context-group> | |
6779 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">42</context></context-group></trans-unit> | 7503 | </trans-unit> |
6780 | <trans-unit id="773085434165307906" datatype="html"> | 7504 | <trans-unit id="773085434165307906" datatype="html"> |
6781 | <source>Your instance automatically followed another instance</source> | 7505 | <source>Your instance automatically followed another instance</source> |
6782 | <target state="new">Your instance automatically followed another instance</target> | 7506 | <target state="new">Your instance automatically followed another instance</target> |
6783 | 7507 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">43</context></context-group> | |
6784 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> | 7508 | </trans-unit> |
6785 | <trans-unit id="900099988467638766" datatype="html"> | 7509 | <trans-unit id="900099988467638766" datatype="html"> |
6786 | <source>An abuse report received a new message</source> | 7510 | <source>An abuse report received a new message</source> |
6787 | <target state="new">An abuse report received a new message</target> | 7511 | <target state="new">An abuse report received a new message</target> |
6788 | 7512 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">44</context></context-group> | |
6789 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">44</context></context-group></trans-unit> | 7513 | </trans-unit> |
6790 | <trans-unit id="2326816287669585542" datatype="html"> | 7514 | <trans-unit id="2326816287669585542" datatype="html"> |
6791 | <source>One of your abuse reports has been accepted or rejected by moderators</source> | 7515 | <source>One of your abuse reports has been accepted or rejected by moderators</source> |
6792 | <target state="new">One of your abuse reports has been accepted or rejected by moderators</target> | 7516 | <target state="new">One of your abuse reports has been accepted or rejected by moderators</target> |
6793 | 7517 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">45</context></context-group> | |
6794 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7518 | </trans-unit> |
6795 | <trans-unit id="5095562193296630034" datatype="html"> | 7519 | <trans-unit id="5095562193296630034" datatype="html"> |
6796 | <source>Preferences saved</source> | 7520 | <source>Preferences saved</source> |
6797 | <target state="new">Preferences saved</target> | 7521 | <target state="new">Preferences saved</target> |
6798 | 7522 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">92</context></context-group> | |
6799 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 7523 | </trans-unit> |
6800 | <trans-unit id="4967231969832964676" datatype="html"> | 7524 | <trans-unit id="4967231969832964676" datatype="html"> |
6801 | <source>Profile updated.</source> | 7525 | <source>Profile updated.</source> |
6802 | <target state="new">Profile updated.</target> | 7526 | <target state="new">Profile updated.</target> |
6803 | 7527 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts</context><context context-type="linenumber">58</context></context-group> | |
6804 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts</context><context context-type="linenumber">58</context></context-group></trans-unit><trans-unit id="d2ade8ba2e32c6fe467932b6b156025fe50da7c3" datatype="html"> | 7528 | </trans-unit> |
6805 | <source> People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source><target state="new"> People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </target> | 7529 | <trans-unit id="d2ade8ba2e32c6fe467932b6b156025fe50da7c3" datatype="html"> |
7530 | <source>People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source> | ||
7531 | <target state="new"> People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </target> | ||
6806 | <context-group purpose="location"> | 7532 | <context-group purpose="location"> |
6807 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context> | 7533 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context> |
6808 | <context context-type="linenumber">11,13</context> | 7534 | <context context-type="linenumber">11,13</context> |
@@ -6811,12 +7537,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6811 | <trans-unit id="3525866160632851851" datatype="html"> | 7537 | <trans-unit id="3525866160632851851" datatype="html"> |
6812 | <source>Avatar changed.</source> | 7538 | <source>Avatar changed.</source> |
6813 | <target state="new">Avatar changed.</target> | 7539 | <target state="new">Avatar changed.</target> |
6814 | 7540 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">44</context></context-group> | |
6815 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">107</context></context-group></trans-unit><trans-unit id="8920809083620698740" datatype="html"> | 7541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">107</context></context-group> |
6816 | <source>avatar</source><target state="new">avatar</target> | 7542 | </trans-unit> |
6817 | 7543 | <trans-unit id="8920809083620698740" datatype="html"> | |
6818 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">51</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">114</context></context-group></trans-unit><trans-unit id="2775050991871557896" datatype="html"> | 7544 | <source>avatar</source> |
6819 | <source>Avatar deleted.</source><target state="new">Avatar deleted.</target> | 7545 | <target state="new">avatar</target> |
7546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">51</context></context-group> | ||
7547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">114</context></context-group> | ||
7548 | </trans-unit> | ||
7549 | <trans-unit id="2775050991871557896" datatype="html"> | ||
7550 | <source>Avatar deleted.</source> | ||
7551 | <target state="new">Avatar deleted.</target> | ||
6820 | <context-group purpose="location"> | 7552 | <context-group purpose="location"> |
6821 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context> | 7553 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context> |
6822 | <context context-type="linenumber">61</context> | 7554 | <context context-type="linenumber">61</context> |
@@ -6828,91 +7560,96 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6828 | </trans-unit> | 7560 | </trans-unit> |
6829 | <trans-unit id="1233062525939746039" datatype="html"> | 7561 | <trans-unit id="1233062525939746039" datatype="html"> |
6830 | <source>Unknown language</source> | 7562 | <source>Unknown language</source> |
6831 | <target state="new">Unknown language</target> | 7563 | <target state="translated">Bilinmeyen dil</target> |
6832 | 7564 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">57</context></context-group> | |
6833 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> | 7565 | </trans-unit> |
6834 | <trans-unit id="3761504852202418603" datatype="html"> | 7566 | <trans-unit id="3761504852202418603" datatype="html"> |
6835 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> | 7567 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> |
6836 | <target state="new">Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</target> | 7568 | <target state="translated">Çok fazla dil etkinleştirildi. Lütfen ya hepsini etkinleştirin ya da etkin dilleri 20'nin altında tutun.</target> |
6837 | 7569 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">102</context></context-group> | |
6838 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">102</context></context-group></trans-unit> | 7570 | </trans-unit> |
6839 | <trans-unit id="1904720062363293328" datatype="html"> | 7571 | <trans-unit id="1904720062363293328" datatype="html"> |
6840 | <source>You need to enable at least 1 video language.</source> | 7572 | <source>You need to enable at least 1 video language.</source> |
6841 | <target state="new">You need to enable at least 1 video language.</target> | 7573 | <target state="new">You need to enable at least 1 video language.</target> |
6842 | 7574 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">107</context></context-group> | |
6843 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">107</context></context-group></trans-unit> | 7575 | </trans-unit> |
6844 | <trans-unit id="3960396487495291449" datatype="html"> | 7576 | <trans-unit id="3960396487495291449" datatype="html"> |
6845 | <source>Video settings updated.</source> | 7577 | <source>Video settings updated.</source> |
6846 | <target state="new">Video settings updated.</target> | 7578 | <target state="new">Video settings updated.</target> |
6847 | 7579 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">133</context></context-group> | |
6848 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 7580 | </trans-unit> |
6849 | <trans-unit id="3326446048041727269" datatype="html"> | 7581 | <trans-unit id="3326446048041727269" datatype="html"> |
6850 | <source>Display/Video settings updated.</source> | 7582 | <source>Display/Video settings updated.</source> |
6851 | <target state="new">Display/Video settings updated.</target> | 7583 | <target state="new">Display/Video settings updated.</target> |
6852 | 7584 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">140</context></context-group> | |
6853 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">140</context></context-group></trans-unit> | 7585 | </trans-unit> |
6854 | <trans-unit id="1137937154872046253" datatype="html"> | 7586 | <trans-unit id="1137937154872046253" datatype="html"> |
6855 | <source>Video channel <x id="PH"/> created.</source> | 7587 | <source>Video channel <x id="PH"/> created.</source> |
6856 | <target state="new">Video channel | 7588 | <target state="new">Video channel |
6857 | <x id="PH"/> created. | 7589 | <x id="PH"/> created. |
6858 | </target> | 7590 | </target> |
6859 | 7591 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">57</context></context-group> | |
6860 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> | 7592 | </trans-unit> |
6861 | <trans-unit id="8723777130353305761" datatype="html"> | 7593 | <trans-unit id="8723777130353305761" datatype="html"> |
6862 | <source>This name already exists on this instance.</source> | 7594 | <source>This name already exists on this instance.</source> |
6863 | <target state="new">This name already exists on this instance.</target> | 7595 | <target state="new">This name already exists on this instance.</target> |
6864 | 7596 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">63</context></context-group> | |
6865 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 7597 | </trans-unit> |
6866 | <trans-unit id="7589345916094713536" datatype="html"> | 7598 | <trans-unit id="7589345916094713536" datatype="html"> |
6867 | <source>Video channel <x id="PH"/> updated.</source> | 7599 | <source>Video channel <x id="PH"/> updated.</source> |
6868 | <target state="new">Video channel | 7600 | <target state="new">Video channel |
6869 | <x id="PH"/> updated. | 7601 | <x id="PH"/> updated. |
6870 | </target> | 7602 | </target> |
6871 | 7603 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">94</context></context-group> | |
6872 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> | 7604 | </trans-unit> |
6873 | <trans-unit id="2575302837003821736" datatype="html"> | 7605 | <trans-unit id="2575302837003821736" datatype="html"> |
6874 | <source>Please type the display name of the video channel (<x id="PH"/>) to confirm</source> | 7606 | <source>Please type the display name of the video channel (<x id="PH"/>) to confirm</source> |
6875 | <target state="new">Please type the display name of the video channel ( | 7607 | <target state="new">Please type the display name of the video channel ( |
6876 | <x id="PH"/>) to confirm | 7608 | <x id="PH"/>) to confirm |
6877 | </target> | 7609 | </target> |
6878 | 7610 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">67</context></context-group> | |
6879 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 7611 | </trans-unit> |
6880 | <trans-unit id="624066830180032195" datatype="html"> | 7612 | <trans-unit id="624066830180032195" datatype="html"> |
6881 | <source>Video channel <x id="PH"/> deleted.</source> | 7613 | <source>Video channel <x id="PH"/> deleted.</source> |
6882 | <target state="new">Video channel | 7614 | <target state="new">Video channel |
6883 | <x id="PH"/> deleted. | 7615 | <x id="PH"/> deleted. |
6884 | </target> | 7616 | </target> |
6885 | 7617 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">79</context></context-group> | |
6886 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 7618 | </trans-unit> |
6887 | <trans-unit id="6450826648284332649" datatype="html"> | 7619 | <trans-unit id="6450826648284332649" datatype="html"> |
6888 | <source>Views for the day</source> | 7620 | <source>Views for the day</source> |
6889 | <target state="new">Views for the day</target> | 7621 | <target state="new">Views for the day</target> |
6890 | 7622 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">98</context></context-group> | |
6891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">98</context></context-group></trans-unit> | 7623 | </trans-unit> |
6892 | |||
6893 | <trans-unit id="6059091237492573541" datatype="html"> | 7624 | <trans-unit id="6059091237492573541" datatype="html"> |
6894 | <source>Update video channel</source> | 7625 | <source>Update video channel</source> |
6895 | <target state="new">Update video channel</target> | 7626 | <target state="new">Update video channel</target> |
6896 | 7627 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts</context><context context-type="linenumber">31</context></context-group> | |
6897 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts</context><context context-type="linenumber">31</context></context-group></trans-unit> | 7628 | </trans-unit> |
6898 | <trans-unit id="6595008830732269870" datatype="html"> | 7629 | <trans-unit id="6595008830732269870" datatype="html"> |
6899 | <source>Not found</source> | 7630 | <source>Not found</source> |
6900 | <target state="new">Not found</target> | 7631 | <target state="new">Not found</target> |
6901 | 7632 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found-routing.module.ts</context><context context-type="linenumber">14</context></context-group> | |
6902 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found-routing.module.ts</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="1009095940160473792" datatype="html"> | 7633 | </trans-unit> |
6903 | <source>URL parameter is missing in URL parameters</source><target state="new">URL parameter is missing in URL parameters</target> | 7634 | <trans-unit id="1009095940160473792" datatype="html"> |
7635 | <source>URL parameter is missing in URL parameters</source> | ||
7636 | <target state="new">URL parameter is missing in URL parameters</target> | ||
6904 | <context-group purpose="location"> | 7637 | <context-group purpose="location"> |
6905 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> | 7638 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> |
6906 | <context context-type="linenumber">25</context> | 7639 | <context context-type="linenumber">25</context> |
6907 | </context-group> | 7640 | </context-group> |
6908 | </trans-unit><trans-unit id="7553172329217243895" datatype="html"> | 7641 | </trans-unit> |
6909 | <source>Cannot access to the remote resource</source><target state="new">Cannot access to the remote resource</target> | 7642 | <trans-unit id="7553172329217243895" datatype="html"> |
7643 | <source>Cannot access to the remote resource</source> | ||
7644 | <target state="new">Cannot access to the remote resource</target> | ||
6910 | <context-group purpose="location"> | 7645 | <context-group purpose="location"> |
6911 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> | 7646 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> |
6912 | <context context-type="linenumber">48</context> | 7647 | <context context-type="linenumber">48</context> |
6913 | </context-group> | 7648 | </context-group> |
6914 | </trans-unit><trans-unit id="3851357780293085233" datatype="html"> | 7649 | </trans-unit> |
6915 | <source>Remote interaction</source><target state="new">Remote interaction</target> | 7650 | <trans-unit id="3851357780293085233" datatype="html"> |
7651 | <source>Remote interaction</source> | ||
7652 | <target state="new">Remote interaction</target> | ||
6916 | <context-group purpose="location"> | 7653 | <context-group purpose="location"> |
6917 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction-routing.module.ts</context> | 7654 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction-routing.module.ts</context> |
6918 | <context context-type="linenumber">13</context> | 7655 | <context context-type="linenumber">13</context> |
@@ -6923,80 +7660,87 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6923 | <target state="new">Playlist | 7660 | <target state="new">Playlist |
6924 | <x id="PH"/> created. | 7661 | <x id="PH"/> created. |
6925 | </target> | 7662 | </target> |
6926 | 7663 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts</context><context context-type="linenumber">76</context></context-group> | |
6927 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7664 | </trans-unit> |
6928 | <trans-unit id="5674286808255988565" datatype="html"> | 7665 | <trans-unit id="5674286808255988565" datatype="html"> |
6929 | <source>Create</source> | 7666 | <source>Create</source> |
6930 | <target state="new">Create</target> | 7667 | <target state="new">Create</target> |
6931 | 7668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts</context><context context-type="linenumber">89</context></context-group> | |
6932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts</context><context context-type="linenumber">89</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 7669 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">77</context></context-group> |
7670 | </trans-unit> | ||
6933 | <trans-unit id="8869957234869568361" datatype="html"> | 7671 | <trans-unit id="8869957234869568361" datatype="html"> |
6934 | <source>Update playlist</source> | 7672 | <source>Update playlist</source> |
6935 | <target state="new">Update playlist</target> | 7673 | <target state="new">Update playlist</target> |
6936 | 7674 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">67</context></context-group> | |
6937 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 7675 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">47</context></context-group> |
6938 | 7676 | </trans-unit> | |
6939 | |||
6940 | |||
6941 | <trans-unit id="5851560788527570644" datatype="html"> | 7677 | <trans-unit id="5851560788527570644" datatype="html"> |
6942 | <source>Notifications</source> | 7678 | <source>Notifications</source> |
6943 | <target state="new">Notifications</target> | 7679 | <target state="new">Notifications</target> |
6944 | 7680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">55</context></context-group> | |
6945 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">109</context></context-group></trans-unit><trans-unit id="6658000829978978023" datatype="html"> | 7681 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">109</context></context-group> |
6946 | <source>Applications</source><target state="new">Applications</target> | 7682 | </trans-unit> |
6947 | 7683 | <trans-unit id="6658000829978978023" datatype="html"> | |
6948 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">60</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 7684 | <source>Applications</source> |
7685 | <target state="new">Applications</target> | ||
7686 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">60</context></context-group> | ||
7687 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">127</context></context-group> | ||
7688 | </trans-unit> | ||
6949 | <trans-unit id="104404386496394770" datatype="html"> | 7689 | <trans-unit id="104404386496394770" datatype="html"> |
6950 | <source>Delete playlist</source> | 7690 | <source>Delete playlist</source> |
6951 | <target state="new">Delete playlist</target> | 7691 | <target state="new">Delete playlist</target> |
6952 | 7692 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">52</context></context-group> | |
6953 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 7693 | </trans-unit> |
6954 | <trans-unit id="1431617394009162547" datatype="html"> | 7694 | <trans-unit id="1431617394009162547" datatype="html"> |
6955 | <source>Playlist <x id="PH"/> updated.</source> | 7695 | <source>Playlist <x id="PH"/> updated.</source> |
6956 | <target state="new">Playlist | 7696 | <target state="new">Playlist |
6957 | <x id="PH"/> updated. | 7697 | <x id="PH"/> updated. |
6958 | </target> | 7698 | </target> |
6959 | 7699 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">97</context></context-group> | |
6960 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">97</context></context-group></trans-unit> | 7700 | </trans-unit> |
6961 | <trans-unit id="2027805873922338635" datatype="html"> | 7701 | <trans-unit id="2027805873922338635" datatype="html"> |
6962 | <source>Do you really want to delete <x id="PH"/>?</source> | 7702 | <source>Do you really want to delete <x id="PH"/>?</source> |
6963 | <target state="new">Do you really want to delete | 7703 | <target state="new">Do you really want to delete |
6964 | <x id="PH"/>? | 7704 | <x id="PH"/>? |
6965 | </target> | 7705 | </target> |
6966 | 7706 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">130</context></context-group> | |
6967 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">130</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">49</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit><trans-unit id="4844578664427956129" datatype="html"> | 7707 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">49</context></context-group> |
6968 | <source>Change ownership</source><target state="new">Change ownership</target> | 7708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">126</context></context-group> |
6969 | 7709 | </trans-unit> | |
6970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">167</context></context-group></trans-unit> | 7710 | <trans-unit id="4844578664427956129" datatype="html"> |
7711 | <source>Change ownership</source> | ||
7712 | <target state="new">Change ownership</target> | ||
7713 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">167</context></context-group> | ||
7714 | </trans-unit> | ||
6971 | <trans-unit id="3380608219513805292" datatype="html"> | 7715 | <trans-unit id="3380608219513805292" datatype="html"> |
6972 | <source>Playlist <x id="PH"/> deleted.</source> | 7716 | <source>Playlist <x id="PH"/> deleted.</source> |
6973 | <target state="new">Playlist | 7717 | <target state="new">Playlist |
6974 | <x id="PH"/> deleted. | 7718 | <x id="PH"/> deleted. |
6975 | </target> | 7719 | </target> |
6976 | 7720 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">135</context></context-group> | |
6977 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | 7721 | </trans-unit> |
6978 | <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894" datatype="html"> | 7722 | <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894" datatype="html"> |
6979 | <source>My videos</source> | 7723 | <source>My videos</source> |
6980 | <target state="new">My videos</target> | 7724 | <target state="translated">Videolarım</target> |
6981 | 7725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">4</context></context-group> | |
6982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit><trans-unit id="73022f1676784c4f9b8cdbb322e52b02ccc800b7" datatype="html"> | 7726 | </trans-unit> |
6983 | <source>Ownership changes</source><target state="new">Ownership changes</target> | 7727 | <trans-unit id="73022f1676784c4f9b8cdbb322e52b02ccc800b7" datatype="html"> |
6984 | 7728 | <source>Ownership changes</source> | |
6985 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 7729 | <target state="new">Ownership changes</target> |
7730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">16</context></context-group> | ||
7731 | </trans-unit> | ||
6986 | <trans-unit id="8197117721861453263" datatype="html"> | 7732 | <trans-unit id="8197117721861453263" datatype="html"> |
6987 | <source>Do you really want to delete <x id="PH"/> videos?</source> | 7733 | <source>Do you really want to delete <x id="PH"/> videos?</source> |
6988 | <target state="new">Do you really want to delete | 7734 | <target state="new">Do you really want to delete |
6989 | <x id="PH"/> videos? | 7735 | <x id="PH"/> videos? |
6990 | </target> | 7736 | </target> |
6991 | 7737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">103</context></context-group> | |
6992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | 7738 | </trans-unit> |
6993 | <trans-unit id="2728855911908920537" datatype="html"> | 7739 | <trans-unit id="2728855911908920537" datatype="html"> |
6994 | <source><x id="PH"/> videos deleted. </source> | 7740 | <source><x id="PH"/> videos deleted. </source> |
6995 | <target state="new"> | 7741 | <target state="translated"><x id="PH"/> video silindi. </target> |
6996 | <x id="PH"/> videos deleted. | 7742 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">120</context></context-group> |
6997 | </target> | 7743 | </trans-unit> |
6998 | |||
6999 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">120</context></context-group></trans-unit> | ||
7000 | <trans-unit id="2027805873922338635" datatype="html"> | 7744 | <trans-unit id="2027805873922338635" datatype="html"> |
7001 | <source>Do you really want to delete <x id="PH"/>? </source> | 7745 | <source>Do you really want to delete <x id="PH"/>? </source> |
7002 | <target state="new">Do you really want to delete | 7746 | <target state="new">Do you really want to delete |
@@ -7012,82 +7756,94 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7012 | <target state="new">Video | 7756 | <target state="new">Video |
7013 | <x id="PH"/> deleted. | 7757 | <x id="PH"/> deleted. |
7014 | </target> | 7758 | </target> |
7015 | 7759 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">138</context></context-group> | |
7016 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">138</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">214</context></context-group></trans-unit> | 7760 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">214</context></context-group> |
7761 | </trans-unit> | ||
7017 | <trans-unit id="6810714890760227072" datatype="html"> | 7762 | <trans-unit id="6810714890760227072" datatype="html"> |
7018 | <source>Ownership change request sent.</source> | 7763 | <source>Ownership change request sent.</source> |
7019 | <target state="new">Ownership change request sent.</target> | 7764 | <target state="new">Ownership change request sent.</target> |
7020 | 7765 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.ts</context><context context-type="linenumber">64</context></context-group> | |
7021 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit> | 7766 | </trans-unit> |
7022 | <trans-unit id="8dd18d9047c4b2dc9786550dfd8fa99f3b14e17f" datatype="html"> | 7767 | <trans-unit id="8dd18d9047c4b2dc9786550dfd8fa99f3b14e17f" datatype="html"> |
7023 | <source>My channels</source> | 7768 | <source>My channels</source> |
7024 | <target state="new">My channels</target> | 7769 | <target state="translated">Kanallarım</target> |
7025 | 7770 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">4</context></context-group> | |
7026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 7771 | </trans-unit> |
7027 | <trans-unit id="6749bdfd88a223fd464a9b09541342fbf42a0ad6" datatype="html"> | 7772 | <trans-unit id="6749bdfd88a223fd464a9b09541342fbf42a0ad6" datatype="html"> |
7028 | <source>Search your channels</source> | 7773 | <source>Search your channels</source> |
7029 | <target state="new">Search your channels</target> | 7774 | <target state="new">Search your channels</target> |
7030 | 7775 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">11</context></context-group> | |
7031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 7776 | </trans-unit> |
7032 | <trans-unit id="1d3408919f4d08414721cc22c4be39d93d6691d2" datatype="html"> | 7777 | <trans-unit id="1d3408919f4d08414721cc22c4be39d93d6691d2" datatype="html"> |
7033 | <source>My playlists</source> | 7778 | <source>My playlists</source> |
7034 | <target state="new">My playlists</target> | 7779 | <target state="translated">Oynatma listelerim</target> |
7035 | 7780 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">4</context></context-group> | |
7036 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 7781 | </trans-unit> |
7037 | <trans-unit id="29038e66547b3ba70701fb34eda68834a56f17d9" datatype="html"> | 7782 | <trans-unit id="29038e66547b3ba70701fb34eda68834a56f17d9" datatype="html"> |
7038 | <source>My subscriptions</source> | 7783 | <source>My subscriptions</source> |
7039 | <target state="new">My subscriptions</target> | 7784 | <target state="translated">Aboneliklerim</target> |
7040 | 7785 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">4</context></context-group> | |
7041 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 7786 | </trans-unit> |
7042 | <trans-unit id="31e313e20810b296cb7cc389fd7a3736cff7df44" datatype="html"> | 7787 | <trans-unit id="31e313e20810b296cb7cc389fd7a3736cff7df44" datatype="html"> |
7043 | <source>Search your subscriptions</source> | 7788 | <source>Search your subscriptions</source> |
7044 | <target state="new">Search your subscriptions</target> | 7789 | <target state="new">Search your subscriptions</target> |
7045 | 7790 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">11</context></context-group> | |
7046 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit><trans-unit id="61cb418b053c4b1099a9c7e5a34a9cf52c87f8dd" datatype="html"> | 7791 | </trans-unit> |
7047 | <source>You don't have any subscription yet.</source><target state="new">You don't have any subscription yet.</target> | 7792 | <trans-unit id="61cb418b053c4b1099a9c7e5a34a9cf52c87f8dd" datatype="html"> |
7793 | <source>You don't have any subscription yet.</source> | ||
7794 | <target state="new">You don't have any subscription yet.</target> | ||
7048 | <context-group purpose="location"> | 7795 | <context-group purpose="location"> |
7049 | <context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context> | 7796 | <context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context> |
7050 | <context context-type="linenumber">18</context> | 7797 | <context context-type="linenumber">18</context> |
7051 | </context-group> | 7798 | </context-group> |
7052 | </trans-unit> | 7799 | </trans-unit> |
7053 | |||
7054 | |||
7055 | <trans-unit id="1991904494976135035" datatype="html"> | 7800 | <trans-unit id="1991904494976135035" datatype="html"> |
7056 | <source>My abuse reports</source> | 7801 | <source>My abuse reports</source> |
7057 | <target state="new">My abuse reports</target> | 7802 | <target state="new">My abuse reports</target> |
7058 | 7803 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">118</context></context-group> | |
7059 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7804 | </trans-unit> |
7060 | <trans-unit id="5752861278140673787" datatype="html"> | 7805 | <trans-unit id="5752861278140673787" datatype="html"> |
7061 | <source>Ownership changes</source> | 7806 | <source>Ownership changes</source> |
7062 | <target state="new">Ownership changes</target> | 7807 | <target state="new">Ownership changes</target> |
7063 | 7808 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">108</context></context-group> | |
7064 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">108</context></context-group></trans-unit><trans-unit id="5983006734882925930" datatype="html"> | 7809 | </trans-unit> |
7065 | <source>My video history</source><target state="new">My video history</target> | 7810 | <trans-unit id="5983006734882925930" datatype="html"> |
7066 | 7811 | <source>My video history</source> | |
7067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">118</context></context-group></trans-unit><trans-unit id="8181077408762380407" datatype="html"> | 7812 | <target state="new">My video history</target> |
7068 | <source>Channels</source><target state="new">Channels</target> | 7813 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">118</context></context-group> |
7069 | 7814 | </trans-unit> | |
7070 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit><trans-unit id="8936704404804793618" datatype="html"> | 7815 | <trans-unit id="8181077408762380407" datatype="html"> |
7071 | <source>Videos</source><target state="new">Videos</target> | 7816 | <source>Channels</source> |
7072 | 7817 | <target state="translated">Kanallar</target> | |
7073 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">54</context></context-group></trans-unit><trans-unit id="1823843876735462104" datatype="html"> | 7818 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">47</context></context-group> |
7074 | <source>Playlists</source><target state="new">Playlists</target> | 7819 | </trans-unit> |
7075 | 7820 | <trans-unit id="8936704404804793618" datatype="html"> | |
7076 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 7821 | <source>Videos</source> |
7077 | 7822 | <target state="translated">Videolar</target> | |
7078 | 7823 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">54</context></context-group> | |
7824 | </trans-unit> | ||
7825 | <trans-unit id="1823843876735462104" datatype="html"> | ||
7826 | <source>Playlists</source> | ||
7827 | <target state="translated">Oynatma Listeleri</target> | ||
7828 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">61</context></context-group> | ||
7829 | </trans-unit> | ||
7079 | <trans-unit id="7916647920967632052" datatype="html"> | 7830 | <trans-unit id="7916647920967632052" datatype="html"> |
7080 | <source>max size</source> | 7831 | <source>max size</source> |
7081 | <target state="new">max size</target> | 7832 | <target state="new">max size</target> |
7082 | 7833 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/preview-upload.component.ts</context><context context-type="linenumber">39</context></context-group> | |
7083 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/preview-upload.component.ts</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.ts</context><context context-type="linenumber">40</context></context-group></trans-unit><trans-unit id="6489275254908395777" datatype="html"> | 7834 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/actor-avatar-info.component.ts</context><context context-type="linenumber">40</context></context-group> |
7084 | <source>Maximize editor</source><target state="new">Maximize editor</target> | 7835 | </trans-unit> |
7836 | <trans-unit id="6489275254908395777" datatype="html"> | ||
7837 | <source>Maximize editor</source> | ||
7838 | <target state="new">Maximize editor</target> | ||
7085 | <context-group purpose="location"> | 7839 | <context-group purpose="location"> |
7086 | <context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context> | 7840 | <context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context> |
7087 | <context context-type="linenumber">38</context> | 7841 | <context context-type="linenumber">38</context> |
7088 | </context-group> | 7842 | </context-group> |
7089 | </trans-unit><trans-unit id="4243591013849340688" datatype="html"> | 7843 | </trans-unit> |
7090 | <source>Exit maximized editor</source><target state="new">Exit maximized editor</target> | 7844 | <trans-unit id="4243591013849340688" datatype="html"> |
7845 | <source>Exit maximized editor</source> | ||
7846 | <target state="new">Exit maximized editor</target> | ||
7091 | <context-group purpose="location"> | 7847 | <context-group purpose="location"> |
7092 | <context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context> | 7848 | <context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context> |
7093 | <context context-type="linenumber">39</context> | 7849 | <context context-type="linenumber">39</context> |
@@ -7096,474 +7852,488 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7096 | <trans-unit id="6537885755702623401" datatype="html"> | 7852 | <trans-unit id="6537885755702623401" datatype="html"> |
7097 | <source>Now please check your emails to verify your account and complete signup.</source> | 7853 | <source>Now please check your emails to verify your account and complete signup.</source> |
7098 | <target state="new">Now please check your emails to verify your account and complete signup.</target> | 7854 | <target state="new">Now please check your emails to verify your account and complete signup.</target> |
7099 | 7855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">126</context></context-group> | |
7100 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 7856 | </trans-unit> |
7101 | <trans-unit id="2847376451647729886" datatype="html"> | 7857 | <trans-unit id="2847376451647729886" datatype="html"> |
7102 | <source>You are now logged in as <x id="PH"/>!</source> | 7858 | <source>You are now logged in as <x id="PH"/>!</source> |
7103 | <target state="new">You are now logged in as | 7859 | <target state="new">You are now logged in as |
7104 | <x id="PH"/>! | 7860 | <x id="PH"/>! |
7105 | </target> | 7861 | </target> |
7106 | 7862 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">134</context></context-group> | |
7107 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> | 7863 | </trans-unit> |
7108 | <trans-unit id="2687679787442328897" datatype="html"> | 7864 | <trans-unit id="2687679787442328897" datatype="html"> |
7109 | <source>An email with verification link will be sent to <x id="PH"/>.</source> | 7865 | <source>An email with verification link will be sent to <x id="PH"/>.</source> |
7110 | <target state="new">An email with verification link will be sent to | 7866 | <target state="new">An email with verification link will be sent to |
7111 | <x id="PH"/>. | 7867 | <x id="PH"/>. |
7112 | </target> | 7868 | </target> |
7113 | 7869 | <context-group purpose="location"><context context-type="sourcefile">src/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> | |
7114 | <context-group purpose="location"><context context-type="sourcefile">src/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> | 7870 | </trans-unit> |
7115 | |||
7116 | |||
7117 | <trans-unit id="4180693983967989981" datatype="html"> | 7871 | <trans-unit id="4180693983967989981" datatype="html"> |
7118 | <source>Unable to find user id or verification string.</source> | 7872 | <source>Unable to find user id or verification string.</source> |
7119 | <target state="new">Unable to find user id or verification string.</target> | 7873 | <target state="new">Unable to find user id or verification string.</target> |
7120 | 7874 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.ts</context><context context-type="linenumber">38</context></context-group> | |
7121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts</context><context context-type="linenumber">33</context></context-group></trans-unit> | 7875 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts</context><context context-type="linenumber">33</context></context-group> |
7876 | </trans-unit> | ||
7122 | <trans-unit id="4802465052975340965" datatype="html"> | 7877 | <trans-unit id="4802465052975340965" datatype="html"> |
7123 | <source>Published videos</source> | 7878 | <source>Published videos</source> |
7124 | <target state="new">Published videos</target> | 7879 | <target state="new">Published videos</target> |
7125 | 7880 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">42</context></context-group> | |
7126 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">42</context></context-group></trans-unit> | 7881 | </trans-unit> |
7127 | <trans-unit id="4263581847463492016" datatype="html"> | 7882 | <trans-unit id="4263581847463492016" datatype="html"> |
7128 | <source>Published 1 video</source> | 7883 | <source>Published 1 video</source> |
7129 | <target state="new">Published 1 video</target> | 7884 | <target state="new">Published 1 video</target> |
7130 | 7885 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">86</context></context-group> | |
7131 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">86</context></context-group></trans-unit> | 7886 | </trans-unit> |
7132 | <trans-unit id="1783173774503340906" datatype="html"> | 7887 | <trans-unit id="1783173774503340906" datatype="html"> |
7133 | <source>Subscribe to the account</source> | 7888 | <source>Subscribe to the account</source> |
7134 | <target state="new">Subscribe to the account</target> | 7889 | <target state="new">Subscribe to the account</target> |
7135 | 7890 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">64</context></context-group> | |
7136 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">953</context></context-group></trans-unit> | 7891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">953</context></context-group> |
7892 | </trans-unit> | ||
7137 | <trans-unit id="4014335318155107533" datatype="html"> | 7893 | <trans-unit id="4014335318155107533" datatype="html"> |
7138 | <source>VIDEO PLAYLISTS</source> | 7894 | <source>VIDEO PLAYLISTS</source> |
7139 | <target state="new">VIDEO PLAYLISTS</target> | 7895 | <target state="new">VIDEO PLAYLISTS</target> |
7140 | 7896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">70</context></context-group> | |
7141 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">70</context></context-group></trans-unit> | 7897 | </trans-unit> |
7142 | <trans-unit id="7709367721354853232"> | 7898 | <trans-unit id="7709367721354853232"> |
7143 | <source>Focus the search bar</source> | 7899 | <source>Focus the search bar</source> |
7144 | <target>Arama çubuğunu odaklayın</target> | 7900 | <target>Arama çubuğunu odaklayın</target> |
7145 | 7901 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">313</context></context-group> | |
7146 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">313</context></context-group></trans-unit> | 7902 | </trans-unit> |
7147 | <trans-unit id="4049262826107502276" datatype="html"> | 7903 | <trans-unit id="4049262826107502276" datatype="html"> |
7148 | <source>Toggle the left menu</source> | 7904 | <source>Toggle the left menu</source> |
7149 | <target state="new">Toggle the left menu</target> | 7905 | <target state="new">Toggle the left menu</target> |
7150 | 7906 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">318</context></context-group> | |
7151 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">318</context></context-group></trans-unit> | 7907 | </trans-unit> |
7152 | <trans-unit id="5409372033656550095" datatype="html"> | 7908 | <trans-unit id="5409372033656550095" datatype="html"> |
7153 | <source>Go to the discover videos page</source> | 7909 | <source>Go to the discover videos page</source> |
7154 | <target state="new">Go to the discover videos page</target> | 7910 | <target state="translated">Videoları keşfet sayfasına git</target> |
7155 | 7911 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">323</context></context-group> | |
7156 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">323</context></context-group></trans-unit> | 7912 | </trans-unit> |
7157 | <trans-unit id="4278050445961255445"> | 7913 | <trans-unit id="4278050445961255445"> |
7158 | <source>Go to the trending videos page</source> | 7914 | <source>Go to the trending videos page</source> |
7159 | <target>Öne çıkan videolar sayfasına git</target> | 7915 | <target>Öne çıkan videolar sayfasına git</target> |
7160 | 7916 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">328</context></context-group> | |
7161 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">328</context></context-group></trans-unit> | 7917 | </trans-unit> |
7162 | <trans-unit id="3242234958443825475"> | 7918 | <trans-unit id="3242234958443825475"> |
7163 | <source>Go to the recently added videos page</source> | 7919 | <source>Go to the recently added videos page</source> |
7164 | <target>Yeni eklenen videolar sayfasına git</target> | 7920 | <target>Yeni eklenen videolar sayfasına git</target> |
7165 | 7921 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">333</context></context-group> | |
7166 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">333</context></context-group></trans-unit> | 7922 | </trans-unit> |
7167 | <trans-unit id="2887122197778293919" datatype="html"> | 7923 | <trans-unit id="2887122197778293919" datatype="html"> |
7168 | <source>Go to the local videos page</source> | 7924 | <source>Go to the local videos page</source> |
7169 | <target state="new">Go to the local videos page</target> | 7925 | <target state="new">Go to the local videos page</target> |
7170 | 7926 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">338</context></context-group> | |
7171 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">338</context></context-group></trans-unit> | 7927 | </trans-unit> |
7172 | <trans-unit id="8009065619559214982" datatype="html"> | 7928 | <trans-unit id="8009065619559214982" datatype="html"> |
7173 | <source>Go to the videos upload page</source> | 7929 | <source>Go to the videos upload page</source> |
7174 | <target state="new">Go to the videos upload page</target> | 7930 | <target state="new">Go to the videos upload page</target> |
7175 | 7931 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">343</context></context-group> | |
7176 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">343</context></context-group></trans-unit> | 7932 | </trans-unit> |
7177 | <trans-unit id="3779524668013120370" datatype="html"> | 7933 | <trans-unit id="3779524668013120370" datatype="html"> |
7178 | <source>Go to my subscriptions</source> | 7934 | <source>Go to my subscriptions</source> |
7179 | <target state="new">Go to my subscriptions</target> | 7935 | <target state="translated">Aboneliklerime git</target> |
7180 | 7936 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">64</context></context-group> | |
7181 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">64</context></context-group></trans-unit> | 7937 | </trans-unit> |
7182 | <trans-unit id="1136469849928650779" datatype="html"> | 7938 | <trans-unit id="1136469849928650779" datatype="html"> |
7183 | <source>Go to my videos</source> | 7939 | <source>Go to my videos</source> |
7184 | <target state="new">Go to my videos</target> | 7940 | <target state="translated">Videolarıma git</target> |
7185 | 7941 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">68</context></context-group> | |
7186 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">68</context></context-group></trans-unit> | 7942 | </trans-unit> |
7187 | <trans-unit id="7836683738999600376" datatype="html"> | 7943 | <trans-unit id="7836683738999600376" datatype="html"> |
7188 | <source>Go to my imports</source> | 7944 | <source>Go to my imports</source> |
7189 | <target state="new">Go to my imports</target> | 7945 | <target state="new">Go to my imports</target> |
7190 | 7946 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">72</context></context-group> | |
7191 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 7947 | </trans-unit> |
7192 | <trans-unit id="7511292153332773503" datatype="html"> | 7948 | <trans-unit id="7511292153332773503" datatype="html"> |
7193 | <source>Go to my channels</source> | 7949 | <source>Go to my channels</source> |
7194 | <target state="new">Go to my channels</target> | 7950 | <target state="new">Go to my channels</target> |
7195 | 7951 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">76</context></context-group> | |
7196 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 7952 | </trans-unit> |
7197 | <trans-unit id="2013324644839511073" datatype="html"> | 7953 | <trans-unit id="2013324644839511073" datatype="html"> |
7198 | <source>Cannot retrieve OAuth Client credentials: <x id="PH"/>. | 7954 | <source>Cannot retrieve OAuth Client credentials: <x id="PH"/>. Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> |
7199 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> | ||
7200 | <target state="new">Cannot retrieve OAuth Client credentials: <x id="PH"/>. | 7955 | <target state="new">Cannot retrieve OAuth Client credentials: <x id="PH"/>. |
7201 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</target> | 7956 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</target> |
7202 | 7957 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">99</context></context-group> | |
7203 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">99</context></context-group></trans-unit> | 7958 | </trans-unit> |
7204 | <trans-unit id="375263728166936544" datatype="html"> | 7959 | <trans-unit id="375263728166936544" datatype="html"> |
7205 | <source>You need to reconnect.</source> | 7960 | <source>You need to reconnect.</source> |
7206 | <target state="new">You need to reconnect.</target> | 7961 | <target state="new">You need to reconnect.</target> |
7207 | 7962 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">220</context></context-group> | |
7208 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">220</context></context-group></trans-unit> | 7963 | </trans-unit> |
7209 | <trans-unit id="2206638022166154361"> | 7964 | <trans-unit id="2206638022166154361"> |
7210 | <source>Keyboard Shortcuts:</source> | 7965 | <source>Keyboard Shortcuts:</source> |
7211 | <target>Klavye Kısayolları:</target> | 7966 | <target>Klavye Kısayolları:</target> |
7212 | 7967 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/hotkeys/hotkeys.component.ts</context><context context-type="linenumber">11</context></context-group> | |
7213 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/hotkeys/hotkeys.component.ts</context><context context-type="linenumber">11</context></context-group></trans-unit> | 7968 | </trans-unit> |
7214 | <trans-unit id="4648900870671159218" datatype="html"> | 7969 | <trans-unit id="4648900870671159218" datatype="html"> |
7215 | <source>Success</source> | 7970 | <source>Success</source> |
7216 | <target state="new">Success</target> | 7971 | <target state="translated">Başarılı</target> |
7217 | 7972 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">25</context></context-group> | |
7218 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 7973 | </trans-unit> |
7219 | <trans-unit id="1266887509445371246" datatype="html"> | 7974 | <trans-unit id="1266887509445371246" datatype="html"> |
7220 | <source>Incorrect username or password.</source> | 7975 | <source>Incorrect username or password.</source> |
7221 | <target state="new">Incorrect username or password.</target> | 7976 | <target state="new">Incorrect username or password.</target> |
7222 | 7977 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">164</context></context-group> | |
7223 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">164</context></context-group></trans-unit> | 7978 | </trans-unit> |
7224 | <trans-unit id="6974874606619467663" datatype="html"> | 7979 | <trans-unit id="6974874606619467663" datatype="html"> |
7225 | <source>Your account is blocked.</source> | 7980 | <source>Your account is blocked.</source> |
7226 | <target state="new">Your account is blocked.</target> | 7981 | <target state="translated">Hesabınız engellenmiş.</target> |
7227 | 7982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">165</context></context-group> | |
7228 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit> | 7983 | </trans-unit> |
7229 | <trans-unit id="7939914198003891823" datatype="html"> | 7984 | <trans-unit id="7939914198003891823" datatype="html"> |
7230 | <source>any language</source> | 7985 | <source>any language</source> |
7231 | <target state="new">any language</target> | 7986 | <target state="new">any language</target> |
7232 | 7987 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">251</context></context-group> | |
7233 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">251</context></context-group></trans-unit><trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> | 7988 | </trans-unit> |
7234 | <source>ON <x id="INTERPOLATION"/></source><target state="new">ON <x id="INTERPOLATION"/></target> | 7989 | <trans-unit id="4ecb8d97ebb2f37c5b410afccbb78003f75ac35c" datatype="html"> |
7235 | 7990 | <source>ON <x id="INTERPOLATION"/></source> | |
7236 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">123</context></context-group></trans-unit> | 7991 | <target state="new">ON <x id="INTERPOLATION"/></target> |
7992 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">123</context></context-group> | ||
7993 | </trans-unit> | ||
7237 | <trans-unit id="5633144232269377096" datatype="html"> | 7994 | <trans-unit id="5633144232269377096" datatype="html"> |
7238 | <source>hide</source> | 7995 | <source>hide</source> |
7239 | <target state="new">hide</target> | 7996 | <target state="translated">gizle</target> |
7240 | 7997 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">284</context></context-group> | |
7241 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">284</context></context-group></trans-unit> | 7998 | </trans-unit> |
7242 | <trans-unit id="8603861867909474404" datatype="html"> | 7999 | <trans-unit id="8603861867909474404" datatype="html"> |
7243 | <source>blur</source> | 8000 | <source>blur</source> |
7244 | <target state="new">blur</target> | 8001 | <target state="translated">bulanıklaştır</target> |
7245 | 8002 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">288</context></context-group> | |
7246 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">288</context></context-group></trans-unit> | 8003 | </trans-unit> |
7247 | <trans-unit id="4534458451100881847" datatype="html"> | 8004 | <trans-unit id="4534458451100881847" datatype="html"> |
7248 | <source>display</source> | 8005 | <source>display</source> |
7249 | <target state="new">display</target> | 8006 | <target state="translated">göster</target> |
7250 | 8007 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">292</context></context-group> | |
7251 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">292</context></context-group></trans-unit> | 8008 | </trans-unit> |
7252 | <trans-unit id="4467323362722952678" datatype="html"> | 8009 | <trans-unit id="4467323362722952678" datatype="html"> |
7253 | <source>Unknown</source> | 8010 | <source>Unknown</source> |
7254 | <target state="new">Unknown</target> | 8011 | <target state="translated">Bilinmiyor</target> |
7255 | 8012 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">197</context></context-group> | |
7256 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">197</context></context-group></trans-unit> | 8013 | </trans-unit> |
7257 | <trans-unit id="8781423666414310853" datatype="html"> | 8014 | <trans-unit id="8781423666414310853" datatype="html"> |
7258 | <source>Your password has been successfully reset!</source> | 8015 | <source>Your password has been successfully reset!</source> |
7259 | <target state="new">Your password has been successfully reset!</target> | 8016 | <target state="translated">Şifreniz başarıyla sıfırlandı!</target> |
7260 | 8017 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.ts</context><context context-type="linenumber">47</context></context-group> | |
7261 | <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 8018 | </trans-unit> |
7262 | <trans-unit id="3184700926171002527" datatype="html"> | 8019 | <trans-unit id="3184700926171002527" datatype="html"> |
7263 | <source>Any</source> | 8020 | <source>Any</source> |
7264 | <target state="new">Any</target> | 8021 | <target state="translated">Herhangi</target> |
7265 | 8022 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">38</context></context-group> | |
7266 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 8023 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">61</context></context-group> |
8024 | </trans-unit> | ||
7267 | <trans-unit id="6048892649018070225" datatype="html"> | 8025 | <trans-unit id="6048892649018070225" datatype="html"> |
7268 | <source>Today</source> | 8026 | <source>Today</source> |
7269 | <target state="new">Today</target> | 8027 | <target state="translated">Bugün</target> |
7270 | 8028 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">42</context></context-group> | |
7271 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">116</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">70</context></context-group></trans-unit> | 8029 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">116</context></context-group> |
8030 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">70</context></context-group> | ||
8031 | </trans-unit> | ||
7272 | <trans-unit id="4498682414491138092" datatype="html"> | 8032 | <trans-unit id="4498682414491138092" datatype="html"> |
7273 | <source>Yesterday</source> | 8033 | <source>Yesterday</source> |
7274 | <target state="new">Yesterday</target> | 8034 | <target state="translated">Dün</target> |
7275 | 8035 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">117</context></context-group> | |
7276 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">117</context></context-group></trans-unit><trans-unit id="5073473933031004097" datatype="html"> | 8036 | </trans-unit> |
7277 | <source>This week</source><target state="new">This week</target> | 8037 | <trans-unit id="5073473933031004097" datatype="html"> |
7278 | 8038 | <source>This week</source> | |
7279 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">118</context></context-group></trans-unit><trans-unit id="842657237693374355" datatype="html"> | 8039 | <target state="translated">Bu hafta</target> |
7280 | <source>This month</source><target state="new">This month</target> | 8040 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">118</context></context-group> |
7281 | 8041 | </trans-unit> | |
7282 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">119</context></context-group></trans-unit> | 8042 | <trans-unit id="842657237693374355" datatype="html"> |
8043 | <source>This month</source> | ||
8044 | <target state="translated">Bu ay</target> | ||
8045 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">119</context></context-group> | ||
8046 | </trans-unit> | ||
7283 | <trans-unit id="4463380307954693363" datatype="html"> | 8047 | <trans-unit id="4463380307954693363" datatype="html"> |
7284 | <source>Last month</source> | 8048 | <source>Last month</source> |
7285 | <target state="new">Last month</target> | 8049 | <target state="translated">Geçen ay</target> |
7286 | 8050 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">120</context></context-group> | |
7287 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">120</context></context-group></trans-unit> | 8051 | </trans-unit> |
7288 | <trans-unit id="7473676707373218484" datatype="html"> | 8052 | <trans-unit id="7473676707373218484" datatype="html"> |
7289 | <source>Older</source> | 8053 | <source>Older</source> |
7290 | <target state="new">Older</target> | 8054 | <target state="translated">Daha eski</target> |
7291 | 8055 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">121</context></context-group> | |
7292 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 8056 | </trans-unit> |
7293 | <trans-unit id="5036991421517255667" datatype="html"> | 8057 | <trans-unit id="5036991421517255667" datatype="html"> |
7294 | <source>Cannot load more videos. Try again later.</source> | 8058 | <source>Cannot load more videos. Try again later.</source> |
7295 | <target state="new">Cannot load more videos. Try again later.</target> | 8059 | <target state="translated">Daha fazla video yüklenemiyor. Daha sonra tekrar deneyin.</target> |
7296 | 8060 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">198</context></context-group> | |
7297 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.ts</context><context context-type="linenumber">198</context></context-group></trans-unit> | 8061 | </trans-unit> |
7298 | <trans-unit id="4873149362496451858" datatype="html"> | 8062 | <trans-unit id="4873149362496451858" datatype="html"> |
7299 | <source>Last 7 days</source> | 8063 | <source>Last 7 days</source> |
7300 | <target state="new">Last 7 days</target> | 8064 | <target state="translated">Son 7 gün</target> |
7301 | 8065 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">46</context></context-group> | |
7302 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 8066 | </trans-unit> |
7303 | <trans-unit id="2949150997160654358" datatype="html"> | 8067 | <trans-unit id="2949150997160654358" datatype="html"> |
7304 | <source>Last 30 days</source> | 8068 | <source>Last 30 days</source> |
7305 | <target state="new">Last 30 days</target> | 8069 | <target state="translated">Son 30 gün</target> |
7306 | 8070 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">50</context></context-group> | |
7307 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 8071 | </trans-unit> |
7308 | <trans-unit id="5328600704510694984" datatype="html"> | 8072 | <trans-unit id="5328600704510694984" datatype="html"> |
7309 | <source>Last 365 days</source> | 8073 | <source>Last 365 days</source> |
7310 | <target state="new">Last 365 days</target> | 8074 | <target state="translated">Son 365 gün</target> |
7311 | 8075 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">54</context></context-group> | |
7312 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">54</context></context-group></trans-unit> | 8076 | </trans-unit> |
7313 | <trans-unit id="8487565500496466433" datatype="html"> | 8077 | <trans-unit id="8487565500496466433" datatype="html"> |
7314 | <source>Short (< 4 min)</source> | 8078 | <source>Short (< 4 min)</source> |
7315 | <target state="new">Short (< 4 min)</target> | 8079 | <target state="translated">Kısa (< 4 dk)</target> |
7316 | 8080 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">65</context></context-group> | |
7317 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">65</context></context-group></trans-unit> | 8081 | </trans-unit> |
7318 | <trans-unit id="3642535017283477339" datatype="html"> | 8082 | <trans-unit id="3642535017283477339" datatype="html"> |
7319 | <source>Medium (4-10 min)</source> | 8083 | <source>Medium (4-10 min)</source> |
7320 | <target state="new">Medium (4-10 min)</target> | 8084 | <target state="translated">Orta (4-10 dk)</target> |
7321 | 8085 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">69</context></context-group> | |
7322 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> | 8086 | </trans-unit> |
7323 | <trans-unit id="6613870447286561244" datatype="html"> | 8087 | <trans-unit id="6613870447286561244" datatype="html"> |
7324 | <source>Long (> 10 min)</source> | 8088 | <source>Long (> 10 min)</source> |
7325 | <target state="new">Long (> 10 min)</target> | 8089 | <target state="translated">Uzun (> 10 dk)</target> |
7326 | 8090 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">73</context></context-group> | |
7327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">73</context></context-group></trans-unit> | 8091 | </trans-unit> |
7328 | <trans-unit id="1787083504545967" datatype="html"> | 8092 | <trans-unit id="1787083504545967" datatype="html"> |
7329 | <source>Relevance</source> | 8093 | <source>Relevance</source> |
7330 | <target state="new">Relevance</target> | 8094 | <target state="translated">İlgi</target> |
7331 | 8095 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">80</context></context-group> | |
7332 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8096 | </trans-unit> |
7333 | <trans-unit id="7944277186358179990" datatype="html"> | 8097 | <trans-unit id="7944277186358179990" datatype="html"> |
7334 | <source>Publish date</source> | 8098 | <source>Publish date</source> |
7335 | <target state="new">Publish date</target> | 8099 | <target state="translated">Yayınlanma tarihi</target> |
7336 | 8100 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">84</context></context-group> | |
7337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> | 8101 | </trans-unit> |
7338 | <trans-unit id="2123659921722214537"> | 8102 | <trans-unit id="2123659921722214537"> |
7339 | <source>Views</source> | 8103 | <source>Views</source> |
7340 | <target>Görüntülemeler</target> | 8104 | <target>Görüntülemeler</target> |
7341 | 8105 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">88</context></context-group> | |
7342 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">88</context></context-group></trans-unit> | 8106 | </trans-unit> |
7343 | <trans-unit id="3208627574396957172" datatype="html"> | 8107 | <trans-unit id="3208627574396957172" datatype="html"> |
7344 | <source>Search index is unavailable. Retrying with instance results instead.</source> | 8108 | <source>Search index is unavailable. Retrying with instance results instead.</source> |
7345 | <target state="new">Search index is unavailable. Retrying with instance results instead.</target> | 8109 | <target state="new">Search index is unavailable. Retrying with instance results instead.</target> |
7346 | 8110 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">171</context></context-group> | |
7347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit> | 8111 | </trans-unit> |
7348 | <trans-unit id="307702206382241469" datatype="html"> | 8112 | <trans-unit id="307702206382241469" datatype="html"> |
7349 | <source>Search error</source> | 8113 | <source>Search error</source> |
7350 | <target state="new">Search error</target> | 8114 | <target state="new">Search error</target> |
7351 | 8115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">172</context></context-group> | |
7352 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">172</context></context-group></trans-unit> | 8116 | </trans-unit> |
7353 | <trans-unit id="4580988005648117665" datatype="html"> | 8117 | <trans-unit id="4580988005648117665" datatype="html"> |
7354 | <source>Search</source> | 8118 | <source>Search</source> |
7355 | <target state="new">Search</target> | 8119 | <target state="new">Search</target> |
7356 | 8120 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">15</context></context-group> | |
7357 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">230</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">15</context></context-group></trans-unit> | 8121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">230</context></context-group> |
8122 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">15</context></context-group> | ||
8123 | </trans-unit> | ||
7358 | <trans-unit id="5891040073345002614"> | 8124 | <trans-unit id="5891040073345002614"> |
7359 | <source><x id="PH"/> years ago </source> | 8125 | <source><x id="PH"/> years ago </source> |
7360 | <target> | 8126 | <target> |
7361 | <x id="PH"/> yıl önce | 8127 | <x id="PH"/> yıl önce |
7362 | </target> | 8128 | </target> |
7363 | 8129 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">12</context></context-group> | |
7364 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">12</context></context-group></trans-unit> | 8130 | </trans-unit> |
7365 | <trans-unit id="6852474139781331706" datatype="html"> | 8131 | <trans-unit id="6852474139781331706" datatype="html"> |
7366 | <source><x id="PH"/> year ago </source> | 8132 | <source><x id="PH"/> year ago </source> |
7367 | <target state="new"> | 8133 | <target state="translated"><x id="PH"/> yıl önce </target> |
7368 | <x id="PH"/> year ago | 8134 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">13</context></context-group> |
7369 | </target> | 8135 | </trans-unit> |
7370 | |||
7371 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">13</context></context-group></trans-unit> | ||
7372 | <trans-unit id="9022576335789205254"> | 8136 | <trans-unit id="9022576335789205254"> |
7373 | <source><x id="PH"/> months ago </source> | 8137 | <source><x id="PH"/> months ago </source> |
7374 | <target> | 8138 | <target> |
7375 | <x id="PH"/> ay önce | 8139 | <x id="PH"/> ay önce |
7376 | </target> | 8140 | </target> |
7377 | 8141 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">16</context></context-group> | |
7378 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">16</context></context-group></trans-unit> | 8142 | </trans-unit> |
7379 | <trans-unit id="9139359498077914820"> | 8143 | <trans-unit id="9139359498077914820"> |
7380 | <source><x id="PH"/> month ago </source> | 8144 | <source><x id="PH"/> month ago </source> |
7381 | <target> | 8145 | <target> |
7382 | <x id="PH"/> ay önce | 8146 | <x id="PH"/> ay önce |
7383 | </target> | 8147 | </target> |
7384 | 8148 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">17</context></context-group> | |
7385 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">17</context></context-group></trans-unit> | 8149 | </trans-unit> |
7386 | <trans-unit id="6473426250245763193"> | 8150 | <trans-unit id="6473426250245763193"> |
7387 | <source><x id="PH"/> weeks ago </source> | 8151 | <source><x id="PH"/> weeks ago </source> |
7388 | <target> | 8152 | <target> |
7389 | <x id="PH"/> hafta önce | 8153 | <x id="PH"/> hafta önce |
7390 | </target> | 8154 | </target> |
7391 | 8155 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">20</context></context-group> | |
7392 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">20</context></context-group></trans-unit> | 8156 | </trans-unit> |
7393 | <trans-unit id="3334373857036457679"> | 8157 | <trans-unit id="3334373857036457679"> |
7394 | <source><x id="PH"/> week ago </source> | 8158 | <source><x id="PH"/> week ago </source> |
7395 | <target> | 8159 | <target> |
7396 | <x id="PH"/> hafta önce | 8160 | <x id="PH"/> hafta önce |
7397 | </target> | 8161 | </target> |
7398 | 8162 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">21</context></context-group> | |
7399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">21</context></context-group></trans-unit> | 8163 | </trans-unit> |
7400 | <trans-unit id="5186107770140555014"> | 8164 | <trans-unit id="5186107770140555014"> |
7401 | <source><x id="PH"/> days ago </source> | 8165 | <source><x id="PH"/> days ago </source> |
7402 | <target> | 8166 | <target> |
7403 | <x id="PH"/> gün önce | 8167 | <x id="PH"/> gün önce |
7404 | </target> | 8168 | </target> |
7405 | 8169 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">24</context></context-group> | |
7406 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">24</context></context-group></trans-unit> | 8170 | </trans-unit> |
7407 | <trans-unit id="5968335347732866388"> | 8171 | <trans-unit id="5968335347732866388"> |
7408 | <source><x id="PH"/> day ago </source> | 8172 | <source><x id="PH"/> day ago </source> |
7409 | <target> | 8173 | <target> |
7410 | <x id="PH"/> gün önce | 8174 | <x id="PH"/> gün önce |
7411 | </target> | 8175 | </target> |
7412 | 8176 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">25</context></context-group> | |
7413 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 8177 | </trans-unit> |
7414 | <trans-unit id="6522428509564266583"> | 8178 | <trans-unit id="6522428509564266583"> |
7415 | <source><x id="PH"/> hours ago </source> | 8179 | <source><x id="PH"/> hours ago </source> |
7416 | <target> | 8180 | <target> |
7417 | <x id="PH"/> saat önce | 8181 | <x id="PH"/> saat önce |
7418 | </target> | 8182 | </target> |
7419 | 8183 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">28</context></context-group> | |
7420 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 8184 | </trans-unit> |
7421 | <trans-unit id="1791228261125511283"> | 8185 | <trans-unit id="1791228261125511283"> |
7422 | <source><x id="PH"/> hour ago </source> | 8186 | <source><x id="PH"/> hour ago </source> |
7423 | <target> | 8187 | <target> |
7424 | <x id="PH"/> saat önce | 8188 | <x id="PH"/> saat önce |
7425 | </target> | 8189 | </target> |
7426 | 8190 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">29</context></context-group> | |
7427 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">29</context></context-group></trans-unit> | 8191 | </trans-unit> |
7428 | <trans-unit id="8256466313580256940"> | 8192 | <trans-unit id="8256466313580256940"> |
7429 | <source><x id="PH"/> min ago </source> | 8193 | <source><x id="PH"/> min ago </source> |
7430 | <target> | 8194 | <target> |
7431 | <x id="PH"/> dakika önce | 8195 | <x id="PH"/> dakika önce |
7432 | </target> | 8196 | </target> |
7433 | 8197 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">32</context></context-group> | |
7434 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 8198 | </trans-unit> |
7435 | <trans-unit id="4733690367258997247" datatype="html"> | 8199 | <trans-unit id="4733690367258997247" datatype="html"> |
7436 | <source>just now</source> | 8200 | <source>just now</source> |
7437 | <target state="new">just now</target> | 8201 | <target state="translated">az önce</target> |
7438 | 8202 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">34</context></context-group> | |
7439 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 8203 | </trans-unit> |
7440 | |||
7441 | |||
7442 | <trans-unit id="2222108104954671970" datatype="html"> | 8204 | <trans-unit id="2222108104954671970" datatype="html"> |
7443 | <source><x id="PH"/> sec </source> | 8205 | <source><x id="PH"/> sec </source> |
7444 | <target state="new"> | 8206 | <target state="translated"><x id="PH"/> sn </target> |
7445 | <x id="PH"/> sec | 8207 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">30</context></context-group> |
7446 | </target> | 8208 | </trans-unit> |
7447 | 8209 | <trans-unit id="6499699285816188400" datatype="html"> | |
7448 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/angular/duration-formatter.pipe.ts</context><context context-type="linenumber">30</context></context-group></trans-unit><trans-unit id="6499699285816188400" datatype="html"> | 8210 | <source>Abuse reports</source> |
7449 | <source>Abuse reports</source><target state="new">Abuse reports</target> | 8211 | <target state="new">Abuse reports</target> |
7450 | 8212 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">41</context></context-group> | |
7451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit><trans-unit id="4930506384627295710" datatype="html"> | 8213 | </trans-unit> |
7452 | <source>Settings</source><target state="new">Settings</target> | 8214 | <trans-unit id="4930506384627295710" datatype="html"> |
7453 | 8215 | <source>Settings</source> | |
7454 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 8216 | <target state="new">Settings</target> |
8217 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">50</context></context-group> | ||
8218 | </trans-unit> | ||
7455 | <trans-unit id="9178182467454450952" datatype="html"> | 8219 | <trans-unit id="9178182467454450952" datatype="html"> |
7456 | <source>Confirm</source> | 8220 | <source>Confirm</source> |
7457 | <target state="new">Confirm</target> | 8221 | <target state="new">Confirm</target> |
7458 | 8222 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.ts</context><context context-type="linenumber">39</context></context-group> | |
7459 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 8223 | </trans-unit> |
7460 | <trans-unit id="7784486624424057376" datatype="html"> | 8224 | <trans-unit id="7784486624424057376" datatype="html"> |
7461 | <source>Instance name is required.</source> | 8225 | <source>Instance name is required.</source> |
7462 | <target state="new">Instance name is required.</target> | 8226 | <target state="new">Instance name is required.</target> |
7463 | 8227 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">7</context></context-group> | |
7464 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">7</context></context-group></trans-unit> | 8228 | </trans-unit> |
7465 | <trans-unit id="3281212084219111058" datatype="html"> | 8229 | <trans-unit id="3281212084219111058" datatype="html"> |
7466 | <source>Short description should not be longer than 250 characters.</source> | 8230 | <source>Short description should not be longer than 250 characters.</source> |
7467 | <target state="new">Short description should not be longer than 250 characters.</target> | 8231 | <target state="new">Short description should not be longer than 250 characters.</target> |
7468 | 8232 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">14</context></context-group> | |
7469 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 8233 | </trans-unit> |
7470 | <trans-unit id="6033463036257195528" datatype="html"> | 8234 | <trans-unit id="6033463036257195528" datatype="html"> |
7471 | <source>Twitter username is required.</source> | 8235 | <source>Twitter username is required.</source> |
7472 | <target state="new">Twitter username is required.</target> | 8236 | <target state="new">Twitter username is required.</target> |
7473 | 8237 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">21</context></context-group> | |
7474 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">21</context></context-group></trans-unit> | 8238 | </trans-unit> |
7475 | <trans-unit id="8198703669620791633" datatype="html"> | 8239 | <trans-unit id="8198703669620791633" datatype="html"> |
7476 | <source>Previews cache size is required.</source> | 8240 | <source>Previews cache size is required.</source> |
7477 | <target state="new">Previews cache size is required.</target> | 8241 | <target state="new">Previews cache size is required.</target> |
7478 | 8242 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">28</context></context-group> | |
7479 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 8243 | </trans-unit> |
7480 | <trans-unit id="3971192070835972256" datatype="html"> | 8244 | <trans-unit id="3971192070835972256" datatype="html"> |
7481 | <source>Previews cache size must be greater than 1.</source> | 8245 | <source>Previews cache size must be greater than 1.</source> |
7482 | <target state="new">Previews cache size must be greater than 1.</target> | 8246 | <target state="new">Previews cache size must be greater than 1.</target> |
7483 | 8247 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">29</context></context-group> | |
7484 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">29</context></context-group></trans-unit> | 8248 | </trans-unit> |
7485 | <trans-unit id="2903453036126968504" datatype="html"> | 8249 | <trans-unit id="2903453036126968504" datatype="html"> |
7486 | <source>Previews cache size must be a number.</source> | 8250 | <source>Previews cache size must be a number.</source> |
7487 | <target state="new">Previews cache size must be a number.</target> | 8251 | <target state="new">Previews cache size must be a number.</target> |
7488 | 8252 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">30</context></context-group> | |
7489 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">30</context></context-group></trans-unit> | 8253 | </trans-unit> |
7490 | <trans-unit id="6941976540222684735" datatype="html"> | 8254 | <trans-unit id="6941976540222684735" datatype="html"> |
7491 | <source>Captions cache size is required.</source> | 8255 | <source>Captions cache size is required.</source> |
7492 | <target state="new">Captions cache size is required.</target> | 8256 | <target state="new">Captions cache size is required.</target> |
7493 | 8257 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">37</context></context-group> | |
7494 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 8258 | </trans-unit> |
7495 | <trans-unit id="780869536819343075" datatype="html"> | 8259 | <trans-unit id="780869536819343075" datatype="html"> |
7496 | <source>Captions cache size must be greater than 1.</source> | 8260 | <source>Captions cache size must be greater than 1.</source> |
7497 | <target state="new">Captions cache size must be greater than 1.</target> | 8261 | <target state="new">Captions cache size must be greater than 1.</target> |
7498 | 8262 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">38</context></context-group> | |
7499 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 8263 | </trans-unit> |
7500 | <trans-unit id="2498218540197718478" datatype="html"> | 8264 | <trans-unit id="2498218540197718478" datatype="html"> |
7501 | <source>Captions cache size must be a number.</source> | 8265 | <source>Captions cache size must be a number.</source> |
7502 | <target state="new">Captions cache size must be a number.</target> | 8266 | <target state="new">Captions cache size must be a number.</target> |
7503 | 8267 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">39</context></context-group> | |
7504 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 8268 | </trans-unit> |
7505 | <trans-unit id="818392297325723982" datatype="html"> | 8269 | <trans-unit id="818392297325723982" datatype="html"> |
7506 | <source>Signup limit is required.</source> | 8270 | <source>Signup limit is required.</source> |
7507 | <target state="new">Signup limit is required.</target> | 8271 | <target state="new">Signup limit is required.</target> |
7508 | 8272 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">46</context></context-group> | |
7509 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 8273 | </trans-unit> |
7510 | <trans-unit id="2582606912307765585" datatype="html"> | 8274 | <trans-unit id="2582606912307765585" datatype="html"> |
7511 | <source>Signup limit must be greater than 1.</source> | 8275 | <source>Signup limit must be greater than 1.</source> |
7512 | <target state="new">Signup limit must be greater than 1.</target> | 8276 | <target state="new">Signup limit must be greater than 1.</target> |
7513 | 8277 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">47</context></context-group> | |
7514 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 8278 | </trans-unit> |
7515 | <trans-unit id="2555843408410000965" datatype="html"> | 8279 | <trans-unit id="2555843408410000965" datatype="html"> |
7516 | <source>Signup limit must be a number.</source> | 8280 | <source>Signup limit must be a number.</source> |
7517 | <target state="new">Signup limit must be a number.</target> | 8281 | <target state="new">Signup limit must be a number.</target> |
7518 | 8282 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">48</context></context-group> | |
7519 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 8283 | </trans-unit> |
7520 | <trans-unit id="240096858386658337" datatype="html"> | 8284 | <trans-unit id="240096858386658337" datatype="html"> |
7521 | <source>Admin email is required.</source> | 8285 | <source>Admin email is required.</source> |
7522 | <target state="new">Admin email is required.</target> | 8286 | <target state="new">Admin email is required.</target> |
7523 | 8287 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">55</context></context-group> | |
7524 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> | 8288 | </trans-unit> |
7525 | <trans-unit id="4392533896009432078" datatype="html"> | 8289 | <trans-unit id="4392533896009432078" datatype="html"> |
7526 | <source>Admin email must be valid.</source> | 8290 | <source>Admin email must be valid.</source> |
7527 | <target state="new">Admin email must be valid.</target> | 8291 | <target state="new">Admin email must be valid.</target> |
7528 | 8292 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">56</context></context-group> | |
7529 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">56</context></context-group></trans-unit> | 8293 | </trans-unit> |
7530 | <trans-unit id="6172217783476989430" datatype="html"> | 8294 | <trans-unit id="6172217783476989430" datatype="html"> |
7531 | <source>Transcoding threads is required.</source> | 8295 | <source>Transcoding threads is required.</source> |
7532 | <target state="new">Transcoding threads is required.</target> | 8296 | <target state="new">Transcoding threads is required.</target> |
7533 | 8297 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">63</context></context-group> | |
7534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 8298 | </trans-unit> |
7535 | <trans-unit id="5320424292625586941" datatype="html"> | 8299 | <trans-unit id="5320424292625586941" datatype="html"> |
7536 | <source>Transcoding threads must be greater or equal to 0.</source> | 8300 | <source>Transcoding threads must be greater or equal to 0.</source> |
7537 | <target state="new">Transcoding threads must be greater or equal to 0.</target> | 8301 | <target state="new">Transcoding threads must be greater or equal to 0.</target> |
7538 | 8302 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">64</context></context-group> | |
7539 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">64</context></context-group></trans-unit> | 8303 | </trans-unit> |
7540 | <trans-unit id="75589896034107743" datatype="html"> | 8304 | <trans-unit id="75589896034107743" datatype="html"> |
7541 | <source>Index URL should be a URL</source> | 8305 | <source>Index URL should be a URL</source> |
7542 | <target state="new">Index URL should be a URL</target> | 8306 | <target state="new">Index URL should be a URL</target> |
7543 | 8307 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">71</context></context-group> | |
7544 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">71</context></context-group></trans-unit> | 8308 | </trans-unit> |
7545 | <trans-unit id="3964961007325702684" datatype="html"> | 8309 | <trans-unit id="3964961007325702684" datatype="html"> |
7546 | <source>Search index URL should be a URL</source> | 8310 | <source>Search index URL should be a URL</source> |
7547 | <target state="new">Search index URL should be a URL</target> | 8311 | <target state="new">Search index URL should be a URL</target> |
7548 | 8312 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">78</context></context-group> | |
7549 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8313 | </trans-unit> |
7550 | <trans-unit id="8602814243662345124" datatype="html"> | 8314 | <trans-unit id="8602814243662345124" datatype="html"> |
7551 | <source>Email is required.</source> | 8315 | <source>Email is required.</source> |
7552 | <target state="new">Email is required.</target> | 8316 | <target state="translated">E-posta gerekli.</target> |
7553 | 8317 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">37</context></context-group> | |
7554 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">7</context></context-group></trans-unit> | 8318 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">7</context></context-group> |
8319 | </trans-unit> | ||
7555 | <trans-unit id="4591482207344282590" datatype="html"> | 8320 | <trans-unit id="4591482207344282590" datatype="html"> |
7556 | <source>Email must be valid.</source> | 8321 | <source>Email must be valid.</source> |
7557 | <target state="new">Email must be valid.</target> | 8322 | <target state="new">Email must be valid.</target> |
7558 | 8323 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">38</context></context-group> | |
7559 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">8</context></context-group></trans-unit><trans-unit id="544279804045883862" datatype="html"> | 8324 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">8</context></context-group> |
7560 | <source>Handle is required.</source><target state="new">Handle is required.</target> | 8325 | </trans-unit> |
8326 | <trans-unit id="544279804045883862" datatype="html"> | ||
8327 | <source>Handle is required.</source> | ||
8328 | <target state="new">Handle is required.</target> | ||
7561 | <context-group purpose="location"> | 8329 | <context-group purpose="location"> |
7562 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> | 8330 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> |
7563 | <context context-type="linenumber">48</context> | 8331 | <context context-type="linenumber">48</context> |
7564 | </context-group> | 8332 | </context-group> |
7565 | </trans-unit><trans-unit id="4415706443503032539" datatype="html"> | 8333 | </trans-unit> |
7566 | <source>Handle must be valid (chocobozzz@example.com).</source><target state="new">Handle must be valid (chocobozzz@example.com).</target> | 8334 | <trans-unit id="4415706443503032539" datatype="html"> |
8335 | <source>Handle must be valid (chocobozzz@example.com).</source> | ||
8336 | <target state="new">Handle must be valid (chocobozzz@example.com).</target> | ||
7567 | <context-group purpose="location"> | 8337 | <context-group purpose="location"> |
7568 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> | 8338 | <context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context> |
7569 | <context context-type="linenumber">49</context> | 8339 | <context context-type="linenumber">49</context> |
@@ -7572,291 +8342,305 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7572 | <trans-unit id="4968369344159400023" datatype="html"> | 8342 | <trans-unit id="4968369344159400023" datatype="html"> |
7573 | <source>Your name is required.</source> | 8343 | <source>Your name is required.</source> |
7574 | <target state="new">Your name is required.</target> | 8344 | <target state="new">Your name is required.</target> |
7575 | 8345 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">19</context></context-group> | |
7576 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">19</context></context-group></trans-unit> | 8346 | </trans-unit> |
7577 | <trans-unit id="5799695548385507586" datatype="html"> | 8347 | <trans-unit id="5799695548385507586" datatype="html"> |
7578 | <source>Your name must be at least 1 character long.</source> | 8348 | <source>Your name must be at least 1 character long.</source> |
7579 | <target state="new">Your name must be at least 1 character long.</target> | 8349 | <target state="new">Your name must be at least 1 character long.</target> |
7580 | 8350 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">20</context></context-group> | |
7581 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">20</context></context-group></trans-unit> | 8351 | </trans-unit> |
7582 | <trans-unit id="3600004643604731577" datatype="html"> | 8352 | <trans-unit id="3600004643604731577" datatype="html"> |
7583 | <source>Your name cannot be more than 120 characters long.</source> | 8353 | <source>Your name cannot be more than 120 characters long.</source> |
7584 | <target state="new">Your name cannot be more than 120 characters long.</target> | 8354 | <target state="new">Your name cannot be more than 120 characters long.</target> |
7585 | 8355 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">21</context></context-group> | |
7586 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">21</context></context-group></trans-unit> | 8356 | </trans-unit> |
7587 | <trans-unit id="3981804692726336204" datatype="html"> | 8357 | <trans-unit id="3981804692726336204" datatype="html"> |
7588 | <source>A subject is required.</source> | 8358 | <source>A subject is required.</source> |
7589 | <target state="new">A subject is required.</target> | 8359 | <target state="new">A subject is required.</target> |
7590 | 8360 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">32</context></context-group> | |
7591 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 8361 | </trans-unit> |
7592 | <trans-unit id="7787099349830266861" datatype="html"> | 8362 | <trans-unit id="7787099349830266861" datatype="html"> |
7593 | <source>The subject must be at least 1 character long.</source> | 8363 | <source>The subject must be at least 1 character long.</source> |
7594 | <target state="new">The subject must be at least 1 character long.</target> | 8364 | <target state="new">The subject must be at least 1 character long.</target> |
7595 | 8365 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">33</context></context-group> | |
7596 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">33</context></context-group></trans-unit> | 8366 | </trans-unit> |
7597 | <trans-unit id="5905189237950302829" datatype="html"> | 8367 | <trans-unit id="5905189237950302829" datatype="html"> |
7598 | <source>The subject cannot be more than 120 characters long.</source> | 8368 | <source>The subject cannot be more than 120 characters long.</source> |
7599 | <target state="new">The subject cannot be more than 120 characters long.</target> | 8369 | <target state="new">The subject cannot be more than 120 characters long.</target> |
7600 | 8370 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">34</context></context-group> | |
7601 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 8371 | </trans-unit> |
7602 | <trans-unit id="847704400962945123" datatype="html"> | 8372 | <trans-unit id="847704400962945123" datatype="html"> |
7603 | <source>A message is required.</source> | 8373 | <source>A message is required.</source> |
7604 | <target state="new">A message is required.</target> | 8374 | <target state="new">A message is required.</target> |
7605 | 8375 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">45</context></context-group> | |
7606 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 8376 | </trans-unit> |
7607 | <trans-unit id="3871842658394273178" datatype="html"> | 8377 | <trans-unit id="3871842658394273178" datatype="html"> |
7608 | <source>The message must be at least 3 characters long.</source> | 8378 | <source>The message must be at least 3 characters long.</source> |
7609 | <target state="new">The message must be at least 3 characters long.</target> | 8379 | <target state="new">The message must be at least 3 characters long.</target> |
7610 | 8380 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">46</context></context-group> | |
7611 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 8381 | </trans-unit> |
7612 | <trans-unit id="3731145759205895653" datatype="html"> | 8382 | <trans-unit id="3731145759205895653" datatype="html"> |
7613 | <source>The message cannot be more than 5000 characters long.</source> | 8383 | <source>The message cannot be more than 5000 characters long.</source> |
7614 | <target state="new">The message cannot be more than 5000 characters long.</target> | 8384 | <target state="new">The message cannot be more than 5000 characters long.</target> |
7615 | 8385 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">47</context></context-group> | |
7616 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/instance-validators.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 8386 | </trans-unit> |
7617 | <trans-unit id="3868123820758341861" datatype="html"> | 8387 | <trans-unit id="3868123820758341861" datatype="html"> |
7618 | <source>Username is required.</source> | 8388 | <source>Username is required.</source> |
7619 | <target state="new">Username is required.</target> | 8389 | <target state="translated">Kullanıcı adı gerekli.</target> |
7620 | 8390 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">12</context></context-group> | |
7621 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/login-validators.ts</context><context context-type="linenumber">9</context></context-group></trans-unit> | 8391 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/login-validators.ts</context><context context-type="linenumber">9</context></context-group> |
8392 | </trans-unit> | ||
7622 | <trans-unit id="3577237269587081090" datatype="html"> | 8393 | <trans-unit id="3577237269587081090" datatype="html"> |
7623 | <source>Password is required.</source> | 8394 | <source>Password is required.</source> |
7624 | <target state="new">Password is required.</target> | 8395 | <target state="translated">Şifre gerekli.</target> |
7625 | 8396 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">58</context></context-group> | |
7626 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">58</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/login-validators.ts</context><context context-type="linenumber">18</context></context-group></trans-unit> | 8397 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">69</context></context-group> |
8398 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/login-validators.ts</context><context context-type="linenumber">18</context></context-group> | ||
8399 | </trans-unit> | ||
7627 | <trans-unit id="3152303769378345477" datatype="html"> | 8400 | <trans-unit id="3152303769378345477" datatype="html"> |
7628 | <source>Confirmation of the password is required.</source> | 8401 | <source>Confirmation of the password is required.</source> |
7629 | <target state="new">Confirmation of the password is required.</target> | 8402 | <target state="new">Confirmation of the password is required.</target> |
7630 | 8403 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/reset-password-validators.ts</context><context context-type="linenumber">9</context></context-group> | |
7631 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/reset-password-validators.ts</context><context context-type="linenumber">9</context></context-group></trans-unit> | 8404 | </trans-unit> |
7632 | <trans-unit id="4786141633412279939" datatype="html"> | 8405 | <trans-unit id="4786141633412279939" datatype="html"> |
7633 | <source>Username must be at least 1 character long.</source> | 8406 | <source>Username must be at least 1 character long.</source> |
7634 | <target state="new">Username must be at least 1 character long.</target> | 8407 | <target state="new">Username must be at least 1 character long.</target> |
7635 | 8408 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">13</context></context-group> | |
7636 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">13</context></context-group></trans-unit> | 8409 | </trans-unit> |
7637 | <trans-unit id="1019755749203839300" datatype="html"> | 8410 | <trans-unit id="1019755749203839300" datatype="html"> |
7638 | <source>Username cannot be more than 50 characters long.</source> | 8411 | <source>Username cannot be more than 50 characters long.</source> |
7639 | <target state="new">Username cannot be more than 50 characters long.</target> | 8412 | <target state="new">Username cannot be more than 50 characters long.</target> |
7640 | 8413 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">14</context></context-group> | |
7641 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 8414 | </trans-unit> |
7642 | <trans-unit id="5621067256208426608" datatype="html"> | 8415 | <trans-unit id="5621067256208426608" datatype="html"> |
7643 | <source>Username should be lowercase alphanumeric; dots and underscores are allowed.</source> | 8416 | <source>Username should be lowercase alphanumeric; dots and underscores are allowed.</source> |
7644 | <target state="new">Username should be lowercase alphanumeric; dots and underscores are allowed.</target> | 8417 | <target state="new">Username should be lowercase alphanumeric; dots and underscores are allowed.</target> |
7645 | 8418 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">15</context></context-group> | |
7646 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">15</context></context-group></trans-unit> | 8419 | </trans-unit> |
7647 | <trans-unit id="6288154707582132676" datatype="html"> | 8420 | <trans-unit id="6288154707582132676" datatype="html"> |
7648 | <source>Channel name is required.</source> | 8421 | <source>Channel name is required.</source> |
7649 | <target state="new">Channel name is required.</target> | 8422 | <target state="new">Channel name is required.</target> |
7650 | 8423 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">27</context></context-group> | |
7651 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">27</context></context-group></trans-unit> | 8424 | </trans-unit> |
7652 | <trans-unit id="8178814467139959283" datatype="html"> | 8425 | <trans-unit id="8178814467139959283" datatype="html"> |
7653 | <source>Channel name must be at least 1 character long.</source> | 8426 | <source>Channel name must be at least 1 character long.</source> |
7654 | <target state="new">Channel name must be at least 1 character long.</target> | 8427 | <target state="new">Channel name must be at least 1 character long.</target> |
7655 | 8428 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">28</context></context-group> | |
7656 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 8429 | </trans-unit> |
7657 | <trans-unit id="8602785819772117007" datatype="html"> | 8430 | <trans-unit id="8602785819772117007" datatype="html"> |
7658 | <source>Channel name cannot be more than 50 characters long.</source> | 8431 | <source>Channel name cannot be more than 50 characters long.</source> |
7659 | <target state="new">Channel name cannot be more than 50 characters long.</target> | 8432 | <target state="new">Channel name cannot be more than 50 characters long.</target> |
7660 | 8433 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">29</context></context-group> | |
7661 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="3419415520566928243" datatype="html"> | 8434 | </trans-unit> |
7662 | <source>Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.</source><target state="new">Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.</target> | 8435 | <trans-unit id="3419415520566928243" datatype="html"> |
7663 | 8436 | <source>Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.</source> | |
7664 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">30</context></context-group></trans-unit> | 8437 | <target state="new">Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.</target> |
7665 | 8438 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">30</context></context-group> | |
8439 | </trans-unit> | ||
7666 | <trans-unit id="525871656034789056" datatype="html"> | 8440 | <trans-unit id="525871656034789056" datatype="html"> |
7667 | <source>Password must be at least 6 characters long.</source> | 8441 | <source>Password must be at least 6 characters long.</source> |
7668 | <target state="new">Password must be at least 6 characters long.</target> | 8442 | <target state="new">Password must be at least 6 characters long.</target> |
7669 | 8443 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">70</context></context-group> | |
7670 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8444 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">81</context></context-group> |
8445 | </trans-unit> | ||
7671 | <trans-unit id="1099684476181448167" datatype="html"> | 8446 | <trans-unit id="1099684476181448167" datatype="html"> |
7672 | <source>Password cannot be more than 255 characters long.</source> | 8447 | <source>Password cannot be more than 255 characters long.</source> |
7673 | <target state="new">Password cannot be more than 255 characters long.</target> | 8448 | <target state="new">Password cannot be more than 255 characters long.</target> |
7674 | 8449 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">71</context></context-group> | |
7675 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">71</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 8450 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">82</context></context-group> |
8451 | </trans-unit> | ||
7676 | <trans-unit id="3392630942539073768" datatype="html"> | 8452 | <trans-unit id="3392630942539073768" datatype="html"> |
7677 | <source>The new password and the confirmed password do not correspond.</source> | 8453 | <source>The new password and the confirmed password do not correspond.</source> |
7678 | <target state="new">The new password and the confirmed password do not correspond.</target> | 8454 | <target state="new">The new password and the confirmed password do not correspond.</target> |
7679 | 8455 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">89</context></context-group> | |
7680 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">89</context></context-group></trans-unit> | 8456 | </trans-unit> |
7681 | <trans-unit id="2027337371129904473"> | 8457 | <trans-unit id="2027337371129904473"> |
7682 | <source>Video quota is required.</source> | 8458 | <source>Video quota is required.</source> |
7683 | <target>Video kotası gereklidir.</target> | 8459 | <target>Video kotası gereklidir.</target> |
7684 | 8460 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">96</context></context-group> | |
7685 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">96</context></context-group></trans-unit> | 8461 | </trans-unit> |
7686 | <trans-unit id="267386529333143660" datatype="html"> | 8462 | <trans-unit id="267386529333143660" datatype="html"> |
7687 | <source>Quota must be greater than -1.</source> | 8463 | <source>Quota must be greater than -1.</source> |
7688 | <target state="new">Quota must be greater than -1.</target> | 8464 | <target state="new">Quota must be greater than -1.</target> |
7689 | 8465 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">97</context></context-group> | |
7690 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">97</context></context-group></trans-unit> | 8466 | </trans-unit> |
7691 | <trans-unit id="1220179061234048936" datatype="html"> | 8467 | <trans-unit id="1220179061234048936" datatype="html"> |
7692 | <source>Daily upload limit is required.</source> | 8468 | <source>Daily upload limit is required.</source> |
7693 | <target state="new">Daily upload limit is required.</target> | 8469 | <target state="new">Daily upload limit is required.</target> |
7694 | 8470 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">103</context></context-group> | |
7695 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | 8471 | </trans-unit> |
7696 | <trans-unit id="8959404382357999234" datatype="html"> | 8472 | <trans-unit id="8959404382357999234" datatype="html"> |
7697 | <source>Daily upload limit must be greater than -1.</source> | 8473 | <source>Daily upload limit must be greater than -1.</source> |
7698 | <target state="new">Daily upload limit must be greater than -1.</target> | 8474 | <target state="new">Daily upload limit must be greater than -1.</target> |
7699 | 8475 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">104</context></context-group> | |
7700 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">104</context></context-group></trans-unit> | 8476 | </trans-unit> |
7701 | <trans-unit id="4796798537475457493" datatype="html"> | 8477 | <trans-unit id="4796798537475457493" datatype="html"> |
7702 | <source>User role is required.</source> | 8478 | <source>User role is required.</source> |
7703 | <target state="new">User role is required.</target> | 8479 | <target state="new">User role is required.</target> |
7704 | 8480 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">111</context></context-group> | |
7705 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">111</context></context-group></trans-unit> | 8481 | </trans-unit> |
7706 | <trans-unit id="2761226139624435788" datatype="html"> | 8482 | <trans-unit id="2761226139624435788" datatype="html"> |
7707 | <source>Description must be at least 3 characters long.</source> | 8483 | <source>Description must be at least 3 characters long.</source> |
7708 | <target state="new">Description must be at least 3 characters long.</target> | 8484 | <target state="new">Description must be at least 3 characters long.</target> |
7709 | 8485 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">123</context></context-group> | |
7710 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">123</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">33</context></context-group></trans-unit> | 8486 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">38</context></context-group> |
8487 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">33</context></context-group> | ||
8488 | </trans-unit> | ||
7711 | <trans-unit id="4717982586356605243" datatype="html"> | 8489 | <trans-unit id="4717982586356605243" datatype="html"> |
7712 | <source>Description cannot be more than 1000 characters long.</source> | 8490 | <source>Description cannot be more than 1000 characters long.</source> |
7713 | <target state="new">Description cannot be more than 1000 characters long.</target> | 8491 | <target state="new">Description cannot be more than 1000 characters long.</target> |
7714 | 8492 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">124</context></context-group> | |
7715 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">124</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 8493 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">39</context></context-group> |
8494 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">34</context></context-group> | ||
8495 | </trans-unit> | ||
7716 | <trans-unit id="1814372869868173571" datatype="html"> | 8496 | <trans-unit id="1814372869868173571" datatype="html"> |
7717 | <source>You must agree with the instance terms in order to register on it.</source> | 8497 | <source>You must agree with the instance terms in order to register on it.</source> |
7718 | <target state="new">You must agree with the instance terms in order to register on it.</target> | 8498 | <target state="new">You must agree with the instance terms in order to register on it.</target> |
7719 | 8499 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">131</context></context-group> | |
7720 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">131</context></context-group></trans-unit> | 8500 | </trans-unit> |
7721 | <trans-unit id="7803960725351649605" datatype="html"> | 8501 | <trans-unit id="7803960725351649605" datatype="html"> |
7722 | <source>Ban reason must be at least 3 characters long.</source> | 8502 | <source>Ban reason must be at least 3 characters long.</source> |
7723 | <target state="new">Ban reason must be at least 3 characters long.</target> | 8503 | <target state="new">Ban reason must be at least 3 characters long.</target> |
7724 | 8504 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">141</context></context-group> | |
7725 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">141</context></context-group></trans-unit> | 8505 | </trans-unit> |
7726 | <trans-unit id="3851609012243698179" datatype="html"> | 8506 | <trans-unit id="3851609012243698179" datatype="html"> |
7727 | <source>Ban reason cannot be more than 250 characters long.</source> | 8507 | <source>Ban reason cannot be more than 250 characters long.</source> |
7728 | <target state="new">Ban reason cannot be more than 250 characters long.</target> | 8508 | <target state="new">Ban reason cannot be more than 250 characters long.</target> |
7729 | 8509 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">142</context></context-group> | |
7730 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">142</context></context-group></trans-unit> | 8510 | </trans-unit> |
7731 | <trans-unit id="6632896893630378443" datatype="html"> | 8511 | <trans-unit id="6632896893630378443" datatype="html"> |
7732 | <source>Display name is required.</source> | 8512 | <source>Display name is required.</source> |
7733 | <target state="new">Display name is required.</target> | 8513 | <target state="new">Display name is required.</target> |
7734 | 8514 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">153</context></context-group> | |
7735 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">153</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">12</context></context-group></trans-unit> | 8515 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">26</context></context-group> |
8516 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">12</context></context-group> | ||
8517 | </trans-unit> | ||
7736 | <trans-unit id="1303578752658966736" datatype="html"> | 8518 | <trans-unit id="1303578752658966736" datatype="html"> |
7737 | <source>Display name must be at least 1 character long.</source> | 8519 | <source>Display name must be at least 1 character long.</source> |
7738 | <target state="new">Display name must be at least 1 character long.</target> | 8520 | <target state="new">Display name must be at least 1 character long.</target> |
7739 | 8521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">154</context></context-group> | |
7740 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">154</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">13</context></context-group></trans-unit> | 8522 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">27</context></context-group> |
8523 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">13</context></context-group> | ||
8524 | </trans-unit> | ||
7741 | <trans-unit id="4613240543124934954" datatype="html"> | 8525 | <trans-unit id="4613240543124934954" datatype="html"> |
7742 | <source>Display name cannot be more than 50 characters long.</source> | 8526 | <source>Display name cannot be more than 50 characters long.</source> |
7743 | <target state="new">Display name cannot be more than 50 characters long.</target> | 8527 | <target state="new">Display name cannot be more than 50 characters long.</target> |
7744 | 8528 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">155</context></context-group> | |
7745 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/user-validators.ts</context><context context-type="linenumber">155</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 8529 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">28</context></context-group> |
8530 | </trans-unit> | ||
7746 | <trans-unit id="1000468652492651683" datatype="html"> | 8531 | <trans-unit id="1000468652492651683" datatype="html"> |
7747 | <source>Report reason is required.</source> | 8532 | <source>Report reason is required.</source> |
7748 | <target state="new">Report reason is required.</target> | 8533 | <target state="new">Report reason is required.</target> |
7749 | 8534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">7</context></context-group> | |
7750 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">7</context></context-group></trans-unit> | 8535 | </trans-unit> |
7751 | <trans-unit id="1109780973109145433" datatype="html"> | 8536 | <trans-unit id="1109780973109145433" datatype="html"> |
7752 | <source>Report reason must be at least 2 characters long.</source> | 8537 | <source>Report reason must be at least 2 characters long.</source> |
7753 | <target state="new">Report reason must be at least 2 characters long.</target> | 8538 | <target state="new">Report reason must be at least 2 characters long.</target> |
7754 | 8539 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">8</context></context-group> | |
7755 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">8</context></context-group></trans-unit> | 8540 | </trans-unit> |
7756 | <trans-unit id="5414573937278525654" datatype="html"> | 8541 | <trans-unit id="5414573937278525654" datatype="html"> |
7757 | <source>Report reason cannot be more than 3000 characters long.</source> | 8542 | <source>Report reason cannot be more than 3000 characters long.</source> |
7758 | <target state="new">Report reason cannot be more than 3000 characters long.</target> | 8543 | <target state="new">Report reason cannot be more than 3000 characters long.</target> |
7759 | 8544 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">9</context></context-group> | |
7760 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">9</context></context-group></trans-unit> | 8545 | </trans-unit> |
7761 | <trans-unit id="8779567454442277762" datatype="html"> | 8546 | <trans-unit id="8779567454442277762" datatype="html"> |
7762 | <source>Moderation comment is required.</source> | 8547 | <source>Moderation comment is required.</source> |
7763 | <target state="new">Moderation comment is required.</target> | 8548 | <target state="new">Moderation comment is required.</target> |
7764 | 8549 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">16</context></context-group> | |
7765 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">16</context></context-group></trans-unit> | 8550 | </trans-unit> |
7766 | <trans-unit id="8954765410376245909" datatype="html"> | 8551 | <trans-unit id="8954765410376245909" datatype="html"> |
7767 | <source>Moderation comment must be at least 2 characters long.</source> | 8552 | <source>Moderation comment must be at least 2 characters long.</source> |
7768 | <target state="new">Moderation comment must be at least 2 characters long.</target> | 8553 | <target state="new">Moderation comment must be at least 2 characters long.</target> |
7769 | 8554 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">17</context></context-group> | |
7770 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">17</context></context-group></trans-unit> | 8555 | </trans-unit> |
7771 | <trans-unit id="6316804467108244906" datatype="html"> | 8556 | <trans-unit id="6316804467108244906" datatype="html"> |
7772 | <source>Moderation comment cannot be more than 3000 characters long.</source> | 8557 | <source>Moderation comment cannot be more than 3000 characters long.</source> |
7773 | <target state="new">Moderation comment cannot be more than 3000 characters long.</target> | 8558 | <target state="new">Moderation comment cannot be more than 3000 characters long.</target> |
7774 | 8559 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">18</context></context-group> | |
7775 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">18</context></context-group></trans-unit> | 8560 | </trans-unit> |
7776 | <trans-unit id="8835075531528610034" datatype="html"> | 8561 | <trans-unit id="8835075531528610034" datatype="html"> |
7777 | <source>Abuse message is required.</source> | 8562 | <source>Abuse message is required.</source> |
7778 | <target state="new">Abuse message is required.</target> | 8563 | <target state="new">Abuse message is required.</target> |
7779 | 8564 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">25</context></context-group> | |
7780 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 8565 | </trans-unit> |
7781 | <trans-unit id="9034042966936514516" datatype="html"> | 8566 | <trans-unit id="9034042966936514516" datatype="html"> |
7782 | <source>Abuse message must be at least 2 characters long.</source> | 8567 | <source>Abuse message must be at least 2 characters long.</source> |
7783 | <target state="new">Abuse message must be at least 2 characters long.</target> | 8568 | <target state="new">Abuse message must be at least 2 characters long.</target> |
7784 | 8569 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">26</context></context-group> | |
7785 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 8570 | </trans-unit> |
7786 | <trans-unit id="7989186574443390119" datatype="html"> | 8571 | <trans-unit id="7989186574443390119" datatype="html"> |
7787 | <source>Abuse message cannot be more than 3000 characters long.</source> | 8572 | <source>Abuse message cannot be more than 3000 characters long.</source> |
7788 | <target state="new">Abuse message cannot be more than 3000 characters long.</target> | 8573 | <target state="new">Abuse message cannot be more than 3000 characters long.</target> |
7789 | 8574 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">27</context></context-group> | |
7790 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/abuse-validators.ts</context><context context-type="linenumber">27</context></context-group></trans-unit> | 8575 | </trans-unit> |
7791 | <trans-unit id="6700357678556223012" datatype="html"> | 8576 | <trans-unit id="6700357678556223012" datatype="html"> |
7792 | <source>The channel is required.</source> | 8577 | <source>The channel is required.</source> |
7793 | <target state="new">The channel is required.</target> | 8578 | <target state="new">The channel is required.</target> |
7794 | 8579 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-ownership-change-validators.ts</context><context context-type="linenumber">7</context></context-group> | |
7795 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-ownership-change-validators.ts</context><context context-type="linenumber">7</context></context-group></trans-unit> | 8580 | </trans-unit> |
7796 | <trans-unit id="9191505323045740697" datatype="html"> | 8581 | <trans-unit id="9191505323045740697" datatype="html"> |
7797 | <source>Block reason must be at least 2 characters long.</source> | 8582 | <source>Block reason must be at least 2 characters long.</source> |
7798 | <target state="new">Block reason must be at least 2 characters long.</target> | 8583 | <target state="new">Block reason must be at least 2 characters long.</target> |
7799 | 8584 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-block-validators.ts</context><context context-type="linenumber">7</context></context-group> | |
7800 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-block-validators.ts</context><context context-type="linenumber">7</context></context-group></trans-unit> | 8585 | </trans-unit> |
7801 | <trans-unit id="8581623418602419755" datatype="html"> | 8586 | <trans-unit id="8581623418602419755" datatype="html"> |
7802 | <source>Block reason cannot be more than 300 characters long.</source> | 8587 | <source>Block reason cannot be more than 300 characters long.</source> |
7803 | <target state="new">Block reason cannot be more than 300 characters long.</target> | 8588 | <target state="new">Block reason cannot be more than 300 characters long.</target> |
7804 | 8589 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-block-validators.ts</context><context context-type="linenumber">8</context></context-group> | |
7805 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-block-validators.ts</context><context context-type="linenumber">8</context></context-group></trans-unit> | 8590 | </trans-unit> |
7806 | <trans-unit id="1099619384694370156" datatype="html"> | 8591 | <trans-unit id="1099619384694370156" datatype="html"> |
7807 | <source>Video caption language is required.</source> | 8592 | <source>Video caption language is required.</source> |
7808 | <target state="new">Video caption language is required.</target> | 8593 | <target state="new">Video caption language is required.</target> |
7809 | 8594 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context><context context-type="linenumber">7</context></context-group> | |
7810 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context><context context-type="linenumber">7</context></context-group></trans-unit> | 8595 | </trans-unit> |
7811 | <trans-unit id="3438639650276868976" datatype="html"> | 8596 | <trans-unit id="3438639650276868976" datatype="html"> |
7812 | <source>Video caption file is required.</source> | 8597 | <source>Video caption file is required.</source> |
7813 | <target state="new">Video caption file is required.</target> | 8598 | <target state="new">Video caption file is required.</target> |
7814 | 8599 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context><context context-type="linenumber">14</context></context-group> | |
7815 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-captions-validators.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 8600 | </trans-unit> |
7816 | <trans-unit id="7365924714339585574" datatype="html"> | 8601 | <trans-unit id="7365924714339585574" datatype="html"> |
7817 | <source>The username is required.</source> | 8602 | <source>The username is required.</source> |
7818 | <target state="new">The username is required.</target> | 8603 | <target state="translated">Kullanıcı adı gerekli.</target> |
7819 | 8604 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-ownership-change-validators.ts</context><context context-type="linenumber">14</context></context-group> | |
7820 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-ownership-change-validators.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 8605 | </trans-unit> |
7821 | <trans-unit id="3954099618513992825" datatype="html"> | 8606 | <trans-unit id="3954099618513992825" datatype="html"> |
7822 | <source>You can only transfer ownership to a local account</source> | 8607 | <source>You can only transfer ownership to a local account</source> |
7823 | <target state="new">You can only transfer ownership to a local account</target> | 8608 | <target state="new">You can only transfer ownership to a local account</target> |
7824 | 8609 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-ownership-change-validators.ts</context><context context-type="linenumber">15</context></context-group> | |
7825 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-ownership-change-validators.ts</context><context context-type="linenumber">15</context></context-group></trans-unit> | 8610 | </trans-unit> |
7826 | <trans-unit id="4444753420973870540" datatype="html"> | 8611 | <trans-unit id="4444753420973870540" datatype="html"> |
7827 | <source>Name is required.</source> | 8612 | <source>Name is required.</source> |
7828 | <target state="new">Name is required.</target> | 8613 | <target state="translated">Ad gerekli.</target> |
7829 | 8614 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">12</context></context-group> | |
7830 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">12</context></context-group></trans-unit> | 8615 | </trans-unit> |
7831 | <trans-unit id="4006797705713167676" datatype="html"> | 8616 | <trans-unit id="4006797705713167676" datatype="html"> |
7832 | <source>Name must be at least 1 character long.</source> | 8617 | <source>Name must be at least 1 character long.</source> |
7833 | <target state="new">Name must be at least 1 character long.</target> | 8618 | <target state="new">Name must be at least 1 character long.</target> |
7834 | 8619 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">13</context></context-group> | |
7835 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">13</context></context-group></trans-unit> | 8620 | </trans-unit> |
7836 | <trans-unit id="2233809696503670883" datatype="html"> | 8621 | <trans-unit id="2233809696503670883" datatype="html"> |
7837 | <source>Name cannot be more than 50 characters long.</source> | 8622 | <source>Name cannot be more than 50 characters long.</source> |
7838 | <target state="new">Name cannot be more than 50 characters long.</target> | 8623 | <target state="new">Name cannot be more than 50 characters long.</target> |
7839 | 8624 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">14</context></context-group> | |
7840 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 8625 | </trans-unit> |
7841 | <trans-unit id="7915656854942800659" datatype="html"> | 8626 | <trans-unit id="7915656854942800659" datatype="html"> |
7842 | <source>Name should be lowercase alphanumeric; dots and underscores are allowed.</source> | 8627 | <source>Name should be lowercase alphanumeric; dots and underscores are allowed.</source> |
7843 | <target state="new">Name should be lowercase alphanumeric; dots and underscores are allowed.</target> | 8628 | <target state="new">Name should be lowercase alphanumeric; dots and underscores are allowed.</target> |
7844 | 8629 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">15</context></context-group> | |
7845 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">15</context></context-group></trans-unit> | 8630 | </trans-unit> |
7846 | <trans-unit id="6880459830525364741" datatype="html"> | 8631 | <trans-unit id="6880459830525364741" datatype="html"> |
7847 | <source>Support text must be at least 3 characters long.</source> | 8632 | <source>Support text must be at least 3 characters long.</source> |
7848 | <target state="new">Support text must be at least 3 characters long.</target> | 8633 | <target state="new">Support text must be at least 3 characters long.</target> |
7849 | 8634 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">49</context></context-group> | |
7850 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 8635 | </trans-unit> |
7851 | <trans-unit id="6461548560008228165" datatype="html"> | 8636 | <trans-unit id="6461548560008228165" datatype="html"> |
7852 | <source>Support text cannot be more than 1000 characters long</source> | 8637 | <source>Support text cannot be more than 1000 characters long</source> |
7853 | <target state="new">Support text cannot be more than 1000 characters long</target> | 8638 | <target state="new">Support text cannot be more than 1000 characters long</target> |
7854 | 8639 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">50</context></context-group> | |
7855 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-channel-validators.ts</context><context context-type="linenumber">50</context></context-group></trans-unit><trans-unit id="8c9434491bf113074890c9c975d89d5f7727d2d9" datatype="html"> | 8640 | </trans-unit> |
7856 | <source> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> | 8641 | <trans-unit id="8c9434491bf113074890c9c975d89d5f7727d2d9" datatype="html"> |
7857 | "/> to learn how to use the PeerTube live streaming feature. | 8642 | <source>See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. </source> |
7858 | </source><target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> | 8643 | <target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://docs.joinpeertube.org/#/use-create-upload-video?id=publish-a-live-in-peertube-gt-v3" target="_blank" rel="noopener noreferrer">"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> to learn how to use the PeerTube live streaming feature. |
7859 | "/> to learn how to use the PeerTube live streaming feature. | ||
7860 | </target> | 8644 | </target> |
7861 | <context-group purpose="location"> | 8645 | <context-group purpose="location"> |
7862 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-documentation-link.component.html</context> | 8646 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-documentation-link.component.html</context> |
@@ -7866,53 +8650,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7866 | <trans-unit id="4267638333776227701" datatype="html"> | 8650 | <trans-unit id="4267638333776227701" datatype="html"> |
7867 | <source>Comment is required.</source> | 8651 | <source>Comment is required.</source> |
7868 | <target state="new">Comment is required.</target> | 8652 | <target state="new">Comment is required.</target> |
7869 | 8653 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-comment-validators.ts</context><context context-type="linenumber">7</context></context-group> | |
7870 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-comment-validators.ts</context><context context-type="linenumber">7</context></context-group></trans-unit> | 8654 | </trans-unit> |
7871 | <trans-unit id="71132671234491945" datatype="html"> | 8655 | <trans-unit id="71132671234491945" datatype="html"> |
7872 | <source>Comment must be at least 2 characters long.</source> | 8656 | <source>Comment must be at least 2 characters long.</source> |
7873 | <target state="new">Comment must be at least 2 characters long.</target> | 8657 | <target state="new">Comment must be at least 2 characters long.</target> |
7874 | 8658 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-comment-validators.ts</context><context context-type="linenumber">8</context></context-group> | |
7875 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-comment-validators.ts</context><context context-type="linenumber">8</context></context-group></trans-unit> | 8659 | </trans-unit> |
7876 | <trans-unit id="4148250392704331190" datatype="html"> | 8660 | <trans-unit id="4148250392704331190" datatype="html"> |
7877 | <source>Comment cannot be more than 3000 characters long.</source> | 8661 | <source>Comment cannot be more than 3000 characters long.</source> |
7878 | <target state="new">Comment cannot be more than 3000 characters long.</target> | 8662 | <target state="new">Comment cannot be more than 3000 characters long.</target> |
7879 | 8663 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-comment-validators.ts</context><context context-type="linenumber">9</context></context-group> | |
7880 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-comment-validators.ts</context><context context-type="linenumber">9</context></context-group></trans-unit> | 8664 | </trans-unit> |
7881 | |||
7882 | <trans-unit id="6854100952145697527" datatype="html"> | 8665 | <trans-unit id="6854100952145697527" datatype="html"> |
7883 | <source>Display name cannot be more than 120 characters long.</source> | 8666 | <source>Display name cannot be more than 120 characters long.</source> |
7884 | <target state="new">Display name cannot be more than 120 characters long.</target> | 8667 | <target state="new">Display name cannot be more than 120 characters long.</target> |
7885 | 8668 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">14</context></context-group> | |
7886 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 8669 | </trans-unit> |
7887 | <trans-unit id="6198895122092095739" datatype="html"> | 8670 | <trans-unit id="6198895122092095739" datatype="html"> |
7888 | <source>Privacy is required.</source> | 8671 | <source>Privacy is required.</source> |
7889 | <target state="new">Privacy is required.</target> | 8672 | <target state="new">Privacy is required.</target> |
7890 | 8673 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">23</context></context-group> | |
7891 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">23</context></context-group></trans-unit> | 8674 | </trans-unit> |
7892 | <trans-unit id="1276238402004616037" datatype="html"> | 8675 | <trans-unit id="1276238402004616037" datatype="html"> |
7893 | <source>The channel is required when the playlist is public.</source> | 8676 | <source>The channel is required when the playlist is public.</source> |
7894 | <target state="new">The channel is required when the playlist is public.</target> | 8677 | <target state="new">The channel is required when the playlist is public.</target> |
7895 | 8678 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">41</context></context-group> | |
7896 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-playlist-validators.ts</context><context context-type="linenumber">41</context></context-group></trans-unit><trans-unit id="d8ae45f6eb0e2d78efd70b4e80e132784aa65cf1" datatype="html"> | 8679 | </trans-unit> |
7897 | <source>Live information</source><target state="new">Live information</target> | 8680 | <trans-unit id="d8ae45f6eb0e2d78efd70b4e80e132784aa65cf1" datatype="html"> |
7898 | 8681 | <source>Live information</source> | |
7899 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit><trans-unit id="fc840cbc744829dee0c0d50e8d32e45beb731c36" datatype="html"> | 8682 | <target state="new">Live information</target> |
7900 | <source>Live RTMP Url</source><target state="new">Live RTMP Url</target> | 8683 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">3</context></context-group> |
7901 | 8684 | </trans-unit> | |
7902 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">19</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">218</context></context-group></trans-unit><trans-unit id="39d142e6915c4f2d0f9b45e76c176eec6a48c1c1" datatype="html"> | 8685 | <trans-unit id="fc840cbc744829dee0c0d50e8d32e45beb731c36" datatype="html"> |
7903 | <source>Live stream key</source><target state="new">Live stream key</target> | 8686 | <source>Live RTMP Url</source> |
7904 | 8687 | <target state="new">Live RTMP Url</target> | |
7905 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">223</context></context-group></trans-unit><trans-unit id="930826dd8818902aaf1300253dbee4717ceb35ee" datatype="html"> | 8688 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">19</context></context-group> |
7906 | <source>⚠️ Never share your stream key with anyone.</source><target state="new">⚠️ Never share your stream key with anyone.</target> | 8689 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">218</context></context-group> |
7907 | 8690 | </trans-unit> | |
7908 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">226</context></context-group></trans-unit><trans-unit id="5b5759ae8d3274fdc904e1ef5bb4a52c2251de66" datatype="html"> | 8691 | <trans-unit id="39d142e6915c4f2d0f9b45e76c176eec6a48c1c1" datatype="html"> |
7909 | <source>Permanent live</source><target state="new">Permanent live</target> | 8692 | <source>Live stream key</source> |
8693 | <target state="new">Live stream key</target> | ||
8694 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">24</context></context-group> | ||
8695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">223</context></context-group> | ||
8696 | </trans-unit> | ||
8697 | <trans-unit id="930826dd8818902aaf1300253dbee4717ceb35ee" datatype="html"> | ||
8698 | <source>⚠️ Never share your stream key with anyone.</source> | ||
8699 | <target state="new">⚠️ Never share your stream key with anyone.</target> | ||
8700 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">27</context></context-group> | ||
8701 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">226</context></context-group> | ||
8702 | </trans-unit> | ||
8703 | <trans-unit id="5b5759ae8d3274fdc904e1ef5bb4a52c2251de66" datatype="html"> | ||
8704 | <source>Permanent live</source> | ||
8705 | <target state="new">Permanent live</target> | ||
7910 | <context-group purpose="location"> | 8706 | <context-group purpose="location"> |
7911 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> | 8707 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> |
7912 | <context context-type="linenumber">10</context> | 8708 | <context context-type="linenumber">10</context> |
7913 | </context-group> | 8709 | </context-group> |
7914 | </trans-unit><trans-unit id="6bf2a2b88df254434e6a415bfd44c8efb5fe40a7" datatype="html"> | 8710 | </trans-unit> |
7915 | <source>Replay will be saved</source><target state="new">Replay will be saved</target> | 8711 | <trans-unit id="6bf2a2b88df254434e6a415bfd44c8efb5fe40a7" datatype="html"> |
8712 | <source>Replay will be saved</source> | ||
8713 | <target state="new">Replay will be saved</target> | ||
7916 | <context-group purpose="location"> | 8714 | <context-group purpose="location"> |
7917 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> | 8715 | <context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context> |
7918 | <context context-type="linenumber">11</context> | 8716 | <context context-type="linenumber">11</context> |
@@ -7921,500 +8719,503 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7921 | <trans-unit id="5437132245714159662" datatype="html"> | 8719 | <trans-unit id="5437132245714159662" datatype="html"> |
7922 | <source>Video name is required.</source> | 8720 | <source>Video name is required.</source> |
7923 | <target state="new">Video name is required.</target> | 8721 | <target state="new">Video name is required.</target> |
7924 | 8722 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">7</context></context-group> | |
7925 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">7</context></context-group></trans-unit> | 8723 | </trans-unit> |
7926 | <trans-unit id="2807676084745266104" datatype="html"> | 8724 | <trans-unit id="2807676084745266104" datatype="html"> |
7927 | <source>Video name must be at least 3 characters long.</source> | 8725 | <source>Video name must be at least 3 characters long.</source> |
7928 | <target state="new">Video name must be at least 3 characters long.</target> | 8726 | <target state="new">Video name must be at least 3 characters long.</target> |
7929 | 8727 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">8</context></context-group> | |
7930 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">8</context></context-group></trans-unit> | 8728 | </trans-unit> |
7931 | <trans-unit id="2155414141025589556" datatype="html"> | 8729 | <trans-unit id="2155414141025589556" datatype="html"> |
7932 | <source>Video name cannot be more than 120 characters long.</source> | 8730 | <source>Video name cannot be more than 120 characters long.</source> |
7933 | <target state="new">Video name cannot be more than 120 characters long.</target> | 8731 | <target state="new">Video name cannot be more than 120 characters long.</target> |
7934 | 8732 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">9</context></context-group> | |
7935 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">9</context></context-group></trans-unit> | 8733 | </trans-unit> |
7936 | <trans-unit id="9115337161597088460" datatype="html"> | 8734 | <trans-unit id="9115337161597088460" datatype="html"> |
7937 | <source>Video privacy is required.</source> | 8735 | <source>Video privacy is required.</source> |
7938 | <target state="new">Video privacy is required.</target> | 8736 | <target state="new">Video privacy is required.</target> |
7939 | 8737 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">16</context></context-group> | |
7940 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">16</context></context-group></trans-unit> | 8738 | </trans-unit> |
7941 | <trans-unit id="7309902991450450996" datatype="html"> | 8739 | <trans-unit id="7309902991450450996" datatype="html"> |
7942 | <source>Video channel is required.</source> | 8740 | <source>Video channel is required.</source> |
7943 | <target state="new">Video channel is required.</target> | 8741 | <target state="new">Video channel is required.</target> |
7944 | 8742 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">43</context></context-group> | |
7945 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> | 8743 | </trans-unit> |
7946 | <trans-unit id="3959376623771116873" datatype="html"> | 8744 | <trans-unit id="3959376623771116873" datatype="html"> |
7947 | <source>Video description must be at least 3 characters long.</source> | 8745 | <source>Video description must be at least 3 characters long.</source> |
7948 | <target state="new">Video description must be at least 3 characters long.</target> | 8746 | <target state="new">Video description must be at least 3 characters long.</target> |
7949 | 8747 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">50</context></context-group> | |
7950 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 8748 | </trans-unit> |
7951 | <trans-unit id="725195891739570830" datatype="html"> | 8749 | <trans-unit id="725195891739570830" datatype="html"> |
7952 | <source>Video description cannot be more than 10000 characters long.</source> | 8750 | <source>Video description cannot be more than 10000 characters long.</source> |
7953 | <target state="new">Video description cannot be more than 10000 characters long.</target> | 8751 | <target state="new">Video description cannot be more than 10000 characters long.</target> |
7954 | 8752 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">51</context></context-group> | |
7955 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 8753 | </trans-unit> |
7956 | <trans-unit id="142488285332434408" datatype="html"> | 8754 | <trans-unit id="142488285332434408" datatype="html"> |
7957 | <source>A tag should be more than 2 characters long.</source> | 8755 | <source>A tag should be more than 2 characters long.</source> |
7958 | <target state="new">A tag should be more than 2 characters long.</target> | 8756 | <target state="new">A tag should be more than 2 characters long.</target> |
7959 | 8757 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">58</context></context-group> | |
7960 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 8758 | </trans-unit> |
7961 | <trans-unit id="691846635236293620" datatype="html"> | 8759 | <trans-unit id="691846635236293620" datatype="html"> |
7962 | <source>A tag should be less than 30 characters long.</source> | 8760 | <source>A tag should be less than 30 characters long.</source> |
7963 | <target state="new">A tag should be less than 30 characters long.</target> | 8761 | <target state="new">A tag should be less than 30 characters long.</target> |
7964 | 8762 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">59</context></context-group> | |
7965 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">59</context></context-group></trans-unit> | 8763 | </trans-unit> |
7966 | <trans-unit id="4146790476782316573" datatype="html"> | 8764 | <trans-unit id="4146790476782316573" datatype="html"> |
7967 | <source>A maximum of 5 tags can be used on a video.</source> | 8765 | <source>A maximum of 5 tags can be used on a video.</source> |
7968 | <target state="new">A maximum of 5 tags can be used on a video.</target> | 8766 | <target state="new">A maximum of 5 tags can be used on a video.</target> |
7969 | 8767 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">66</context></context-group> | |
7970 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="2389667090302909529" datatype="html"> | 8768 | </trans-unit> |
7971 | <source>A tag should be more than 1 and less than 30 characters long.</source><target state="new">A tag should be more than 1 and less than 30 characters long.</target> | 8769 | <trans-unit id="2389667090302909529" datatype="html"> |
8770 | <source>A tag should be more than 1 and less than 30 characters long.</source> | ||
8771 | <target state="new">A tag should be more than 1 and less than 30 characters long.</target> | ||
7972 | <context-group purpose="location"> | 8772 | <context-group purpose="location"> |
7973 | <context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context> | 8773 | <context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context> |
7974 | <context context-type="linenumber">67</context> | 8774 | <context context-type="linenumber">67</context> |
7975 | </context-group> | 8775 | </context-group> |
7976 | </trans-unit> | 8776 | </trans-unit> |
7977 | |||
7978 | <trans-unit id="4806300480558315727" datatype="html"> | 8777 | <trans-unit id="4806300480558315727" datatype="html"> |
7979 | <source>Video support must be at least 3 characters long.</source> | 8778 | <source>Video support must be at least 3 characters long.</source> |
7980 | <target state="new">Video support must be at least 3 characters long.</target> | 8779 | <target state="new">Video support must be at least 3 characters long.</target> |
7981 | 8780 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">74</context></context-group> | |
7982 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">74</context></context-group></trans-unit> | 8781 | </trans-unit> |
7983 | <trans-unit id="6655773021893755977" datatype="html"> | 8782 | <trans-unit id="6655773021893755977" datatype="html"> |
7984 | <source>Video support cannot be more than 1000 characters long.</source> | 8783 | <source>Video support cannot be more than 1000 characters long.</source> |
7985 | <target state="new">Video support cannot be more than 1000 characters long.</target> | 8784 | <target state="new">Video support cannot be more than 1000 characters long.</target> |
7986 | 8785 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">75</context></context-group> | |
7987 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> | 8786 | </trans-unit> |
7988 | <trans-unit id="4246579596585402255" datatype="html"> | 8787 | <trans-unit id="4246579596585402255" datatype="html"> |
7989 | <source>A date is required to schedule video update.</source> | 8788 | <source>A date is required to schedule video update.</source> |
7990 | <target state="new">A date is required to schedule video update.</target> | 8789 | <target state="new">A date is required to schedule video update.</target> |
7991 | 8790 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">82</context></context-group> | |
7992 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 8791 | </trans-unit> |
7993 | <trans-unit id="8728283516316752593" datatype="html"> | 8792 | <trans-unit id="8728283516316752593" datatype="html"> |
7994 | <source>This file is too large.</source> | 8793 | <source>This file is too large.</source> |
7995 | <target state="new">This file is too large.</target> | 8794 | <target state="new">This file is too large.</target> |
7996 | 8795 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/reactive-file.component.ts</context><context context-type="linenumber">50</context></context-group> | |
7997 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/reactive-file.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 8796 | </trans-unit> |
7998 | <trans-unit id="6360987759186261451" datatype="html"> | 8797 | <trans-unit id="6360987759186261451" datatype="html"> |
7999 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> | 8798 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> |
8000 | <target state="new">PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</target> | 8799 | <target state="new">PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</target> |
8001 | 8800 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/reactive-file.component.ts</context><context context-type="linenumber">56</context></context-group> | |
8002 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/reactive-file.component.ts</context><context context-type="linenumber">56</context></context-group></trans-unit> | 8801 | </trans-unit> |
8003 | <trans-unit id="6708273825233539746" datatype="html"> | 8802 | <trans-unit id="6708273825233539746" datatype="html"> |
8004 | <source>Add a new option</source> | 8803 | <source>Add a new option</source> |
8005 | <target state="new">Add a new option</target> | 8804 | <target state="new">Add a new option</target> |
8006 | 8805 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">28</context></context-group> | |
8007 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 8806 | </trans-unit> |
8008 | <trans-unit id="4670312387769733978" datatype="html"> | 8807 | <trans-unit id="4670312387769733978" datatype="html"> |
8009 | <source>All unsaved data will be lost, are you sure you want to leave this page?</source> | 8808 | <source>All unsaved data will be lost, are you sure you want to leave this page?</source> |
8010 | <target state="new">All unsaved data will be lost, are you sure you want to leave this page?</target> | 8809 | <target state="new">All unsaved data will be lost, are you sure you want to leave this page?</target> |
8011 | 8810 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/routing/can-deactivate-guard.service.ts</context><context context-type="linenumber">19</context></context-group> | |
8012 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/routing/can-deactivate-guard.service.ts</context><context context-type="linenumber">19</context></context-group></trans-unit> | 8811 | </trans-unit> |
8013 | <trans-unit id="6950140976689343775" datatype="html"> | 8812 | <trans-unit id="6950140976689343775" datatype="html"> |
8014 | <source>Sunday</source> | 8813 | <source>Sunday</source> |
8015 | <target state="new">Sunday</target> | 8814 | <target state="translated">Pazar</target> |
8016 | 8815 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">11</context></context-group> | |
8017 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">11</context></context-group></trans-unit> | 8816 | </trans-unit> |
8018 | <trans-unit id="8739442281958563044" datatype="html"> | 8817 | <trans-unit id="8739442281958563044" datatype="html"> |
8019 | <source>Monday</source> | 8818 | <source>Monday</source> |
8020 | <target state="new">Monday</target> | 8819 | <target state="translated">Pazartesi</target> |
8021 | 8820 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">12</context></context-group> | |
8022 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">12</context></context-group></trans-unit> | 8821 | </trans-unit> |
8023 | <trans-unit id="9176037901730521018" datatype="html"> | 8822 | <trans-unit id="9176037901730521018" datatype="html"> |
8024 | <source>Tuesday</source> | 8823 | <source>Tuesday</source> |
8025 | <target state="new">Tuesday</target> | 8824 | <target state="translated">Salı</target> |
8026 | 8825 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">13</context></context-group> | |
8027 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">13</context></context-group></trans-unit> | 8826 | </trans-unit> |
8028 | <trans-unit id="8798932904948432529" datatype="html"> | 8827 | <trans-unit id="8798932904948432529" datatype="html"> |
8029 | <source>Wednesday</source> | 8828 | <source>Wednesday</source> |
8030 | <target state="new">Wednesday</target> | 8829 | <target state="translated">Çarşamba</target> |
8031 | 8830 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">14</context></context-group> | |
8032 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">14</context></context-group></trans-unit> | 8831 | </trans-unit> |
8033 | <trans-unit id="1433683192825895947" datatype="html"> | 8832 | <trans-unit id="1433683192825895947" datatype="html"> |
8034 | <source>Thursday</source> | 8833 | <source>Thursday</source> |
8035 | <target state="new">Thursday</target> | 8834 | <target state="translated">Perşembe</target> |
8036 | 8835 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">15</context></context-group> | |
8037 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">15</context></context-group></trans-unit> | 8836 | </trans-unit> |
8038 | <trans-unit id="3730139500618908668" datatype="html"> | 8837 | <trans-unit id="3730139500618908668" datatype="html"> |
8039 | <source>Friday</source> | 8838 | <source>Friday</source> |
8040 | <target state="new">Friday</target> | 8839 | <target state="translated">Cuma</target> |
8041 | 8840 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">16</context></context-group> | |
8042 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">16</context></context-group></trans-unit> | 8841 | </trans-unit> |
8043 | <trans-unit id="1830554030016307335" datatype="html"> | 8842 | <trans-unit id="1830554030016307335" datatype="html"> |
8044 | <source>Saturday</source> | 8843 | <source>Saturday</source> |
8045 | <target state="new">Saturday</target> | 8844 | <target state="translated">Cumartesi</target> |
8046 | 8845 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">17</context></context-group> | |
8047 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">17</context></context-group></trans-unit> | 8846 | </trans-unit> |
8048 | <trans-unit id="4921929243068857081" datatype="html"> | 8847 | <trans-unit id="4921929243068857081" datatype="html"> |
8049 | <source>Sun</source> | 8848 | <source>Sun</source> |
8050 | <target state="new">Sun</target> | 8849 | <target state="translated">Paz</target> |
8051 | <note priority="1" from="description">Day name short</note> | 8850 | <note priority="1" from="description">Day name short</note> |
8052 | 8851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">21</context></context-group> | |
8053 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">21</context></context-group></trans-unit> | 8852 | </trans-unit> |
8054 | <trans-unit id="8563137213157122993" datatype="html"> | 8853 | <trans-unit id="8563137213157122993" datatype="html"> |
8055 | <source>Mon</source> | 8854 | <source>Mon</source> |
8056 | <target state="new">Mon</target> | 8855 | <target state="translated">Pzt</target> |
8057 | <note priority="1" from="description">Day name short</note> | 8856 | <note priority="1" from="description">Day name short</note> |
8058 | 8857 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">22</context></context-group> | |
8059 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">22</context></context-group></trans-unit> | 8858 | </trans-unit> |
8060 | <trans-unit id="8502240922750617054" datatype="html"> | 8859 | <trans-unit id="8502240922750617054" datatype="html"> |
8061 | <source>Tue</source> | 8860 | <source>Tue</source> |
8062 | <target state="new">Tue</target> | 8861 | <target state="translated">Sal</target> |
8063 | <note priority="1" from="description">Day name short</note> | 8862 | <note priority="1" from="description">Day name short</note> |
8064 | 8863 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">23</context></context-group> | |
8065 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">23</context></context-group></trans-unit> | 8864 | </trans-unit> |
8066 | <trans-unit id="7421778640995344715" datatype="html"> | 8865 | <trans-unit id="7421778640995344715" datatype="html"> |
8067 | <source>Wed</source> | 8866 | <source>Wed</source> |
8068 | <target state="new">Wed</target> | 8867 | <target state="translated">Çar</target> |
8069 | <note priority="1" from="description">Day name short</note> | 8868 | <note priority="1" from="description">Day name short</note> |
8070 | 8869 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">24</context></context-group> | |
8071 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">24</context></context-group></trans-unit> | 8870 | </trans-unit> |
8072 | <trans-unit id="4409954796361883558" datatype="html"> | 8871 | <trans-unit id="4409954796361883558" datatype="html"> |
8073 | <source>Thu</source> | 8872 | <source>Thu</source> |
8074 | <target state="new">Thu</target> | 8873 | <target state="translated">Per</target> |
8075 | <note priority="1" from="description">Day name short</note> | 8874 | <note priority="1" from="description">Day name short</note> |
8076 | 8875 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">25</context></context-group> | |
8077 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 8876 | </trans-unit> |
8078 | <trans-unit id="5651951128882735477" datatype="html"> | 8877 | <trans-unit id="5651951128882735477" datatype="html"> |
8079 | <source>Fri</source> | 8878 | <source>Fri</source> |
8080 | <target state="new">Fri</target> | 8879 | <target state="translated">Cum</target> |
8081 | <note priority="1" from="description">Day name short</note> | 8880 | <note priority="1" from="description">Day name short</note> |
8082 | 8881 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">26</context></context-group> | |
8083 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 8882 | </trans-unit> |
8084 | <trans-unit id="93026920674143073" datatype="html"> | 8883 | <trans-unit id="93026920674143073" datatype="html"> |
8085 | <source>Sat</source> | 8884 | <source>Sat</source> |
8086 | <target state="new">Sat</target> | 8885 | <target state="translated">Cmt</target> |
8087 | <note priority="1" from="description">Day name short</note> | 8886 | <note priority="1" from="description">Day name short</note> |
8088 | 8887 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">27</context></context-group> | |
8089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">27</context></context-group></trans-unit> | 8888 | </trans-unit> |
8090 | <trans-unit id="8349763432924710200" datatype="html"> | 8889 | <trans-unit id="8349763432924710200" datatype="html"> |
8091 | <source>Su</source> | 8890 | <source>Su</source> |
8092 | <target state="new">Su</target> | 8891 | <target state="new">Su</target> |
8093 | <note priority="1" from="description">Day name min</note> | 8892 | <note priority="1" from="description">Day name min</note> |
8094 | 8893 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">31</context></context-group> | |
8095 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">31</context></context-group></trans-unit> | 8894 | </trans-unit> |
8096 | <trans-unit id="4197236438302165051" datatype="html"> | 8895 | <trans-unit id="4197236438302165051" datatype="html"> |
8097 | <source>Mo</source> | 8896 | <source>Mo</source> |
8098 | <target state="new">Mo</target> | 8897 | <target state="new">Mo</target> |
8099 | <note priority="1" from="description">Day name min</note> | 8898 | <note priority="1" from="description">Day name min</note> |
8100 | 8899 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">32</context></context-group> | |
8101 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 8900 | </trans-unit> |
8102 | <trans-unit id="6034455877220674404" datatype="html"> | 8901 | <trans-unit id="6034455877220674404" datatype="html"> |
8103 | <source>Tu</source> | 8902 | <source>Tu</source> |
8104 | <target state="new">Tu</target> | 8903 | <target state="new">Tu</target> |
8105 | <note priority="1" from="description">Day name min</note> | 8904 | <note priority="1" from="description">Day name min</note> |
8106 | 8905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">33</context></context-group> | |
8107 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">33</context></context-group></trans-unit> | 8906 | </trans-unit> |
8108 | <trans-unit id="3221670730445125135" datatype="html"> | 8907 | <trans-unit id="3221670730445125135" datatype="html"> |
8109 | <source>We</source> | 8908 | <source>We</source> |
8110 | <target state="new">We</target> | 8909 | <target state="new">We</target> |
8111 | <note priority="1" from="description">Day name min</note> | 8910 | <note priority="1" from="description">Day name min</note> |
8112 | 8911 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">34</context></context-group> | |
8113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 8912 | </trans-unit> |
8114 | <trans-unit id="772466829681972216" datatype="html"> | 8913 | <trans-unit id="772466829681972216" datatype="html"> |
8115 | <source>Th</source> | 8914 | <source>Th</source> |
8116 | <target state="new">Th</target> | 8915 | <target state="new">Th</target> |
8117 | <note priority="1" from="description">Day name min</note> | 8916 | <note priority="1" from="description">Day name min</note> |
8118 | 8917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">35</context></context-group> | |
8119 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 8918 | </trans-unit> |
8120 | <trans-unit id="8598262708800132669" datatype="html"> | 8919 | <trans-unit id="8598262708800132669" datatype="html"> |
8121 | <source>Fr</source> | 8920 | <source>Fr</source> |
8122 | <target state="new">Fr</target> | 8921 | <target state="new">Fr</target> |
8123 | <note priority="1" from="description">Day name min</note> | 8922 | <note priority="1" from="description">Day name min</note> |
8124 | 8923 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">36</context></context-group> | |
8125 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">36</context></context-group></trans-unit> | 8924 | </trans-unit> |
8126 | <trans-unit id="569007902695332072" datatype="html"> | 8925 | <trans-unit id="569007902695332072" datatype="html"> |
8127 | <source>Sa</source> | 8926 | <source>Sa</source> |
8128 | <target state="new">Sa</target> | 8927 | <target state="new">Sa</target> |
8129 | <note priority="1" from="description">Day name min</note> | 8928 | <note priority="1" from="description">Day name min</note> |
8130 | 8929 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">37</context></context-group> | |
8131 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 8930 | </trans-unit> |
8132 | <trans-unit id="3913843642962116845" datatype="html"> | 8931 | <trans-unit id="3913843642962116845" datatype="html"> |
8133 | <source>January</source> | 8932 | <source>January</source> |
8134 | <target state="new">January</target> | 8933 | <target state="translated">Ocak</target> |
8135 | 8934 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">41</context></context-group> | |
8136 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> | 8935 | </trans-unit> |
8137 | <trans-unit id="6642324138857419870" datatype="html"> | 8936 | <trans-unit id="6642324138857419870" datatype="html"> |
8138 | <source>February</source> | 8937 | <source>February</source> |
8139 | <target state="new">February</target> | 8938 | <target state="translated">Şubat</target> |
8140 | 8939 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">42</context></context-group> | |
8141 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">42</context></context-group></trans-unit> | 8940 | </trans-unit> |
8142 | <trans-unit id="7918954644624211958" datatype="html"> | 8941 | <trans-unit id="7918954644624211958" datatype="html"> |
8143 | <source>March</source> | 8942 | <source>March</source> |
8144 | <target state="new">March</target> | 8943 | <target state="translated">Mart</target> |
8145 | 8944 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">43</context></context-group> | |
8146 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> | 8945 | </trans-unit> |
8147 | <trans-unit id="1809521303476565743" datatype="html"> | 8946 | <trans-unit id="1809521303476565743" datatype="html"> |
8148 | <source>April</source> | 8947 | <source>April</source> |
8149 | <target state="new">April</target> | 8948 | <target state="translated">Nisan</target> |
8150 | 8949 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">44</context></context-group> | |
8151 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">44</context></context-group></trans-unit> | 8950 | </trans-unit> |
8152 | <trans-unit id="8469692700277617405" datatype="html"> | 8951 | <trans-unit id="8469692700277617405" datatype="html"> |
8153 | <source>May</source> | 8952 | <source>May</source> |
8154 | <target state="new">May</target> | 8953 | <target state="translated">Mayıs</target> |
8155 | 8954 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">45</context></context-group> | |
8156 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 8955 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">60</context></context-group> |
8956 | </trans-unit> | ||
8157 | <trans-unit id="9055297580745330415" datatype="html"> | 8957 | <trans-unit id="9055297580745330415" datatype="html"> |
8158 | <source>June</source> | 8958 | <source>June</source> |
8159 | <target state="new">June</target> | 8959 | <target state="translated">Haziran</target> |
8160 | 8960 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">46</context></context-group> | |
8161 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 8961 | </trans-unit> |
8162 | <trans-unit id="9087113544612471348" datatype="html"> | 8962 | <trans-unit id="9087113544612471348" datatype="html"> |
8163 | <source>July</source> | 8963 | <source>July</source> |
8164 | <target state="new">July</target> | 8964 | <target state="translated">Temmuz</target> |
8165 | 8965 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">47</context></context-group> | |
8166 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> | 8966 | </trans-unit> |
8167 | <trans-unit id="3984618989093293779" datatype="html"> | 8967 | <trans-unit id="3984618989093293779" datatype="html"> |
8168 | <source>August</source> | 8968 | <source>August</source> |
8169 | <target state="new">August</target> | 8969 | <target state="translated">Ağustos</target> |
8170 | 8970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">48</context></context-group> | |
8171 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 8971 | </trans-unit> |
8172 | <trans-unit id="5872622085239011307" datatype="html"> | 8972 | <trans-unit id="5872622085239011307" datatype="html"> |
8173 | <source>September</source> | 8973 | <source>September</source> |
8174 | <target state="new">September</target> | 8974 | <target state="translated">Eylül</target> |
8175 | 8975 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">49</context></context-group> | |
8176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 8976 | </trans-unit> |
8177 | <trans-unit id="1491482705364427867" datatype="html"> | 8977 | <trans-unit id="1491482705364427867" datatype="html"> |
8178 | <source>October</source> | 8978 | <source>October</source> |
8179 | <target state="new">October</target> | 8979 | <target state="translated">Ekim</target> |
8180 | 8980 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">50</context></context-group> | |
8181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 8981 | </trans-unit> |
8182 | <trans-unit id="1109977718843277527" datatype="html"> | 8982 | <trans-unit id="1109977718843277527" datatype="html"> |
8183 | <source>November</source> | 8983 | <source>November</source> |
8184 | <target state="new">November</target> | 8984 | <target state="translated">Kasım</target> |
8185 | 8985 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">51</context></context-group> | |
8186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 8986 | </trans-unit> |
8187 | <trans-unit id="124191049522509365" datatype="html"> | 8987 | <trans-unit id="124191049522509365" datatype="html"> |
8188 | <source>December</source> | 8988 | <source>December</source> |
8189 | <target state="new">December</target> | 8989 | <target state="translated">Aralık</target> |
8190 | 8990 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">52</context></context-group> | |
8191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 8991 | </trans-unit> |
8192 | <trans-unit id="7595747576974676670" datatype="html"> | 8992 | <trans-unit id="7595747576974676670" datatype="html"> |
8193 | <source>Jan</source> | 8993 | <source>Jan</source> |
8194 | <target state="new">Jan</target> | 8994 | <target state="translated">Oca</target> |
8195 | <note priority="1" from="description">Month name short</note> | 8995 | <note priority="1" from="description">Month name short</note> |
8196 | 8996 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">56</context></context-group> | |
8197 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">56</context></context-group></trans-unit> | 8997 | </trans-unit> |
8198 | <trans-unit id="4916040996255005712" datatype="html"> | 8998 | <trans-unit id="4916040996255005712" datatype="html"> |
8199 | <source>Feb</source> | 8999 | <source>Feb</source> |
8200 | <target state="new">Feb</target> | 9000 | <target state="translated">Şub</target> |
8201 | <note priority="1" from="description">Month name short</note> | 9001 | <note priority="1" from="description">Month name short</note> |
8202 | 9002 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">57</context></context-group> | |
8203 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> | 9003 | </trans-unit> |
8204 | <trans-unit id="6438827956918137617" datatype="html"> | 9004 | <trans-unit id="6438827956918137617" datatype="html"> |
8205 | <source>Mar</source> | 9005 | <source>Mar</source> |
8206 | <target state="new">Mar</target> | 9006 | <target state="translated">Mar</target> |
8207 | <note priority="1" from="description">Month name short</note> | 9007 | <note priority="1" from="description">Month name short</note> |
8208 | 9008 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">58</context></context-group> | |
8209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 9009 | </trans-unit> |
8210 | <trans-unit id="5507326650332881991" datatype="html"> | 9010 | <trans-unit id="5507326650332881991" datatype="html"> |
8211 | <source>Apr</source> | 9011 | <source>Apr</source> |
8212 | <target state="new">Apr</target> | 9012 | <target state="translated">Nis</target> |
8213 | <note priority="1" from="description">Month name short</note> | 9013 | <note priority="1" from="description">Month name short</note> |
8214 | 9014 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">59</context></context-group> | |
8215 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">59</context></context-group></trans-unit> | 9015 | </trans-unit> |
8216 | <trans-unit id="2113470244260512015" datatype="html"> | 9016 | <trans-unit id="2113470244260512015" datatype="html"> |
8217 | <source>Jun</source> | 9017 | <source>Jun</source> |
8218 | <target state="new">Jun</target> | 9018 | <target state="translated">Haz</target> |
8219 | <note priority="1" from="description">Month name short</note> | 9019 | <note priority="1" from="description">Month name short</note> |
8220 | 9020 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">61</context></context-group> | |
8221 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 9021 | </trans-unit> |
8222 | <trans-unit id="53176888553719239" datatype="html"> | 9022 | <trans-unit id="53176888553719239" datatype="html"> |
8223 | <source>Jul</source> | 9023 | <source>Jul</source> |
8224 | <target state="new">Jul</target> | 9024 | <target state="translated">Tem</target> |
8225 | <note priority="1" from="description">Month name short</note> | 9025 | <note priority="1" from="description">Month name short</note> |
8226 | 9026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">62</context></context-group> | |
8227 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">62</context></context-group></trans-unit> | 9027 | </trans-unit> |
8228 | <trans-unit id="5648574669404659458" datatype="html"> | 9028 | <trans-unit id="5648574669404659458" datatype="html"> |
8229 | <source>Aug</source> | 9029 | <source>Aug</source> |
8230 | <target state="new">Aug</target> | 9030 | <target state="translated">Ağu</target> |
8231 | <note priority="1" from="description">Month name short</note> | 9031 | <note priority="1" from="description">Month name short</note> |
8232 | 9032 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">63</context></context-group> | |
8233 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 9033 | </trans-unit> |
8234 | <trans-unit id="4354095055982674918" datatype="html"> | 9034 | <trans-unit id="4354095055982674918" datatype="html"> |
8235 | <source>Sep</source> | 9035 | <source>Sep</source> |
8236 | <target state="new">Sep</target> | 9036 | <target state="translated">Eyl</target> |
8237 | <note priority="1" from="description">Month name short</note> | 9037 | <note priority="1" from="description">Month name short</note> |
8238 | 9038 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">64</context></context-group> | |
8239 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">64</context></context-group></trans-unit> | 9039 | </trans-unit> |
8240 | <trans-unit id="6207754626941051341" datatype="html"> | 9040 | <trans-unit id="6207754626941051341" datatype="html"> |
8241 | <source>Oct</source> | 9041 | <source>Oct</source> |
8242 | <target state="new">Oct</target> | 9042 | <target state="translated">Eki</target> |
8243 | <note priority="1" from="description">Month name short</note> | 9043 | <note priority="1" from="description">Month name short</note> |
8244 | 9044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">65</context></context-group> | |
8245 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">65</context></context-group></trans-unit> | 9045 | </trans-unit> |
8246 | <trans-unit id="8269261039058575292" datatype="html"> | 9046 | <trans-unit id="8269261039058575292" datatype="html"> |
8247 | <source>Nov</source> | 9047 | <source>Nov</source> |
8248 | <target state="new">Nov</target> | 9048 | <target state="translated">Kas</target> |
8249 | <note priority="1" from="description">Month name short</note> | 9049 | <note priority="1" from="description">Month name short</note> |
8250 | 9050 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">66</context></context-group> | |
8251 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 9051 | </trans-unit> |
8252 | <trans-unit id="7777579586760423636" datatype="html"> | 9052 | <trans-unit id="7777579586760423636" datatype="html"> |
8253 | <source>Dec</source> | 9053 | <source>Dec</source> |
8254 | <target state="new">Dec</target> | 9054 | <target state="translated">Ara</target> |
8255 | <note priority="1" from="description">Month name short</note> | 9055 | <note priority="1" from="description">Month name short</note> |
8256 | 9056 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">67</context></context-group> | |
8257 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 9057 | </trans-unit> |
8258 | <trans-unit id="8700121026680200191" datatype="html"> | 9058 | <trans-unit id="8700121026680200191" datatype="html"> |
8259 | <source>Clear</source> | 9059 | <source>Clear</source> |
8260 | <target state="new">Clear</target> | 9060 | <target state="new">Clear</target> |
8261 | 9061 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">72</context></context-group> | |
8262 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 9062 | </trans-unit> |
8263 | <trans-unit id="5922757127987546008" datatype="html"> | 9063 | <trans-unit id="5922757127987546008" datatype="html"> |
8264 | <source>yy-mm-dd</source> | 9064 | <source>yy-mm-dd</source> |
8265 | <target state="new">yy-mm-dd</target> | 9065 | <target state="translated">yy-aa-gg</target> |
8266 | <note priority="1" from="description">Date format in this locale.</note> | 9066 | <note priority="1" from="description">Date format in this locale.</note> |
8267 | 9067 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">88</context></context-group> | |
8268 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">88</context></context-group></trans-unit> | 9068 | </trans-unit> |
8269 | <trans-unit id="2830831449226931729" datatype="html"> | 9069 | <trans-unit id="2830831449226931729" datatype="html"> |
8270 | <source>Instance languages</source> | 9070 | <source>Instance languages</source> |
8271 | <target state="new">Instance languages</target> | 9071 | <target state="new">Instance languages</target> |
8272 | 9072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group> | |
8273 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">185</context></context-group></trans-unit> | 9073 | </trans-unit> |
8274 | <trans-unit id="40119547597591062" datatype="html"> | 9074 | <trans-unit id="40119547597591062" datatype="html"> |
8275 | <source>All languages</source> | 9075 | <source>All languages</source> |
8276 | <target state="new">All languages</target> | 9076 | <target state="translated">Bütün diller</target> |
8277 | 9077 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group> | |
8278 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 9078 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">186</context></context-group> |
9079 | </trans-unit> | ||
8279 | <trans-unit id="996392855508119363" datatype="html"> | 9080 | <trans-unit id="996392855508119363" datatype="html"> |
8280 | <source>Hidden</source> | 9081 | <source>Hidden</source> |
8281 | <target state="new">Hidden</target> | 9082 | <target state="new">Hidden</target> |
8282 | 9083 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">50</context></context-group> | |
8283 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 9084 | </trans-unit> |
8284 | <trans-unit id="2173989454916398137" datatype="html"> | 9085 | <trans-unit id="2173989454916398137" datatype="html"> |
8285 | <source>Blurred with confirmation request</source> | 9086 | <source>Blurred with confirmation request</source> |
8286 | <target state="new">Blurred with confirmation request</target> | 9087 | <target state="new">Blurred with confirmation request</target> |
8287 | 9088 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">51</context></context-group> | |
8288 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 9089 | </trans-unit> |
8289 | <trans-unit id="8929218224642530466" datatype="html"> | 9090 | <trans-unit id="8929218224642530466" datatype="html"> |
8290 | <source>Displayed</source> | 9091 | <source>Displayed</source> |
8291 | <target state="new">Displayed</target> | 9092 | <target state="new">Displayed</target> |
8292 | 9093 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">52</context></context-group> | |
8293 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 9094 | </trans-unit> |
8294 | <trans-unit id="6291055174438137560" datatype="html"> | 9095 | <trans-unit id="6291055174438137560" datatype="html"> |
8295 | <source>~ 1 minute</source> | 9096 | <source>~ 1 minute</source> |
8296 | <target state="new">~ 1 minute</target> | 9097 | <target state="new">~ 1 minute</target> |
8297 | 9098 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">67</context></context-group> | |
8298 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 9099 | </trans-unit> |
8299 | <trans-unit id="189524047518780716" datatype="html"> | 9100 | <trans-unit id="189524047518780716" datatype="html"> |
8300 | <source>~ <x id="PH"/> minutes</source> | 9101 | <source>~ <x id="PH"/> minutes</source> |
8301 | <target state="new">~ <x id="PH"/> minutes</target> | 9102 | <target state="new">~ <x id="PH"/> minutes</target> |
8302 | 9103 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">69</context></context-group> | |
8303 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> | 9104 | </trans-unit> |
8304 | <trans-unit id="6028521920505655348" datatype="html"> | 9105 | <trans-unit id="6028521920505655348" datatype="html"> |
8305 | <source><x id="PH"/> of full HD videos </source> | 9106 | <source><x id="PH"/> of full HD videos </source> |
8306 | <target state="new"> | 9107 | <target state="new"> |
8307 | <x id="PH"/> of full HD videos | 9108 | <x id="PH"/> of full HD videos |
8308 | </target> | 9109 | </target> |
8309 | 9110 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">85</context></context-group> | |
8310 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> | 9111 | </trans-unit> |
8311 | <trans-unit id="117588083391484998" datatype="html"> | 9112 | <trans-unit id="117588083391484998" datatype="html"> |
8312 | <source><x id="PH"/> of HD videos </source> | 9113 | <source><x id="PH"/> of HD videos </source> |
8313 | <target state="new"> | 9114 | <target state="new"> |
8314 | <x id="PH"/> of HD videos | 9115 | <x id="PH"/> of HD videos |
8315 | </target> | 9116 | </target> |
8316 | 9117 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">86</context></context-group> | |
8317 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">86</context></context-group></trans-unit> | 9118 | </trans-unit> |
8318 | <trans-unit id="6636555695556123073" datatype="html"> | 9119 | <trans-unit id="6636555695556123073" datatype="html"> |
8319 | <source><x id="PH"/> of average quality videos </source> | 9120 | <source><x id="PH"/> of average quality videos </source> |
8320 | <target state="new"> | 9121 | <target state="new"> |
8321 | <x id="PH"/> of average quality videos | 9122 | <x id="PH"/> of average quality videos |
8322 | </target> | 9123 | </target> |
8323 | 9124 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">87</context></context-group> | |
8324 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">87</context></context-group></trans-unit> | 9125 | </trans-unit> |
8325 | <trans-unit id="6952960992592445535" datatype="html"> | 9126 | <trans-unit id="6952960992592445535" datatype="html"> |
8326 | <source><x id="PH"/> (channel page) </source> | 9127 | <source><x id="PH"/> (channel page) </source> |
8327 | <target state="new"> | 9128 | <target state="new"> |
8328 | <x id="PH"/> (channel page) | 9129 | <x id="PH"/> (channel page) |
8329 | </target> | 9130 | </target> |
8330 | 9131 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.ts</context><context context-type="linenumber">20</context></context-group> | |
8331 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.ts</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">117</context></context-group></trans-unit> | 9132 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">117</context></context-group> |
9133 | </trans-unit> | ||
8332 | <trans-unit id="1209500590333005801" datatype="html"> | 9134 | <trans-unit id="1209500590333005801" datatype="html"> |
8333 | <source><x id="PH"/> (account page) </source> | 9135 | <source><x id="PH"/> (account page) </source> |
8334 | <target state="new"> | 9136 | <target state="new"> |
8335 | <x id="PH"/> (account page) | 9137 | <x id="PH"/> (account page) |
8336 | </target> | 9138 | </target> |
8337 | 9139 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.ts</context><context context-type="linenumber">21</context></context-group> | |
8338 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/account/video-avatar-channel.component.ts</context><context context-type="linenumber">21</context></context-group></trans-unit> | 9140 | </trans-unit> |
8339 | <trans-unit id="2516633974298697807" datatype="html"> | 9141 | <trans-unit id="2516633974298697807" datatype="html"> |
8340 | <source>Emphasis</source> | 9142 | <source>Emphasis</source> |
8341 | <target state="new">Emphasis</target> | 9143 | <target state="new">Emphasis</target> |
8342 | 9144 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group> | |
8343 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 9145 | </trans-unit> |
8344 | <trans-unit id="7565716024468232322" datatype="html"> | 9146 | <trans-unit id="7565716024468232322" datatype="html"> |
8345 | <source>Links</source> | 9147 | <source>Links</source> |
8346 | <target state="new">Links</target> | 9148 | <target state="translated">Bağlantılar</target> |
8347 | 9149 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group> | |
8348 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 9150 | </trans-unit> |
8349 | <trans-unit id="7838476952710404110" datatype="html"> | 9151 | <trans-unit id="7838476952710404110" datatype="html"> |
8350 | <source>New lines</source> | 9152 | <source>New lines</source> |
8351 | <target state="new">New lines</target> | 9153 | <target state="new">New lines</target> |
8352 | 9154 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group> | |
8353 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> | 9155 | </trans-unit> |
8354 | <trans-unit id="8756167649220050929" datatype="html"> | 9156 | <trans-unit id="8756167649220050929" datatype="html"> |
8355 | <source>Lists</source> | 9157 | <source>Lists</source> |
8356 | <target state="new">Lists</target> | 9158 | <target state="new">Lists</target> |
8357 | 9159 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group> | |
8358 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> | 9160 | </trans-unit> |
8359 | <trans-unit id="414887388288176527" datatype="html"> | 9161 | <trans-unit id="414887388288176527" datatype="html"> |
8360 | <source>Images</source> | 9162 | <source>Images</source> |
8361 | <target state="new">Images</target> | 9163 | <target state="translated">Resimler</target> |
8362 | 9164 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group> | |
8363 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> | 9165 | </trans-unit> |
8364 | <trans-unit id="5708680277917691451" datatype="html"> | 9166 | <trans-unit id="5708680277917691451" datatype="html"> |
8365 | <source><x id="PH"/> users banned. </source> | 9167 | <source><x id="PH"/> users banned. </source> |
8366 | <target state="new"> | 9168 | <target state="translated"><x id="PH"/> kullanıcı yasaklı. </target> |
8367 | <x id="PH"/> users banned. | 9169 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">53</context></context-group> |
8368 | </target> | 9170 | </trans-unit> |
8369 | |||
8370 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">53</context></context-group></trans-unit> | ||
8371 | <trans-unit id="2448281151916042849" datatype="html"> | 9171 | <trans-unit id="2448281151916042849" datatype="html"> |
8372 | <source>User <x id="PH"/> banned.</source> | 9172 | <source>User <x id="PH"/> banned.</source> |
8373 | <target state="new">User | 9173 | <target state="new">User |
8374 | <x id="PH"/> banned. | 9174 | <x id="PH"/> banned. |
8375 | </target> | 9175 | </target> |
8376 | 9176 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">54</context></context-group> | |
8377 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">54</context></context-group></trans-unit> | 9177 | </trans-unit> |
8378 | <trans-unit id="8269144351796756896" datatype="html"> | 9178 | <trans-unit id="8269144351796756896" datatype="html"> |
8379 | <source>Do you really want to unban <x id="PH"/>?</source> | 9179 | <source>Do you really want to unban <x id="PH"/>?</source> |
8380 | <target state="new">Do you really want to unban | 9180 | <target state="new">Do you really want to unban |
8381 | <x id="PH"/>? | 9181 | <x id="PH"/>? |
8382 | </target> | 9182 | </target> |
8383 | 9183 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">70</context></context-group> | |
8384 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">70</context></context-group></trans-unit> | 9184 | </trans-unit> |
8385 | <trans-unit id="1794219875546376069" datatype="html"> | 9185 | <trans-unit id="1794219875546376069" datatype="html"> |
8386 | <source>User <x id="PH"/> unbanned.</source> | 9186 | <source>User <x id="PH"/> unbanned.</source> |
8387 | <target state="new">User | 9187 | <target state="new">User |
8388 | <x id="PH"/> unbanned. | 9188 | <x id="PH"/> unbanned. |
8389 | </target> | 9189 | </target> |
8390 | 9190 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">76</context></context-group> | |
8391 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 9191 | </trans-unit> |
8392 | <trans-unit id="4885683604826993045" datatype="html"> | 9192 | <trans-unit id="4885683604826993045" datatype="html"> |
8393 | <source>If you remove this user, you will not be able to create another with the same username!</source> | 9193 | <source>If you remove this user, you will not be able to create another with the same username!</source> |
8394 | <target state="new">If you remove this user, you will not be able to create another with the same username!</target> | 9194 | <target state="new">If you remove this user, you will not be able to create another with the same username!</target> |
8395 | 9195 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">90</context></context-group> | |
8396 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">90</context></context-group></trans-unit> | 9196 | </trans-unit> |
8397 | <trans-unit id="6301381219225831298" datatype="html"> | 9197 | <trans-unit id="6301381219225831298" datatype="html"> |
8398 | <source>User <x id="PH"/> deleted.</source> | 9198 | <source>User <x id="PH"/> deleted.</source> |
8399 | <target state="new">User | 9199 | <target state="new">User |
8400 | <x id="PH"/> deleted. | 9200 | <x id="PH"/> deleted. |
8401 | </target> | 9201 | </target> |
8402 | 9202 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">96</context></context-group> | |
8403 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">96</context></context-group></trans-unit> | 9203 | </trans-unit> |
8404 | <trans-unit id="3896582359861826661" datatype="html"> | 9204 | <trans-unit id="3896582359861826661" datatype="html"> |
8405 | <source>User <x id="PH"/> email set as verified</source> | 9205 | <source>User <x id="PH"/> email set as verified</source> |
8406 | <target state="new">User | 9206 | <target state="new">User |
8407 | <x id="PH"/> email set as verified | 9207 | <x id="PH"/> email set as verified |
8408 | </target> | 9208 | </target> |
8409 | 9209 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">107</context></context-group> | |
8410 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">107</context></context-group></trans-unit> | 9210 | </trans-unit> |
8411 | <trans-unit id="8150022485860412528" datatype="html"> | 9211 | <trans-unit id="8150022485860412528" datatype="html"> |
8412 | <source>Account <x id="PH"/> muted.</source> | 9212 | <source>Account <x id="PH"/> muted.</source> |
8413 | <target state="new">Account | 9213 | <target state="new">Account |
8414 | <x id="PH"/> muted. | 9214 | <x id="PH"/> muted. |
8415 | </target> | 9215 | </target> |
8416 | 9216 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">240</context></context-group> | |
8417 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">240</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">119</context></context-group></trans-unit> | 9217 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">119</context></context-group> |
9218 | </trans-unit> | ||
8418 | <trans-unit id="1598375456114200087" datatype="html"> | 9219 | <trans-unit id="1598375456114200087" datatype="html"> |
8419 | <source>Instance <x id="PH"/> muted. </source> | 9220 | <source>Instance <x id="PH"/> muted. </source> |
8420 | <target state="new">Instance | 9221 | <target state="new">Instance |
@@ -8430,317 +9231,329 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8430 | <target state="new">Account | 9231 | <target state="new">Account |
8431 | <x id="PH"/> muted by the instance. | 9232 | <x id="PH"/> muted by the instance. |
8432 | </target> | 9233 | </target> |
8433 | 9234 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">175</context></context-group> | |
8434 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">175</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">429</context></context-group></trans-unit> | 9235 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">429</context></context-group> |
9236 | </trans-unit> | ||
8435 | <trans-unit id="1595779426198793580" datatype="html"> | 9237 | <trans-unit id="1595779426198793580" datatype="html"> |
8436 | <source>Mute server</source> | 9238 | <source>Mute server</source> |
8437 | <target state="new">Mute server</target> | 9239 | <target state="new">Mute server</target> |
8438 | 9240 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">317</context></context-group> | |
8439 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">317</context></context-group></trans-unit> | 9241 | </trans-unit> |
8440 | <trans-unit id="8014491157078444256" datatype="html"> | 9242 | <trans-unit id="8014491157078444256" datatype="html"> |
8441 | <source>Server <x id="PH"/> muted by the instance.</source> | 9243 | <source>Server <x id="PH"/> muted by the instance.</source> |
8442 | <target state="new">Server | 9244 | <target state="new">Server |
8443 | <x id="PH"/> muted by the instance. | 9245 | <x id="PH"/> muted by the instance. |
8444 | </target> | 9246 | </target> |
8445 | 9247 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">441</context></context-group> | |
8446 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">441</context></context-group></trans-unit> | 9248 | </trans-unit> |
8447 | <trans-unit id="2044813052587776285" datatype="html"> | 9249 | <trans-unit id="2044813052587776285" datatype="html"> |
8448 | <source>Add a message to communicate with the reporter</source> | 9250 | <source>Add a message to communicate with the reporter</source> |
8449 | <target state="new">Add a message to communicate with the reporter</target> | 9251 | <target state="new">Add a message to communicate with the reporter</target> |
8450 | 9252 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.ts</context><context context-type="linenumber">100</context></context-group> | |
8451 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.ts</context><context context-type="linenumber">100</context></context-group></trans-unit> | 9253 | </trans-unit> |
8452 | <trans-unit id="4117663541503607703" datatype="html"> | 9254 | <trans-unit id="4117663541503607703" datatype="html"> |
8453 | <source>Add a message to communicate with the moderation team</source> | 9255 | <source>Add a message to communicate with the moderation team</source> |
8454 | <target state="new">Add a message to communicate with the moderation team</target> | 9256 | <target state="new">Add a message to communicate with the moderation team</target> |
8455 | 9257 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.ts</context><context context-type="linenumber">103</context></context-group> | |
8456 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | 9258 | </trans-unit> |
8457 | <trans-unit id="3085641638748358969" datatype="html"> | 9259 | <trans-unit id="3085641638748358969" datatype="html"> |
8458 | <source>Account <x id="PH"/> unmuted by the instance.</source> | 9260 | <source>Account <x id="PH"/> unmuted by the instance.</source> |
8459 | <target state="new">Account | 9261 | <target state="new">Account |
8460 | <x id="PH"/> unmuted by the instance. | 9262 | <x id="PH"/> unmuted by the instance. |
8461 | </target> | 9263 | </target> |
8462 | 9264 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">189</context></context-group> | |
8463 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">189</context></context-group></trans-unit> | 9265 | </trans-unit> |
8464 | <trans-unit id="4991892477258601737" datatype="html"> | 9266 | <trans-unit id="4991892477258601737" datatype="html"> |
8465 | <source>Instance <x id="PH"/> muted by the instance.</source> | 9267 | <source>Instance <x id="PH"/> muted by the instance.</source> |
8466 | <target state="new">Instance | 9268 | <target state="new">Instance |
8467 | <x id="PH"/> muted by the instance. | 9269 | <x id="PH"/> muted by the instance. |
8468 | </target> | 9270 | </target> |
8469 | 9271 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">203</context></context-group> | |
8470 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">203</context></context-group></trans-unit> | 9272 | </trans-unit> |
8471 | <trans-unit id="4379430340167561220" datatype="html"> | 9273 | <trans-unit id="4379430340167561220" datatype="html"> |
8472 | <source>Instance <x id="PH"/> unmuted by the instance.</source> | 9274 | <source>Instance <x id="PH"/> unmuted by the instance.</source> |
8473 | <target state="new">Instance | 9275 | <target state="new">Instance |
8474 | <x id="PH"/> unmuted by the instance. | 9276 | <x id="PH"/> unmuted by the instance. |
8475 | </target> | 9277 | </target> |
8476 | 9278 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">217</context></context-group> | |
8477 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">217</context></context-group></trans-unit> | 9279 | </trans-unit> |
8478 | <trans-unit id="8173437618471379044" datatype="html"> | 9280 | <trans-unit id="8173437618471379044" datatype="html"> |
8479 | <source>Are you sure you want to remove all the comments of this account?</source> | 9281 | <source>Are you sure you want to remove all the comments of this account?</source> |
8480 | <target state="new">Are you sure you want to remove all the comments of this account?</target> | 9282 | <target state="new">Are you sure you want to remove all the comments of this account?</target> |
8481 | 9283 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">228</context></context-group> | |
8482 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">228</context></context-group></trans-unit> | 9284 | </trans-unit> |
8483 | <trans-unit id="6315346579373254461" datatype="html"> | 9285 | <trans-unit id="6315346579373254461" datatype="html"> |
8484 | <source>Delete account comments</source> | 9286 | <source>Delete account comments</source> |
8485 | <target state="new">Delete account comments</target> | 9287 | <target state="new">Delete account comments</target> |
8486 | 9288 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">229</context></context-group> | |
8487 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> | 9289 | </trans-unit> |
8488 | <trans-unit id="8559170154828316298" datatype="html"> | 9290 | <trans-unit id="8559170154828316298" datatype="html"> |
8489 | <source>Will remove comments of this account (may take several minutes).</source> | 9291 | <source>Will remove comments of this account (may take several minutes).</source> |
8490 | <target state="new">Will remove comments of this account (may take several minutes).</target> | 9292 | <target state="new">Will remove comments of this account (may take several minutes).</target> |
8491 | 9293 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">235</context></context-group> | |
8492 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">235</context></context-group></trans-unit> | 9294 | </trans-unit> |
8493 | <trans-unit id="7187838764371214919" datatype="html"> | 9295 | <trans-unit id="7187838764371214919" datatype="html"> |
8494 | <source>Edit user</source> | 9296 | <source>Edit user</source> |
8495 | <target state="new">Edit user</target> | 9297 | <target state="new">Edit user</target> |
8496 | 9298 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">263</context></context-group> | |
8497 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">263</context></context-group></trans-unit> | 9299 | </trans-unit> |
8498 | <trans-unit id="4728427543536046034" datatype="html"> | 9300 | <trans-unit id="4728427543536046034" datatype="html"> |
8499 | <source>Change quota, role, and more.</source> | 9301 | <source>Change quota, role, and more.</source> |
8500 | <target state="new">Change quota, role, and more.</target> | 9302 | <target state="new">Change quota, role, and more.</target> |
8501 | 9303 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">264</context></context-group> | |
8502 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">264</context></context-group></trans-unit> | 9304 | </trans-unit> |
8503 | <trans-unit id="7913022656086109932" datatype="html"> | 9305 | <trans-unit id="7913022656086109932" datatype="html"> |
8504 | <source>Delete user</source> | 9306 | <source>Delete user</source> |
8505 | <target state="new">Delete user</target> | 9307 | <target state="new">Delete user</target> |
8506 | 9308 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">268</context></context-group> | |
8507 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">268</context></context-group></trans-unit> | 9309 | </trans-unit> |
8508 | <trans-unit id="7577876364431026966" datatype="html"> | 9310 | <trans-unit id="7577876364431026966" datatype="html"> |
8509 | <source>Unban user</source> | 9311 | <source>Unban user</source> |
8510 | <target state="new">Unban user</target> | 9312 | <target state="new">Unban user</target> |
8511 | 9313 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">279</context></context-group> | |
8512 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">279</context></context-group></trans-unit> | 9314 | </trans-unit> |
8513 | <trans-unit id="3508163549683020253" datatype="html"> | 9315 | <trans-unit id="3508163549683020253" datatype="html"> |
8514 | <source>Allow the user to login and create videos/comments again</source> | 9316 | <source>Allow the user to login and create videos/comments again</source> |
8515 | <target state="new">Allow the user to login and create videos/comments again</target> | 9317 | <target state="new">Allow the user to login and create videos/comments again</target> |
8516 | 9318 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">280</context></context-group> | |
8517 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">280</context></context-group></trans-unit> | 9319 | </trans-unit> |
8518 | <trans-unit id="1888272455383898478" datatype="html"> | 9320 | <trans-unit id="1888272455383898478" datatype="html"> |
8519 | <source>Mute this account</source> | 9321 | <source>Mute this account</source> |
8520 | <target state="new">Mute this account</target> | 9322 | <target state="new">Mute this account</target> |
8521 | 9323 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">297</context></context-group> | |
8522 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">297</context></context-group></trans-unit><trans-unit id="2365286519320230773" datatype="html"> | 9324 | </trans-unit> |
8523 | <source>Hide any content from that user from you.</source><target state="new">Hide any content from that user from you.</target> | 9325 | <trans-unit id="2365286519320230773" datatype="html"> |
8524 | 9326 | <source>Hide any content from that user from you.</source> | |
8525 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">298</context></context-group></trans-unit> | 9327 | <target state="new">Hide any content from that user from you.</target> |
8526 | 9328 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">298</context></context-group> | |
9329 | </trans-unit> | ||
8527 | <trans-unit id="4043508901590508211" datatype="html"> | 9330 | <trans-unit id="4043508901590508211" datatype="html"> |
8528 | <source>Unmute this account</source> | 9331 | <source>Unmute this account</source> |
8529 | <target state="new">Unmute this account</target> | 9332 | <target state="new">Unmute this account</target> |
8530 | 9333 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">303</context></context-group> | |
8531 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">303</context></context-group></trans-unit> | 9334 | </trans-unit> |
8532 | <trans-unit id="2843593344827160627" datatype="html"> | 9335 | <trans-unit id="2843593344827160627" datatype="html"> |
8533 | <source>Show back content from that user for you.</source> | 9336 | <source>Show back content from that user for you.</source> |
8534 | <target state="new">Show back content from that user for you.</target> | 9337 | <target state="new">Show back content from that user for you.</target> |
8535 | 9338 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">304</context></context-group> | |
8536 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">304</context></context-group></trans-unit> | 9339 | </trans-unit> |
8537 | <trans-unit id="6198109035280957164" datatype="html"> | 9340 | <trans-unit id="6198109035280957164" datatype="html"> |
8538 | <source>Mute the instance</source> | 9341 | <source>Mute the instance</source> |
8539 | <target state="new">Mute the instance</target> | 9342 | <target state="new">Mute the instance</target> |
8540 | 9343 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">309</context></context-group> | |
8541 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">309</context></context-group></trans-unit> | 9344 | </trans-unit> |
8542 | <trans-unit id="4537735378779630558" datatype="html"> | 9345 | <trans-unit id="4537735378779630558" datatype="html"> |
8543 | <source>Hide any content from that instance for you.</source> | 9346 | <source>Hide any content from that instance for you.</source> |
8544 | <target state="new">Hide any content from that instance for you.</target> | 9347 | <target state="new">Hide any content from that instance for you.</target> |
8545 | 9348 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">310</context></context-group> | |
8546 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">310</context></context-group></trans-unit> | 9349 | </trans-unit> |
8547 | <trans-unit id="6247487021683085858" datatype="html"> | 9350 | <trans-unit id="6247487021683085858" datatype="html"> |
8548 | <source>Unmute the instance</source> | 9351 | <source>Unmute the instance</source> |
8549 | <target state="new">Unmute the instance</target> | 9352 | <target state="new">Unmute the instance</target> |
8550 | 9353 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">315</context></context-group> | |
8551 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">315</context></context-group></trans-unit> | 9354 | </trans-unit> |
8552 | <trans-unit id="4024846984475742259" datatype="html"> | 9355 | <trans-unit id="4024846984475742259" datatype="html"> |
8553 | <source>Show back content from that instance for you.</source> | 9356 | <source>Show back content from that instance for you.</source> |
8554 | <target state="new">Show back content from that instance for you.</target> | 9357 | <target state="new">Show back content from that instance for you.</target> |
8555 | 9358 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">316</context></context-group> | |
8556 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">316</context></context-group></trans-unit> | 9359 | </trans-unit> |
8557 | <trans-unit id="3108200185023875257" datatype="html"> | 9360 | <trans-unit id="3108200185023875257" datatype="html"> |
8558 | <source>Remove comments from your videos</source> | 9361 | <source>Remove comments from your videos</source> |
8559 | <target state="new">Remove comments from your videos</target> | 9362 | <target state="new">Remove comments from your videos</target> |
8560 | 9363 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">321</context></context-group> | |
8561 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">321</context></context-group></trans-unit><trans-unit id="4810478487244286994" datatype="html"> | 9364 | </trans-unit> |
8562 | <source>Remove comments made by this account on your videos.</source><target state="new">Remove comments made by this account on your videos.</target> | 9365 | <trans-unit id="4810478487244286994" datatype="html"> |
8563 | 9366 | <source>Remove comments made by this account on your videos.</source> | |
8564 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">322</context></context-group></trans-unit> | 9367 | <target state="new">Remove comments made by this account on your videos.</target> |
8565 | 9368 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">322</context></context-group> | |
9369 | </trans-unit> | ||
8566 | <trans-unit id="81452583525574033" datatype="html"> | 9370 | <trans-unit id="81452583525574033" datatype="html"> |
8567 | <source>Mute this account by your instance</source> | 9371 | <source>Mute this account by your instance</source> |
8568 | <target state="new">Mute this account by your instance</target> | 9372 | <target state="new">Mute this account by your instance</target> |
8569 | 9373 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">333</context></context-group> | |
8570 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">333</context></context-group></trans-unit><trans-unit id="2077144178298031252" datatype="html"> | 9374 | </trans-unit> |
8571 | <source>Hide any content from that user from you, your instance and its users.</source><target state="new">Hide any content from that user from you, your instance and its users.</target> | 9375 | <trans-unit id="2077144178298031252" datatype="html"> |
8572 | 9376 | <source>Hide any content from that user from you, your instance and its users.</source> | |
8573 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">334</context></context-group></trans-unit> | 9377 | <target state="new">Hide any content from that user from you, your instance and its users.</target> |
8574 | 9378 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">334</context></context-group> | |
9379 | </trans-unit> | ||
8575 | <trans-unit id="884942914962310163" datatype="html"> | 9380 | <trans-unit id="884942914962310163" datatype="html"> |
8576 | <source>Unmute this account by your instance</source> | 9381 | <source>Unmute this account by your instance</source> |
8577 | <target state="new">Unmute this account by your instance</target> | 9382 | <target state="new">Unmute this account by your instance</target> |
8578 | 9383 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">339</context></context-group> | |
8579 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">339</context></context-group></trans-unit><trans-unit id="7675070596643104983" datatype="html"> | 9384 | </trans-unit> |
8580 | <source>Show this user's content to the users of this instance again.</source><target state="new">Show this user's content to the users of this instance again.</target> | 9385 | <trans-unit id="7675070596643104983" datatype="html"> |
8581 | 9386 | <source>Show this user's content to the users of this instance again.</source> | |
8582 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9387 | <target state="new">Show this user's content to the users of this instance again.</target> |
8583 | 9388 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">340</context></context-group> | |
9389 | </trans-unit> | ||
8584 | <trans-unit id="3191211873505538654" datatype="html"> | 9390 | <trans-unit id="3191211873505538654" datatype="html"> |
8585 | <source>Mute the instance by your instance</source> | 9391 | <source>Mute the instance by your instance</source> |
8586 | <target state="new">Mute the instance by your instance</target> | 9392 | <target state="new">Mute the instance by your instance</target> |
8587 | 9393 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">351</context></context-group> | |
8588 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">351</context></context-group></trans-unit><trans-unit id="525915681688649453" datatype="html"> | 9394 | </trans-unit> |
8589 | <source>Hide any content from that instance from you, your instance and its users.</source><target state="new">Hide any content from that instance from you, your instance and its users.</target> | 9395 | <trans-unit id="525915681688649453" datatype="html"> |
8590 | 9396 | <source>Hide any content from that instance from you, your instance and its users.</source> | |
8591 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9397 | <target state="new">Hide any content from that instance from you, your instance and its users.</target> |
8592 | 9398 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">352</context></context-group> | |
9399 | </trans-unit> | ||
8593 | <trans-unit id="5325628963747139770" datatype="html"> | 9400 | <trans-unit id="5325628963747139770" datatype="html"> |
8594 | <source>Unmute the instance by your instance</source> | 9401 | <source>Unmute the instance by your instance</source> |
8595 | <target state="new">Unmute the instance by your instance</target> | 9402 | <target state="new">Unmute the instance by your instance</target> |
8596 | 9403 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">357</context></context-group> | |
8597 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">357</context></context-group></trans-unit> | 9404 | </trans-unit> |
8598 | <trans-unit id="758471033841077314" datatype="html"> | 9405 | <trans-unit id="758471033841077314" datatype="html"> |
8599 | <source>Show back content from that instance for you, your instance and its users.</source> | 9406 | <source>Show back content from that instance for you, your instance and its users.</source> |
8600 | <target state="new">Show back content from that instance for you, your instance and its users.</target> | 9407 | <target state="new">Show back content from that instance for you, your instance and its users.</target> |
8601 | 9408 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">358</context></context-group> | |
8602 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">358</context></context-group></trans-unit> | 9409 | </trans-unit> |
8603 | <trans-unit id="3785095284194008197" datatype="html"> | 9410 | <trans-unit id="3785095284194008197" datatype="html"> |
8604 | <source>Remove comments from your instance</source> | 9411 | <source>Remove comments from your instance</source> |
8605 | <target state="new">Remove comments from your instance</target> | 9412 | <target state="new">Remove comments from your instance</target> |
8606 | 9413 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">368</context></context-group> | |
8607 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">368</context></context-group></trans-unit><trans-unit id="4809327075591089709" datatype="html"> | 9414 | </trans-unit> |
8608 | <source>Remove comments made by this account from your instance.</source><target state="new">Remove comments made by this account from your instance.</target> | 9415 | <trans-unit id="4809327075591089709" datatype="html"> |
8609 | 9416 | <source>Remove comments made by this account from your instance.</source> | |
8610 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">369</context></context-group></trans-unit> | 9417 | <target state="new">Remove comments made by this account from your instance.</target> |
8611 | 9418 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">369</context></context-group> | |
9419 | </trans-unit> | ||
8612 | <trans-unit id="6746743143272021955" datatype="html"> | 9420 | <trans-unit id="6746743143272021955" datatype="html"> |
8613 | <source>Violent or repulsive</source> | 9421 | <source>Violent or repulsive</source> |
8614 | <target state="new">Violent or repulsive</target> | 9422 | <target state="new">Violent or repulsive</target> |
8615 | 9423 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">139</context></context-group> | |
8616 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9424 | </trans-unit> |
8617 | <trans-unit id="5272553814105457319" datatype="html"> | 9425 | <trans-unit id="5272553814105457319" datatype="html"> |
8618 | <source>Contains offensive, violent, or coarse language or iconography.</source> | 9426 | <source>Contains offensive, violent, or coarse language or iconography.</source> |
8619 | <target state="new">Contains offensive, violent, or coarse language or iconography.</target> | 9427 | <target state="new">Contains offensive, violent, or coarse language or iconography.</target> |
8620 | 9428 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">140</context></context-group> | |
8621 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">140</context></context-group></trans-unit> | 9429 | </trans-unit> |
8622 | <trans-unit id="6979166468838302269" datatype="html"> | 9430 | <trans-unit id="6979166468838302269" datatype="html"> |
8623 | <source>Hateful or abusive</source> | 9431 | <source>Hateful or abusive</source> |
8624 | <target state="new">Hateful or abusive</target> | 9432 | <target state="new">Hateful or abusive</target> |
8625 | 9433 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">144</context></context-group> | |
8626 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 9434 | </trans-unit> |
8627 | <trans-unit id="8006612645824137458" datatype="html"> | 9435 | <trans-unit id="8006612645824137458" datatype="html"> |
8628 | <source>Contains abusive, racist or sexist language or iconography.</source> | 9436 | <source>Contains abusive, racist or sexist language or iconography.</source> |
8629 | <target state="new">Contains abusive, racist or sexist language or iconography.</target> | 9437 | <target state="new">Contains abusive, racist or sexist language or iconography.</target> |
8630 | 9438 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">145</context></context-group> | |
8631 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">145</context></context-group></trans-unit> | 9439 | </trans-unit> |
8632 | <trans-unit id="5413552012131573970" datatype="html"> | 9440 | <trans-unit id="5413552012131573970" datatype="html"> |
8633 | <source>Spam, ad or false news</source> | 9441 | <source>Spam, ad or false news</source> |
8634 | <target state="new">Spam, ad or false news</target> | 9442 | <target state="new">Spam, ad or false news</target> |
8635 | 9443 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">149</context></context-group> | |
8636 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">149</context></context-group></trans-unit> | 9444 | </trans-unit> |
8637 | <trans-unit id="6374940465448453212" datatype="html"> | 9445 | <trans-unit id="6374940465448453212" datatype="html"> |
8638 | <source>Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</source> | 9446 | <source>Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</source> |
8639 | <target state="new">Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</target> | 9447 | <target state="new">Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</target> |
8640 | 9448 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">150</context></context-group> | |
8641 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">150</context></context-group></trans-unit> | 9449 | </trans-unit> |
8642 | <trans-unit id="7401289443263903223" datatype="html"> | 9450 | <trans-unit id="7401289443263903223" datatype="html"> |
8643 | <source>Privacy breach or doxxing</source> | 9451 | <source>Privacy breach or doxxing</source> |
8644 | <target state="new">Privacy breach or doxxing</target> | 9452 | <target state="new">Privacy breach or doxxing</target> |
8645 | 9453 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">154</context></context-group> | |
8646 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">154</context></context-group></trans-unit> | 9454 | </trans-unit> |
8647 | <trans-unit id="8363008638081993167" datatype="html"> | 9455 | <trans-unit id="8363008638081993167" datatype="html"> |
8648 | <source>Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).</source> | 9456 | <source>Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).</source> |
8649 | <target state="new">Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).</target> | 9457 | <target state="new">Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).</target> |
8650 | 9458 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">155</context></context-group> | |
8651 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">155</context></context-group></trans-unit> | 9459 | </trans-unit> |
8652 | <trans-unit id="380450014369168564" datatype="html"> | 9460 | <trans-unit id="380450014369168564" datatype="html"> |
8653 | <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> | 9461 | <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> |
8654 | <target state="new">Infringes your copyright wrt. the regional laws with which the server must comply.</target> | 9462 | <target state="new">Infringes your copyright wrt. the regional laws with which the server must comply.</target> |
8655 | 9463 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">160</context></context-group> | |
8656 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">160</context></context-group></trans-unit> | 9464 | </trans-unit> |
8657 | <trans-unit id="1378933246324202613" datatype="html"> | 9465 | <trans-unit id="1378933246324202613" datatype="html"> |
8658 | <source>Breaks server rules</source> | 9466 | <source>Breaks server rules</source> |
8659 | <target state="new">Breaks server rules</target> | 9467 | <target state="new">Breaks server rules</target> |
8660 | 9468 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">164</context></context-group> | |
8661 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">164</context></context-group></trans-unit> | 9469 | </trans-unit> |
8662 | <trans-unit id="7930601470861156366" datatype="html"> | 9470 | <trans-unit id="7930601470861156366" datatype="html"> |
8663 | <source>Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.</source> | 9471 | <source>Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.</source> |
8664 | <target state="new">Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.</target> | 9472 | <target state="new">Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.</target> |
8665 | 9473 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">165</context></context-group> | |
8666 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">165</context></context-group></trans-unit> | 9474 | </trans-unit> |
8667 | <trans-unit id="8700771664729810984" datatype="html"> | 9475 | <trans-unit id="8700771664729810984" datatype="html"> |
8668 | <source>The above can only be seen in thumbnails.</source> | 9476 | <source>The above can only be seen in thumbnails.</source> |
8669 | <target state="new">The above can only be seen in thumbnails.</target> | 9477 | <target state="new">The above can only be seen in thumbnails.</target> |
8670 | 9478 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">174</context></context-group> | |
8671 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> | 9479 | </trans-unit> |
8672 | <trans-unit id="2602773901491715295" datatype="html"> | 9480 | <trans-unit id="2602773901491715295" datatype="html"> |
8673 | <source>Captions</source> | 9481 | <source>Captions</source> |
8674 | <target state="new">Captions</target> | 9482 | <target state="new">Captions</target> |
8675 | 9483 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">178</context></context-group> | |
8676 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">178</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">28</context></context-group></trans-unit> | 9484 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">28</context></context-group> |
9485 | </trans-unit> | ||
8677 | <trans-unit id="5779804235244672536" datatype="html"> | 9486 | <trans-unit id="5779804235244672536" datatype="html"> |
8678 | <source>The above can only be seen in captions (please describe which).</source> | 9487 | <source>The above can only be seen in captions (please describe which).</source> |
8679 | <target state="new">The above can only be seen in captions (please describe which).</target> | 9488 | <target state="new">The above can only be seen in captions (please describe which).</target> |
8680 | 9489 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">179</context></context-group> | |
8681 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">179</context></context-group></trans-unit> | 9490 | </trans-unit> |
8682 | <trans-unit id="968295009933361070" datatype="html"> | 9491 | <trans-unit id="968295009933361070" datatype="html"> |
8683 | <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> | 9492 | <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> |
8684 | <target state="new">Too many attempts, please try again after | 9493 | <target state="new">Too many attempts, please try again after |
8685 | <x id="PH"/> minutes. | 9494 | <x id="PH"/> minutes. |
8686 | </target> | 9495 | </target> |
8687 | 9496 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">67</context></context-group> | |
8688 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 9497 | </trans-unit> |
8689 | <trans-unit id="4965472196059235310" datatype="html"> | 9498 | <trans-unit id="4965472196059235310" datatype="html"> |
8690 | <source>Too many attempts, please try again later.</source> | 9499 | <source>Too many attempts, please try again later.</source> |
8691 | <target state="new">Too many attempts, please try again later.</target> | 9500 | <target state="new">Too many attempts, please try again later.</target> |
8692 | 9501 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">69</context></context-group> | |
8693 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> | 9502 | </trans-unit> |
8694 | <trans-unit id="1693549688987384699" datatype="html"> | 9503 | <trans-unit id="1693549688987384699" datatype="html"> |
8695 | <source>Server error. Please retry later.</source> | 9504 | <source>Server error. Please retry later.</source> |
8696 | <target state="new">Server error. Please retry later.</target> | 9505 | <target state="new">Server error. Please retry later.</target> |
8697 | 9506 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">72</context></context-group> | |
8698 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 9507 | </trans-unit> |
8699 | <trans-unit id="5927402622550505067" datatype="html"> | 9508 | <trans-unit id="5927402622550505067" datatype="html"> |
8700 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> | 9509 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> |
8701 | <target state="new">Subscribed to all current channels of | 9510 | <target state="new">Subscribed to all current channels of |
8702 | <x id="PH"/>. You will be notified of all their new videos. | 9511 | <x id="PH"/>. You will be notified of all their new videos. |
8703 | </target> | 9512 | </target> |
8704 | 9513 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">109</context></context-group> | |
8705 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">109</context></context-group></trans-unit> | 9514 | </trans-unit> |
8706 | <trans-unit id="2780460651686172544" datatype="html"> | 9515 | <trans-unit id="2780460651686172544" datatype="html"> |
8707 | <source>Subscribed to <x id="PH"/>. You will be notified of all their new videos.</source> | 9516 | <source>Subscribed to <x id="PH"/>. You will be notified of all their new videos.</source> |
8708 | <target state="new">Subscribed to | 9517 | <target state="new">Subscribed to |
8709 | <x id="PH"/>. You will be notified of all their new videos. | 9518 | <x id="PH"/>. You will be notified of all their new videos. |
8710 | </target> | 9519 | </target> |
8711 | 9520 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">110</context></context-group> | |
8712 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">110</context></context-group></trans-unit> | 9521 | </trans-unit> |
8713 | <trans-unit id="7019115336138470191"> | 9522 | <trans-unit id="7019115336138470191"> |
8714 | <source>Subscribed</source> | 9523 | <source>Subscribed</source> |
8715 | <target>Abone olundu</target> | 9524 | <target>Abone olundu</target> |
8716 | 9525 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">112</context></context-group> | |
8717 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">112</context></context-group></trans-unit> | 9526 | </trans-unit> |
8718 | <trans-unit id="7070823964189404459" datatype="html"> | 9527 | <trans-unit id="7070823964189404459" datatype="html"> |
8719 | <source>Unsubscribed from all channels of <x id="PH"/> </source> | 9528 | <source>Unsubscribed from all channels of <x id="PH"/> </source> |
8720 | <target state="new">Unsubscribed from all channels of | 9529 | <target state="new">Unsubscribed from all channels of |
8721 | <x id="PH"/> | 9530 | <x id="PH"/> |
8722 | </target> | 9531 | </target> |
8723 | 9532 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">139</context></context-group> | |
8724 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9533 | </trans-unit> |
8725 | <trans-unit id="9201562016527884133" datatype="html"> | 9534 | <trans-unit id="9201562016527884133" datatype="html"> |
8726 | <source>Unsubscribed from <x id="PH"/> </source> | 9535 | <source>Unsubscribed from <x id="PH"/> </source> |
8727 | <target state="new">Unsubscribed from | 9536 | <target state="new">Unsubscribed from |
8728 | <x id="PH"/> | 9537 | <x id="PH"/> |
8729 | </target> | 9538 | </target> |
8730 | 9539 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">140</context></context-group> | |
8731 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">140</context></context-group></trans-unit> | 9540 | </trans-unit> |
8732 | <trans-unit id="516954136005961440" datatype="html"> | 9541 | <trans-unit id="516954136005961440" datatype="html"> |
8733 | <source>Unsubscribed</source> | 9542 | <source>Unsubscribed</source> |
8734 | <target state="new">Unsubscribed</target> | 9543 | <target state="new">Unsubscribed</target> |
8735 | 9544 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">142</context></context-group> | |
8736 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.ts</context><context context-type="linenumber">142</context></context-group></trans-unit><trans-unit id="0713f058de1d239f503a974e384eda384d35ad2b" datatype="html"> | 9545 | </trans-unit> |
8737 | <source>Multiple ways to subscribe to the current channel</source><target state="new">Multiple ways to subscribe to the current channel</target> | 9546 | <trans-unit id="0713f058de1d239f503a974e384eda384d35ad2b" datatype="html"> |
9547 | <source>Multiple ways to subscribe to the current channel</source> | ||
9548 | <target state="new">Multiple ways to subscribe to the current channel</target> | ||
8738 | <context-group purpose="location"> | 9549 | <context-group purpose="location"> |
8739 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 9550 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
8740 | <context context-type="linenumber">44</context> | 9551 | <context context-type="linenumber">44</context> |
8741 | </context-group> | 9552 | </context-group> |
8742 | </trans-unit><trans-unit id="29e51bac84b50b9a58ba54122663f31c82a504d5" datatype="html"> | 9553 | </trans-unit> |
8743 | <source>Open subscription dropdown</source><target state="new">Open subscription dropdown</target> | 9554 | <trans-unit id="29e51bac84b50b9a58ba54122663f31c82a504d5" datatype="html"> |
9555 | <source>Open subscription dropdown</source> | ||
9556 | <target state="new">Open subscription dropdown</target> | ||
8744 | <context-group purpose="location"> | 9557 | <context-group purpose="location"> |
8745 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 9558 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
8746 | <context context-type="linenumber">46</context> | 9559 | <context context-type="linenumber">46</context> |
@@ -8748,194 +9561,216 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8748 | </trans-unit> | 9561 | </trans-unit> |
8749 | <trans-unit id="4968151111061046122" datatype="html"> | 9562 | <trans-unit id="4968151111061046122" datatype="html"> |
8750 | <source>Moderator</source> | 9563 | <source>Moderator</source> |
8751 | <target state="new">Moderator</target> | 9564 | <target state="translated">Moderatör</target> |
8752 | 9565 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">394</context></context-group> | |
8753 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">394</context></context-group></trans-unit> | 9566 | </trans-unit> |
8754 | <trans-unit id="3723085768598852106" datatype="html"> | 9567 | <trans-unit id="3723085768598852106" datatype="html"> |
8755 | <source>Video removed from <x id="PH"/> </source> | 9568 | <source>Video removed from <x id="PH"/> </source> |
8756 | <target state="new">Video removed from | 9569 | <target state="new">Video removed from |
8757 | <x id="PH"/> | 9570 | <x id="PH"/> |
8758 | </target> | 9571 | </target> |
8759 | 9572 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">98</context></context-group> | |
8760 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">98</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">307</context></context-group></trans-unit> | 9573 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">307</context></context-group> |
9574 | </trans-unit> | ||
8761 | <trans-unit id="1056145626640340519" datatype="html"> | 9575 | <trans-unit id="1056145626640340519" datatype="html"> |
8762 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> | 9576 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> |
8763 | <target state="new">Video added in | 9577 | <target state="new">Video added in |
8764 | <x id="PH"/> at timestamps | 9578 | <x id="PH"/> at timestamps |
8765 | <x id="PH_1"/> | 9579 | <x id="PH_1"/> |
8766 | </target> | 9580 | </target> |
8767 | 9581 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">377</context></context-group> | |
8768 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">377</context></context-group></trans-unit> | 9582 | </trans-unit> |
8769 | <trans-unit id="7754186870520534716" datatype="html"> | 9583 | <trans-unit id="7754186870520534716" datatype="html"> |
8770 | <source>Video added in <x id="PH"/> </source> | 9584 | <source>Video added in <x id="PH"/> </source> |
8771 | <target state="new">Video added in | 9585 | <target state="new">Video added in |
8772 | <x id="PH"/> | 9586 | <x id="PH"/> |
8773 | </target> | 9587 | </target> |
8774 | 9588 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">378</context></context-group> | |
8775 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">378</context></context-group></trans-unit> | 9589 | </trans-unit> |
8776 | <trans-unit id="985751964589921228" datatype="html"> | 9590 | <trans-unit id="985751964589921228" datatype="html"> |
8777 | <source>Timestamps updated</source> | 9591 | <source>Timestamps updated</source> |
8778 | <target state="new">Timestamps updated</target> | 9592 | <target state="new">Timestamps updated</target> |
8779 | 9593 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">117</context></context-group> | |
8780 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">273</context></context-group></trans-unit> | 9594 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">273</context></context-group> |
9595 | </trans-unit> | ||
8781 | <trans-unit id="6421445850411984665" datatype="html"> | 9596 | <trans-unit id="6421445850411984665" datatype="html"> |
8782 | <source>Starts at</source> | 9597 | <source>Starts at</source> |
8783 | <target state="new">Starts at </target> | 9598 | <target state="new">Starts at </target> |
8784 | 9599 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">140</context></context-group> | |
8785 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">140</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">143</context></context-group></trans-unit> | 9600 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">143</context></context-group> |
9601 | </trans-unit> | ||
8786 | <trans-unit id="7145200412085189912" datatype="html"> | 9602 | <trans-unit id="7145200412085189912" datatype="html"> |
8787 | <source>Stops at</source> | 9603 | <source>Stops at</source> |
8788 | <target state="new">Stops at </target> | 9604 | <target state="new">Stops at </target> |
8789 | 9605 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">141</context></context-group> | |
8790 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">141</context></context-group></trans-unit> | 9606 | </trans-unit> |
8791 | <trans-unit id="921225940108335688" datatype="html"> | 9607 | <trans-unit id="921225940108335688" datatype="html"> |
8792 | <source>and stops at</source> | 9608 | <source>and stops at</source> |
8793 | <target state="new"> and stops at </target> | 9609 | <target state="new"> and stops at </target> |
8794 | 9610 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">143</context></context-group> | |
8795 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">143</context></context-group></trans-unit> | 9611 | </trans-unit> |
8796 | <trans-unit id="2909684945706361544" datatype="html"> | 9612 | <trans-unit id="2909684945706361544" datatype="html"> |
8797 | <source>Delete video</source> | 9613 | <source>Delete video</source> |
8798 | <target state="new">Delete video</target> | 9614 | <target state="translated">Videoyu sil</target> |
8799 | 9615 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">366</context></context-group> | |
8800 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">366</context></context-group></trans-unit> | 9616 | </trans-unit> |
8801 | <trans-unit id="2210418817778733727" datatype="html"> | 9617 | <trans-unit id="2210418817778733727" datatype="html"> |
8802 | <source>Actions for the comment</source> | 9618 | <source>Actions for the comment</source> |
8803 | <target state="new">Actions for the comment</target> | 9619 | <target state="new">Actions for the comment</target> |
8804 | 9620 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">395</context></context-group> | |
8805 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">395</context></context-group></trans-unit> | 9621 | </trans-unit> |
8806 | <trans-unit id="7978668497183230348" datatype="html"> | 9622 | <trans-unit id="7978668497183230348" datatype="html"> |
8807 | <source>Delete comment</source> | 9623 | <source>Delete comment</source> |
8808 | <target state="new">Delete comment</target> | 9624 | <target state="new">Delete comment</target> |
8809 | 9625 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">401</context></context-group> | |
8810 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">401</context></context-group></trans-unit> | 9626 | </trans-unit> |
8811 | <trans-unit id="6747218355168080191" datatype="html"> | 9627 | <trans-unit id="6747218355168080191" datatype="html"> |
8812 | <source>Do you really want to delete this comment?</source> | 9628 | <source>Do you really want to delete this comment?</source> |
8813 | <target state="new">Do you really want to delete this comment?</target> | 9629 | <target state="new">Do you really want to delete this comment?</target> |
8814 | 9630 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">405</context></context-group> | |
8815 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">405</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit> | 9631 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">168</context></context-group> |
9632 | </trans-unit> | ||
8816 | <trans-unit id="7837272126865175984" datatype="html"> | 9633 | <trans-unit id="7837272126865175984" datatype="html"> |
8817 | <source>Comment deleted.</source> | 9634 | <source>Comment deleted.</source> |
8818 | <target state="new">Comment deleted.</target> | 9635 | <target state="new">Comment deleted.</target> |
8819 | 9636 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">413</context></context-group> | |
8820 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">413</context></context-group></trans-unit> | 9637 | </trans-unit> |
8821 | <trans-unit id="346270517625845962" datatype="html"> | 9638 | <trans-unit id="346270517625845962" datatype="html"> |
8822 | <source>Encoder</source> | 9639 | <source>Encoder</source> |
8823 | <target state="new">Encoder</target> | 9640 | <target state="new">Encoder</target> |
8824 | 9641 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">145</context></context-group> | |
8825 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">145</context></context-group></trans-unit> | 9642 | </trans-unit> |
8826 | <trans-unit id="2331557444464201331" datatype="html"> | 9643 | <trans-unit id="2331557444464201331" datatype="html"> |
8827 | <source>Format name</source> | 9644 | <source>Format name</source> |
8828 | <target state="new">Format name</target> | 9645 | <target state="new">Format name</target> |
8829 | 9646 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">146</context></context-group> | |
8830 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">146</context></context-group></trans-unit> | 9647 | </trans-unit> |
8831 | <trans-unit id="45739481977493163" datatype="html"> | 9648 | <trans-unit id="45739481977493163" datatype="html"> |
8832 | <source>Size</source> | 9649 | <source>Size</source> |
8833 | <target state="new">Size</target> | 9650 | <target state="translated">Boyut</target> |
8834 | 9651 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">147</context></context-group> | |
8835 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">147</context></context-group></trans-unit> | 9652 | </trans-unit> |
8836 | <trans-unit id="7742520815129539114" datatype="html"> | 9653 | <trans-unit id="7742520815129539114" datatype="html"> |
8837 | <source>Bitrate</source> | 9654 | <source>Bitrate</source> |
8838 | <target state="new">Bitrate</target> | 9655 | <target state="new">Bitrate</target> |
8839 | 9656 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">149</context></context-group> | |
8840 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">149</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">172</context></context-group></trans-unit> | 9657 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">172</context></context-group> |
9658 | </trans-unit> | ||
8841 | <trans-unit id="4094960161662677662" datatype="html"> | 9659 | <trans-unit id="4094960161662677662" datatype="html"> |
8842 | <source>Codec</source> | 9660 | <source>Codec</source> |
8843 | <target state="new">Codec</target> | 9661 | <target state="new">Codec</target> |
8844 | 9662 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">169</context></context-group> | |
8845 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit> | 9663 | </trans-unit> |
8846 | <trans-unit id="2115592966120408375" datatype="html"> | 9664 | <trans-unit id="2115592966120408375" datatype="html"> |
8847 | <source>Copied</source> | 9665 | <source>Copied</source> |
8848 | <target state="new">Copied</target> | 9666 | <target state="new">Copied</target> |
8849 | 9667 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">47</context></context-group> | |
8850 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit><trans-unit id="1979da7460819153e11d2078244645d94291b69c" datatype="html"> | 9668 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">136</context></context-group> |
8851 | <source>Copy</source><target state="new">Copy</target> | 9669 | </trans-unit> |
8852 | 9670 | <trans-unit id="1979da7460819153e11d2078244645d94291b69c" datatype="html"> | |
8853 | 9671 | <source>Copy</source> | |
8854 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.html</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 9672 | <target state="new">Copy</target> |
9673 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.html</context><context context-type="linenumber">15</context></context-group> | ||
9674 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.html</context><context context-type="linenumber">15</context></context-group> | ||
9675 | </trans-unit> | ||
8855 | <trans-unit id="1472171759957681533" datatype="html"> | 9676 | <trans-unit id="1472171759957681533" datatype="html"> |
8856 | <source>Video reported.</source> | 9677 | <source>Video reported.</source> |
8857 | <target state="new">Video reported.</target> | 9678 | <target state="new">Video reported.</target> |
8858 | 9679 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.ts</context><context context-type="linenumber">110</context></context-group> | |
8859 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.ts</context><context context-type="linenumber">110</context></context-group></trans-unit> | 9680 | </trans-unit> |
8860 | <trans-unit id="3622946684246476652" datatype="html"> | 9681 | <trans-unit id="3622946684246476652" datatype="html"> |
8861 | <source>Do you really want to delete this video?</source> | 9682 | <source>Do you really want to delete this video?</source> |
8862 | <target state="new">Do you really want to delete this video?</target> | 9683 | <target state="new">Do you really want to delete this video?</target> |
8863 | 9684 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">203</context></context-group> | |
8864 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">203</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">370</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 9685 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">370</context></context-group> |
9686 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">78</context></context-group> | ||
9687 | </trans-unit> | ||
8865 | <trans-unit id="3941342949736653028" datatype="html"> | 9688 | <trans-unit id="3941342949736653028" datatype="html"> |
8866 | <source>Video deleted.</source> | 9689 | <source>Video deleted.</source> |
8867 | <target state="new">Video deleted.</target> | 9690 | <target state="translated">Video silindi.</target> |
8868 | 9691 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">378</context></context-group> | |
8869 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">378</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">86</context></context-group></trans-unit> | 9692 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">86</context></context-group> |
8870 | 9693 | </trans-unit> | |
8871 | |||
8872 | <trans-unit id="5072091387445907742" datatype="html"> | 9694 | <trans-unit id="5072091387445907742" datatype="html"> |
8873 | <source>Actions for the reporter</source> | 9695 | <source>Actions for the reporter</source> |
8874 | <target state="new">Actions for the reporter</target> | 9696 | <target state="new">Actions for the reporter</target> |
8875 | 9697 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">305</context></context-group> | |
8876 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">305</context></context-group></trans-unit> | 9698 | </trans-unit> |
8877 | <trans-unit id="6599069899275412095" datatype="html"> | 9699 | <trans-unit id="6599069899275412095" datatype="html"> |
8878 | <source>Mute reporter</source> | 9700 | <source>Mute reporter</source> |
8879 | <target state="new">Mute reporter</target> | 9701 | <target state="new">Mute reporter</target> |
8880 | 9702 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">311</context></context-group> | |
8881 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">311</context></context-group></trans-unit> | 9703 | </trans-unit> |
8882 | <trans-unit id="2990849907502572301" datatype="html"> | 9704 | <trans-unit id="2990849907502572301" datatype="html"> |
8883 | <source>This video will be duplicated by your instance.</source> | 9705 | <source>This video will be duplicated by your instance.</source> |
8884 | <target state="new">This video will be duplicated by your instance.</target> | 9706 | <target state="new">This video will be duplicated by your instance.</target> |
8885 | 9707 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group> | |
8886 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group></trans-unit> | 9708 | </trans-unit> |
8887 | <trans-unit id="3099741642167775297" datatype="html"> | 9709 | <trans-unit id="3099741642167775297" datatype="html"> |
8888 | <source>Download</source> | 9710 | <source>Download</source> |
8889 | <target state="new">Download</target> | 9711 | <target state="translated">İndir</target> |
8890 | 9712 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">272</context></context-group> | |
8891 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">272</context></context-group></trans-unit><trans-unit id="7672331870004528654" datatype="html"> | 9713 | </trans-unit> |
8892 | <source>Display live information</source><target state="new">Display live information</target> | 9714 | <trans-unit id="7672331870004528654" datatype="html"> |
8893 | 9715 | <source>Display live information</source> | |
8894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">161</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group></trans-unit> | 9716 | <target state="new">Display live information</target> |
9717 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">161</context></context-group> | ||
9718 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group> | ||
9719 | </trans-unit> | ||
8895 | <trans-unit id="4021752662928002901" datatype="html"> | 9720 | <trans-unit id="4021752662928002901" datatype="html"> |
8896 | <source>Update</source> | 9721 | <source>Update</source> |
8897 | <target state="new">Update</target> | 9722 | <target state="new">Update</target> |
8898 | 9723 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">110</context></context-group> | |
8899 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">110</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">284</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">146</context></context-group></trans-unit> | 9724 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">17</context></context-group> |
9725 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">22</context></context-group> | ||
9726 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">284</context></context-group> | ||
9727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">146</context></context-group> | ||
9728 | </trans-unit> | ||
8900 | <trans-unit id="420763834450076269" datatype="html"> | 9729 | <trans-unit id="420763834450076269" datatype="html"> |
8901 | <source>Block</source> | 9730 | <source>Block</source> |
8902 | <target state="new">Block</target> | 9731 | <target state="new">Block</target> |
8903 | 9732 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">290</context></context-group> | |
8904 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">290</context></context-group></trans-unit> | 9733 | </trans-unit> |
8905 | <trans-unit id="1950057220179636309" datatype="html"> | 9734 | <trans-unit id="1950057220179636309" datatype="html"> |
8906 | <source>Save to playlist</source> | 9735 | <source>Save to playlist</source> |
8907 | <target state="new">Save to playlist</target> | 9736 | <target state="new">Save to playlist</target> |
8908 | 9737 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">264</context></context-group> | |
8909 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">264</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit><trans-unit id="8272123190776748811" datatype="html"> | 9738 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">135</context></context-group> |
8910 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source><target state="new">You need to be <a href="/login">logged in</a> to rate this video.</target> | 9739 | </trans-unit> |
8911 | 9740 | <trans-unit id="8272123190776748811" datatype="html"> | |
8912 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">220</context></context-group></trans-unit> | 9741 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> |
9742 | <target state="new">You need to be <a href="/login">logged in</a> to rate this video.</target> | ||
9743 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">220</context></context-group> | ||
9744 | </trans-unit> | ||
8913 | <trans-unit id="4503408361537553733" datatype="html"> | 9745 | <trans-unit id="4503408361537553733" datatype="html"> |
8914 | <source>Mirror</source> | 9746 | <source>Mirror</source> |
8915 | <target state="new">Mirror</target> | 9747 | <target state="new">Mirror</target> |
8916 | 9748 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">302</context></context-group> | |
8917 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">302</context></context-group></trans-unit> | 9749 | </trans-unit> |
8918 | <trans-unit id="7008439939460403347" datatype="html"> | 9750 | <trans-unit id="7008439939460403347" datatype="html"> |
8919 | <source>Report</source> | 9751 | <source>Report</source> |
8920 | <target state="new">Report</target> | 9752 | <target state="new">Report</target> |
8921 | 9753 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">314</context></context-group> | |
8922 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">314</context></context-group></trans-unit> | 9754 | </trans-unit> |
8923 | <trans-unit id="4814285799071780083" datatype="html"> | 9755 | <trans-unit id="4814285799071780083" datatype="html"> |
8924 | <source>Remove</source> | 9756 | <source>Remove</source> |
8925 | <target state="new">Remove</target> | 9757 | <target state="new">Remove</target> |
8926 | 9758 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">181</context></context-group> | |
8927 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">181</context></context-group></trans-unit> | 9759 | </trans-unit> |
8928 | <trans-unit id="6871668720687277843" datatype="html"> | 9760 | <trans-unit id="6871668720687277843" datatype="html"> |
8929 | <source>Remove & re-draft</source> | 9761 | <source>Remove & re-draft</source> |
8930 | <target state="new">Remove & re-draft</target> | 9762 | <target state="new">Remove & re-draft</target> |
8931 | 9763 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">189</context></context-group> | |
8932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">189</context></context-group></trans-unit> | 9764 | </trans-unit> |
8933 | <trans-unit id="4903651219400691248" datatype="html"> | 9765 | <trans-unit id="4903651219400691248" datatype="html"> |
8934 | <source>Mute account</source> | 9766 | <source>Mute account</source> |
8935 | <target state="new">Mute account</target> | 9767 | <target state="new">Mute account</target> |
8936 | 9768 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">322</context></context-group> | |
8937 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">322</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">287</context></context-group></trans-unit><trans-unit id="9faa7899e515045c650407ca7263db6c7b6a90f9" datatype="html"> | 9769 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">287</context></context-group> |
8938 | <source>Open video actions</source><target state="new">Open video actions</target> | 9770 | </trans-unit> |
9771 | <trans-unit id="9faa7899e515045c650407ca7263db6c7b6a90f9" datatype="html"> | ||
9772 | <source>Open video actions</source> | ||
9773 | <target state="new">Open video actions</target> | ||
8939 | <context-group purpose="location"> | 9774 | <context-group purpose="location"> |
8940 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.html</context> | 9775 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.html</context> |
8941 | <context context-type="linenumber">4</context> | 9776 | <context context-type="linenumber">4</context> |
@@ -8948,120 +9783,126 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8948 | <trans-unit id="3719503424625455635" datatype="html"> | 9783 | <trans-unit id="3719503424625455635" datatype="html"> |
8949 | <source>Mute server account</source> | 9784 | <source>Mute server account</source> |
8950 | <target state="new">Mute server account</target> | 9785 | <target state="new">Mute server account</target> |
8951 | 9786 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">293</context></context-group> | |
8952 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">293</context></context-group></trans-unit> | 9787 | </trans-unit> |
8953 | <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a" datatype="html"> | 9788 | <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a" datatype="html"> |
8954 | <source>Report</source> | 9789 | <source>Report</source> |
8955 | <target state="new">Report</target> | 9790 | <target state="new">Report</target> |
8956 | 9791 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">65</context></context-group> | |
8957 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> | 9792 | </trans-unit> |
8958 | <trans-unit id="08a52c67462389568cf14a021ddecc0aedaa9613" datatype="html"> | 9793 | <trans-unit id="08a52c67462389568cf14a021ddecc0aedaa9613" datatype="html"> |
8959 | <source>Reported part</source> | 9794 | <source>Reported part</source> |
8960 | <target state="new">Reported part</target> | 9795 | <target state="new">Reported part</target> |
8961 | 9796 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">83</context></context-group> | |
8962 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 9797 | </trans-unit> |
8963 | <trans-unit id="5c54befce78d70e20c215f10a00e617245f53bc9" datatype="html"> | 9798 | <trans-unit id="5c54befce78d70e20c215f10a00e617245f53bc9" datatype="html"> |
8964 | <source>Note</source> | 9799 | <source>Note</source> |
8965 | <target state="new">Note</target> | 9800 | <target state="new">Note</target> |
8966 | 9801 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">90</context></context-group> | |
8967 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> | 9802 | </trans-unit> |
8968 | <trans-unit id="1d3402b0e60154aaa071f390c63437b701d9048c" datatype="html"> | 9803 | <trans-unit id="1d3402b0e60154aaa071f390c63437b701d9048c" datatype="html"> |
8969 | <source>The video was deleted</source> | 9804 | <source>The video was deleted</source> |
8970 | <target state="new">The video was deleted</target> | 9805 | <target state="translated">Bu video silinmiş</target> |
8971 | 9806 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">99</context></context-group> | |
8972 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">99</context></context-group></trans-unit> | 9807 | </trans-unit> |
8973 | <trans-unit id="96e41129ef5d2fa12b7a6ffcab608e9af04d8cbd" datatype="html"> | 9808 | <trans-unit id="96e41129ef5d2fa12b7a6ffcab608e9af04d8cbd" datatype="html"> |
8974 | <source>Comment:</source> | 9809 | <source>Comment:</source> |
8975 | <target state="new">Comment:</target> | 9810 | <target state="translated">Yorum:</target> |
8976 | 9811 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">105</context></context-group> | |
8977 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">105</context></context-group></trans-unit> | 9812 | </trans-unit> |
8978 | <trans-unit id="91e073459fc31b0fc1f6384aa9ad816f9f796de8" datatype="html"> | 9813 | <trans-unit id="91e073459fc31b0fc1f6384aa9ad816f9f796de8" datatype="html"> |
8979 | <source>Messages with the reporter</source> | 9814 | <source>Messages with the reporter</source> |
8980 | <target state="new">Messages with the reporter</target> | 9815 | <target state="new">Messages with the reporter</target> |
8981 | 9816 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context><context context-type="linenumber">4</context></context-group> | |
8982 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 9817 | </trans-unit> |
8983 | <trans-unit id="f0327abdde923ab7f56cf036a5bf6bc2546126c0" datatype="html"> | 9818 | <trans-unit id="f0327abdde923ab7f56cf036a5bf6bc2546126c0" datatype="html"> |
8984 | <source>Messages with the moderation team</source> | 9819 | <source>Messages with the moderation team</source> |
8985 | <target state="new">Messages with the moderation team</target> | 9820 | <target state="new">Messages with the moderation team</target> |
8986 | 9821 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context><context context-type="linenumber">5</context></context-group> | |
8987 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 9822 | </trans-unit> |
8988 | <trans-unit id="158f56a96d95d4ddcfe506aca64f754d01fa11b6" datatype="html"> | 9823 | <trans-unit id="158f56a96d95d4ddcfe506aca64f754d01fa11b6" datatype="html"> |
8989 | <source>No messages for now.</source> | 9824 | <source>No messages for now.</source> |
8990 | <target state="new"> | 9825 | <target state="new"> |
8991 | No messages for now. | 9826 | No messages for now. |
8992 | </target> | 9827 | </target> |
8993 | 9828 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context><context context-type="linenumber">28</context></context-group> | |
8994 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 9829 | </trans-unit> |
8995 | <trans-unit id="7d1344e3d4e8b1b30abaaf383945b4543d70b303" datatype="html"> | 9830 | <trans-unit id="7d1344e3d4e8b1b30abaaf383945b4543d70b303" datatype="html"> |
8996 | <source>Add a message</source> | 9831 | <source>Add a message</source> |
8997 | <target state="new">Add a message</target> | 9832 | <target state="new">Add a message</target> |
8998 | 9833 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context><context context-type="linenumber">44</context></context-group> | |
8999 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-message-modal.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> | 9834 | </trans-unit> |
9000 | <trans-unit id="4058575476871566236" datatype="html"> | 9835 | <trans-unit id="4058575476871566236" datatype="html"> |
9001 | <source>Published</source> | 9836 | <source>Published</source> |
9002 | <target state="new">Published</target> | 9837 | <target state="new">Published</target> |
9003 | 9838 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">162</context></context-group> | |
9004 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">162</context></context-group></trans-unit> | 9839 | </trans-unit> |
9005 | <trans-unit id="1747928867514972971" datatype="html"> | 9840 | <trans-unit id="1747928867514972971" datatype="html"> |
9006 | <source>Publication scheduled on</source> | 9841 | <source>Publication scheduled on</source> |
9007 | <target state="new">Publication scheduled on </target> | 9842 | <target state="new">Publication scheduled on </target> |
9008 | 9843 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">167</context></context-group> | |
9009 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">167</context></context-group></trans-unit> | 9844 | </trans-unit> |
9010 | <trans-unit id="4887724548587271148" datatype="html"> | 9845 | <trans-unit id="4887724548587271148" datatype="html"> |
9011 | <source>Waiting transcoding</source> | 9846 | <source>Waiting transcoding</source> |
9012 | <target state="new">Waiting transcoding</target> | 9847 | <target state="new">Waiting transcoding</target> |
9013 | 9848 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">171</context></context-group> | |
9014 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit> | 9849 | </trans-unit> |
9015 | <trans-unit id="4517785179607945981" datatype="html"> | 9850 | <trans-unit id="4517785179607945981" datatype="html"> |
9016 | <source>To transcode</source> | 9851 | <source>To transcode</source> |
9017 | <target state="new">To transcode</target> | 9852 | <target state="new">To transcode</target> |
9018 | 9853 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">175</context></context-group> | |
9019 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">175</context></context-group></trans-unit> | 9854 | </trans-unit> |
9020 | <trans-unit id="3299576663551440736" datatype="html"> | 9855 | <trans-unit id="3299576663551440736" datatype="html"> |
9021 | <source>To import</source> | 9856 | <source>To import</source> |
9022 | <target state="new">To import</target> | 9857 | <target state="new">To import</target> |
9023 | 9858 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">179</context></context-group> | |
9024 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">179</context></context-group></trans-unit> | 9859 | </trans-unit> |
9025 | <trans-unit id="1795705931707209785" datatype="html"> | 9860 | <trans-unit id="1795705931707209785" datatype="html"> |
9026 | <source>Add to watch later</source> | 9861 | <source>Add to watch later</source> |
9027 | <target state="new">Add to watch later</target> | 9862 | <target state="new">Add to watch later</target> |
9028 | 9863 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.ts</context><context context-type="linenumber">29</context></context-group> | |
9029 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.ts</context><context context-type="linenumber">29</context></context-group></trans-unit> | 9864 | </trans-unit> |
9030 | <trans-unit id="8498940878158860248" datatype="html"> | 9865 | <trans-unit id="8498940878158860248" datatype="html"> |
9031 | <source>Remove from watch later</source> | 9866 | <source>Remove from watch later</source> |
9032 | <target state="new">Remove from watch later</target> | 9867 | <target state="new">Remove from watch later</target> |
9033 | 9868 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.ts</context><context context-type="linenumber">30</context></context-group> | |
9034 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.ts</context><context context-type="linenumber">30</context></context-group></trans-unit><trans-unit id="a2adc8b3bb63e13ff7adf65469f356b692bd294b" datatype="html"> | 9869 | </trans-unit> |
9035 | <source>LIVE ENDED</source><target state="new">LIVE ENDED</target> | 9870 | <trans-unit id="a2adc8b3bb63e13ff7adf65469f356b692bd294b" datatype="html"> |
9036 | 9871 | <source>LIVE ENDED</source> | |
9037 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 9872 | <target state="new">LIVE ENDED</target> |
9873 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">32</context></context-group> | ||
9874 | </trans-unit> | ||
9038 | <trans-unit id="2439066254855913806" datatype="html"> | 9875 | <trans-unit id="2439066254855913806" datatype="html"> |
9039 | <source>Only I can see this video</source> | 9876 | <source>Only I can see this video</source> |
9040 | <target state="new">Only I can see this video</target> | 9877 | <target state="new">Only I can see this video</target> |
9041 | 9878 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">375</context></context-group> | |
9042 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">375</context></context-group></trans-unit> | 9879 | </trans-unit> |
9043 | <trans-unit id="6767380569816110388" datatype="html"> | 9880 | <trans-unit id="6767380569816110388" datatype="html"> |
9044 | <source>Only shareable via a private link</source> | 9881 | <source>Only shareable via a private link</source> |
9045 | <target state="new">Only shareable via a private link</target> | 9882 | <target state="new">Only shareable via a private link</target> |
9046 | 9883 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">379</context></context-group> | |
9047 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">379</context></context-group></trans-unit> | 9884 | </trans-unit> |
9048 | <trans-unit id="6828965264297239528" datatype="html"> | 9885 | <trans-unit id="6828965264297239528" datatype="html"> |
9049 | <source>Anyone can see this video</source> | 9886 | <source>Anyone can see this video</source> |
9050 | <target state="new">Anyone can see this video</target> | 9887 | <target state="translated">Herkes bu videoyu görebilir</target> |
9051 | 9888 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">383</context></context-group> | |
9052 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> | 9889 | </trans-unit> |
9053 | <trans-unit id="1425933035739773115" datatype="html"> | 9890 | <trans-unit id="1425933035739773115" datatype="html"> |
9054 | <source>Only users of this instance can see this video</source> | 9891 | <source>Only users of this instance can see this video</source> |
9055 | <target state="new">Only users of this instance can see this video</target> | 9892 | <target state="new">Only users of this instance can see this video</target> |
9056 | 9893 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">387</context></context-group> | |
9057 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">387</context></context-group></trans-unit><trans-unit id="8312101634344200207" datatype="html"> | 9894 | </trans-unit> |
9058 | <source><x id="PH" equiv-text="this.views"/> viewers</source><target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | 9895 | <trans-unit id="8312101634344200207" datatype="html"> |
9896 | <source><x id="PH" equiv-text="this.views"/> viewers</source> | ||
9897 | <target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | ||
9059 | <context-group purpose="location"> | 9898 | <context-group purpose="location"> |
9060 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | 9899 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> |
9061 | <context context-type="linenumber">211</context> | 9900 | <context context-type="linenumber">211</context> |
9062 | </context-group> | 9901 | </context-group> |
9063 | </trans-unit><trans-unit id="7756087706411154095" datatype="html"> | 9902 | </trans-unit> |
9064 | <source><x id="PH" equiv-text="this.views"/> views</source><target state="new"><x id="PH" equiv-text="this.views"/> views</target> | 9903 | <trans-unit id="7756087706411154095" datatype="html"> |
9904 | <source><x id="PH" equiv-text="this.views"/> views</source> | ||
9905 | <target state="new"><x id="PH" equiv-text="this.views"/> views</target> | ||
9065 | <context-group purpose="location"> | 9906 | <context-group purpose="location"> |
9066 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> | 9907 | <context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context> |
9067 | <context context-type="linenumber">214</context> | 9908 | <context context-type="linenumber">214</context> |
@@ -9070,11 +9911,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9070 | <trans-unit id="ngb.alert.close" datatype="html"> | 9911 | <trans-unit id="ngb.alert.close" datatype="html"> |
9071 | <source>Close</source> | 9912 | <source>Close</source> |
9072 | <target state="new">Close</target> | 9913 | <target state="new">Close</target> |
9073 | 9914 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group> | |
9074 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> | 9915 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">70</context></context-group> |
9075 | <source> Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); | 9916 | </trans-unit> |
9076 | p"/> </source><target state="new"> Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); | 9917 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> |
9077 | p"/> </target> | 9918 | <source>Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </source> |
9919 | <target state="new"> Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </target> | ||
9078 | <context-group purpose="location"> | 9920 | <context-group purpose="location"> |
9079 | <context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context> | 9921 | <context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context> |
9080 | <context context-type="linenumber">114,118</context> | 9922 | <context context-type="linenumber">114,118</context> |
@@ -9083,394 +9925,399 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9083 | </trans-unit> | 9925 | </trans-unit> |
9084 | <trans-unit id="ngb.carousel.previous" datatype="html"> | 9926 | <trans-unit id="ngb.carousel.previous" datatype="html"> |
9085 | <source>Previous</source> | 9927 | <source>Previous</source> |
9086 | <target state="new">Previous</target> | 9928 | <target state="translated">Önceki</target> |
9087 | 9929 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">132</context></context-group> | |
9088 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">132</context></context-group></trans-unit> | 9930 | </trans-unit> |
9089 | <trans-unit id="ngb.carousel.next" datatype="html"> | 9931 | <trans-unit id="ngb.carousel.next" datatype="html"> |
9090 | <source>Next</source> | 9932 | <source>Next</source> |
9091 | <target state="new">Next</target> | 9933 | <target state="translated">Sonraki</target> |
9092 | 9934 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">147</context></context-group> | |
9093 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">147</context></context-group></trans-unit> | 9935 | </trans-unit> |
9094 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> | 9936 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> |
9095 | <source>Previous month</source> | 9937 | <source>Previous month</source> |
9096 | <target state="new">Previous month</target> | 9938 | <target state="translated">Geçen ay</target> |
9097 | 9939 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">24</context></context-group> | |
9098 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 9940 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">34</context></context-group> |
9941 | </trans-unit> | ||
9099 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> | 9942 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> |
9100 | <source>Next month</source> | 9943 | <source>Next month</source> |
9101 | <target state="new">Next month</target> | 9944 | <target state="translated">Gelecek ay</target> |
9102 | 9945 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">44</context></context-group> | |
9103 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> | 9946 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">57</context></context-group> |
9947 | </trans-unit> | ||
9104 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> | 9948 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> |
9105 | <source>Select month</source> | 9949 | <source>Select month</source> |
9106 | <target state="new">Select month</target> | 9950 | <target state="translated">Ay seçin</target> |
9107 | 9951 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">44</context></context-group> | |
9108 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 9952 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">49</context></context-group> |
9953 | </trans-unit> | ||
9109 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> | 9954 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> |
9110 | <source>Select year</source> | 9955 | <source>Select year</source> |
9111 | <target state="new">Select year</target> | 9956 | <target state="translated">Yıl seçin</target> |
9112 | 9957 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">59</context></context-group> | |
9113 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">59</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 9958 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">72</context></context-group> |
9959 | </trans-unit> | ||
9114 | <trans-unit id="ngb.pagination.first" datatype="html"> | 9960 | <trans-unit id="ngb.pagination.first" datatype="html"> |
9115 | <source>««</source> | 9961 | <source>««</source> |
9116 | <target state="new">««</target> | 9962 | <target state="new">««</target> |
9117 | 9963 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">147</context></context-group> | |
9118 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">147</context></context-group></trans-unit> | 9964 | </trans-unit> |
9119 | <trans-unit id="ngb.pagination.previous" datatype="html"> | 9965 | <trans-unit id="ngb.pagination.previous" datatype="html"> |
9120 | <source>«</source> | 9966 | <source>«</source> |
9121 | <target state="new">«</target> | 9967 | <target state="new">«</target> |
9122 | 9968 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">153</context></context-group> | |
9123 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">153</context></context-group></trans-unit> | 9969 | </trans-unit> |
9124 | <trans-unit id="ngb.pagination.next" datatype="html"> | 9970 | <trans-unit id="ngb.pagination.next" datatype="html"> |
9125 | <source>»</source> | 9971 | <source>»</source> |
9126 | <target state="new">»</target> | 9972 | <target state="new">»</target> |
9127 | 9973 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">158</context></context-group> | |
9128 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">158</context></context-group></trans-unit> | 9974 | </trans-unit> |
9129 | <trans-unit id="ngb.pagination.last" datatype="html"> | 9975 | <trans-unit id="ngb.pagination.last" datatype="html"> |
9130 | <source>»»</source> | 9976 | <source>»»</source> |
9131 | <target state="new">»»</target> | 9977 | <target state="new">»»</target> |
9132 | 9978 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">164</context></context-group> | |
9133 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">164</context></context-group></trans-unit> | 9979 | </trans-unit> |
9134 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> | 9980 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> |
9135 | <source>First</source> | 9981 | <source>First</source> |
9136 | <target state="new">First</target> | 9982 | <target state="translated">İlk</target> |
9137 | 9983 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">168</context></context-group> | |
9138 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">168</context></context-group></trans-unit> | 9984 | </trans-unit> |
9139 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> | 9985 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> |
9140 | <source>Previous</source> | 9986 | <source>Previous</source> |
9141 | <target state="new">Previous</target> | 9987 | <target state="translated">Önceki</target> |
9142 | 9988 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">176</context></context-group> | |
9143 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">176</context></context-group></trans-unit> | 9989 | </trans-unit> |
9144 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> | 9990 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> |
9145 | <source>Next</source> | 9991 | <source>Next</source> |
9146 | <target state="new">Next</target> | 9992 | <target state="translated">Sonraki</target> |
9147 | 9993 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">188</context></context-group> | |
9148 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">188</context></context-group></trans-unit> | 9994 | </trans-unit> |
9149 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> | 9995 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> |
9150 | <source>Last</source> | 9996 | <source>Last</source> |
9151 | <target state="new">Last</target> | 9997 | <target state="translated">Son</target> |
9152 | 9998 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">195</context></context-group> | |
9153 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> | 9999 | </trans-unit> |
9154 | <trans-unit id="ngb.progressbar.value" datatype="html"> | 10000 | <trans-unit id="ngb.progressbar.value" datatype="html"> |
9155 | <source><x id="INTERPOLATION"/></source> | 10001 | <source><x id="INTERPOLATION"/></source> |
9156 | <target state="new"><x id="INTERPOLATION"/></target> | 10002 | <target state="translated"><x id="INTERPOLATION"/></target> |
9157 | 10003 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/progressbar/progressbar.ts</context><context context-type="linenumber">31</context></context-group> | |
9158 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/progressbar/progressbar.ts</context><context context-type="linenumber">31</context></context-group></trans-unit> | 10004 | </trans-unit> |
9159 | <trans-unit id="ngb.timepicker.HH" datatype="html"> | 10005 | <trans-unit id="ngb.timepicker.HH" datatype="html"> |
9160 | <source>HH</source> | 10006 | <source>HH</source> |
9161 | <target state="new">HH</target> | 10007 | <target state="new">HH</target> |
9162 | 10008 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">46</context></context-group> | |
9163 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 10009 | </trans-unit> |
9164 | <trans-unit id="ngb.timepicker.hours" datatype="html"> | 10010 | <trans-unit id="ngb.timepicker.hours" datatype="html"> |
9165 | <source>Hours</source> | 10011 | <source>Hours</source> |
9166 | <target state="new">Hours</target> | 10012 | <target state="translated">Saat</target> |
9167 | 10013 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">50</context></context-group> | |
9168 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> | 10014 | </trans-unit> |
9169 | <trans-unit id="ngb.timepicker.MM" datatype="html"> | 10015 | <trans-unit id="ngb.timepicker.MM" datatype="html"> |
9170 | <source>MM</source> | 10016 | <source>MM</source> |
9171 | <target state="new">MM</target> | 10017 | <target state="new">MM</target> |
9172 | 10018 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">55</context></context-group> | |
9173 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> | 10019 | </trans-unit> |
9174 | <trans-unit id="ngb.timepicker.minutes" datatype="html"> | 10020 | <trans-unit id="ngb.timepicker.minutes" datatype="html"> |
9175 | <source>Minutes</source> | 10021 | <source>Minutes</source> |
9176 | <target state="new">Minutes</target> | 10022 | <target state="translated">Dakika</target> |
9177 | 10023 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">62</context></context-group> | |
9178 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">62</context></context-group></trans-unit> | 10024 | </trans-unit> |
9179 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | 10025 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> |
9180 | <source>Increment hours</source> | 10026 | <source>Increment hours</source> |
9181 | <target state="new">Increment hours</target> | 10027 | <target state="new">Increment hours</target> |
9182 | 10028 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">68</context></context-group> | |
9183 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">68</context></context-group></trans-unit> | 10029 | </trans-unit> |
9184 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | 10030 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> |
9185 | <source>Decrement hours</source> | 10031 | <source>Decrement hours</source> |
9186 | <target state="new">Decrement hours</target> | 10032 | <target state="new">Decrement hours</target> |
9187 | 10033 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">73</context></context-group> | |
9188 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">73</context></context-group></trans-unit> | 10034 | </trans-unit> |
9189 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | 10035 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> |
9190 | <source>Increment minutes</source> | 10036 | <source>Increment minutes</source> |
9191 | <target state="new">Increment minutes</target> | 10037 | <target state="new">Increment minutes</target> |
9192 | 10038 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">80</context></context-group> | |
9193 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 10039 | </trans-unit> |
9194 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | 10040 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> |
9195 | <source>Decrement minutes</source> | 10041 | <source>Decrement minutes</source> |
9196 | <target state="new">Decrement minutes</target> | 10042 | <target state="new">Decrement minutes</target> |
9197 | 10043 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">86</context></context-group> | |
9198 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">86</context></context-group></trans-unit> | 10044 | </trans-unit> |
9199 | <trans-unit id="ngb.timepicker.SS" datatype="html"> | 10045 | <trans-unit id="ngb.timepicker.SS" datatype="html"> |
9200 | <source>SS</source> | 10046 | <source>SS</source> |
9201 | <target state="new">SS</target> | 10047 | <target state="new">SS</target> |
9202 | 10048 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">91</context></context-group> | |
9203 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">91</context></context-group></trans-unit> | 10049 | </trans-unit> |
9204 | <trans-unit id="ngb.timepicker.seconds" datatype="html"> | 10050 | <trans-unit id="ngb.timepicker.seconds" datatype="html"> |
9205 | <source>Seconds</source> | 10051 | <source>Seconds</source> |
9206 | <target state="new">Seconds</target> | 10052 | <target state="translated">Saniye</target> |
9207 | 10053 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">96</context></context-group> | |
9208 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">96</context></context-group></trans-unit> | 10054 | </trans-unit> |
9209 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | 10055 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> |
9210 | <source>Increment seconds</source> | 10056 | <source>Increment seconds</source> |
9211 | <target state="new">Increment seconds</target> | 10057 | <target state="new">Increment seconds</target> |
9212 | 10058 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">103</context></context-group> | |
9213 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | 10059 | </trans-unit> |
9214 | <trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | 10060 | <trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> |
9215 | <source>Decrement seconds</source> | 10061 | <source>Decrement seconds</source> |
9216 | <target state="new">Decrement seconds</target> | 10062 | <target state="new">Decrement seconds</target> |
9217 | 10063 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">109</context></context-group> | |
9218 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">109</context></context-group></trans-unit> | 10064 | </trans-unit> |
9219 | <trans-unit id="ngb.timepicker.PM" datatype="html"> | 10065 | <trans-unit id="ngb.timepicker.PM" datatype="html"> |
9220 | <source><x id="INTERPOLATION"/></source> | 10066 | <source><x id="INTERPOLATION"/></source> |
9221 | <target state="new"><x id="INTERPOLATION"/></target> | 10067 | <target state="new"><x id="INTERPOLATION"/></target> |
9222 | 10068 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">131</context></context-group> | |
9223 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">131</context></context-group></trans-unit> | 10069 | </trans-unit> |
9224 | <trans-unit id="ngb.timepicker.AM" datatype="html"> | 10070 | <trans-unit id="ngb.timepicker.AM" datatype="html"> |
9225 | <source><x id="INTERPOLATION"/></source> | 10071 | <source><x id="INTERPOLATION"/></source> |
9226 | <target state="new"><x id="INTERPOLATION"/></target> | 10072 | <target state="new"><x id="INTERPOLATION"/></target> |
9227 | 10073 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">154</context></context-group> | |
9228 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">154</context></context-group></trans-unit> | 10074 | </trans-unit> |
9229 | <trans-unit id="ngb.toast.close-aria" datatype="html"> | 10075 | <trans-unit id="ngb.toast.close-aria" datatype="html"> |
9230 | <source>Close</source> | 10076 | <source>Close</source> |
9231 | <target state="new">Close</target> | 10077 | <target state="new">Close</target> |
9232 | 10078 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/toast/toast.ts</context><context context-type="linenumber">78</context></context-group> | |
9233 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/toast/toast.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 10079 | </trans-unit> |
9234 | <trans-unit id="5210096066382592800" datatype="html"> | 10080 | <trans-unit id="5210096066382592800" datatype="html"> |
9235 | <source>Video to import updated.</source> | 10081 | <source>Video to import updated.</source> |
9236 | <target state="new">Video to import updated.</target> | 10082 | <target state="new">Video to import updated.</target> |
9237 | 10083 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts</context><context context-type="linenumber">130</context></context-group> | |
9238 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts</context><context context-type="linenumber">130</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts</context><context context-type="linenumber">140</context></context-group></trans-unit> | 10084 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts</context><context context-type="linenumber">140</context></context-group> |
10085 | </trans-unit> | ||
9239 | <trans-unit id="3284171506518522275" datatype="html"> | 10086 | <trans-unit id="3284171506518522275" datatype="html"> |
9240 | <source>Your video was uploaded to your account and is private.</source> | 10087 | <source>Your video was uploaded to your account and is private.</source> |
9241 | <target state="new">Your video was uploaded to your account and is private.</target> | 10088 | <target state="new">Your video was uploaded to your account and is private.</target> |
9242 | 10089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">92</context></context-group> | |
9243 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 10090 | </trans-unit> |
9244 | <trans-unit id="5699822024600815733" datatype="html"> | 10091 | <trans-unit id="5699822024600815733" datatype="html"> |
9245 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10092 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
9246 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> | 10093 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> |
9247 | 10094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">93</context></context-group> | |
9248 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">93</context></context-group></trans-unit> | 10095 | </trans-unit> |
9249 | <trans-unit id="1219739004043110649" datatype="html"> | 10096 | <trans-unit id="1219739004043110649" datatype="html"> |
9250 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10097 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
9251 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> | 10098 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> |
9252 | 10099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">95</context></context-group> | |
9253 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">95</context></context-group></trans-unit> | 10100 | </trans-unit> |
9254 | <trans-unit id="6932865105766151309" datatype="html"> | 10101 | <trans-unit id="6932865105766151309" datatype="html"> |
9255 | <source>Upload</source> | 10102 | <source>Upload</source> |
9256 | <target state="new">Upload</target> | 10103 | <target state="new">Upload</target> |
9257 | 10104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">115</context></context-group> | |
9258 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">115</context></context-group></trans-unit> | 10105 | </trans-unit> |
9259 | <trans-unit id="8278735427925094503" datatype="html"> | 10106 | <trans-unit id="8278735427925094503" datatype="html"> |
9260 | <source>Upload <x id="PH"/> </source> | 10107 | <source>Upload <x id="PH"/> </source> |
9261 | <target state="new">Upload | 10108 | <target state="new">Upload |
9262 | <x id="PH"/> | 10109 | <x id="PH"/> |
9263 | </target> | 10110 | </target> |
9264 | 10111 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">117</context></context-group> | |
9265 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">117</context></context-group></trans-unit> | 10112 | </trans-unit> |
9266 | <trans-unit id="1964265829892160232" datatype="html"> | 10113 | <trans-unit id="1964265829892160232" datatype="html"> |
9267 | <source>Upload cancelled</source> | 10114 | <source>Upload cancelled</source> |
9268 | <target state="new">Upload cancelled</target> | 10115 | <target state="new">Upload cancelled</target> |
9269 | 10116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">143</context></context-group> | |
9270 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">143</context></context-group></trans-unit> | 10117 | </trans-unit> |
9271 | <trans-unit id="5981816353437801748" datatype="html"> | 10118 | <trans-unit id="5981816353437801748" datatype="html"> |
9272 | <source>Video published.</source> | 10119 | <source>Video published.</source> |
9273 | <target state="new">Video published.</target> | 10120 | <target state="new">Video published.</target> |
9274 | 10121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">267</context></context-group> | |
9275 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">267</context></context-group></trans-unit> | 10122 | </trans-unit> |
9276 | <trans-unit id="5297709903228580202" datatype="html"> | 10123 | <trans-unit id="5297709903228580202" datatype="html"> |
9277 | <source>Your video quota is exceeded with this video ( | 10124 | <source>Your video quota is exceeded with this video ( video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> |
9278 | video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | ||
9279 | <target state="new">Your video quota is exceeded with this video ( | 10125 | <target state="new">Your video quota is exceeded with this video ( |
9280 | video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | 10126 | video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> |
9281 | 10127 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">289</context></context-group> | |
9282 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 10128 | </trans-unit> |
9283 | <trans-unit id="1267976082314717617" datatype="html"> | 10129 | <trans-unit id="1267976082314717617" datatype="html"> |
9284 | <source>Your daily video quota is exceeded with this video ( | 10130 | <source>Your daily video quota is exceeded with this video ( video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> |
9285 | video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | ||
9286 | <target state="new">Your daily video quota is exceeded with this video ( | 10131 | <target state="new">Your daily video quota is exceeded with this video ( |
9287 | video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | 10132 | video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> |
9288 | 10133 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">309</context></context-group> | |
9289 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">309</context></context-group></trans-unit> | 10134 | </trans-unit> |
9290 | <trans-unit id="764164089183618119" datatype="html"> | 10135 | <trans-unit id="764164089183618119" datatype="html"> |
9291 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 10136 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
9292 | <target state="new">You have unsaved changes! If you leave, your changes will be lost.</target> | 10137 | <target state="new">You have unsaved changes! If you leave, your changes will be lost.</target> |
9293 | 10138 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">94</context></context-group> | |
9294 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> | 10139 | </trans-unit> |
9295 | <trans-unit id="8306050839443016954" datatype="html"> | 10140 | <trans-unit id="8306050839443016954" datatype="html"> |
9296 | <source>Video updated.</source> | 10141 | <source>Video updated.</source> |
9297 | <target state="new">Video updated.</target> | 10142 | <target state="new">Video updated.</target> |
9298 | 10143 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">142</context></context-group> | |
9299 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">142</context></context-group></trans-unit> | 10144 | </trans-unit> |
9300 | <trans-unit id="5512208811126492983" datatype="html"> | 10145 | <trans-unit id="5512208811126492983" datatype="html"> |
9301 | <source>Report comment</source> | 10146 | <source>Report comment</source> |
9302 | <target state="new">Report comment</target> | 10147 | <target state="new">Report comment</target> |
9303 | 10148 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group> | |
9304 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 10149 | </trans-unit> |
9305 | <trans-unit id="3691787517663044217" datatype="html"> | 10150 | <trans-unit id="3691787517663044217" datatype="html"> |
9306 | <source>The deletion will be sent to remote instances so they can reflect the change.</source> | 10151 | <source>The deletion will be sent to remote instances so they can reflect the change.</source> |
9307 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 10152 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
9308 | 10153 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group> | |
9309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit> | 10154 | </trans-unit> |
9310 | <trans-unit id="7321800851971795962" datatype="html"> | 10155 | <trans-unit id="7321800851971795962" datatype="html"> |
9311 | <source>It is a remote comment, so the deletion will only be effective on your instance.</source> | 10156 | <source>It is a remote comment, so the deletion will only be effective on your instance.</source> |
9312 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 10157 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
9313 | 10158 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">173</context></context-group> | |
9314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 10159 | </trans-unit> |
9315 | <trans-unit id="5964038603724691720" datatype="html"> | 10160 | <trans-unit id="5964038603724691720" datatype="html"> |
9316 | <source>Delete and re-draft</source> | 10161 | <source>Delete and re-draft</source> |
9317 | <target state="new">Delete and re-draft</target> | 10162 | <target state="new">Delete and re-draft</target> |
9318 | 10163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">199</context></context-group> | |
9319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">199</context></context-group></trans-unit> | 10164 | </trans-unit> |
9320 | <trans-unit id="7163633882758007711" datatype="html"> | 10165 | <trans-unit id="7163633882758007711" datatype="html"> |
9321 | <source>Do you really want to delete and re-draft this comment?</source> | 10166 | <source>Do you really want to delete and re-draft this comment?</source> |
9322 | <target state="new">Do you really want to delete and re-draft this comment?</target> | 10167 | <target state="new">Do you really want to delete and re-draft this comment?</target> |
9323 | 10168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">199</context></context-group> | |
9324 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">199</context></context-group></trans-unit> | 10169 | </trans-unit> |
9325 | <trans-unit id="6775540171466219199" datatype="html"> | 10170 | <trans-unit id="6775540171466219199" datatype="html"> |
9326 | <source>Stop autoplaying next video</source> | 10171 | <source>Stop autoplaying next video</source> |
9327 | <target state="new">Stop autoplaying next video</target> | 10172 | <target state="new">Stop autoplaying next video</target> |
9328 | 10173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">203</context></context-group> | |
9329 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">203</context></context-group></trans-unit> | 10174 | </trans-unit> |
9330 | <trans-unit id="5149234672404299151" datatype="html"> | 10175 | <trans-unit id="5149234672404299151" datatype="html"> |
9331 | <source>Autoplay next video</source> | 10176 | <source>Autoplay next video</source> |
9332 | <target state="new">Autoplay next video</target> | 10177 | <target state="new">Autoplay next video</target> |
9333 | 10178 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">204</context></context-group> | |
9334 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">204</context></context-group></trans-unit> | 10179 | </trans-unit> |
9335 | <trans-unit id="5870421136141540382" datatype="html"> | 10180 | <trans-unit id="5870421136141540382" datatype="html"> |
9336 | <source>Stop looping playlist videos</source> | 10181 | <source>Stop looping playlist videos</source> |
9337 | <target state="new">Stop looping playlist videos</target> | 10182 | <target state="new">Stop looping playlist videos</target> |
9338 | 10183 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">209</context></context-group> | |
9339 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">209</context></context-group></trans-unit> | 10184 | </trans-unit> |
9340 | <trans-unit id="1599585307037758139" datatype="html"> | 10185 | <trans-unit id="1599585307037758139" datatype="html"> |
9341 | <source>Loop playlist videos</source> | 10186 | <source>Loop playlist videos</source> |
9342 | <target state="new">Loop playlist videos</target> | 10187 | <target state="new">Loop playlist videos</target> |
9343 | 10188 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">210</context></context-group> | |
9344 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch-playlist.component.ts</context><context context-type="linenumber">210</context></context-group></trans-unit> | 10189 | </trans-unit> |
9345 | |||
9346 | <trans-unit id="961774488937452220" datatype="html"> | 10190 | <trans-unit id="961774488937452220" datatype="html"> |
9347 | <source>This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</source> | 10191 | <source>This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</source> |
9348 | <target state="new">This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</target> | 10192 | <target state="new">This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</target> |
9349 | 10193 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">415</context></context-group> | |
9350 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">415</context></context-group></trans-unit> | 10194 | </trans-unit> |
9351 | <trans-unit id="5761611056224181752" datatype="html"> | 10195 | <trans-unit id="5761611056224181752" datatype="html"> |
9352 | <source>Redirection</source> | 10196 | <source>Redirection</source> |
9353 | <target state="new">Redirection</target> | 10197 | <target state="new">Redirection</target> |
9354 | 10198 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">416</context></context-group> | |
9355 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">416</context></context-group></trans-unit> | 10199 | </trans-unit> |
9356 | <trans-unit id="8858527736400081688" datatype="html"> | 10200 | <trans-unit id="8858527736400081688" datatype="html"> |
9357 | <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> | 10201 | <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> |
9358 | <target state="new">This video contains mature or explicit content. Are you sure you want to watch it?</target> | 10202 | <target state="new">This video contains mature or explicit content. Are you sure you want to watch it?</target> |
9359 | 10203 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">547</context></context-group> | |
9360 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">547</context></context-group></trans-unit> | 10204 | </trans-unit> |
9361 | <trans-unit id="3937119019020041049" datatype="html"> | 10205 | <trans-unit id="3937119019020041049" datatype="html"> |
9362 | <source>Mature or explicit content</source> | 10206 | <source>Mature or explicit content</source> |
9363 | <target state="new">Mature or explicit content</target> | 10207 | <target state="new">Mature or explicit content</target> |
9364 | 10208 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">548</context></context-group> | |
9365 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">548</context></context-group></trans-unit> | 10209 | </trans-unit> |
9366 | <trans-unit id="1755474755114288376" datatype="html"> | 10210 | <trans-unit id="1755474755114288376" datatype="html"> |
9367 | <source>Up Next</source> | 10211 | <source>Up Next</source> |
9368 | <target state="new">Up Next</target> | 10212 | <target state="new">Up Next</target> |
9369 | 10213 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">600</context></context-group> | |
9370 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">600</context></context-group></trans-unit> | 10214 | </trans-unit> |
9371 | <trans-unit id="2159130950882492111" datatype="html"> | 10215 | <trans-unit id="2159130950882492111" datatype="html"> |
9372 | <source>Cancel</source> | 10216 | <source>Cancel</source> |
9373 | <target state="new">Cancel</target> | 10217 | <target state="new">Cancel</target> |
9374 | 10218 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">601</context></context-group> | |
9375 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">601</context></context-group></trans-unit> | 10219 | </trans-unit> |
9376 | <trans-unit id="3354816756665089864" datatype="html"> | 10220 | <trans-unit id="3354816756665089864" datatype="html"> |
9377 | <source>Autoplay is suspended</source> | 10221 | <source>Autoplay is suspended</source> |
9378 | <target state="new">Autoplay is suspended</target> | 10222 | <target state="new">Autoplay is suspended</target> |
9379 | 10223 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">602</context></context-group> | |
9380 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">602</context></context-group></trans-unit> | 10224 | </trans-unit> |
9381 | <trans-unit id="7895294730547405228" datatype="html"> | 10225 | <trans-unit id="7895294730547405228" datatype="html"> |
9382 | <source>Enter/exit fullscreen (requires player focus)</source> | 10226 | <source>Enter/exit fullscreen (requires player focus)</source> |
9383 | <target state="new">Enter/exit fullscreen (requires player focus)</target> | 10227 | <target state="new">Enter/exit fullscreen (requires player focus)</target> |
9384 | 10228 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">920</context></context-group> | |
9385 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">920</context></context-group></trans-unit> | 10229 | </trans-unit> |
9386 | <trans-unit id="7618388257165864759" datatype="html"> | 10230 | <trans-unit id="7618388257165864759" datatype="html"> |
9387 | <source>Play/Pause the video (requires player focus)</source> | 10231 | <source>Play/Pause the video (requires player focus)</source> |
9388 | <target state="new">Play/Pause the video (requires player focus)</target> | 10232 | <target state="new">Play/Pause the video (requires player focus)</target> |
9389 | 10233 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">921</context></context-group> | |
9390 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">921</context></context-group></trans-unit> | 10234 | </trans-unit> |
9391 | <trans-unit id="7761890399634216630" datatype="html"> | 10235 | <trans-unit id="7761890399634216630" datatype="html"> |
9392 | <source>Mute/unmute the video (requires player focus)</source> | 10236 | <source>Mute/unmute the video (requires player focus)</source> |
9393 | <target state="new">Mute/unmute the video (requires player focus)</target> | 10237 | <target state="new">Mute/unmute the video (requires player focus)</target> |
9394 | 10238 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">922</context></context-group> | |
9395 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">922</context></context-group></trans-unit> | 10239 | </trans-unit> |
9396 | <trans-unit id="5996585232248234904" datatype="html"> | 10240 | <trans-unit id="5996585232248234904" datatype="html"> |
9397 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</source> | 10241 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</source> |
9398 | <target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</target> | 10242 | <target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</target> |
9399 | 10243 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">924</context></context-group> | |
9400 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">924</context></context-group></trans-unit> | 10244 | </trans-unit> |
9401 | <trans-unit id="3748765405903319998" datatype="html"> | 10245 | <trans-unit id="3748765405903319998" datatype="html"> |
9402 | <source>Increase the volume (requires player focus)</source> | 10246 | <source>Increase the volume (requires player focus)</source> |
9403 | <target state="new">Increase the volume (requires player focus)</target> | 10247 | <target state="new">Increase the volume (requires player focus)</target> |
9404 | 10248 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">926</context></context-group> | |
9405 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">926</context></context-group></trans-unit> | 10249 | </trans-unit> |
9406 | <trans-unit id="5810704036407159982" datatype="html"> | 10250 | <trans-unit id="5810704036407159982" datatype="html"> |
9407 | <source>Decrease the volume (requires player focus)</source> | 10251 | <source>Decrease the volume (requires player focus)</source> |
9408 | <target state="new">Decrease the volume (requires player focus)</target> | 10252 | <target state="new">Decrease the volume (requires player focus)</target> |
9409 | 10253 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">927</context></context-group> | |
9410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">927</context></context-group></trans-unit> | 10254 | </trans-unit> |
9411 | <trans-unit id="2622048822548065691" datatype="html"> | 10255 | <trans-unit id="2622048822548065691" datatype="html"> |
9412 | <source>Seek the video forward (requires player focus)</source> | 10256 | <source>Seek the video forward (requires player focus)</source> |
9413 | <target state="new">Seek the video forward (requires player focus)</target> | 10257 | <target state="new">Seek the video forward (requires player focus)</target> |
9414 | 10258 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">929</context></context-group> | |
9415 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">929</context></context-group></trans-unit> | 10259 | </trans-unit> |
9416 | <trans-unit id="6540078205109221153" datatype="html"> | 10260 | <trans-unit id="6540078205109221153" datatype="html"> |
9417 | <source>Seek the video backward (requires player focus)</source> | 10261 | <source>Seek the video backward (requires player focus)</source> |
9418 | <target state="new">Seek the video backward (requires player focus)</target> | 10262 | <target state="new">Seek the video backward (requires player focus)</target> |
9419 | 10263 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">930</context></context-group> | |
9420 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">930</context></context-group></trans-unit> | 10264 | </trans-unit> |
9421 | <trans-unit id="1956491957766210808" datatype="html"> | 10265 | <trans-unit id="1956491957766210808" datatype="html"> |
9422 | <source>Increase playback rate (requires player focus)</source> | 10266 | <source>Increase playback rate (requires player focus)</source> |
9423 | <target state="new">Increase playback rate (requires player focus)</target> | 10267 | <target state="new">Increase playback rate (requires player focus)</target> |
9424 | 10268 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">932</context></context-group> | |
9425 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">932</context></context-group></trans-unit> | 10269 | </trans-unit> |
9426 | <trans-unit id="5495529997674803186" datatype="html"> | 10270 | <trans-unit id="5495529997674803186" datatype="html"> |
9427 | <source>Decrease playback rate (requires player focus)</source> | 10271 | <source>Decrease playback rate (requires player focus)</source> |
9428 | <target state="new">Decrease playback rate (requires player focus)</target> | 10272 | <target state="new">Decrease playback rate (requires player focus)</target> |
9429 | 10273 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">933</context></context-group> | |
9430 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">933</context></context-group></trans-unit> | 10274 | </trans-unit> |
9431 | <trans-unit id="3178343147230721210" datatype="html"> | 10275 | <trans-unit id="3178343147230721210" datatype="html"> |
9432 | <source>Navigate in the video frame by frame (requires player focus)</source> | 10276 | <source>Navigate in the video frame by frame (requires player focus)</source> |
9433 | <target state="new">Navigate in the video frame by frame (requires player focus)</target> | 10277 | <target state="new">Navigate in the video frame by frame (requires player focus)</target> |
9434 | 10278 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">935</context></context-group> | |
9435 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">935</context></context-group></trans-unit> | 10279 | </trans-unit> |
9436 | <trans-unit id="8025996572234182184" datatype="html"> | 10280 | <trans-unit id="8025996572234182184" datatype="html"> |
9437 | <source>Like the video</source> | 10281 | <source>Like the video</source> |
9438 | <target state="new">Like the video</target> | 10282 | <target state="translated">Videoyu beğen</target> |
9439 | 10283 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">943</context></context-group> | |
9440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">943</context></context-group></trans-unit> | 10284 | </trans-unit> |
9441 | <trans-unit id="7692127636377222448" datatype="html"> | 10285 | <trans-unit id="7692127636377222448" datatype="html"> |
9442 | <source>Dislike the video</source> | 10286 | <source>Dislike the video</source> |
9443 | <target state="new">Dislike the video</target> | 10287 | <target state="new">Dislike the video</target> |
9444 | 10288 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">948</context></context-group> | |
9445 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">948</context></context-group></trans-unit> | 10289 | </trans-unit> |
9446 | <trans-unit id="1729036051846673606" datatype="html"> | 10290 | <trans-unit id="1729036051846673606" datatype="html"> |
9447 | <source>When active, the next video is automatically played after the current one.</source> | 10291 | <source>When active, the next video is automatically played after the current one.</source> |
9448 | <target state="new">When active, the next video is automatically played after the current one.</target> | 10292 | <target state="new">When active, the next video is automatically played after the current one.</target> |
9449 | 10293 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/recommendations/recommended-videos.component.ts</context><context context-type="linenumber">59</context></context-group> | |
9450 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/recommendations/recommended-videos.component.ts</context><context context-type="linenumber">59</context></context-group></trans-unit> | 10294 | </trans-unit> |
9451 | |||
9452 | <trans-unit id="2431286785954354122" datatype="html"> | 10295 | <trans-unit id="2431286785954354122" datatype="html"> |
9453 | <source>Recently added</source> | 10296 | <source>Recently added</source> |
9454 | <target state="new">Recently added</target> | 10297 | <target state="translated">Son eklenenler</target> |
9455 | 10298 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-recently-added.component.ts</context><context context-type="linenumber">36</context></context-group> | |
9456 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-recently-added.component.ts</context><context context-type="linenumber">36</context></context-group></trans-unit> | 10299 | </trans-unit> |
9457 | <trans-unit id="3432004930068835151"> | 10300 | <trans-unit id="3432004930068835151"> |
9458 | <source>Trending for the last 24 hours</source> | 10301 | <source>Trending for the last 24 hours</source> |
9459 | <target>Son 24 saatteki öne çıkanlar</target> | 10302 | <target>Son 24 saatteki öne çıkanlar</target> |
9460 | 10303 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context><context context-type="linenumber">46</context></context-group> | |
9461 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 10304 | </trans-unit> |
9462 | <trans-unit id="6716379522893509803"> | 10305 | <trans-unit id="6716379522893509803"> |
9463 | <source>Trending videos are those totalizing the greatest number of views during the last 24 hours</source> | 10306 | <source>Trending videos are those totalizing the greatest number of views during the last 24 hours</source> |
9464 | <target>Öne çıkan videolar, son 24 saatte en fazla görüntülenen videolardır</target> | 10307 | <target>Öne çıkan videolar, son 24 saatte en fazla görüntülenen videolardır</target> |
9465 | 10308 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context><context context-type="linenumber">47</context></context-group> | |
9466 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit><trans-unit id="8762033369923733525" datatype="html"> | 10309 | </trans-unit> |
9467 | <source>Trending for the last <x id="PH" equiv-text="trendingDays"/> days</source><target state="new">Trending for the last <x id="PH" equiv-text="trendingDays"/> days</target> | 10310 | <trans-unit id="8762033369923733525" datatype="html"> |
10311 | <source>Trending for the last <x id="PH" equiv-text="trendingDays"/> days</source> | ||
10312 | <target state="translated">Son <x id="PH" equiv-text="trendingDays"/> günde öne çıkanlar</target> | ||
9468 | <context-group purpose="location"> | 10313 | <context-group purpose="location"> |
9469 | <context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context> | 10314 | <context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context> |
9470 | <context context-type="linenumber">51</context> | 10315 | <context context-type="linenumber">51</context> |
9471 | </context-group> | 10316 | </context-group> |
9472 | </trans-unit><trans-unit id="6332970411264495724" datatype="html"> | 10317 | </trans-unit> |
9473 | <source>Trending videos are those totalizing the greatest number of views during the last <x id="PH" equiv-text="trendingDays"/> days</source><target state="new">Trending videos are those totalizing the greatest number of views during the last <x id="PH" equiv-text="trendingDays"/> days</target> | 10318 | <trans-unit id="6332970411264495724" datatype="html"> |
10319 | <source>Trending videos are those totalizing the greatest number of views during the last <x id="PH" equiv-text="trendingDays"/> days</source> | ||
10320 | <target state="new">Trending videos are those totalizing the greatest number of views during the last <x id="PH" equiv-text="trendingDays"/> days</target> | ||
9474 | <context-group purpose="location"> | 10321 | <context-group purpose="location"> |
9475 | <context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context> | 10322 | <context context-type="sourcefile">src/app/+videos/video-list/video-trending.component.ts</context> |
9476 | <context context-type="linenumber">52</context> | 10323 | <context context-type="linenumber">52</context> |
@@ -9478,27 +10325,37 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9478 | </trans-unit> | 10325 | </trans-unit> |
9479 | <trans-unit id="12646164819555880" datatype="html"> | 10326 | <trans-unit id="12646164819555880" datatype="html"> |
9480 | <source>Videos from your subscriptions</source> | 10327 | <source>Videos from your subscriptions</source> |
9481 | <target state="new">Videos from your subscriptions</target> | 10328 | <target state="translated">Aboneliklerinizden videolar</target> |
9482 | 10329 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">42</context></context-group> | |
9483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">42</context></context-group></trans-unit><trans-unit id="4361762785337785037" datatype="html"> | 10330 | </trans-unit> |
9484 | <source>Copy feed URL</source><target state="new">Copy feed URL</target> | 10331 | <trans-unit id="4361762785337785037" datatype="html"> |
10332 | <source>Copy feed URL</source> | ||
10333 | <target state="translated">Akış URL'sini kopyala</target> | ||
9485 | <context-group purpose="location"> | 10334 | <context-group purpose="location"> |
9486 | <context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context> | 10335 | <context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context> |
9487 | <context context-type="linenumber">65</context> | 10336 | <context context-type="linenumber">65</context> |
9488 | </context-group> | 10337 | </context-group> |
9489 | </trans-unit><trans-unit id="3392372077636861449" datatype="html"> | 10338 | </trans-unit> |
9490 | <source>Feed URL copied</source><target state="new">Feed URL copied</target> | 10339 | <trans-unit id="3392372077636861449" datatype="html"> |
9491 | 10340 | <source>Feed URL copied</source> | |
9492 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">109</context></context-group></trans-unit> | 10341 | <target state="translated">Akış URL'si kopyalandı</target> |
10342 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">109</context></context-group> | ||
10343 | </trans-unit> | ||
9493 | <trans-unit id="1812379335568847528" datatype="html"> | 10344 | <trans-unit id="1812379335568847528" datatype="html"> |
9494 | <source>Subscriptions</source> | 10345 | <source>Subscriptions</source> |
9495 | <target state="new">Subscriptions</target> | 10346 | <target state="translated">Abonelikler</target> |
9496 | 10347 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">66</context></context-group> | |
9497 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">66</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">73</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">46</context></context-group></trans-unit><trans-unit id="186236568870281953" datatype="html"> | 10348 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">73</context></context-group> |
9498 | <source>History</source><target state="new">History</target> | 10349 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">46</context></context-group> |
9499 | 10350 | </trans-unit> | |
9500 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">71</context></context-group></trans-unit><trans-unit id="e40d752221cf8adc1941495c7c8dc1862bb0c248" datatype="html"> | 10351 | <trans-unit id="186236568870281953" datatype="html"> |
9501 | <source>Open actions</source><target state="new">Open actions</target> | 10352 | <source>History</source> |
10353 | <target state="translated">Geçmiş</target> | ||
10354 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">71</context></context-group> | ||
10355 | </trans-unit> | ||
10356 | <trans-unit id="e40d752221cf8adc1941495c7c8dc1862bb0c248" datatype="html"> | ||
10357 | <source>Open actions</source> | ||
10358 | <target state="new">Open actions</target> | ||
9502 | <context-group purpose="location"> | 10359 | <context-group purpose="location"> |
9503 | <context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context> | 10360 | <context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context> |
9504 | <context context-type="linenumber">4</context> | 10361 | <context context-type="linenumber">4</context> |
@@ -9507,33 +10364,34 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9507 | <trans-unit id="8681933925782924101" datatype="html"> | 10364 | <trans-unit id="8681933925782924101" datatype="html"> |
9508 | <source>Local videos</source> | 10365 | <source>Local videos</source> |
9509 | <target state="new">Local videos</target> | 10366 | <target state="new">Local videos</target> |
9510 | 10367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">86</context></context-group> | |
9511 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">86</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-local.component.ts</context><context context-type="linenumber">36</context></context-group></trans-unit> | 10368 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-local.component.ts</context><context context-type="linenumber">36</context></context-group> |
10369 | </trans-unit> | ||
9512 | <trans-unit id="4668975178372693951" datatype="html"> | 10370 | <trans-unit id="4668975178372693951" datatype="html"> |
9513 | <source>Discover videos</source> | 10371 | <source>Discover videos</source> |
9514 | <target state="new">Discover videos</target> | 10372 | <target state="new">Discover videos</target> |
9515 | 10373 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">24</context></context-group> | |
9516 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">24</context></context-group></trans-unit> | 10374 | </trans-unit> |
9517 | <trans-unit id="8067135025051844577" datatype="html"> | 10375 | <trans-unit id="8067135025051844577" datatype="html"> |
9518 | <source>Trending videos</source> | 10376 | <source>Trending videos</source> |
9519 | <target state="new">Trending videos</target> | 10377 | <target state="new">Trending videos</target> |
9520 | 10378 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">33</context></context-group> | |
9521 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">33</context></context-group></trans-unit> | 10379 | </trans-unit> |
9522 | <trans-unit id="664221386829541948" datatype="html"> | 10380 | <trans-unit id="664221386829541948" datatype="html"> |
9523 | <source>Recently added videos</source> | 10381 | <source>Recently added videos</source> |
9524 | <target state="new">Recently added videos</target> | 10382 | <target state="new">Recently added videos</target> |
9525 | 10383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">59</context></context-group> | |
9526 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">59</context></context-group></trans-unit> | 10384 | </trans-unit> |
9527 | <trans-unit id="8212906256415538361" datatype="html"> | 10385 | <trans-unit id="8212906256415538361" datatype="html"> |
9528 | <source>Upload a video</source> | 10386 | <source>Upload a video</source> |
9529 | <target state="new">Upload a video</target> | 10387 | <target state="translated">Bir video yükle</target> |
9530 | 10388 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">99</context></context-group> | |
9531 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">99</context></context-group></trans-unit> | 10389 | </trans-unit> |
9532 | <trans-unit id="7590784934397800835" datatype="html"> | 10390 | <trans-unit id="7590784934397800835" datatype="html"> |
9533 | <source>Edit a video</source> | 10391 | <source>Edit a video</source> |
9534 | <target state="new">Edit a video</target> | 10392 | <target state="new">Edit a video</target> |
9535 | 10393 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">108</context></context-group> | |
9536 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">108</context></context-group></trans-unit> | 10394 | </trans-unit> |
9537 | </body> | 10395 | </body> |
9538 | </file> | 10396 | </file> |
9539 | </xliff> | 10397 | </xliff> |
diff --git a/client/src/locale/angular.uk-UA.xlf b/client/src/locale/angular.uk-UA.xlf index 053a4e07f..c81e51d91 100644 --- a/client/src/locale/angular.uk-UA.xlf +++ b/client/src/locale/angular.uk-UA.xlf | |||
@@ -581,7 +581,7 @@ | |||
581 | </trans-unit> | 581 | </trans-unit> |
582 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | 582 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
583 | <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> | 583 | <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> |
584 | <target state="translated"><x id="START_TAG_SPAN"/>Зовнішня підписка <x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Зовнішня взаємодія<x id="CLOSE_TAG_SPAN"/></target> | 584 | <target state="translated"><x id="START_TAG_SPAN"/>Віддалена підписка <x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Віддалена взаємодія<x id="CLOSE_TAG_SPAN"/></target> |
585 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context><context context-type="linenumber">11</context></context-group> | 585 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context><context context-type="linenumber">11</context></context-group> |
586 | </trans-unit> | 586 | </trans-unit> |
587 | <trans-unit id="10fc5e7d31ac52e14a0ee249d718275d2f25771e" datatype="html"> | 587 | <trans-unit id="10fc5e7d31ac52e14a0ee249d718275d2f25771e" datatype="html"> |
@@ -2666,12 +2666,12 @@ The link will expire within 1 hour.</target> | |||
2666 | </trans-unit> | 2666 | </trans-unit> |
2667 | <trans-unit id="3691787517663044217" datatype="html"> | 2667 | <trans-unit id="3691787517663044217" datatype="html"> |
2668 | <source>The deletion will be sent to remote instances so they can reflect the change.</source> | 2668 | <source>The deletion will be sent to remote instances so they can reflect the change.</source> |
2669 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 2669 | <target state="translated">Видалення буде надіслано віддаленим серверам, щоб вони могли відбити зміни.</target> |
2670 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group> | 2670 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group> |
2671 | </trans-unit> | 2671 | </trans-unit> |
2672 | <trans-unit id="7321800851971795962" datatype="html"> | 2672 | <trans-unit id="7321800851971795962" datatype="html"> |
2673 | <source>It is a remote comment, so the deletion will only be effective on your instance.</source> | 2673 | <source>It is a remote comment, so the deletion will only be effective on your instance.</source> |
2674 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 2674 | <target state="translated">Це віддалений коментар, тому видалення буде ефективним лише на вашому сервері.</target> |
2675 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">173</context></context-group> | 2675 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">173</context></context-group> |
2676 | </trans-unit> | 2676 | </trans-unit> |
2677 | <trans-unit id="5964038603724691720" datatype="html"> | 2677 | <trans-unit id="5964038603724691720" datatype="html"> |
@@ -3070,12 +3070,12 @@ The link will expire within 1 hour.</target> | |||
3070 | </trans-unit> | 3070 | </trans-unit> |
3071 | <trans-unit id="8a3b2dec938ae1c71320e653fb1fdb810e614f76" datatype="html"> | 3071 | <trans-unit id="8a3b2dec938ae1c71320e653fb1fdb810e614f76" datatype="html"> |
3072 | <source>My videos duplicated by remote instances</source> | 3072 | <source>My videos duplicated by remote instances</source> |
3073 | <target state="new">My videos duplicated by remote instances</target> | 3073 | <target state="translated">Мої відео дублюються віддаленими серверами</target> |
3074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">12</context></context-group> | 3074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">12</context></context-group> |
3075 | </trans-unit> | 3075 | </trans-unit> |
3076 | <trans-unit id="cb2281bf5c9f420429bbd5c5473ee7aacc879e1e" datatype="html"> | 3076 | <trans-unit id="cb2281bf5c9f420429bbd5c5473ee7aacc879e1e" datatype="html"> |
3077 | <source>Remote videos duplicated by my instance</source> | 3077 | <source>Remote videos duplicated by my instance</source> |
3078 | <target state="new">Remote videos duplicated by my instance</target> | 3078 | <target state="translated">Віддалені відео, дублюються моїм сервером</target> |
3079 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">13</context></context-group> | 3079 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html</context><context context-type="linenumber">13</context></context-group> |
3080 | </trans-unit> | 3080 | </trans-unit> |
3081 | <trans-unit id="31cf824034489eb42f6a388d5980b98b8e1de015" datatype="html"> | 3081 | <trans-unit id="31cf824034489eb42f6a388d5980b98b8e1de015" datatype="html"> |
@@ -3902,7 +3902,7 @@ The link will expire within 1 hour.</target> | |||
3902 | </trans-unit> | 3902 | </trans-unit> |
3903 | <trans-unit id="3c770e01673ea017697b8c8a4feb63aefdd1f999" datatype="html"> | 3903 | <trans-unit id="3c770e01673ea017697b8c8a4feb63aefdd1f999" datatype="html"> |
3904 | <source>Remote comments</source> | 3904 | <source>Remote comments</source> |
3905 | <target state="new">Remote comments</target> | 3905 | <target state="translated">Віддалені коментарі</target> |
3906 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">38</context></context-group> | 3906 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">38</context></context-group> |
3907 | </trans-unit> | 3907 | </trans-unit> |
3908 | <trans-unit id="5cb90e520edbff8862ce9fbec8c377416c1c286b" datatype="html"> | 3908 | <trans-unit id="5cb90e520edbff8862ce9fbec8c377416c1c286b" datatype="html"> |
@@ -7506,7 +7506,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7506 | </trans-unit> | 7506 | </trans-unit> |
7507 | <trans-unit id="7553172329217243895" datatype="html"> | 7507 | <trans-unit id="7553172329217243895" datatype="html"> |
7508 | <source>Cannot access to the remote resource</source> | 7508 | <source>Cannot access to the remote resource</source> |
7509 | <target state="new">Cannot access to the remote resource</target> | 7509 | <target state="translated">Не вдається отримати доступ до віддаленого ресурсу</target> |
7510 | <context-group purpose="location"> | 7510 | <context-group purpose="location"> |
7511 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> | 7511 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> |
7512 | <context context-type="linenumber">48</context> | 7512 | <context context-type="linenumber">48</context> |
@@ -7514,7 +7514,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7514 | </trans-unit> | 7514 | </trans-unit> |
7515 | <trans-unit id="3851357780293085233" datatype="html"> | 7515 | <trans-unit id="3851357780293085233" datatype="html"> |
7516 | <source>Remote interaction</source> | 7516 | <source>Remote interaction</source> |
7517 | <target state="new">Remote interaction</target> | 7517 | <target state="translated">Віддалена взаємодія</target> |
7518 | <context-group purpose="location"> | 7518 | <context-group purpose="location"> |
7519 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction-routing.module.ts</context> | 7519 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction-routing.module.ts</context> |
7520 | <context context-type="linenumber">13</context> | 7520 | <context context-type="linenumber">13</context> |
diff --git a/client/src/locale/player.tzm.json b/client/src/locale/player.tzm.json index 3958d76ce..d2ffccb09 100644 --- a/client/src/locale/player.tzm.json +++ b/client/src/locale/player.tzm.json | |||
@@ -1,41 +1,41 @@ | |||
1 | { | 1 | { |
2 | "Quality": "", | 2 | "Quality": "Tiɣri", |
3 | "Auto": "", | 3 | "Auto": "", |
4 | "Speed": "", | 4 | "Speed": "Tuzzla", |
5 | "Subtitles/CC": "", | 5 | "Subtitles/CC": "", |
6 | "peers": "", | 6 | "peers": "", |
7 | "peer": "", | 7 | "peer": "", |
8 | "Go to the video page": "", | 8 | "Go to the video page": "Ddu ɣer tansa n uvidyu", |
9 | "Settings": "", | 9 | "Settings": "Tisɣal", |
10 | "Watching this video may reveal your IP address to others.": "", | 10 | "Watching this video may reveal your IP address to others.": "", |
11 | "Copy the video URL": "", | 11 | "Copy the video URL": "Ssenɣel asɣen n uvidyu", |
12 | "Copy the video URL at the current time": "", | 12 | "Copy the video URL at the current time": "", |
13 | "Copy embed code": "", | 13 | "Copy embed code": "", |
14 | "Copy magnet URI": "", | 14 | "Copy magnet URI": "", |
15 | "Total downloaded: ": "", | 15 | "Total downloaded: ": "", |
16 | "Total uploaded: ": "", | 16 | "Total uploaded: ": "", |
17 | "From servers: ": "", | 17 | "From servers: ": "Seg imakkayen: ", |
18 | "From peers: ": "", | 18 | "From peers: ": "", |
19 | "Normal mode": "", | 19 | "Normal mode": "", |
20 | "Theater mode": "", | 20 | "Theater mode": "", |
21 | "Audio Player": "", | 21 | "Audio Player": "Ameɣri n imsli", |
22 | "Video Player": "", | 22 | "Video Player": "Ameɣri n uvidyu", |
23 | "Play": "", | 23 | "Play": "Ɣer", |
24 | "Pause": "", | 24 | "Pause": "Ssebedd", |
25 | "Replay": "", | 25 | "Replay": "Ales tɣuri", |
26 | "Current Time": "", | 26 | "Current Time": "", |
27 | "Duration": "", | 27 | "Duration": "", |
28 | "Remaining Time": "", | 28 | "Remaining Time": "", |
29 | "Stream Type": "", | 29 | "Stream Type": "", |
30 | "LIVE": "", | 30 | "LIVE": "USRID", |
31 | "Loaded": "", | 31 | "Loaded": "", |
32 | "Progress": "", | 32 | "Progress": "", |
33 | "Progress Bar": "", | 33 | "Progress Bar": "", |
34 | "progress bar timing: currentTime={1} duration={2}": "", | 34 | "progress bar timing: currentTime={1} duration={2}": "", |
35 | "Fullscreen": "", | 35 | "Fullscreen": "", |
36 | "Non-Fullscreen": "", | 36 | "Non-Fullscreen": "", |
37 | "Mute": "", | 37 | "Mute": "Ẓẓiẓen", |
38 | "Unmute": "", | 38 | "Unmute": "Kkes aẓiẓen", |
39 | "Playback Rate": "", | 39 | "Playback Rate": "", |
40 | "Subtitles": "", | 40 | "Subtitles": "", |
41 | "subtitles off": "", | 41 | "subtitles off": "", |
diff --git a/client/src/locale/server.uk-UA.json b/client/src/locale/server.uk-UA.json index 2b3c6e7cb..cabbe9409 100644 --- a/client/src/locale/server.uk-UA.json +++ b/client/src/locale/server.uk-UA.json | |||
@@ -38,7 +38,7 @@ | |||
38 | "This video does not exist.": "Це відео не існує.", | 38 | "This video does not exist.": "Це відео не існує.", |
39 | "We cannot fetch the video. Please try again later.": "Не вдається отримати відео. Спробуйте пізніше.", | 39 | "We cannot fetch the video. Please try again later.": "Не вдається отримати відео. Спробуйте пізніше.", |
40 | "Sorry": "Перепрошуємо", | 40 | "Sorry": "Перепрошуємо", |
41 | "This video is not available because the remote instance is not responding.": "Це відео недоступне, оскільки зовнішній сервер не відповідає.", | 41 | "This video is not available because the remote instance is not responding.": "Це відео недоступне, оскільки віддалений сервер не відповідає.", |
42 | "Misc": "Різне", | 42 | "Misc": "Різне", |
43 | "Unknown": "Невідоме", | 43 | "Unknown": "Невідоме", |
44 | "Afar": "Афарська", | 44 | "Afar": "Афарська", |