aboutsummaryrefslogtreecommitdiffhomepage
path: root/client
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-09-07 17:40:45 +0200
committerChocobozzz <me@florianbigard.com>2018-09-07 17:40:45 +0200
commitd972dc7f665026086ad1804a3798ae36adea70c5 (patch)
tree5dcee10bb742ccd824c44acab31524e932e3c9c5 /client
parent4e554c4a2d5ea2cd98ce5545d81431100de43b23 (diff)
downloadPeerTube-d972dc7f665026086ad1804a3798ae36adea70c5.tar.gz
PeerTube-d972dc7f665026086ad1804a3798ae36adea70c5.tar.zst
PeerTube-d972dc7f665026086ad1804a3798ae36adea70c5.zip
Update translations
Diffstat (limited to 'client')
-rw-r--r--client/.gitignore3
-rw-r--r--client/src/app/videos/+video-edit/video-add-components/video-upload.component.ts9
-rw-r--r--client/src/locale/source/angular_en_US.xml1098
-rw-r--r--client/src/locale/source/iso639_en_US.xml6
-rw-r--r--client/src/locale/source/player_en_US.xml2
-rw-r--r--client/src/locale/source/server_en_US.xml2
-rw-r--r--client/src/locale/target/angular_ca_ES.xml893
-rw-r--r--client/src/locale/target/angular_cs_CZ.xml800
-rw-r--r--client/src/locale/target/angular_de_DE.xml957
-rw-r--r--client/src/locale/target/angular_eo.xml898
-rw-r--r--client/src/locale/target/angular_es_ES.xml1018
-rw-r--r--client/src/locale/target/angular_eu_ES.xml898
-rw-r--r--client/src/locale/target/angular_fr_FR.xml901
-rw-r--r--client/src/locale/target/angular_gl_ES.xml563
-rw-r--r--client/src/locale/target/angular_ja_JP.xml176
-rw-r--r--client/src/locale/target/angular_nl_NL.xml416
-rw-r--r--client/src/locale/target/angular_oc.xml896
-rw-r--r--client/src/locale/target/angular_pl_PL.xml800
-rw-r--r--client/src/locale/target/angular_pt_BR.xml898
-rw-r--r--client/src/locale/target/angular_ru_RU.xml14
-rw-r--r--client/src/locale/target/angular_sv_SE.xml915
-rw-r--r--client/src/locale/target/angular_zh_Hans_CN.xml391
-rw-r--r--client/src/locale/target/angular_zh_Hant_TW.xml1288
-rw-r--r--client/src/locale/target/iso639_gl_ES.xml4
-rw-r--r--client/src/locale/target/iso639_nl_NL.xml4
-rw-r--r--client/src/locale/target/player_zh_Hant_TW.json2
-rw-r--r--client/src/locale/target/server_ca_ES.json2
-rw-r--r--client/src/locale/target/server_cs_CZ.json2
-rw-r--r--client/src/locale/target/server_de_DE.json2
-rw-r--r--client/src/locale/target/server_eo.json2
-rw-r--r--client/src/locale/target/server_es_ES.json2
-rw-r--r--client/src/locale/target/server_eu_ES.json2
-rw-r--r--client/src/locale/target/server_fr_FR.json2
-rw-r--r--client/src/locale/target/server_oc.json2
-rw-r--r--client/src/locale/target/server_pt_BR.json2
-rw-r--r--client/src/locale/target/server_sv_SE.json2
-rw-r--r--client/src/locale/target/server_zh_Hant_TW.json2
37 files changed, 5853 insertions, 8021 deletions
diff --git a/client/.gitignore b/client/.gitignore
index 0bb91575e..cc1ec4083 100644
--- a/client/.gitignore
+++ b/client/.gitignore
@@ -4,3 +4,6 @@
4/stats.json 4/stats.json
5/dll 5/dll
6/.awcache 6/.awcache
7/src/locale/target/iso639_*.xml
8/src/locale/target/player_*.xml
9/src/locale/target/server_*.xml \ No newline at end of file
diff --git a/client/src/app/videos/+video-edit/video-add-components/video-upload.component.ts b/client/src/app/videos/+video-edit/video-add-components/video-upload.component.ts
index f9af1655b..c1920b1f0 100644
--- a/client/src/app/videos/+video-edit/video-add-components/video-upload.component.ts
+++ b/client/src/app/videos/+video-edit/video-add-components/video-upload.component.ts
@@ -123,7 +123,7 @@ export class VideoUploadComponent extends VideoSend implements OnInit, OnDestroy
123 const videoQuota = this.authService.getUser().videoQuota 123 const videoQuota = this.authService.getUser().videoQuota
124 if (videoQuota !== -1 && (this.userVideoQuotaUsed + videofile.size) > videoQuota) { 124 if (videoQuota !== -1 && (this.userVideoQuotaUsed + videofile.size) > videoQuota) {
125 const msg = this.i18n( 125 const msg = this.i18n(
126 'Your video quota is exceeded with this video (video size: {{ videoSize }}, used: {{ videoQuotaUsed }}, quota: {{ videoQuota }})', 126 'Your video quota is exceeded with this video (video size: {{videoSize}}, used: {{videoQuotaUsed}}, quota: {{videoQuota}})',
127 { 127 {
128 videoSize: bytePipes.transform(videofile.size, 0), 128 videoSize: bytePipes.transform(videofile.size, 0),
129 videoQuotaUsed: bytePipes.transform(this.userVideoQuotaUsed, 0), 129 videoQuotaUsed: bytePipes.transform(this.userVideoQuotaUsed, 0),
@@ -137,12 +137,11 @@ export class VideoUploadComponent extends VideoSend implements OnInit, OnDestroy
137 const videoQuotaDaily = this.authService.getUser().videoQuotaDaily 137 const videoQuotaDaily = this.authService.getUser().videoQuotaDaily
138 if (videoQuotaDaily !== -1 && (this.userVideoQuotaUsedDaily + videofile.size) > videoQuotaDaily) { 138 if (videoQuotaDaily !== -1 && (this.userVideoQuotaUsedDaily + videofile.size) > videoQuotaDaily) {
139 const msg = this.i18n( 139 const msg = this.i18n(
140 'Your daily video quota is exceeded with this video (video size: {{ videoSize }}, ' + 140 'Your daily video quota is exceeded with this video (video size: {{videoSize}}, used: {{quotaUsedDaily}}, quota: {{quotaDaily}})',
141 'used: {{ videoQuotaUsedDaily }}, quota: {{ videoQuotaDaily }})',
142 { 141 {
143 videoSize: bytePipes.transform(videofile.size, 0), 142 videoSize: bytePipes.transform(videofile.size, 0),
144 videoQuotaUsedDaily: bytePipes.transform(this.userVideoQuotaUsedDaily, 0), 143 quotaUsedDaily: bytePipes.transform(this.userVideoQuotaUsedDaily, 0),
145 videoQuotaDaily: bytePipes.transform(videoQuotaDaily, 0) 144 quotaDaily: bytePipes.transform(videoQuotaDaily, 0)
146 } 145 }
147 ) 146 )
148 this.notificationsService.error(this.i18n('Error'), msg) 147 this.notificationsService.error(this.i18n('Error'), msg)
diff --git a/client/src/locale/source/angular_en_US.xml b/client/src/locale/source/angular_en_US.xml
index 812787ced..76f10f411 100644
--- a/client/src/locale/source/angular_en_US.xml
+++ b/client/src/locale/source/angular_en_US.xml
@@ -6,13 +6,7 @@
6 <source>Close</source> 6 <source>Close</source>
7 <context-group purpose="location"> 7 <context-group purpose="location">
8 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/alert/alert.d.ts</context> 8 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/alert/alert.d.ts</context>
9 <context context-type="linenumber">3</context> 9 <context context-type="linenumber">2</context>
10 </context-group>
11 </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html">
12 <source>&lt;x id="INTERPOLATION" equiv-text="{{getPercentValue()}}"/&gt;%</source>
13 <context-group purpose="location">
14 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.d.ts</context>
15 <context context-type="linenumber">6</context>
16 </context-group> 10 </context-group>
17 </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> 11 </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html">
18 <source>Previous</source> 12 <source>Previous</source>
@@ -26,6 +20,26 @@
26 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/carousel/carousel.d.ts</context> 20 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/carousel/carousel.d.ts</context>
27 <context context-type="linenumber">17</context> 21 <context context-type="linenumber">17</context>
28 </context-group> 22 </context-group>
23 </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html">
24 <source>Previous month</source>
25 <context-group purpose="location">
26 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.d.ts</context>
27 <context context-type="linenumber">4</context>
28 </context-group>
29 <context-group purpose="location">
30 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.d.ts</context>
31 <context context-type="linenumber">5</context>
32 </context-group>
33 </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html">
34 <source>Next month</source>
35 <context-group purpose="location">
36 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.d.ts</context>
37 <context context-type="linenumber">26</context>
38 </context-group>
39 <context-group purpose="location">
40 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.d.ts</context>
41 <context context-type="linenumber">27</context>
42 </context-group>
29 </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> 43 </trans-unit><trans-unit id="ngb.pagination.first" datatype="html">
30 <source>««</source> 44 <source>««</source>
31 <context-group purpose="location"> 45 <context-group purpose="location">
@@ -74,109 +88,95 @@
74 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/pagination/pagination.d.ts</context> 88 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/pagination/pagination.d.ts</context>
75 <context context-type="linenumber">34</context> 89 <context context-type="linenumber">34</context>
76 </context-group> 90 </context-group>
91 </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html">
92 <source>&lt;x id="INTERPOLATION" equiv-text="{{getPercentValue()}}"/&gt;%</source>
93 <context-group purpose="location">
94 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.d.ts</context>
95 <context context-type="linenumber">6</context>
96 </context-group>
77 </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> 97 </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html">
78 <source>Increment hours</source> 98 <source>Increment hours</source>
79 <context-group purpose="location"> 99 <context-group purpose="location">
80 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context> 100 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context>
81 <context context-type="linenumber">8</context> 101 <context context-type="linenumber">9</context>
82 </context-group> 102 </context-group>
83 </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> 103 </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html">
84 <source>HH</source> 104 <source>HH</source>
85 <context-group purpose="location"> 105 <context-group purpose="location">
86 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context> 106 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context>
87 <context context-type="linenumber">11</context> 107 <context context-type="linenumber">12</context>
88 </context-group> 108 </context-group>
89 </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> 109 </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html">
90 <source>Hours</source> 110 <source>Hours</source>
91 <context-group purpose="location"> 111 <context-group purpose="location">
92 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context> 112 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context>
93 <context context-type="linenumber">13</context> 113 <context context-type="linenumber">14</context>
94 </context-group> 114 </context-group>
95 </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> 115 </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html">
96 <source>Decrement hours</source> 116 <source>Decrement hours</source>
97 <context-group purpose="location"> 117 <context-group purpose="location">
98 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context> 118 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context>
99 <context context-type="linenumber">17</context> 119 <context context-type="linenumber">19</context>
100 </context-group> 120 </context-group>
101 </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> 121 </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html">
102 <source>Increment minutes</source> 122 <source>Increment minutes</source>
103 <context-group purpose="location"> 123 <context-group purpose="location">
104 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context> 124 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context>
105 <context context-type="linenumber">25</context> 125 <context context-type="linenumber">28</context>
106 </context-group> 126 </context-group>
107 </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> 127 </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html">
108 <source>MM</source> 128 <source>MM</source>
109 <context-group purpose="location"> 129 <context-group purpose="location">
110 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context> 130 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context>
111 <context context-type="linenumber">28</context> 131 <context context-type="linenumber">31</context>
112 </context-group> 132 </context-group>
113 </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> 133 </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html">
114 <source>Minutes</source> 134 <source>Minutes</source>
115 <context-group purpose="location"> 135 <context-group purpose="location">
116 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context> 136 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context>
117 <context context-type="linenumber">30</context> 137 <context context-type="linenumber">33</context>
118 </context-group> 138 </context-group>
119 </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> 139 </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html">
120 <source>Decrement minutes</source> 140 <source>Decrement minutes</source>
121 <context-group purpose="location"> 141 <context-group purpose="location">
122 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context> 142 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context>
123 <context context-type="linenumber">34</context> 143 <context context-type="linenumber">38</context>
124 </context-group> 144 </context-group>
125 </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> 145 </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html">
126 <source>Increment seconds</source> 146 <source>Increment seconds</source>
127 <context-group purpose="location"> 147 <context-group purpose="location">
128 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context> 148 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context>
129 <context context-type="linenumber">42</context> 149 <context context-type="linenumber">47</context>
130 </context-group> 150 </context-group>
131 </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> 151 </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html">
132 <source>SS</source> 152 <source>SS</source>
133 <context-group purpose="location"> 153 <context-group purpose="location">
134 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context> 154 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context>
135 <context context-type="linenumber">45</context> 155 <context context-type="linenumber">50</context>
136 </context-group> 156 </context-group>
137 </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> 157 </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html">
138 <source>Seconds</source> 158 <source>Seconds</source>
139 <context-group purpose="location"> 159 <context-group purpose="location">
140 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context> 160 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context>
141 <context context-type="linenumber">47</context> 161 <context context-type="linenumber">52</context>
142 </context-group> 162 </context-group>
143 </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> 163 </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html">
144 <source>Decrement seconds</source> 164 <source>Decrement seconds</source>
145 <context-group purpose="location"> 165 <context-group purpose="location">
146 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context> 166 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context>
147 <context context-type="linenumber">51</context> 167 <context context-type="linenumber">57</context>
148 </context-group> 168 </context-group>
149 </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> 169 </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html">
150 <source>PM</source> 170 <source>PM</source>
151 <context-group purpose="location"> 171 <context-group purpose="location">
152 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context> 172 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context>
153 <context context-type="linenumber">59</context> 173 <context context-type="linenumber">65</context>
154 </context-group> 174 </context-group>
155 </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> 175 </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html">
156 <source>AM</source> 176 <source>AM</source>
157 <context-group purpose="location"> 177 <context-group purpose="location">
158 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context> 178 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.d.ts</context>
159 <context context-type="linenumber">60</context> 179 <context context-type="linenumber">66</context>
160 </context-group>
161 </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html">
162 <source>Previous month</source>
163 <context-group purpose="location">
164 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.d.ts</context>
165 <context context-type="linenumber">4</context>
166 </context-group>
167 <context-group purpose="location">
168 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.d.ts</context>
169 <context context-type="linenumber">5</context>
170 </context-group>
171 </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html">
172 <source>Next month</source>
173 <context-group purpose="location">
174 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.d.ts</context>
175 <context context-type="linenumber">26</context>
176 </context-group>
177 <context-group purpose="location">
178 <context context-type="sourcefile">../node_modules/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.d.ts</context>
179 <context context-type="linenumber">27</context>
180 </context-group> 180 </context-group>
181 </trans-unit><trans-unit id="d7b35c384aecd25a516200d6921836374613dfe7" datatype="html"> 181 </trans-unit><trans-unit id="d7b35c384aecd25a516200d6921836374613dfe7" datatype="html">
182 <source>Cancel</source> 182 <source>Cancel</source>
@@ -186,7 +186,7 @@
186 </context-group> 186 </context-group>
187 <context-group purpose="location"> 187 <context-group purpose="location">
188 <context context-type="sourcefile">app/login/login.component.html</context> 188 <context context-type="sourcefile">app/login/login.component.html</context>
189 <context context-type="linenumber">70</context> 189 <context context-type="linenumber">72</context>
190 </context-group> 190 </context-group>
191 <context-group purpose="location"> 191 <context-group purpose="location">
192 <context context-type="sourcefile">app/+admin/users/user-list/user-ban-modal.component.html</context> 192 <context context-type="sourcefile">app/+admin/users/user-list/user-ban-modal.component.html</context>
@@ -200,10 +200,6 @@
200 <context context-type="sourcefile">app/videos/+video-watch/modal/video-support.component.html</context> 200 <context context-type="sourcefile">app/videos/+video-watch/modal/video-support.component.html</context>
201 <context context-type="linenumber">10</context> 201 <context context-type="linenumber">10</context>
202 </context-group> 202 </context-group>
203 <context-group purpose="location">
204 <context context-type="sourcefile">app/videos/+video-watch/modal/video-share.component.html</context>
205 <context context-type="linenumber">43</context>
206 </context-group>
207 </trans-unit><trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46" datatype="html"> 203 </trans-unit><trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46" datatype="html">
208 <source>(extensions: &lt;x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/&gt;, max size: &lt;x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/&gt;)</source> 204 <source>(extensions: &lt;x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/&gt;, max size: &lt;x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/&gt;)</source>
209 <context-group purpose="location"> 205 <context-group purpose="location">
@@ -216,10 +212,6 @@
216 <context context-type="sourcefile">app/shared/video/video-miniature.component.html</context> 212 <context context-type="sourcefile">app/shared/video/video-miniature.component.html</context>
217 <context context-type="linenumber">12</context> 213 <context context-type="linenumber">12</context>
218 </context-group> 214 </context-group>
219 <context-group purpose="location">
220 <context context-type="sourcefile">app/search/search.component.html</context>
221 <context context-type="linenumber">51</context>
222 </context-group>
223 </trans-unit><trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7" datatype="html"> 215 </trans-unit><trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7" datatype="html">
224 <source>Delete</source> 216 <source>Delete</source>
225 <context-group purpose="location"> 217 <context-group purpose="location">
@@ -232,11 +224,11 @@
232 </context-group> 224 </context-group>
233 <context-group purpose="location"> 225 <context-group purpose="location">
234 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 226 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
235 <context context-type="linenumber">159</context> 227 <context context-type="linenumber">160</context>
236 </context-group> 228 </context-group>
237 <context-group purpose="location"> 229 <context-group purpose="location">
238 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 230 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
239 <context context-type="linenumber">112</context> 231 <context context-type="linenumber">104</context>
240 </context-group> 232 </context-group>
241 <context-group purpose="location"> 233 <context-group purpose="location">
242 <context context-type="sourcefile">app/videos/+video-watch/comment/video-comment.component.html</context> 234 <context context-type="sourcefile">app/videos/+video-watch/comment/video-comment.component.html</context>
@@ -289,6 +281,32 @@
289 <context context-type="sourcefile">app/shared/user-subscription/subscribe-button.component.html</context> 281 <context context-type="sourcefile">app/shared/user-subscription/subscribe-button.component.html</context>
290 <context context-type="linenumber">10</context> 282 <context context-type="linenumber">10</context>
291 </context-group> 283 </context-group>
284 </trans-unit><trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b" datatype="html">
285 <source>Video quota</source>
286 <context-group purpose="location">
287 <context context-type="sourcefile">app/shared/instance/instance-features-table.component.html</context>
288 <context context-type="linenumber">5</context>
289 </context-group>
290 <context-group purpose="location">
291 <context context-type="sourcefile">app/+admin/users/user-edit/user-edit.component.html</context>
292 <context context-type="linenumber">56</context>
293 </context-group>
294 <context-group purpose="location">
295 <context context-type="sourcefile">app/+admin/users/user-edit/user-edit.component.html</context>
296 <context context-type="linenumber">56</context>
297 </context-group>
298 <context-group purpose="location">
299 <context context-type="sourcefile">app/+admin/users/user-list/user-list.component.html</context>
300 <context context-type="linenumber">19</context>
301 </context-group>
302 </trans-unit><trans-unit id="9270dfd4606fb45a991fe7716e640b6efa28ba85" datatype="html">
303 <source>
304 Unlimited &lt;x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="&lt;ng-container&gt;"/&gt;(&lt;x id="INTERPOLATION" equiv-text="{{ dailyUserVideoQuota | bytes: 0 }}"/&gt; per day)&lt;x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="&lt;/ng-container&gt;"/&gt;
305 </source>
306 <context-group purpose="location">
307 <context context-type="sourcefile">app/shared/instance/instance-features-table.component.html</context>
308 <context context-type="linenumber">14</context>
309 </context-group>
292 </trans-unit><trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea" datatype="html"> 310 </trans-unit><trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea" datatype="html">
293 <source> 311 <source>
294 Login 312 Login
@@ -297,17 +315,27 @@
297 <context context-type="sourcefile">app/login/login.component.html</context> 315 <context context-type="sourcefile">app/login/login.component.html</context>
298 <context context-type="linenumber">2</context> 316 <context context-type="linenumber">2</context>
299 </context-group> 317 </context-group>
318 </trans-unit><trans-unit id="ae3cb52bf2dee3101ee654812b5d16e8665a9453" datatype="html">
319 <source>Request new verification email.</source>
320 <context-group purpose="location">
321 <context context-type="sourcefile">app/login/login.component.html</context>
322 <context context-type="linenumber">7</context>
323 </context-group>
324 <context-group purpose="location">
325 <context context-type="sourcefile">app/+verify-account/verify-account-email/verify-account-email.component.html</context>
326 <context context-type="linenumber">12</context>
327 </context-group>
300 </trans-unit><trans-unit id="e08a77594f3d89311cdf6da5090044270909c194" datatype="html"> 328 </trans-unit><trans-unit id="e08a77594f3d89311cdf6da5090044270909c194" datatype="html">
301 <source>User</source> 329 <source>User</source>
302 <context-group purpose="location"> 330 <context-group purpose="location">
303 <context context-type="sourcefile">app/login/login.component.html</context> 331 <context context-type="sourcefile">app/login/login.component.html</context>
304 <context context-type="linenumber">11</context> 332 <context context-type="linenumber">13</context>
305 </context-group> 333 </context-group>
306 </trans-unit><trans-unit id="51ef29329faccb28d94369897068897d1b3d0478" datatype="html"> 334 </trans-unit><trans-unit id="51ef29329faccb28d94369897068897d1b3d0478" datatype="html">
307 <source>Username or email address</source> 335 <source>Username or email address</source>
308 <context-group purpose="location"> 336 <context-group purpose="location">
309 <context context-type="sourcefile">app/login/login.component.html</context> 337 <context context-type="sourcefile">app/login/login.component.html</context>
310 <context context-type="linenumber">13</context> 338 <context context-type="linenumber">15</context>
311 </context-group> 339 </context-group>
312 </trans-unit><trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87" datatype="html"> 340 </trans-unit><trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87" datatype="html">
313 <source> 341 <source>
@@ -315,7 +343,7 @@
315 </source> 343 </source>
316 <context-group purpose="location"> 344 <context-group purpose="location">
317 <context context-type="sourcefile">app/login/login.component.html</context> 345 <context context-type="sourcefile">app/login/login.component.html</context>
318 <context context-type="linenumber">16</context> 346 <context context-type="linenumber">18</context>
319 </context-group> 347 </context-group>
320 </trans-unit><trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b" datatype="html"> 348 </trans-unit><trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b" datatype="html">
321 <source> 349 <source>
@@ -323,23 +351,23 @@
323 </source> 351 </source>
324 <context-group purpose="location"> 352 <context-group purpose="location">
325 <context context-type="sourcefile">app/login/login.component.html</context> 353 <context context-type="sourcefile">app/login/login.component.html</context>
326 <context context-type="linenumber">20</context> 354 <context context-type="linenumber">22</context>
327 </context-group> 355 </context-group>
328 </trans-unit><trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3" datatype="html"> 356 </trans-unit><trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3" datatype="html">
329 <source>User registration is not allowed on this instance, but you can register on many others!</source> 357 <source>User registration is not allowed on this instance, but you can register on many others!</source>
330 <context-group purpose="location"> 358 <context-group purpose="location">
331 <context context-type="sourcefile">app/login/login.component.html</context> 359 <context context-type="sourcefile">app/login/login.component.html</context>
332 <context context-type="linenumber">26</context> 360 <context context-type="linenumber">28</context>
333 </context-group> 361 </context-group>
334 </trans-unit><trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407" datatype="html"> 362 </trans-unit><trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407" datatype="html">
335 <source>Password</source> 363 <source>Password</source>
336 <context-group purpose="location"> 364 <context-group purpose="location">
337 <context context-type="sourcefile">app/login/login.component.html</context> 365 <context context-type="sourcefile">app/login/login.component.html</context>
338 <context context-type="linenumber">36</context> 366 <context context-type="linenumber">38</context>
339 </context-group> 367 </context-group>
340 <context-group purpose="location"> 368 <context-group purpose="location">
341 <context context-type="sourcefile">app/login/login.component.html</context> 369 <context context-type="sourcefile">app/login/login.component.html</context>
342 <context context-type="linenumber">39</context> 370 <context context-type="linenumber">41</context>
343 </context-group> 371 </context-group>
344 <context-group purpose="location"> 372 <context-group purpose="location">
345 <context context-type="sourcefile">app/reset-password/reset-password.component.html</context> 373 <context context-type="sourcefile">app/reset-password/reset-password.component.html</context>
@@ -351,11 +379,11 @@
351 </context-group> 379 </context-group>
352 <context-group purpose="location"> 380 <context-group purpose="location">
353 <context context-type="sourcefile">app/signup/signup.component.html</context> 381 <context context-type="sourcefile">app/signup/signup.component.html</context>
354 <context context-type="linenumber">54</context> 382 <context context-type="linenumber">41</context>
355 </context-group> 383 </context-group>
356 <context-group purpose="location"> 384 <context-group purpose="location">
357 <context context-type="sourcefile">app/signup/signup.component.html</context> 385 <context context-type="sourcefile">app/signup/signup.component.html</context>
358 <context context-type="linenumber">56</context> 386 <context context-type="linenumber">43</context>
359 </context-group> 387 </context-group>
360 <context-group purpose="location"> 388 <context-group purpose="location">
361 <context context-type="sourcefile">app/+admin/users/user-edit/user-edit.component.html</context> 389 <context context-type="sourcefile">app/+admin/users/user-edit/user-edit.component.html</context>
@@ -373,27 +401,27 @@
373 <source>I forgot my password</source> 401 <source>I forgot my password</source>
374 <context-group purpose="location"> 402 <context-group purpose="location">
375 <context context-type="sourcefile">app/login/login.component.html</context> 403 <context context-type="sourcefile">app/login/login.component.html</context>
376 <context context-type="linenumber">42</context> 404 <context context-type="linenumber">44</context>
377 </context-group> 405 </context-group>
378 </trans-unit><trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681" datatype="html"> 406 </trans-unit><trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681" datatype="html">
379 <source>Forgot your password</source> 407 <source>Forgot your password</source>
380 <context-group purpose="location"> 408 <context-group purpose="location">
381 <context context-type="sourcefile">app/login/login.component.html</context> 409 <context context-type="sourcefile">app/login/login.component.html</context>
382 <context context-type="linenumber">55</context> 410 <context context-type="linenumber">57</context>
383 </context-group> 411 </context-group>
384 </trans-unit><trans-unit id="244aae9346da82b0922506c2d2581373a15641cc" datatype="html"> 412 </trans-unit><trans-unit id="244aae9346da82b0922506c2d2581373a15641cc" datatype="html">
385 <source>Email</source> 413 <source>Email</source>
386 <context-group purpose="location"> 414 <context-group purpose="location">
387 <context context-type="sourcefile">app/login/login.component.html</context> 415 <context context-type="sourcefile">app/login/login.component.html</context>
388 <context context-type="linenumber">61</context> 416 <context context-type="linenumber">63</context>
389 </context-group> 417 </context-group>
390 <context-group purpose="location"> 418 <context-group purpose="location">
391 <context context-type="sourcefile">app/signup/signup.component.html</context> 419 <context context-type="sourcefile">app/signup/signup.component.html</context>
392 <context context-type="linenumber">43</context> 420 <context context-type="linenumber">30</context>
393 </context-group> 421 </context-group>
394 <context-group purpose="location"> 422 <context-group purpose="location">
395 <context context-type="sourcefile">app/signup/signup.component.html</context> 423 <context context-type="sourcefile">app/signup/signup.component.html</context>
396 <context context-type="linenumber">45</context> 424 <context context-type="linenumber">32</context>
397 </context-group> 425 </context-group>
398 <context-group purpose="location"> 426 <context-group purpose="location">
399 <context context-type="sourcefile">app/+admin/users/user-edit/user-edit.component.html</context> 427 <context context-type="sourcefile">app/+admin/users/user-edit/user-edit.component.html</context>
@@ -407,17 +435,25 @@
407 <context context-type="sourcefile">app/+admin/users/user-list/user-list.component.html</context> 435 <context context-type="sourcefile">app/+admin/users/user-list/user-list.component.html</context>
408 <context context-type="linenumber">18</context> 436 <context context-type="linenumber">18</context>
409 </context-group> 437 </context-group>
438 <context-group purpose="location">
439 <context context-type="sourcefile">app/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context>
440 <context context-type="linenumber">8</context>
441 </context-group>
410 </trans-unit><trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529" datatype="html"> 442 </trans-unit><trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529" datatype="html">
411 <source>Email address</source> 443 <source>Email address</source>
412 <context-group purpose="location"> 444 <context-group purpose="location">
413 <context context-type="sourcefile">app/login/login.component.html</context> 445 <context context-type="sourcefile">app/login/login.component.html</context>
414 <context context-type="linenumber">63</context> 446 <context context-type="linenumber">65</context>
447 </context-group>
448 <context-group purpose="location">
449 <context context-type="sourcefile">app/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context>
450 <context context-type="linenumber">10</context>
415 </context-group> 451 </context-group>
416 </trans-unit><trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55" datatype="html"> 452 </trans-unit><trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55" datatype="html">
417 <source>Send me an email to reset my password</source> 453 <source>Send me an email to reset my password</source>
418 <context-group purpose="location"> 454 <context-group purpose="location">
419 <context context-type="sourcefile">app/login/login.component.html</context> 455 <context context-type="sourcefile">app/login/login.component.html</context>
420 <context context-type="linenumber">73</context> 456 <context context-type="linenumber">75</context>
421 </context-group> 457 </context-group>
422 </trans-unit><trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa" datatype="html"> 458 </trans-unit><trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa" datatype="html">
423 <source> 459 <source>
@@ -453,25 +489,11 @@
453 <context context-type="sourcefile">app/signup/signup.component.html</context> 489 <context context-type="sourcefile">app/signup/signup.component.html</context>
454 <context context-type="linenumber">3</context> 490 <context context-type="linenumber">3</context>
455 </context-group> 491 </context-group>
456 </trans-unit><trans-unit id="a6807b834e01ce165aa61fad157b0ff4288b6bf1" datatype="html">
457 <source>Initial video quota:</source>
458 <context-group purpose="location">
459 <context context-type="sourcefile">app/signup/signup.component.html</context>
460 <context context-type="linenumber">8</context>
461 </context-group>
462 </trans-unit><trans-unit id="87b6b2c26215c5e712d3bfe4cc86ba53bc23451c" datatype="html">
463 <source>
464 Unlimited
465 </source>
466 <context-group purpose="location">
467 <context context-type="sourcefile">app/signup/signup.component.html</context>
468 <context context-type="linenumber">16</context>
469 </context-group>
470 </trans-unit><trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48" datatype="html"> 492 </trans-unit><trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48" datatype="html">
471 <source>Username</source> 493 <source>Username</source>
472 <context-group purpose="location"> 494 <context-group purpose="location">
473 <context context-type="sourcefile">app/signup/signup.component.html</context> 495 <context context-type="sourcefile">app/signup/signup.component.html</context>
474 <context context-type="linenumber">25</context> 496 <context context-type="linenumber">12</context>
475 </context-group> 497 </context-group>
476 <context-group purpose="location"> 498 <context-group purpose="location">
477 <context context-type="sourcefile">app/+admin/users/user-edit/user-edit.component.html</context> 499 <context context-type="sourcefile">app/+admin/users/user-edit/user-edit.component.html</context>
@@ -481,23 +503,23 @@
481 <context context-type="sourcefile">app/+admin/users/user-edit/user-edit.component.html</context> 503 <context context-type="sourcefile">app/+admin/users/user-edit/user-edit.component.html</context>
482 <context context-type="linenumber">8</context> 504 <context context-type="linenumber">8</context>
483 </context-group> 505 </context-group>
484 </trans-unit><trans-unit id="6daa0f9fe8d3f52f644da9493062674d6c3af85b" datatype="html"> 506 </trans-unit><trans-unit id="26025b8081241cf85eb6516431b596df11fa66b3" datatype="html">
485 <source>Example: neil_amstrong</source> 507 <source>Example: jane_doe</source>
486 <context-group purpose="location"> 508 <context-group purpose="location">
487 <context context-type="sourcefile">app/signup/signup.component.html</context> 509 <context context-type="sourcefile">app/signup/signup.component.html</context>
488 <context context-type="linenumber">29</context> 510 <context context-type="linenumber">16</context>
489 </context-group> 511 </context-group>
490 </trans-unit><trans-unit id="2ac776627e18565d7ae85cd7f4cd033bc5d0c88b" datatype="html"> 512 </trans-unit><trans-unit id="2ac776627e18565d7ae85cd7f4cd033bc5d0c88b" datatype="html">
491 <source>I have read and agree to the &lt;a href=&apos;/about/instance#terms-section&apos; target=&apos;_blank&apos;rel=&apos;noopener noreferrer&apos;&gt;Terms&lt;/a&gt; of this instance</source> 513 <source>I have read and agree to the &lt;a href=&apos;/about/instance#terms-section&apos; target=&apos;_blank&apos;rel=&apos;noopener noreferrer&apos;&gt;Terms&lt;/a&gt; of this instance</source>
492 <context-group purpose="location"> 514 <context-group purpose="location">
493 <context context-type="sourcefile">app/signup/signup.component.html</context> 515 <context context-type="sourcefile">app/signup/signup.component.html</context>
494 <context context-type="linenumber">67</context> 516 <context context-type="linenumber">54</context>
495 </context-group> 517 </context-group>
496 </trans-unit><trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4" datatype="html"> 518 </trans-unit><trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4" datatype="html">
497 <source>Signup</source> 519 <source>Signup</source>
498 <context-group purpose="location"> 520 <context-group purpose="location">
499 <context context-type="sourcefile">app/signup/signup.component.html</context> 521 <context context-type="sourcefile">app/signup/signup.component.html</context>
500 <context context-type="linenumber">75</context> 522 <context context-type="linenumber">62</context>
501 </context-group> 523 </context-group>
502 <context-group purpose="location"> 524 <context-group purpose="location">
503 <context context-type="sourcefile">app/+about/about-instance/about-instance.component.html</context> 525 <context context-type="sourcefile">app/+about/about-instance/about-instance.component.html</context>
@@ -505,7 +527,13 @@
505 </context-group> 527 </context-group>
506 <context-group purpose="location"> 528 <context-group purpose="location">
507 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 529 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
508 <context context-type="linenumber">87</context> 530 <context context-type="linenumber">88</context>
531 </context-group>
532 </trans-unit><trans-unit id="fa48c3ddc2ef8e40e5c317e68bc05ae62c93b0c1" datatype="html">
533 <source>Features found on this instance</source>
534 <context-group purpose="location">
535 <context context-type="sourcefile">app/signup/signup.component.html</context>
536 <context context-type="linenumber">66</context>
509 </context-group> 537 </context-group>
510 </trans-unit><trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a" datatype="html"> 538 </trans-unit><trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a" datatype="html">
511 <source>&lt;x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/&gt; results</source> 539 <source>&lt;x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/&gt; results</source>
@@ -535,27 +563,17 @@
535 <context context-type="sourcefile">app/search/search.component.html</context> 563 <context context-type="sourcefile">app/search/search.component.html</context>
536 <context context-type="linenumber">25</context> 564 <context context-type="linenumber">25</context>
537 </context-group> 565 </context-group>
538 </trans-unit><trans-unit id="8fef247fd0c5bf790151f7661cafc4b7fd0397f3" datatype="html"> 566 </trans-unit><trans-unit id="10341623e991a4185990a0c3c76ac2bc3543cc4a" datatype="html">
539 <source>&lt;x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/&gt; subscribers</source> 567 <source>&lt;x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/&gt; subscribers</source>
540 <context-group purpose="location"> 568 <context-group purpose="location">
541 <context context-type="sourcefile">app/search/search.component.html</context> 569 <context context-type="sourcefile">app/search/search.component.html</context>
542 <context context-type="linenumber">40</context> 570 <context context-type="linenumber">41</context>
543 </context-group>
544 <context-group purpose="location">
545 <context context-type="sourcefile">app/+accounts/account-video-channels/account-video-channels.component.html</context>
546 <context context-type="linenumber">9</context>
547 </context-group>
548 <context-group purpose="location">
549 <context context-type="sourcefile">app/+my-account/my-account-video-channels/my-account-video-channels.component.html</context>
550 <context context-type="linenumber">20</context>
551 </context-group>
552 <context-group purpose="location">
553 <context context-type="sourcefile">app/+my-account/my-account-subscriptions/my-account-subscriptions.component.html</context>
554 <context context-type="linenumber">13</context>
555 </context-group> 571 </context-group>
572 </trans-unit><trans-unit id="602281e45fe8b79748e3fbf21c432379fcb58883" datatype="html">
573 <source>&lt;x id="INTERPOLATION" equiv-text="{{ result.publishedAt | myFromNow }}"/&gt; - &lt;x id="INTERPOLATION_1" equiv-text="{{ result.views | myNumberFormatter }}"/&gt; views</source>
556 <context-group purpose="location"> 574 <context-group purpose="location">
557 <context context-type="sourcefile">app/+video-channels/video-channels.component.html</context> 575 <context context-type="sourcefile">app/search/search.component.html</context>
558 <context context-type="linenumber">14</context> 576 <context context-type="linenumber">52</context>
559 </context-group> 577 </context-group>
560 </trans-unit><trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96" datatype="html"> 578 </trans-unit><trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96" datatype="html">
561 <source>Change the language</source> 579 <source>Change the language</source>
@@ -565,7 +583,7 @@
565 </context-group> 583 </context-group>
566 <context-group purpose="location"> 584 <context-group purpose="location">
567 <context context-type="sourcefile">app/menu/menu.component.html</context> 585 <context context-type="sourcefile">app/menu/menu.component.html</context>
568 <context context-type="linenumber">83</context> 586 <context context-type="linenumber">88</context>
569 </context-group> 587 </context-group>
570 </trans-unit><trans-unit id="8c654f49714163eb2991b264e9fd4858e72c04c6" datatype="html"> 588 </trans-unit><trans-unit id="8c654f49714163eb2991b264e9fd4858e72c04c6" datatype="html">
571 <source> 589 <source>
@@ -631,41 +649,47 @@
631 <context context-type="sourcefile">app/menu/menu.component.html</context> 649 <context context-type="sourcefile">app/menu/menu.component.html</context>
632 <context context-type="linenumber">47</context> 650 <context context-type="linenumber">47</context>
633 </context-group> 651 </context-group>
652 </trans-unit><trans-unit id="e95ae009d0bdb45fcc656e8b65248cf7396080d5" datatype="html">
653 <source>Overview</source>
654 <context-group purpose="location">
655 <context context-type="sourcefile">app/menu/menu.component.html</context>
656 <context context-type="linenumber">52</context>
657 </context-group>
634 </trans-unit><trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> 658 </trans-unit><trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html">
635 <source>Trending</source> 659 <source>Trending</source>
636 <context-group purpose="location"> 660 <context-group purpose="location">
637 <context context-type="sourcefile">app/menu/menu.component.html</context> 661 <context context-type="sourcefile">app/menu/menu.component.html</context>
638 <context context-type="linenumber">52</context> 662 <context context-type="linenumber">57</context>
639 </context-group> 663 </context-group>
640 </trans-unit><trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> 664 </trans-unit><trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html">
641 <source>Recently added</source> 665 <source>Recently added</source>
642 <context-group purpose="location"> 666 <context-group purpose="location">
643 <context context-type="sourcefile">app/menu/menu.component.html</context> 667 <context context-type="sourcefile">app/menu/menu.component.html</context>
644 <context context-type="linenumber">57</context> 668 <context context-type="linenumber">62</context>
645 </context-group> 669 </context-group>
646 </trans-unit><trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d" datatype="html"> 670 </trans-unit><trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d" datatype="html">
647 <source>Local</source> 671 <source>Local</source>
648 <context-group purpose="location"> 672 <context-group purpose="location">
649 <context context-type="sourcefile">app/menu/menu.component.html</context> 673 <context context-type="sourcefile">app/menu/menu.component.html</context>
650 <context context-type="linenumber">62</context> 674 <context context-type="linenumber">67</context>
651 </context-group> 675 </context-group>
652 </trans-unit><trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f" datatype="html"> 676 </trans-unit><trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f" datatype="html">
653 <source>More</source> 677 <source>More</source>
654 <context-group purpose="location"> 678 <context-group purpose="location">
655 <context context-type="sourcefile">app/menu/menu.component.html</context> 679 <context context-type="sourcefile">app/menu/menu.component.html</context>
656 <context context-type="linenumber">67</context> 680 <context context-type="linenumber">72</context>
657 </context-group> 681 </context-group>
658 </trans-unit><trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> 682 </trans-unit><trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html">
659 <source>Administration</source> 683 <source>Administration</source>
660 <context-group purpose="location"> 684 <context-group purpose="location">
661 <context context-type="sourcefile">app/menu/menu.component.html</context> 685 <context context-type="sourcefile">app/menu/menu.component.html</context>
662 <context context-type="linenumber">71</context> 686 <context context-type="linenumber">76</context>
663 </context-group> 687 </context-group>
664 </trans-unit><trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> 688 </trans-unit><trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html">
665 <source>About</source> 689 <source>About</source>
666 <context-group purpose="location"> 690 <context-group purpose="location">
667 <context context-type="sourcefile">app/menu/menu.component.html</context> 691 <context context-type="sourcefile">app/menu/menu.component.html</context>
668 <context context-type="linenumber">76</context> 692 <context context-type="linenumber">81</context>
669 </context-group> 693 </context-group>
670 <context-group purpose="location"> 694 <context-group purpose="location">
671 <context context-type="sourcefile">app/+accounts/accounts.component.html</context> 695 <context context-type="sourcefile">app/+accounts/accounts.component.html</context>
@@ -675,6 +699,12 @@
675 <context context-type="sourcefile">app/+video-channels/video-channels.component.html</context> 699 <context context-type="sourcefile">app/+video-channels/video-channels.component.html</context>
676 <context context-type="linenumber">25</context> 700 <context context-type="linenumber">25</context>
677 </context-group> 701 </context-group>
702 </trans-unit><trans-unit id="cf75021ac8cb9efd4f95e8880cf52c9acd265768" datatype="html">
703 <source>Toggle dark interface</source>
704 <context-group purpose="location">
705 <context context-type="sourcefile">app/menu/menu.component.html</context>
706 <context context-type="linenumber">91</context>
707 </context-group>
678 </trans-unit><trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599" datatype="html"> 708 </trans-unit><trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599" datatype="html">
679 <source>Search...</source> 709 <source>Search...</source>
680 <context-group purpose="location"> 710 <context-group purpose="location">
@@ -731,11 +761,11 @@
731 </context-group> 761 </context-group>
732 <context-group purpose="location"> 762 <context-group purpose="location">
733 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 763 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
734 <context context-type="linenumber">46</context> 764 <context context-type="linenumber">47</context>
735 </context-group> 765 </context-group>
736 <context-group purpose="location"> 766 <context-group purpose="location">
737 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 767 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
738 <context context-type="linenumber">148</context> 768 <context context-type="linenumber">166</context>
739 </context-group> 769 </context-group>
740 </trans-unit><trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c" datatype="html"> 770 </trans-unit><trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c" datatype="html">
741 <source>Licence</source> 771 <source>Licence</source>
@@ -745,11 +775,11 @@
745 </context-group> 775 </context-group>
746 <context-group purpose="location"> 776 <context-group purpose="location">
747 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 777 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
748 <context context-type="linenumber">60</context> 778 <context context-type="linenumber">61</context>
749 </context-group> 779 </context-group>
750 <context-group purpose="location"> 780 <context-group purpose="location">
751 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 781 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
752 <context context-type="linenumber">157</context> 782 <context context-type="linenumber">175</context>
753 </context-group> 783 </context-group>
754 </trans-unit><trans-unit id="fe46ccaae902ce974e2441abe752399288298619" datatype="html"> 784 </trans-unit><trans-unit id="fe46ccaae902ce974e2441abe752399288298619" datatype="html">
755 <source>Language</source> 785 <source>Language</source>
@@ -763,11 +793,11 @@
763 </context-group> 793 </context-group>
764 <context-group purpose="location"> 794 <context-group purpose="location">
765 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 795 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
766 <context context-type="linenumber">74</context> 796 <context context-type="linenumber">75</context>
767 </context-group> 797 </context-group>
768 <context-group purpose="location"> 798 <context-group purpose="location">
769 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 799 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
770 <context context-type="linenumber">166</context> 800 <context context-type="linenumber">184</context>
771 </context-group> 801 </context-group>
772 </trans-unit><trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8" datatype="html"> 802 </trans-unit><trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8" datatype="html">
773 <source>All of these tags</source> 803 <source>All of these tags</source>
@@ -806,6 +836,10 @@
806 <context context-type="linenumber">7</context> 836 <context context-type="linenumber">7</context>
807 </context-group> 837 </context-group>
808 <context-group purpose="location"> 838 <context-group purpose="location">
839 <context context-type="sourcefile">app/videos/video-list/video-overview.component.html</context>
840 <context context-type="linenumber">3</context>
841 </context-group>
842 <context-group purpose="location">
809 <context context-type="sourcefile">app/shared/video/abstract-video-list.html</context> 843 <context context-type="sourcefile">app/shared/video/abstract-video-list.html</context>
810 <context context-type="linenumber">7</context> 844 <context context-type="linenumber">7</context>
811 </context-group> 845 </context-group>
@@ -817,6 +851,34 @@
817 <context context-type="sourcefile">app/shared/video/abstract-video-list.html</context> 851 <context context-type="sourcefile">app/shared/video/abstract-video-list.html</context>
818 <context context-type="linenumber">7</context> 852 <context context-type="linenumber">7</context>
819 </context-group> 853 </context-group>
854 </trans-unit><trans-unit id="2290d09f4f113351baa9152ca8ad14cd03a11ba6" datatype="html">
855 <source>
856 &lt;x id="START_LINK" ctype="x-a" equiv-text="&lt;a&gt;"/&gt;&lt;x id="INTERPOLATION" equiv-text="{{ object.category.label }}"/&gt;&lt;x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/&gt;
857 </source>
858 <context-group purpose="location">
859 <context context-type="sourcefile">app/videos/video-list/video-overview.component.html</context>
860 <context context-type="linenumber">6</context>
861 </context-group>
862 </trans-unit><trans-unit id="116ca0eb6d3837112867cce3b661fc6df8b93df7" datatype="html">
863 <source>
864 &lt;x id="START_LINK" ctype="x-a" equiv-text="&lt;a&gt;"/&gt;&lt;x id="INTERPOLATION" equiv-text="{{ object.tag }}"/&gt;&lt;x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/&gt;
865 </source>
866 <context-group purpose="location">
867 <context context-type="sourcefile">app/videos/video-list/video-overview.component.html</context>
868 <context context-type="linenumber">14</context>
869 </context-group>
870 </trans-unit><trans-unit id="e093a5a83045ff283f992a93699abb7cb9dd3c1b" datatype="html">
871 <source>
872 &lt;x id="START_LINK" ctype="x-a" equiv-text="&lt;a&gt;"/&gt;
873 &lt;x id="TAG_IMG" ctype="image" equiv-text="&lt;img/&gt;"/&gt;
874
875 &lt;x id="START_TAG_DIV" ctype="x-div" equiv-text="&lt;div&gt;"/&gt;&lt;x id="INTERPOLATION" equiv-text="{{ object.channel.displayName }}"/&gt;&lt;x id="CLOSE_TAG_DIV" ctype="x-div" equiv-text="&lt;/div&gt;"/&gt;
876 &lt;x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/&gt;
877 </source>
878 <context-group purpose="location">
879 <context context-type="sourcefile">app/videos/video-list/video-overview.component.html</context>
880 <context context-type="linenumber">22</context>
881 </context-group>
820 </trans-unit><trans-unit id="ff78f059449d44322f627d0f66df07abe476962b" datatype="html"> 882 </trans-unit><trans-unit id="ff78f059449d44322f627d0f66df07abe476962b" datatype="html">
821 <source>Instance</source> 883 <source>Instance</source>
822 <context-group purpose="location"> 884 <context-group purpose="location">
@@ -873,7 +935,7 @@
873 </context-group> 935 </context-group>
874 <context-group purpose="location"> 936 <context-group purpose="location">
875 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 937 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
876 <context context-type="linenumber">25</context> 938 <context context-type="linenumber">26</context>
877 </context-group> 939 </context-group>
878 </trans-unit><trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774" datatype="html"> 940 </trans-unit><trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774" datatype="html">
879 <source>Terms</source> 941 <source>Terms</source>
@@ -1141,6 +1203,24 @@
1141 <context context-type="sourcefile">app/+accounts/account-about/account-about.component.html</context> 1203 <context context-type="sourcefile">app/+accounts/account-about/account-about.component.html</context>
1142 <context context-type="linenumber">10</context> 1204 <context context-type="linenumber">10</context>
1143 </context-group> 1205 </context-group>
1206 </trans-unit><trans-unit id="8fef247fd0c5bf790151f7661cafc4b7fd0397f3" datatype="html">
1207 <source>&lt;x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/&gt; subscribers</source>
1208 <context-group purpose="location">
1209 <context context-type="sourcefile">app/+accounts/account-video-channels/account-video-channels.component.html</context>
1210 <context context-type="linenumber">9</context>
1211 </context-group>
1212 <context-group purpose="location">
1213 <context context-type="sourcefile">app/+my-account/my-account-video-channels/my-account-video-channels.component.html</context>
1214 <context context-type="linenumber">20</context>
1215 </context-group>
1216 <context-group purpose="location">
1217 <context context-type="sourcefile">app/+my-account/my-account-subscriptions/my-account-subscriptions.component.html</context>
1218 <context context-type="linenumber">13</context>
1219 </context-group>
1220 <context-group purpose="location">
1221 <context context-type="sourcefile">app/+video-channels/video-channels.component.html</context>
1222 <context context-type="linenumber">14</context>
1223 </context-group>
1144 </trans-unit><trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f" datatype="html"> 1224 </trans-unit><trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f" datatype="html">
1145 <source>See this video channel</source> 1225 <source>See this video channel</source>
1146 <context-group purpose="location"> 1226 <context-group purpose="location">
@@ -1177,35 +1257,41 @@
1177 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1257 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1178 <context context-type="linenumber">55</context> 1258 <context context-type="linenumber">55</context>
1179 </context-group> 1259 </context-group>
1260 </trans-unit><trans-unit id="3fae5a310387c065757fde11f22689b45a7b6f2d" datatype="html">
1261 <source>Videos Overview</source>
1262 <context-group purpose="location">
1263 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1264 <context context-type="linenumber">58</context>
1265 </context-group>
1180 </trans-unit><trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948" datatype="html"> 1266 </trans-unit><trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948" datatype="html">
1181 <source>Videos Trending</source> 1267 <source>Videos Trending</source>
1182 <context-group purpose="location"> 1268 <context-group purpose="location">
1183 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1269 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1184 <context context-type="linenumber">58</context> 1270 <context context-type="linenumber">59</context>
1185 </context-group> 1271 </context-group>
1186 </trans-unit><trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883" datatype="html"> 1272 </trans-unit><trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883" datatype="html">
1187 <source>Videos Recently Added</source> 1273 <source>Videos Recently Added</source>
1188 <context-group purpose="location"> 1274 <context-group purpose="location">
1189 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1275 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1190 <context context-type="linenumber">59</context> 1276 <context context-type="linenumber">60</context>
1191 </context-group> 1277 </context-group>
1192 </trans-unit><trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f" datatype="html"> 1278 </trans-unit><trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f" datatype="html">
1193 <source>Local videos</source> 1279 <source>Local videos</source>
1194 <context-group purpose="location"> 1280 <context-group purpose="location">
1195 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1281 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1196 <context context-type="linenumber">60</context> 1282 <context context-type="linenumber">61</context>
1197 </context-group> 1283 </context-group>
1198 </trans-unit><trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9" datatype="html"> 1284 </trans-unit><trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9" datatype="html">
1199 <source>Policy on videos containing sensitive content</source> 1285 <source>Policy on videos containing sensitive content</source>
1200 <context-group purpose="location"> 1286 <context-group purpose="location">
1201 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1287 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1202 <context context-type="linenumber">69</context> 1288 <context context-type="linenumber">70</context>
1203 </context-group> 1289 </context-group>
1204 </trans-unit><trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df" datatype="html"> 1290 </trans-unit><trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df" datatype="html">
1205 <source>With &lt;strong&gt;Do not list&lt;/strong&gt; or &lt;strong&gt;Blur thumbnails&lt;/strong&gt;, a confirmation will be requested to watch the video.</source> 1291 <source>With &lt;strong&gt;Do not list&lt;/strong&gt; or &lt;strong&gt;Blur thumbnails&lt;/strong&gt;, a confirmation will be requested to watch the video.</source>
1206 <context-group purpose="location"> 1292 <context-group purpose="location">
1207 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1293 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1208 <context context-type="linenumber">72</context> 1294 <context context-type="linenumber">73</context>
1209 </context-group> 1295 </context-group>
1210 <context-group purpose="location"> 1296 <context-group purpose="location">
1211 <context context-type="sourcefile">app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html</context> 1297 <context context-type="sourcefile">app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html</context>
@@ -1215,7 +1301,7 @@
1215 <source>Do not list</source> 1301 <source>Do not list</source>
1216 <context-group purpose="location"> 1302 <context-group purpose="location">
1217 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1303 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1218 <context context-type="linenumber">77</context> 1304 <context context-type="linenumber">78</context>
1219 </context-group> 1305 </context-group>
1220 <context-group purpose="location"> 1306 <context-group purpose="location">
1221 <context context-type="sourcefile">app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html</context> 1307 <context context-type="sourcefile">app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html</context>
@@ -1225,7 +1311,7 @@
1225 <source>Blur thumbnails</source> 1311 <source>Blur thumbnails</source>
1226 <context-group purpose="location"> 1312 <context-group purpose="location">
1227 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1313 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1228 <context context-type="linenumber">78</context> 1314 <context context-type="linenumber">79</context>
1229 </context-group> 1315 </context-group>
1230 <context-group purpose="location"> 1316 <context-group purpose="location">
1231 <context context-type="sourcefile">app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html</context> 1317 <context context-type="sourcefile">app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html</context>
@@ -1235,7 +1321,7 @@
1235 <source>Display</source> 1321 <source>Display</source>
1236 <context-group purpose="location"> 1322 <context-group purpose="location">
1237 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1323 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1238 <context context-type="linenumber">79</context> 1324 <context context-type="linenumber">80</context>
1239 </context-group> 1325 </context-group>
1240 <context-group purpose="location"> 1326 <context-group purpose="location">
1241 <context context-type="sourcefile">app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html</context> 1327 <context context-type="sourcefile">app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html</context>
@@ -1245,19 +1331,25 @@
1245 <source>Signup enabled</source> 1331 <source>Signup enabled</source>
1246 <context-group purpose="location"> 1332 <context-group purpose="location">
1247 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1333 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1248 <context context-type="linenumber">91</context> 1334 <context context-type="linenumber">92</context>
1335 </context-group>
1336 </trans-unit><trans-unit id="90f449b1f4787e6c9731198a96d35399c1b340a7" datatype="html">
1337 <source>Signup requires email verification</source>
1338 <context-group purpose="location">
1339 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1340 <context context-type="linenumber">97</context>
1249 </context-group> 1341 </context-group>
1250 </trans-unit><trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402" datatype="html"> 1342 </trans-unit><trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402" datatype="html">
1251 <source>Signup limit</source> 1343 <source>Signup limit</source>
1252 <context-group purpose="location"> 1344 <context-group purpose="location">
1253 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1345 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1254 <context context-type="linenumber">95</context> 1346 <context context-type="linenumber">101</context>
1255 </context-group> 1347 </context-group>
1256 </trans-unit><trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36" datatype="html"> 1348 </trans-unit><trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36" datatype="html">
1257 <source>Import</source> 1349 <source>Import</source>
1258 <context-group purpose="location"> 1350 <context-group purpose="location">
1259 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1351 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1260 <context context-type="linenumber">105</context> 1352 <context context-type="linenumber">111</context>
1261 </context-group> 1353 </context-group>
1262 <context-group purpose="location"> 1354 <context-group purpose="location">
1263 <context context-type="sourcefile">app/videos/+video-edit/video-add-components/video-import-url.component.html</context> 1355 <context context-type="sourcefile">app/videos/+video-edit/video-add-components/video-import-url.component.html</context>
@@ -1271,37 +1363,43 @@
1271 <source>Video import with HTTP enabled</source> 1363 <source>Video import with HTTP enabled</source>
1272 <context-group purpose="location"> 1364 <context-group purpose="location">
1273 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1365 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1274 <context context-type="linenumber">109</context> 1366 <context context-type="linenumber">115</context>
1275 </context-group> 1367 </context-group>
1276 </trans-unit><trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e" datatype="html"> 1368 </trans-unit><trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e" datatype="html">
1277 <source>Video import with a torrent file or a magnet URI enabled</source> 1369 <source>Video import with a torrent file or a magnet URI enabled</source>
1278 <context-group purpose="location"> 1370 <context-group purpose="location">
1279 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1371 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1280 <context context-type="linenumber">114</context> 1372 <context context-type="linenumber">120</context>
1281 </context-group> 1373 </context-group>
1282 </trans-unit><trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011" datatype="html"> 1374 </trans-unit><trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011" datatype="html">
1283 <source>Administrator</source> 1375 <source>Administrator</source>
1284 <context-group purpose="location"> 1376 <context-group purpose="location">
1285 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1377 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1286 <context context-type="linenumber">117</context> 1378 <context context-type="linenumber">123</context>
1287 </context-group> 1379 </context-group>
1288 </trans-unit><trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> 1380 </trans-unit><trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html">
1289 <source>Admin email</source> 1381 <source>Admin email</source>
1290 <context-group purpose="location"> 1382 <context-group purpose="location">
1291 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1383 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1292 <context context-type="linenumber">120</context> 1384 <context context-type="linenumber">126</context>
1293 </context-group> 1385 </context-group>
1294 </trans-unit><trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be" datatype="html"> 1386 </trans-unit><trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be" datatype="html">
1295 <source>Users</source> 1387 <source>Users</source>
1296 <context-group purpose="location"> 1388 <context-group purpose="location">
1297 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1389 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1298 <context context-type="linenumber">130</context> 1390 <context context-type="linenumber">136</context>
1299 </context-group> 1391 </context-group>
1300 </trans-unit><trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09" datatype="html"> 1392 </trans-unit><trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09" datatype="html">
1301 <source>User default video quota</source> 1393 <source>User default video quota</source>
1302 <context-group purpose="location"> 1394 <context-group purpose="location">
1303 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1395 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1304 <context context-type="linenumber">133</context> 1396 <context context-type="linenumber">139</context>
1397 </context-group>
1398 </trans-unit><trans-unit id="f5528147716c4d3286c89defbe63ee0b75da5ffe" datatype="html">
1399 <source>User default daily upload limit</source>
1400 <context-group purpose="location">
1401 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1402 <context context-type="linenumber">153</context>
1305 </context-group> 1403 </context-group>
1306 </trans-unit><trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5" datatype="html"> 1404 </trans-unit><trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5" datatype="html">
1307 <source>Basic configuration</source> 1405 <source>Basic configuration</source>
@@ -1313,25 +1411,25 @@
1313 <source>Twitter</source> 1411 <source>Twitter</source>
1314 <context-group purpose="location"> 1412 <context-group purpose="location">
1315 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1413 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1316 <context context-type="linenumber">150</context> 1414 <context context-type="linenumber">170</context>
1317 </context-group> 1415 </context-group>
1318 </trans-unit><trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html"> 1416 </trans-unit><trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524" datatype="html">
1319 <source>Your Twitter username</source> 1417 <source>Your Twitter username</source>
1320 <context-group purpose="location"> 1418 <context-group purpose="location">
1321 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1419 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1322 <context context-type="linenumber">153</context> 1420 <context context-type="linenumber">173</context>
1323 </context-group> 1421 </context-group>
1324 </trans-unit><trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c" datatype="html"> 1422 </trans-unit><trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c" datatype="html">
1325 <source>Indicates the Twitter account for the website or platform on which the content was published.</source> 1423 <source>Indicates the Twitter account for the website or platform on which the content was published.</source>
1326 <context-group purpose="location"> 1424 <context-group purpose="location">
1327 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1425 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1328 <context context-type="linenumber">156</context> 1426 <context context-type="linenumber">176</context>
1329 </context-group> 1427 </context-group>
1330 </trans-unit><trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605" datatype="html"> 1428 </trans-unit><trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605" datatype="html">
1331 <source>Instance whitelisted by Twitter</source> 1429 <source>Instance whitelisted by Twitter</source>
1332 <context-group purpose="location"> 1430 <context-group purpose="location">
1333 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1431 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1334 <context context-type="linenumber">169</context> 1432 <context context-type="linenumber">189</context>
1335 </context-group> 1433 </context-group>
1336 </trans-unit><trans-unit id="a62985a76e947b0068ad328b5172d5af5b125b9a" datatype="html"> 1434 </trans-unit><trans-unit id="a62985a76e947b0068ad328b5172d5af5b125b9a" datatype="html">
1337 <source>If your instance is whitelisted by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.&lt;br /&gt; 1435 <source>If your instance is whitelisted by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.&lt;br /&gt;
@@ -1339,43 +1437,43 @@
1339 Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on &lt;a target=&apos;_blank&apos; rel=&apos;noopener noreferrer&apos; href=&apos;https://cards-dev.twitter.com/validator&apos;&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; to see if you instance is whitelisted.</source> 1437 Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on &lt;a target=&apos;_blank&apos; rel=&apos;noopener noreferrer&apos; href=&apos;https://cards-dev.twitter.com/validator&apos;&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; to see if you instance is whitelisted.</source>
1340 <context-group purpose="location"> 1438 <context-group purpose="location">
1341 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1439 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1342 <context context-type="linenumber">170</context> 1440 <context context-type="linenumber">190</context>
1343 </context-group> 1441 </context-group>
1344 </trans-unit><trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5" datatype="html"> 1442 </trans-unit><trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5" datatype="html">
1345 <source>Services</source> 1443 <source>Services</source>
1346 <context-group purpose="location"> 1444 <context-group purpose="location">
1347 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1445 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1348 <context context-type="linenumber">148</context> 1446 <context context-type="linenumber">168</context>
1349 </context-group> 1447 </context-group>
1350 </trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html"> 1448 </trans-unit><trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490" datatype="html">
1351 <source>Transcoding</source> 1449 <source>Transcoding</source>
1352 <context-group purpose="location"> 1450 <context-group purpose="location">
1353 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1451 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1354 <context context-type="linenumber">180</context> 1452 <context context-type="linenumber">200</context>
1355 </context-group> 1453 </context-group>
1356 </trans-unit><trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html"> 1454 </trans-unit><trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9" datatype="html">
1357 <source>Transcoding enabled</source> 1455 <source>Transcoding enabled</source>
1358 <context-group purpose="location"> 1456 <context-group purpose="location">
1359 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1457 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1360 <context context-type="linenumber">184</context> 1458 <context context-type="linenumber">204</context>
1361 </context-group> 1459 </context-group>
1362 </trans-unit><trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html"> 1460 </trans-unit><trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f" datatype="html">
1363 <source>If you disable transcoding, many videos from your users will not work!</source> 1461 <source>If you disable transcoding, many videos from your users will not work!</source>
1364 <context-group purpose="location"> 1462 <context-group purpose="location">
1365 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1463 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1366 <context context-type="linenumber">185</context> 1464 <context context-type="linenumber">205</context>
1367 </context-group> 1465 </context-group>
1368 </trans-unit><trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html"> 1466 </trans-unit><trans-unit id="a33feadefbb776217c2db96100736314f8b765c2" datatype="html">
1369 <source>Transcoding threads</source> 1467 <source>Transcoding threads</source>
1370 <context-group purpose="location"> 1468 <context-group purpose="location">
1371 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1469 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1372 <context context-type="linenumber">191</context> 1470 <context context-type="linenumber">211</context>
1373 </context-group> 1471 </context-group>
1374 </trans-unit><trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500" datatype="html"> 1472 </trans-unit><trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500" datatype="html">
1375 <source>Resolution &lt;x id="INTERPOLATION" equiv-text="{{resolution}}"/&gt; enabled</source> 1473 <source>Resolution &lt;x id="INTERPOLATION" equiv-text="{{resolution}}"/&gt; enabled</source>
1376 <context-group purpose="location"> 1474 <context-group purpose="location">
1377 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1475 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1378 <context context-type="linenumber">207</context> 1476 <context context-type="linenumber">227</context>
1379 </context-group> 1477 </context-group>
1380 </trans-unit><trans-unit id="e9fb2d7685ae280026fe6463731170b067e419d5" datatype="html"> 1478 </trans-unit><trans-unit id="e9fb2d7685ae280026fe6463731170b067e419d5" datatype="html">
1381 <source> 1479 <source>
@@ -1385,43 +1483,43 @@
1385 </source> 1483 </source>
1386 <context-group purpose="location"> 1484 <context-group purpose="location">
1387 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1485 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1388 <context context-type="linenumber">213</context> 1486 <context context-type="linenumber">233</context>
1389 </context-group> 1487 </context-group>
1390 </trans-unit><trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0" datatype="html"> 1488 </trans-unit><trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0" datatype="html">
1391 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source> 1489 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source>
1392 <context-group purpose="location"> 1490 <context-group purpose="location">
1393 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1491 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1394 <context context-type="linenumber">218</context> 1492 <context context-type="linenumber">238</context>
1395 </context-group> 1493 </context-group>
1396 </trans-unit><trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7" datatype="html"> 1494 </trans-unit><trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7" datatype="html">
1397 <source>Previews cache size</source> 1495 <source>Previews cache size</source>
1398 <context-group purpose="location"> 1496 <context-group purpose="location">
1399 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1497 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1400 <context context-type="linenumber">223</context> 1498 <context context-type="linenumber">243</context>
1401 </context-group> 1499 </context-group>
1402 </trans-unit><trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607" datatype="html"> 1500 </trans-unit><trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607" datatype="html">
1403 <source>Video captions cache size</source> 1501 <source>Video captions cache size</source>
1404 <context-group purpose="location"> 1502 <context-group purpose="location">
1405 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1503 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1406 <context context-type="linenumber">234</context> 1504 <context context-type="linenumber">254</context>
1407 </context-group> 1505 </context-group>
1408 </trans-unit><trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c" datatype="html"> 1506 </trans-unit><trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c" datatype="html">
1409 <source>Customizations</source> 1507 <source>Customizations</source>
1410 <context-group purpose="location"> 1508 <context-group purpose="location">
1411 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1509 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1412 <context context-type="linenumber">244</context> 1510 <context context-type="linenumber">264</context>
1413 </context-group> 1511 </context-group>
1414 </trans-unit><trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html"> 1512 </trans-unit><trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c" datatype="html">
1415 <source>JavaScript</source> 1513 <source>JavaScript</source>
1416 <context-group purpose="location"> 1514 <context-group purpose="location">
1417 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1515 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1418 <context context-type="linenumber">247</context> 1516 <context context-type="linenumber">267</context>
1419 </context-group> 1517 </context-group>
1420 </trans-unit><trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c" datatype="html"> 1518 </trans-unit><trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c" datatype="html">
1421 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log(&apos;my instance is amazing&apos;);&lt;/pre&gt;</source> 1519 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log(&apos;my instance is amazing&apos;);&lt;/pre&gt;</source>
1422 <context-group purpose="location"> 1520 <context-group purpose="location">
1423 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1521 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1424 <context context-type="linenumber">250</context> 1522 <context context-type="linenumber">270</context>
1425 </context-group> 1523 </context-group>
1426 </trans-unit><trans-unit id="3c2a41724fa0abcd1047ed111508367405f229b5" datatype="html"> 1524 </trans-unit><trans-unit id="3c2a41724fa0abcd1047ed111508367405f229b5" datatype="html">
1427 <source> 1525 <source>
@@ -1441,25 +1539,25 @@
1441 </source> 1539 </source>
1442 <context-group purpose="location"> 1540 <context-group purpose="location">
1443 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1541 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1444 <context context-type="linenumber">266</context> 1542 <context context-type="linenumber">286</context>
1445 </context-group> 1543 </context-group>
1446 </trans-unit><trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html"> 1544 </trans-unit><trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab" datatype="html">
1447 <source>Advanced configuration</source> 1545 <source>Advanced configuration</source>
1448 <context-group purpose="location"> 1546 <context-group purpose="location">
1449 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1547 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1450 <context context-type="linenumber">177</context> 1548 <context context-type="linenumber">197</context>
1451 </context-group> 1549 </context-group>
1452 </trans-unit><trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html"> 1550 </trans-unit><trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8" datatype="html">
1453 <source>Update configuration</source> 1551 <source>Update configuration</source>
1454 <context-group purpose="location"> 1552 <context-group purpose="location">
1455 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1553 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1456 <context context-type="linenumber">294</context> 1554 <context context-type="linenumber">314</context>
1457 </context-group> 1555 </context-group>
1458 </trans-unit><trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca" datatype="html"> 1556 </trans-unit><trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca" datatype="html">
1459 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source> 1557 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source>
1460 <context-group purpose="location"> 1558 <context-group purpose="location">
1461 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> 1559 <context context-type="sourcefile">app/+admin/config/edit-custom-config/edit-custom-config.component.html</context>
1462 <context context-type="linenumber">295</context> 1560 <context context-type="linenumber">315</context>
1463 </context-group> 1561 </context-group>
1464 </trans-unit><trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c" datatype="html"> 1562 </trans-unit><trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c" datatype="html">
1465 <source> 1563 <source>
@@ -1589,7 +1687,7 @@
1589 </context-group> 1687 </context-group>
1590 <context-group purpose="location"> 1688 <context-group purpose="location">
1591 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/video-abuse-list.component.html</context> 1689 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/video-abuse-list.component.html</context>
1592 <context context-type="linenumber">11</context> 1690 <context context-type="linenumber">9</context>
1593 </context-group> 1691 </context-group>
1594 <context-group purpose="location"> 1692 <context-group purpose="location">
1595 <context context-type="sourcefile">app/+my-account/my-account-video-imports/my-account-video-imports.component.html</context> 1693 <context context-type="sourcefile">app/+my-account/my-account-video-imports/my-account-video-imports.component.html</context>
@@ -1701,20 +1799,6 @@
1701 <context context-type="sourcefile">app/+admin/users/user-list/user-list.component.html</context> 1799 <context context-type="sourcefile">app/+admin/users/user-list/user-list.component.html</context>
1702 <context context-type="linenumber">20</context> 1800 <context context-type="linenumber">20</context>
1703 </context-group> 1801 </context-group>
1704 </trans-unit><trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b" datatype="html">
1705 <source>Video quota</source>
1706 <context-group purpose="location">
1707 <context context-type="sourcefile">app/+admin/users/user-edit/user-edit.component.html</context>
1708 <context context-type="linenumber">56</context>
1709 </context-group>
1710 <context-group purpose="location">
1711 <context context-type="sourcefile">app/+admin/users/user-edit/user-edit.component.html</context>
1712 <context context-type="linenumber">56</context>
1713 </context-group>
1714 <context-group purpose="location">
1715 <context context-type="sourcefile">app/+admin/users/user-list/user-list.component.html</context>
1716 <context context-type="linenumber">19</context>
1717 </context-group>
1718 </trans-unit><trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345" datatype="html"> 1802 </trans-unit><trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345" datatype="html">
1719 <source> 1803 <source>
1720 Transcoding is enabled on server. The video quota only take in account &lt;x id="START_TAG_STRONG" ctype="x-strong" equiv-text="&lt;strong&gt;"/&gt;original&lt;x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="&lt;/strong&gt;"/&gt; video. &lt;x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br/&gt;"/&gt; 1804 Transcoding is enabled on server. The video quota only take in account &lt;x id="START_TAG_STRONG" ctype="x-strong" equiv-text="&lt;strong&gt;"/&gt;original&lt;x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="&lt;/strong&gt;"/&gt; video. &lt;x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br/&gt;"/&gt;
@@ -1728,6 +1812,16 @@
1728 <context context-type="sourcefile">app/+admin/users/user-edit/user-edit.component.html</context> 1812 <context context-type="sourcefile">app/+admin/users/user-edit/user-edit.component.html</context>
1729 <context context-type="linenumber">65</context> 1813 <context context-type="linenumber">65</context>
1730 </context-group> 1814 </context-group>
1815 </trans-unit><trans-unit id="6ded52553dd8720fd3698b8fbc3a6d037c07b496" datatype="html">
1816 <source>Daily video quota</source>
1817 <context-group purpose="location">
1818 <context context-type="sourcefile">app/+admin/users/user-edit/user-edit.component.html</context>
1819 <context context-type="linenumber">72</context>
1820 </context-group>
1821 <context-group purpose="location">
1822 <context context-type="sourcefile">app/+admin/users/user-edit/user-edit.component.html</context>
1823 <context context-type="linenumber">72</context>
1824 </context-group>
1731 </trans-unit><trans-unit id="ffd94bfbcc0363386484e45e8bdc7b2361a95a33" datatype="html"> 1825 </trans-unit><trans-unit id="ffd94bfbcc0363386484e45e8bdc7b2361a95a33" datatype="html">
1732 <source>Ban &lt;x id="INTERPOLATION" equiv-text="{{ userToBan.username }}"/&gt;</source> 1826 <source>Ban &lt;x id="INTERPOLATION" equiv-text="{{ userToBan.username }}"/&gt;</source>
1733 <context-group purpose="location"> 1827 <context-group purpose="location">
@@ -1782,7 +1876,7 @@
1782 </context-group> 1876 </context-group>
1783 <context-group purpose="location"> 1877 <context-group purpose="location">
1784 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/video-abuse-list.component.html</context> 1878 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/video-abuse-list.component.html</context>
1785 <context context-type="linenumber">47</context> 1879 <context context-type="linenumber">44</context>
1786 </context-group> 1880 </context-group>
1787 <context-group purpose="location"> 1881 <context-group purpose="location">
1788 <context context-type="sourcefile">app/+admin/moderation/video-blacklist-list/video-blacklist-list.component.html</context> 1882 <context context-type="sourcefile">app/+admin/moderation/video-blacklist-list/video-blacklist-list.component.html</context>
@@ -1814,55 +1908,67 @@
1814 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/moderation-comment-modal.component.html</context> 1908 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/moderation-comment-modal.component.html</context>
1815 <context context-type="linenumber">25</context> 1909 <context context-type="linenumber">25</context>
1816 </context-group> 1910 </context-group>
1817 </trans-unit><trans-unit id="7e7ad19f1bcc2c33cdba4c1ad25e2b398ad453d9" datatype="html">
1818 <source>State &lt;x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/&gt;&lt;x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/&gt;</source>
1819 <context-group purpose="location">
1820 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/video-abuse-list.component.html</context>
1821 <context context-type="linenumber">8</context>
1822 </context-group>
1823 </trans-unit><trans-unit id="4ba250869daa372b54d24fafc0ea934769ee4076" datatype="html">
1824 <source>Reason</source>
1825 <context-group purpose="location">
1826 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/video-abuse-list.component.html</context>
1827 <context context-type="linenumber">9</context>
1828 </context-group>
1829 </trans-unit><trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2" datatype="html"> 1911 </trans-unit><trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2" datatype="html">
1830 <source>Reporter</source> 1912 <source>Reporter</source>
1831 <context-group purpose="location"> 1913 <context-group purpose="location">
1832 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/video-abuse-list.component.html</context> 1914 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/video-abuse-list.component.html</context>
1833 <context context-type="linenumber">10</context> 1915 <context context-type="linenumber">8</context>
1834 </context-group> 1916 </context-group>
1835 </trans-unit><trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4" datatype="html"> 1917 </trans-unit><trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4" datatype="html">
1836 <source>Video</source> 1918 <source>Video</source>
1837 <context-group purpose="location"> 1919 <context-group purpose="location">
1838 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/video-abuse-list.component.html</context> 1920 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/video-abuse-list.component.html</context>
1839 <context context-type="linenumber">12</context> 1921 <context context-type="linenumber">10</context>
1840 </context-group> 1922 </context-group>
1841 <context-group purpose="location"> 1923 <context-group purpose="location">
1842 <context context-type="sourcefile">app/+my-account/my-account-video-imports/my-account-video-imports.component.html</context> 1924 <context context-type="sourcefile">app/+my-account/my-account-video-imports/my-account-video-imports.component.html</context>
1843 <context context-type="linenumber">9</context> 1925 <context context-type="linenumber">9</context>
1844 </context-group> 1926 </context-group>
1927 <context-group purpose="location">
1928 <context context-type="sourcefile">app/+my-account/my-account-ownership/my-account-ownership.component.html</context>
1929 <context context-type="linenumber">14</context>
1930 </context-group>
1931 </trans-unit><trans-unit id="7e7ad19f1bcc2c33cdba4c1ad25e2b398ad453d9" datatype="html">
1932 <source>State &lt;x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/&gt;&lt;x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/&gt;</source>
1933 <context-group purpose="location">
1934 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/video-abuse-list.component.html</context>
1935 <context context-type="linenumber">11</context>
1936 </context-group>
1845 </trans-unit><trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7" datatype="html"> 1937 </trans-unit><trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7" datatype="html">
1846 <source>Go to the account</source> 1938 <source>Go to the account</source>
1847 <context-group purpose="location"> 1939 <context-group purpose="location">
1848 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/video-abuse-list.component.html</context> 1940 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/video-abuse-list.component.html</context>
1849 <context context-type="linenumber">33</context> 1941 <context context-type="linenumber">25</context>
1942 </context-group>
1943 <context-group purpose="location">
1944 <context context-type="sourcefile">app/+my-account/my-account-ownership/my-account-ownership.component.html</context>
1945 <context context-type="linenumber">27</context>
1850 </context-group> 1946 </context-group>
1851 </trans-unit><trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5" datatype="html"> 1947 </trans-unit><trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5" datatype="html">
1852 <source>Go to the video</source> 1948 <source>Go to the video</source>
1853 <context-group purpose="location"> 1949 <context-group purpose="location">
1854 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/video-abuse-list.component.html</context> 1950 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/video-abuse-list.component.html</context>
1855 <context context-type="linenumber">41</context> 1951 <context context-type="linenumber">33</context>
1856 </context-group> 1952 </context-group>
1857 <context-group purpose="location"> 1953 <context-group purpose="location">
1858 <context context-type="sourcefile">app/+admin/moderation/video-blacklist-list/video-blacklist-list.component.html</context> 1954 <context context-type="sourcefile">app/+admin/moderation/video-blacklist-list/video-blacklist-list.component.html</context>
1859 <context context-type="linenumber">24</context> 1955 <context context-type="linenumber">24</context>
1860 </context-group> 1956 </context-group>
1957 <context-group purpose="location">
1958 <context context-type="sourcefile">app/+my-account/my-account-ownership/my-account-ownership.component.html</context>
1959 <context context-type="linenumber">33</context>
1960 </context-group>
1961 </trans-unit><trans-unit id="e330cbadca2d8639aabf525d5fe7e5b62d324ee2" datatype="html">
1962 <source>Reason:</source>
1963 <context-group purpose="location">
1964 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/video-abuse-list.component.html</context>
1965 <context context-type="linenumber">53</context>
1966 </context-group>
1861 </trans-unit><trans-unit id="018cbb63c7eda4b82d17dd9058cfaa0fd055c638" datatype="html"> 1967 </trans-unit><trans-unit id="018cbb63c7eda4b82d17dd9058cfaa0fd055c638" datatype="html">
1862 <source>Moderation comment:</source> 1968 <source>Moderation comment:</source>
1863 <context-group purpose="location"> 1969 <context-group purpose="location">
1864 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/video-abuse-list.component.html</context> 1970 <context context-type="sourcefile">app/+admin/moderation/video-abuse-list/video-abuse-list.component.html</context>
1865 <context context-type="linenumber">55</context> 1971 <context context-type="linenumber">57</context>
1866 </context-group> 1972 </context-group>
1867 </trans-unit><trans-unit id="b14fd2fc28c5eecd05554d2bcbc3a938c599e2bf" datatype="html"> 1973 </trans-unit><trans-unit id="b14fd2fc28c5eecd05554d2bcbc3a938c599e2bf" datatype="html">
1868 <source>Video name &lt;x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/&gt;&lt;x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/&gt;</source> 1974 <source>Video name &lt;x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/&gt;&lt;x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/&gt;</source>
@@ -1912,29 +2018,41 @@
1912 <context context-type="sourcefile">app/+my-account/my-account.component.html</context> 2018 <context context-type="sourcefile">app/+my-account/my-account.component.html</context>
1913 <context context-type="linenumber">3</context> 2019 <context context-type="linenumber">3</context>
1914 </context-group> 2020 </context-group>
2021 </trans-unit><trans-unit id="4ef4f031c147fb9ee0168bc6eacb78de180d7432" datatype="html">
2022 <source>My library</source>
2023 <context-group purpose="location">
2024 <context context-type="sourcefile">app/+my-account/my-account.component.html</context>
2025 <context context-type="linenumber">7</context>
2026 </context-group>
1915 </trans-unit><trans-unit id="8dd18d9047c4b2dc9786550dfd8fa99f3b14e17f" datatype="html"> 2027 </trans-unit><trans-unit id="8dd18d9047c4b2dc9786550dfd8fa99f3b14e17f" datatype="html">
1916 <source>My channels</source> 2028 <source>My channels</source>
1917 <context-group purpose="location"> 2029 <context-group purpose="location">
1918 <context context-type="sourcefile">app/+my-account/my-account.component.html</context> 2030 <context context-type="sourcefile">app/+my-account/my-account.component.html</context>
1919 <context context-type="linenumber">5</context> 2031 <context context-type="linenumber">12</context>
1920 </context-group> 2032 </context-group>
1921 </trans-unit><trans-unit id="d02888c485d3aeab6de628508f4a00312a722894" datatype="html"> 2033 </trans-unit><trans-unit id="d02888c485d3aeab6de628508f4a00312a722894" datatype="html">
1922 <source>My videos</source> 2034 <source>My videos</source>
1923 <context-group purpose="location"> 2035 <context-group purpose="location">
1924 <context context-type="sourcefile">app/+my-account/my-account.component.html</context> 2036 <context context-type="sourcefile">app/+my-account/my-account.component.html</context>
1925 <context context-type="linenumber">7</context> 2037 <context context-type="linenumber">14</context>
1926 </context-group> 2038 </context-group>
1927 </trans-unit><trans-unit id="29038e66547b3ba70701fb34eda68834a56f17d9" datatype="html"> 2039 </trans-unit><trans-unit id="29038e66547b3ba70701fb34eda68834a56f17d9" datatype="html">
1928 <source>My subscriptions</source> 2040 <source>My subscriptions</source>
1929 <context-group purpose="location"> 2041 <context-group purpose="location">
1930 <context context-type="sourcefile">app/+my-account/my-account.component.html</context> 2042 <context context-type="sourcefile">app/+my-account/my-account.component.html</context>
1931 <context context-type="linenumber">9</context> 2043 <context context-type="linenumber">16</context>
1932 </context-group> 2044 </context-group>
1933 </trans-unit><trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> 2045 </trans-unit><trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html">
1934 <source>My imports</source> 2046 <source>My imports</source>
1935 <context-group purpose="location"> 2047 <context-group purpose="location">
1936 <context context-type="sourcefile">app/+my-account/my-account.component.html</context> 2048 <context context-type="sourcefile">app/+my-account/my-account.component.html</context>
1937 <context context-type="linenumber">11</context> 2049 <context context-type="linenumber">18</context>
2050 </context-group>
2051 </trans-unit><trans-unit id="73022f1676784c4f9b8cdbb322e52b02ccc800b7" datatype="html">
2052 <source>Ownership changes</source>
2053 <context-group purpose="location">
2054 <context context-type="sourcefile">app/+my-account/my-account.component.html</context>
2055 <context context-type="linenumber">22</context>
1938 </context-group> 2056 </context-group>
1939 </trans-unit><trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48" datatype="html"> 2057 </trans-unit><trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48" datatype="html">
1940 <source>Video quota:</source> 2058 <source>Video quota:</source>
@@ -1960,6 +2078,52 @@
1960 <context context-type="sourcefile">app/+my-account/my-account-settings/my-account-settings.component.html</context> 2078 <context context-type="sourcefile">app/+my-account/my-account-settings/my-account-settings.component.html</context>
1961 <context context-type="linenumber">18</context> 2079 <context context-type="linenumber">18</context>
1962 </context-group> 2080 </context-group>
2081 </trans-unit><trans-unit id="2dc22fcebf6aaa76196d2def33a827a34bf910bf" datatype="html">
2082 <source>Change ownership</source>
2083 <context-group purpose="location">
2084 <context context-type="sourcefile">app/+my-account/my-account-videos/video-change-ownership/video-change-ownership.component.html</context>
2085 <context context-type="linenumber">3</context>
2086 </context-group>
2087 </trans-unit><trans-unit id="046c4fa30411e6b1aa46dc51bf82d07b1adf14d4" datatype="html">
2088 <source>Select the next owner</source>
2089 <context-group purpose="location">
2090 <context context-type="sourcefile">app/+my-account/my-account-videos/video-change-ownership/video-change-ownership.component.html</context>
2091 <context context-type="linenumber">9</context>
2092 </context-group>
2093 </trans-unit><trans-unit id="a5433ae2324496bea9537caa5e8a2719d8e958d8" datatype="html">
2094 <source>
2095 Cancel
2096 </source>
2097 <context-group purpose="location">
2098 <context context-type="sourcefile">app/+my-account/my-account-videos/video-change-ownership/video-change-ownership.component.html</context>
2099 <context context-type="linenumber">20</context>
2100 </context-group>
2101 <context-group purpose="location">
2102 <context context-type="sourcefile">app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.html</context>
2103 <context context-type="linenumber">23</context>
2104 </context-group>
2105 <context-group purpose="location">
2106 <context context-type="sourcefile">app/videos/+video-edit/shared/video-caption-add-modal.component.html</context>
2107 <context context-type="linenumber">35</context>
2108 </context-group>
2109 </trans-unit><trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd" datatype="html">
2110 <source>Submit</source>
2111 <context-group purpose="location">
2112 <context context-type="sourcefile">app/+my-account/my-account-videos/video-change-ownership/video-change-ownership.component.html</context>
2113 <context context-type="linenumber">25</context>
2114 </context-group>
2115 <context-group purpose="location">
2116 <context context-type="sourcefile">app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.html</context>
2117 <context context-type="linenumber">28</context>
2118 </context-group>
2119 <context-group purpose="location">
2120 <context context-type="sourcefile">app/videos/+video-watch/modal/video-report.component.html</context>
2121 <context context-type="linenumber">24</context>
2122 </context-group>
2123 <context-group purpose="location">
2124 <context context-type="sourcefile">app/videos/+video-watch/modal/video-blacklist.component.html</context>
2125 <context context-type="linenumber">24</context>
2126 </context-group>
1963 </trans-unit><trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79" datatype="html"> 2127 </trans-unit><trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79" datatype="html">
1964 <source>&lt;x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/&gt; - &lt;x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/&gt; views</source> 2128 <source>&lt;x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/&gt; - &lt;x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/&gt; views</source>
1965 <context-group purpose="location"> 2129 <context-group purpose="location">
@@ -2067,6 +2231,57 @@ When you will upload a video in this channel, the video support field will be au
2067 <context context-type="sourcefile">app/+video-channels/video-channels.component.html</context> 2231 <context context-type="sourcefile">app/+video-channels/video-channels.component.html</context>
2068 <context context-type="linenumber">16</context> 2232 <context context-type="linenumber">16</context>
2069 </context-group> 2233 </context-group>
2234 </trans-unit><trans-unit id="fbc450919a486e8ed311a7e91a41987d47d83804" datatype="html">
2235 <source>Accept ownership</source>
2236 <context-group purpose="location">
2237 <context context-type="sourcefile">app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.html</context>
2238 <context context-type="linenumber">3</context>
2239 </context-group>
2240 </trans-unit><trans-unit id="4570c754149df06f31096510abfc925968c35562" datatype="html">
2241 <source>Select the target channel</source>
2242 <context-group purpose="location">
2243 <context context-type="sourcefile">app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.html</context>
2244 <context context-type="linenumber">9</context>
2245 </context-group>
2246 </trans-unit><trans-unit id="e98239d8a6be1100119ff4b5630c822b82786740" datatype="html">
2247 <source>Initiator</source>
2248 <context-group purpose="location">
2249 <context context-type="sourcefile">app/+my-account/my-account-ownership/my-account-ownership.component.html</context>
2250 <context context-type="linenumber">13</context>
2251 </context-group>
2252 </trans-unit><trans-unit id="b08d67fe4e192ea8352bebdc6aabbd1bb7abed02" datatype="html">
2253 <source>
2254 Created
2255 &lt;x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/&gt;&lt;x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/&gt;
2256 </source>
2257 <context-group purpose="location">
2258 <context context-type="sourcefile">app/+my-account/my-account-ownership/my-account-ownership.component.html</context>
2259 <context context-type="linenumber">15</context>
2260 </context-group>
2261 </trans-unit><trans-unit id="81b97b8ea996ad1e4f9fca8415021850214884b1" datatype="html">
2262 <source>Status</source>
2263 <context-group purpose="location">
2264 <context context-type="sourcefile">app/+my-account/my-account-ownership/my-account-ownership.component.html</context>
2265 <context context-type="linenumber">19</context>
2266 </context-group>
2267 </trans-unit><trans-unit id="1bd5e17c9582661e20763a7634ef07881e33bbd7" datatype="html">
2268 <source>Action</source>
2269 <context-group purpose="location">
2270 <context context-type="sourcefile">app/+my-account/my-account-ownership/my-account-ownership.component.html</context>
2271 <context context-type="linenumber">20</context>
2272 </context-group>
2273 </trans-unit><trans-unit id="f4212e793d36e1aaa6ee1b09881677f783b5feff" datatype="html">
2274 <source>&lt;x id="INTERPOLATION" equiv-text="{{ videoChangeOwnership.status }}"/&gt;</source>
2275 <context-group purpose="location">
2276 <context context-type="sourcefile">app/+my-account/my-account-ownership/my-account-ownership.component.html</context>
2277 <context context-type="linenumber">39</context>
2278 </context-group>
2279 </trans-unit><trans-unit id="4a5613f6b472c1ed863dff1be932913a251f27a2" datatype="html">
2280 <source>Refuse</source>
2281 <context-group purpose="location">
2282 <context context-type="sourcefile">app/+my-account/my-account-ownership/my-account-ownership.component.html</context>
2283 <context context-type="linenumber">47</context>
2284 </context-group>
2070 </trans-unit><trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9" datatype="html"> 2285 </trans-unit><trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9" datatype="html">
2071 <source>Change password</source> 2286 <source>Change password</source>
2072 <context-group purpose="location"> 2287 <context-group purpose="location">
@@ -2075,7 +2290,7 @@ When you will upload a video in this channel, the video support field will be au
2075 </context-group> 2290 </context-group>
2076 <context-group purpose="location"> 2291 <context-group purpose="location">
2077 <context context-type="sourcefile">app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context> 2292 <context context-type="sourcefile">app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context>
2078 <context context-type="linenumber">19</context> 2293 <context context-type="linenumber">22</context>
2079 </context-group> 2294 </context-group>
2080 </trans-unit><trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229" datatype="html"> 2295 </trans-unit><trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229" datatype="html">
2081 <source>New password</source> 2296 <source>New password</source>
@@ -2139,6 +2354,48 @@ When you will upload a video in this channel, the video support field will be au
2139 <context context-type="sourcefile">app/+page-not-found/page-not-found.component.html</context> 2354 <context context-type="sourcefile">app/+page-not-found/page-not-found.component.html</context>
2140 <context context-type="linenumber">1</context> 2355 <context context-type="linenumber">1</context>
2141 </context-group> 2356 </context-group>
2357 </trans-unit><trans-unit id="09a69cde5889927629e2ac9dc63a71b88252b530" datatype="html">
2358 <source>
2359 Verify account email confirmation
2360 </source>
2361 <context-group purpose="location">
2362 <context context-type="sourcefile">app/+verify-account/verify-account-email/verify-account-email.component.html</context>
2363 <context context-type="linenumber">2</context>
2364 </context-group>
2365 </trans-unit><trans-unit id="066569dd934e07e4a5f70c415692be17d5715b57" datatype="html">
2366 <source>
2367 Your email has been verified and you may now login. Redirecting...
2368 </source>
2369 <context-group purpose="location">
2370 <context context-type="sourcefile">app/+verify-account/verify-account-email/verify-account-email.component.html</context>
2371 <context context-type="linenumber">6</context>
2372 </context-group>
2373 </trans-unit><trans-unit id="7ee8fad77b2664dabfb90ea03470f75a6f6d1d48" datatype="html">
2374 <source>An error occurred. </source>
2375 <context-group purpose="location">
2376 <context context-type="sourcefile">app/+verify-account/verify-account-email/verify-account-email.component.html</context>
2377 <context context-type="linenumber">11</context>
2378 </context-group>
2379 </trans-unit><trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html">
2380 <source>
2381 Request email for account verification
2382 </source>
2383 <context-group purpose="location">
2384 <context context-type="sourcefile">app/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context>
2385 <context context-type="linenumber">2</context>
2386 </context-group>
2387 </trans-unit><trans-unit id="eb539ec6941044e284f237f5b40d6a0159afe7af" datatype="html">
2388 <source>Send verification email</source>
2389 <context-group purpose="location">
2390 <context context-type="sourcefile">app/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context>
2391 <context context-type="linenumber">17</context>
2392 </context-group>
2393 </trans-unit><trans-unit id="a08080316e052053fd20647731a6de826dc8072f" datatype="html">
2394 <source>This instance does not require email verification.</source>
2395 <context-group purpose="location">
2396 <context context-type="sourcefile">app/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context>
2397 <context context-type="linenumber">20</context>
2398 </context-group>
2142 </trans-unit><trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8" datatype="html"> 2399 </trans-unit><trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8" datatype="html">
2143 <source>Support this channel</source> 2400 <source>Support this channel</source>
2144 <context-group purpose="location"> 2401 <context-group purpose="location">
@@ -2159,7 +2416,7 @@ When you will upload a video in this channel, the video support field will be au
2159 </context-group> 2416 </context-group>
2160 <context-group purpose="location"> 2417 <context-group purpose="location">
2161 <context context-type="sourcefile">app/videos/+video-watch/modal/video-share.component.html</context> 2418 <context context-type="sourcefile">app/videos/+video-watch/modal/video-share.component.html</context>
2162 <context context-type="linenumber">9</context> 2419 <context context-type="linenumber">17</context>
2163 </context-group> 2420 </context-group>
2164 </trans-unit><trans-unit id="bfe7f34fbd4c3afa5f84a5580e0fae942cad2333" datatype="html"> 2421 </trans-unit><trans-unit id="bfe7f34fbd4c3afa5f84a5580e0fae942cad2333" datatype="html">
2165 <source>You can import any URL &lt;a href=&apos;https://rg3.github.io/youtube-dl/supportedsites.html&apos; target=&apos;_blank&apos; rel=&apos;noopener noreferrer&apos;&gt;supported by youtube-dl&lt;/a&gt; or URL that points to a raw MP4 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> 2422 <source>You can import any URL &lt;a href=&apos;https://rg3.github.io/youtube-dl/supportedsites.html&apos; target=&apos;_blank&apos; rel=&apos;noopener noreferrer&apos;&gt;supported by youtube-dl&lt;/a&gt; or URL that points to a raw MP4 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>
@@ -2183,7 +2440,7 @@ When you will upload a video in this channel, the video support field will be au
2183 </context-group> 2440 </context-group>
2184 <context-group purpose="location"> 2441 <context-group purpose="location">
2185 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2442 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2186 <context context-type="linenumber">37</context> 2443 <context context-type="linenumber">38</context>
2187 </context-group> 2444 </context-group>
2188 </trans-unit><trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427" datatype="html"> 2445 </trans-unit><trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427" datatype="html">
2189 <source>Privacy</source> 2446 <source>Privacy</source>
@@ -2201,11 +2458,11 @@ When you will upload a video in this channel, the video support field will be au
2201 </context-group> 2458 </context-group>
2202 <context-group purpose="location"> 2459 <context-group purpose="location">
2203 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2460 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2204 <context context-type="linenumber">88</context> 2461 <context context-type="linenumber">89</context>
2205 </context-group> 2462 </context-group>
2206 <context-group purpose="location"> 2463 <context-group purpose="location">
2207 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2464 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2208 <context context-type="linenumber">143</context> 2465 <context context-type="linenumber">161</context>
2209 </context-group> 2466 </context-group>
2210 </trans-unit><trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2" datatype="html"> 2467 </trans-unit><trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2" datatype="html">
2211 <source> 2468 <source>
@@ -2231,7 +2488,7 @@ When you will upload a video in this channel, the video support field will be au
2231 </context-group> 2488 </context-group>
2232 <context-group purpose="location"> 2489 <context-group purpose="location">
2233 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2490 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2234 <context context-type="linenumber">100</context> 2491 <context context-type="linenumber">92</context>
2235 </context-group> 2492 </context-group>
2236 </trans-unit><trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9" datatype="html"> 2493 </trans-unit><trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9" datatype="html">
2237 <source>Select the file to upload</source> 2494 <source>Select the file to upload</source>
@@ -2327,14 +2584,6 @@ When you will upload a video in this channel, the video support field will be au
2327 <context context-type="sourcefile">app/videos/+video-edit/shared/video-caption-add-modal.component.html</context> 2584 <context context-type="sourcefile">app/videos/+video-edit/shared/video-caption-add-modal.component.html</context>
2328 <context context-type="linenumber">29</context> 2585 <context context-type="linenumber">29</context>
2329 </context-group> 2586 </context-group>
2330 </trans-unit><trans-unit id="a5433ae2324496bea9537caa5e8a2719d8e958d8" datatype="html">
2331 <source>
2332 Cancel
2333 </source>
2334 <context-group purpose="location">
2335 <context context-type="sourcefile">app/videos/+video-edit/shared/video-caption-add-modal.component.html</context>
2336 <context context-type="linenumber">35</context>
2337 </context-group>
2338 </trans-unit><trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c" datatype="html"> 2587 </trans-unit><trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c" datatype="html">
2339 <source>Add this caption</source> 2588 <source>Add this caption</source>
2340 <context-group purpose="location"> 2589 <context-group purpose="location">
@@ -2355,55 +2604,55 @@ When you will upload a video in this channel, the video support field will be au
2355 </context-group> 2604 </context-group>
2356 <context-group purpose="location"> 2605 <context-group purpose="location">
2357 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2606 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2358 <context context-type="linenumber">175</context> 2607 <context context-type="linenumber">193</context>
2359 </context-group> 2608 </context-group>
2360 </trans-unit><trans-unit id="935e7146fe6c12169abfda18536c5856935cfd82" datatype="html"> 2609 </trans-unit><trans-unit id="457b1cff4d8d7fad0c8742f69c413ecf5e443851" datatype="html">
2361 <source>(press Enter to add)</source> 2610 <source>Tags could be used to suggest relevant recommendations.&lt;/br&gt;Press Enter to add a new tag.</source>
2362 <context-group purpose="location"> 2611 <context-group purpose="location">
2363 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2612 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2364 <context context-type="linenumber">17</context> 2613 <context context-type="linenumber">18</context>
2365 </context-group> 2614 </context-group>
2366 </trans-unit><trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e" datatype="html"> 2615 </trans-unit><trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e" datatype="html">
2367 <source>Video descriptions are truncated by default and require manual action to expand them.</source> 2616 <source>Video descriptions are truncated by default and require manual action to expand them.</source>
2368 <context-group purpose="location"> 2617 <context-group purpose="location">
2369 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2618 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2370 <context context-type="linenumber">26</context> 2619 <context context-type="linenumber">27</context>
2371 </context-group> 2620 </context-group>
2372 </trans-unit><trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> 2621 </trans-unit><trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html">
2373 <source>Schedule publication (&lt;x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/&gt;)</source> 2622 <source>Schedule publication (&lt;x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/&gt;)</source>
2374 <context-group purpose="location"> 2623 <context-group purpose="location">
2375 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2624 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2376 <context context-type="linenumber">103</context> 2625 <context context-type="linenumber">104</context>
2377 </context-group> 2626 </context-group>
2378 </trans-unit><trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee" datatype="html"> 2627 </trans-unit><trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee" datatype="html">
2379 <source>This video contains mature or explicit content</source> 2628 <source>This video contains mature or explicit content</source>
2380 <context-group purpose="location"> 2629 <context-group purpose="location">
2381 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2630 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2382 <context context-type="linenumber">117</context> 2631 <context context-type="linenumber">118</context>
2383 </context-group> 2632 </context-group>
2384 </trans-unit><trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644" datatype="html"> 2633 </trans-unit><trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644" datatype="html">
2385 <source>Some instances do not list videos containing mature or explicit content by default.</source> 2634 <source>Some instances do not list videos containing mature or explicit content by default.</source>
2386 <context-group purpose="location"> 2635 <context-group purpose="location">
2387 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2636 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2388 <context context-type="linenumber">118</context> 2637 <context context-type="linenumber">119</context>
2389 </context-group> 2638 </context-group>
2390 </trans-unit><trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a" datatype="html"> 2639 </trans-unit><trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a" datatype="html">
2391 <source>Enable video comments</source> 2640 <source>Enable video comments</source>
2392 <context-group purpose="location"> 2641 <context-group purpose="location">
2393 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2642 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2394 <context context-type="linenumber">123</context> 2643 <context context-type="linenumber">124</context>
2395 </context-group> 2644 </context-group>
2396 </trans-unit><trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0" datatype="html"> 2645 </trans-unit><trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0" datatype="html">
2397 <source>Wait transcoding before publishing the video</source> 2646 <source>Wait transcoding before publishing the video</source>
2398 <context-group purpose="location"> 2647 <context-group purpose="location">
2399 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2648 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2400 <context context-type="linenumber">128</context> 2649 <context context-type="linenumber">129</context>
2401 </context-group> 2650 </context-group>
2402 </trans-unit><trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63" datatype="html"> 2651 </trans-unit><trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63" datatype="html">
2403 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source> 2652 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source>
2404 <context-group purpose="location"> 2653 <context-group purpose="location">
2405 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2654 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2406 <context context-type="linenumber">129</context> 2655 <context context-type="linenumber">130</context>
2407 </context-group> 2656 </context-group>
2408 </trans-unit><trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7" datatype="html"> 2657 </trans-unit><trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7" datatype="html">
2409 <source>Basic info</source> 2658 <source>Basic info</source>
@@ -2415,49 +2664,49 @@ When you will upload a video in this channel, the video support field will be au
2415 <source>Add another caption</source> 2664 <source>Add another caption</source>
2416 <context-group purpose="location"> 2665 <context-group purpose="location">
2417 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2666 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2418 <context context-type="linenumber">144</context> 2667 <context context-type="linenumber">145</context>
2419 </context-group> 2668 </context-group>
2420 </trans-unit><trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed" datatype="html"> 2669 </trans-unit><trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed" datatype="html">
2421 <source>See the subtitle file</source> 2670 <source>See the subtitle file</source>
2422 <context-group purpose="location"> 2671 <context-group purpose="location">
2423 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2672 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2424 <context context-type="linenumber">153</context> 2673 <context context-type="linenumber">154</context>
2425 </context-group> 2674 </context-group>
2426 </trans-unit><trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9" datatype="html"> 2675 </trans-unit><trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9" datatype="html">
2427 <source>Cancel create</source> 2676 <source>Cancel create</source>
2428 <context-group purpose="location"> 2677 <context-group purpose="location">
2429 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2678 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2430 <context context-type="linenumber">167</context> 2679 <context context-type="linenumber">168</context>
2431 </context-group> 2680 </context-group>
2432 </trans-unit><trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c" datatype="html"> 2681 </trans-unit><trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c" datatype="html">
2433 <source>Cancel deletion</source> 2682 <source>Cancel deletion</source>
2434 <context-group purpose="location"> 2683 <context-group purpose="location">
2435 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2684 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2436 <context context-type="linenumber">175</context> 2685 <context context-type="linenumber">176</context>
2437 </context-group> 2686 </context-group>
2438 </trans-unit><trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93" datatype="html"> 2687 </trans-unit><trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93" datatype="html">
2439 <source>Captions</source> 2688 <source>Captions</source>
2440 <context-group purpose="location"> 2689 <context-group purpose="location">
2441 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2690 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2442 <context context-type="linenumber">137</context> 2691 <context context-type="linenumber">138</context>
2443 </context-group> 2692 </context-group>
2444 </trans-unit><trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513" datatype="html"> 2693 </trans-unit><trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513" datatype="html">
2445 <source>Upload thumbnail</source> 2694 <source>Upload thumbnail</source>
2446 <context-group purpose="location"> 2695 <context-group purpose="location">
2447 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2696 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2448 <context context-type="linenumber">193</context> 2697 <context context-type="linenumber">194</context>
2449 </context-group> 2698 </context-group>
2450 </trans-unit><trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639" datatype="html"> 2699 </trans-unit><trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639" datatype="html">
2451 <source>Upload preview</source> 2700 <source>Upload preview</source>
2452 <context-group purpose="location"> 2701 <context-group purpose="location">
2453 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2702 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2454 <context context-type="linenumber">200</context> 2703 <context context-type="linenumber">201</context>
2455 </context-group> 2704 </context-group>
2456 </trans-unit><trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604" datatype="html"> 2705 </trans-unit><trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604" datatype="html">
2457 <source>Support</source> 2706 <source>Support</source>
2458 <context-group purpose="location"> 2707 <context-group purpose="location">
2459 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2708 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2460 <context context-type="linenumber">206</context> 2709 <context context-type="linenumber">207</context>
2461 </context-group> 2710 </context-group>
2462 <context-group purpose="location"> 2711 <context-group purpose="location">
2463 <context context-type="sourcefile">app/videos/+video-watch/modal/video-support.component.html</context> 2712 <context context-type="sourcefile">app/videos/+video-watch/modal/video-support.component.html</context>
@@ -2465,19 +2714,19 @@ When you will upload a video in this channel, the video support field will be au
2465 </context-group> 2714 </context-group>
2466 <context-group purpose="location"> 2715 <context-group purpose="location">
2467 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2716 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2468 <context context-type="linenumber">77</context> 2717 <context context-type="linenumber">69</context>
2469 </context-group> 2718 </context-group>
2470 </trans-unit><trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0" datatype="html"> 2719 </trans-unit><trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0" datatype="html">
2471 <source>Short text to tell people how they can support you (membership platform...).</source> 2720 <source>Short text to tell people how they can support you (membership platform...).</source>
2472 <context-group purpose="location"> 2721 <context-group purpose="location">
2473 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2722 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2474 <context context-type="linenumber">207</context> 2723 <context context-type="linenumber">208</context>
2475 </context-group> 2724 </context-group>
2476 </trans-unit><trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1" datatype="html"> 2725 </trans-unit><trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1" datatype="html">
2477 <source>Advanced settings</source> 2726 <source>Advanced settings</source>
2478 <context-group purpose="location"> 2727 <context-group purpose="location">
2479 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context> 2728 <context context-type="sourcefile">app/videos/+video-edit/shared/video-edit.component.html</context>
2480 <context context-type="linenumber">188</context> 2729 <context context-type="linenumber">189</context>
2481 </context-group> 2730 </context-group>
2482 </trans-unit><trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0" datatype="html"> 2731 </trans-unit><trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0" datatype="html">
2483 <source> 2732 <source>
@@ -2527,7 +2776,7 @@ When you will upload a video in this channel, the video support field will be au
2527 </context-group> 2776 </context-group>
2528 <context-group purpose="location"> 2777 <context-group purpose="location">
2529 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2778 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2530 <context context-type="linenumber">92</context> 2779 <context context-type="linenumber">84</context>
2531 </context-group> 2780 </context-group>
2532 </trans-unit><trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b" datatype="html"> 2781 </trans-unit><trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b" datatype="html">
2533 <source>Report video</source> 2782 <source>Report video</source>
@@ -2547,16 +2796,6 @@ When you will upload a video in this channel, the video support field will be au
2547 <context context-type="sourcefile">app/videos/+video-watch/modal/video-blacklist.component.html</context> 2796 <context context-type="sourcefile">app/videos/+video-watch/modal/video-blacklist.component.html</context>
2548 <context context-type="linenumber">19</context> 2797 <context context-type="linenumber">19</context>
2549 </context-group> 2798 </context-group>
2550 </trans-unit><trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd" datatype="html">
2551 <source>Submit</source>
2552 <context-group purpose="location">
2553 <context context-type="sourcefile">app/videos/+video-watch/modal/video-report.component.html</context>
2554 <context context-type="linenumber">24</context>
2555 </context-group>
2556 <context-group purpose="location">
2557 <context context-type="sourcefile">app/videos/+video-watch/modal/video-blacklist.component.html</context>
2558 <context context-type="linenumber">24</context>
2559 </context-group>
2560 </trans-unit><trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9" datatype="html"> 2799 </trans-unit><trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9" datatype="html">
2561 <source>Share</source> 2800 <source>Share</source>
2562 <context-group purpose="location"> 2801 <context-group purpose="location">
@@ -2565,13 +2804,19 @@ When you will upload a video in this channel, the video support field will be au
2565 </context-group> 2804 </context-group>
2566 <context-group purpose="location"> 2805 <context-group purpose="location">
2567 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2806 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2568 <context context-type="linenumber">82</context> 2807 <context context-type="linenumber">74</context>
2808 </context-group>
2809 </trans-unit><trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f" datatype="html">
2810 <source>QR-Code</source>
2811 <context-group purpose="location">
2812 <context context-type="sourcefile">app/videos/+video-watch/modal/video-share.component.html</context>
2813 <context context-type="linenumber">29</context>
2569 </context-group> 2814 </context-group>
2570 </trans-unit><trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c" datatype="html"> 2815 </trans-unit><trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c" datatype="html">
2571 <source>Embed</source> 2816 <source>Embed</source>
2572 <context-group purpose="location"> 2817 <context-group purpose="location">
2573 <context context-type="sourcefile">app/videos/+video-watch/modal/video-share.component.html</context> 2818 <context context-type="sourcefile">app/videos/+video-watch/modal/video-share.component.html</context>
2574 <context context-type="linenumber">21</context> 2819 <context context-type="linenumber">34</context>
2575 </context-group> 2820 </context-group>
2576 </trans-unit><trans-unit id="90e0a0a3da80b46e550c1395ff4e97c27259bef8" datatype="html"> 2821 </trans-unit><trans-unit id="90e0a0a3da80b46e550c1395ff4e97c27259bef8" datatype="html">
2577 <source> 2822 <source>
@@ -2579,13 +2824,13 @@ When you will upload a video in this channel, the video support field will be au
2579 </source> 2824 </source>
2580 <context-group purpose="location"> 2825 <context-group purpose="location">
2581 <context context-type="sourcefile">app/videos/+video-watch/modal/video-share.component.html</context> 2826 <context context-type="sourcefile">app/videos/+video-watch/modal/video-share.component.html</context>
2582 <context context-type="linenumber">32</context> 2827 <context context-type="linenumber">45</context>
2583 </context-group> 2828 </context-group>
2584 </trans-unit><trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f" datatype="html"> 2829 </trans-unit><trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html">
2585 <source>QR-Code</source> 2830 <source>Close</source>
2586 <context-group purpose="location"> 2831 <context-group purpose="location">
2587 <context context-type="sourcefile">app/videos/+video-watch/modal/video-share.component.html</context> 2832 <context context-type="sourcefile">app/videos/+video-watch/modal/video-share.component.html</context>
2588 <context context-type="linenumber">37</context> 2833 <context context-type="linenumber">51</context>
2589 </context-group> 2834 </context-group>
2590 </trans-unit><trans-unit id="f672385c803647b063687d3c912e2ce5738b51c8" datatype="html"> 2835 </trans-unit><trans-unit id="f672385c803647b063687d3c912e2ce5738b51c8" datatype="html">
2591 <source>Blacklist video</source> 2836 <source>Blacklist video</source>
@@ -2623,149 +2868,149 @@ When you will upload a video in this channel, the video support field will be au
2623 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2868 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2624 <context context-type="linenumber">24</context> 2869 <context context-type="linenumber">24</context>
2625 </context-group> 2870 </context-group>
2626 </trans-unit><trans-unit id="643ab402461b1169eebbe2ed790e12a9a83551aa" datatype="html"> 2871 </trans-unit><trans-unit id="3da5360f8314aa95973aa52629c9f635363c5a36" datatype="html">
2627 <source> 2872 <source>
2628 &lt;x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/&gt; - &lt;x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/&gt; views 2873 Published &lt;x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/&gt; - &lt;x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/&gt; views
2629 </source> 2874 </source>
2630 <context-group purpose="location">
2631 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2632 <context context-type="linenumber">35</context>
2633 </context-group>
2634 </trans-unit><trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33" datatype="html">
2635 <source>Go the channel page</source>
2636 <context-group purpose="location">
2637 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2638 <context context-type="linenumber">40</context>
2639 </context-group>
2640 </trans-unit><trans-unit id="0b7f242da10ece3f2995095c455b9a92ebcdd3b4" datatype="html">
2641 <source>By &lt;x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/&gt;</source>
2642 <context-group purpose="location">
2643 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2644 <context context-type="linenumber">51</context>
2645 </context-group>
2646 </trans-unit><trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c" datatype="html">
2647 <source>Go to the account page</source>
2648 <context-group purpose="location"> 2875 <context-group purpose="location">
2649 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2876 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2650 <context context-type="linenumber">50</context> 2877 <context context-type="linenumber">37</context>
2651 </context-group> 2878 </context-group>
2652 </trans-unit><trans-unit id="5d5844aea729b7cd8e6e1e0d07c3956f8cb54f89" datatype="html"> 2879 </trans-unit><trans-unit id="07087373dbf99b5e8b2b2f962fd53baa97d9ab95" datatype="html">
2653 <source>You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box &lt;strong&gt;@&lt;x id="INTERPOLATION" equiv-text="{{video.account.name}}"/&gt;@&lt;x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/&gt;&lt;/strong&gt; and subscribe there.</source> 2880 <source>
2881 Published &lt;x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/&gt; - &lt;x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/&gt; views
2882 </source>
2654 <context-group purpose="location"> 2883 <context-group purpose="location">
2655 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2884 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2656 <context context-type="linenumber">55</context> 2885 <context context-type="linenumber">46</context>
2657 </context-group> 2886 </context-group>
2658 </trans-unit><trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced" datatype="html"> 2887 </trans-unit><trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced" datatype="html">
2659 <source>Like this video</source> 2888 <source>Like this video</source>
2660 <context-group purpose="location"> 2889 <context-group purpose="location">
2661 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2890 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2662 <context context-type="linenumber">65</context> 2891 <context context-type="linenumber">57</context>
2663 </context-group> 2892 </context-group>
2664 </trans-unit><trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509" datatype="html"> 2893 </trans-unit><trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509" datatype="html">
2665 <source>Dislike this video</source> 2894 <source>Dislike this video</source>
2666 <context-group purpose="location"> 2895 <context-group purpose="location">
2667 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2896 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2668 <context context-type="linenumber">72</context> 2897 <context context-type="linenumber">64</context>
2669 </context-group> 2898 </context-group>
2670 </trans-unit><trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2" datatype="html"> 2899 </trans-unit><trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2" datatype="html">
2671 <source>Download the video</source> 2900 <source>Download the video</source>
2672 <context-group purpose="location"> 2901 <context-group purpose="location">
2673 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2902 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2674 <context context-type="linenumber">91</context> 2903 <context context-type="linenumber">83</context>
2675 </context-group> 2904 </context-group>
2676 </trans-unit><trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a" datatype="html"> 2905 </trans-unit><trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a" datatype="html">
2677 <source>Report</source> 2906 <source>Report</source>
2678 <context-group purpose="location"> 2907 <context-group purpose="location">
2679 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2908 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2680 <context context-type="linenumber">96</context> 2909 <context context-type="linenumber">88</context>
2681 </context-group> 2910 </context-group>
2682 </trans-unit><trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf" datatype="html"> 2911 </trans-unit><trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf" datatype="html">
2683 <source>Report this video</source> 2912 <source>Report this video</source>
2684 <context-group purpose="location"> 2913 <context-group purpose="location">
2685 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2914 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2686 <context context-type="linenumber">95</context> 2915 <context context-type="linenumber">87</context>
2687 </context-group> 2916 </context-group>
2688 </trans-unit><trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1" datatype="html"> 2917 </trans-unit><trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1" datatype="html">
2689 <source>Update this video</source> 2918 <source>Update this video</source>
2690 <context-group purpose="location"> 2919 <context-group purpose="location">
2691 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2920 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2692 <context context-type="linenumber">99</context> 2921 <context context-type="linenumber">91</context>
2693 </context-group> 2922 </context-group>
2694 </trans-unit><trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61" datatype="html"> 2923 </trans-unit><trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61" datatype="html">
2695 <source>Blacklist</source> 2924 <source>Blacklist</source>
2696 <context-group purpose="location"> 2925 <context-group purpose="location">
2697 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2926 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2698 <context context-type="linenumber">104</context> 2927 <context context-type="linenumber">96</context>
2699 </context-group> 2928 </context-group>
2700 </trans-unit><trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037" datatype="html"> 2929 </trans-unit><trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037" datatype="html">
2701 <source>Blacklist this video</source> 2930 <source>Blacklist this video</source>
2702 <context-group purpose="location"> 2931 <context-group purpose="location">
2703 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2932 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2704 <context context-type="linenumber">103</context> 2933 <context context-type="linenumber">95</context>
2705 </context-group> 2934 </context-group>
2706 </trans-unit><trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff" datatype="html"> 2935 </trans-unit><trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff" datatype="html">
2707 <source>Unblacklist</source> 2936 <source>Unblacklist</source>
2708 <context-group purpose="location"> 2937 <context-group purpose="location">
2709 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2938 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2710 <context context-type="linenumber">108</context> 2939 <context context-type="linenumber">100</context>
2711 </context-group> 2940 </context-group>
2712 </trans-unit><trans-unit id="61021f5011bc24f69cfc3f6dbbbd8f1948328b25" datatype="html"> 2941 </trans-unit><trans-unit id="61021f5011bc24f69cfc3f6dbbbd8f1948328b25" datatype="html">
2713 <source>Unblacklist this video</source> 2942 <source>Unblacklist this video</source>
2714 <context-group purpose="location"> 2943 <context-group purpose="location">
2715 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2944 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2716 <context context-type="linenumber">107</context> 2945 <context context-type="linenumber">99</context>
2717 </context-group> 2946 </context-group>
2718 </trans-unit><trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5" datatype="html"> 2947 </trans-unit><trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5" datatype="html">
2719 <source>Delete this video</source> 2948 <source>Delete this video</source>
2720 <context-group purpose="location"> 2949 <context-group purpose="location">
2721 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2950 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2722 <context context-type="linenumber">111</context> 2951 <context context-type="linenumber">103</context>
2952 </context-group>
2953 </trans-unit><trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33" datatype="html">
2954 <source>Go the channel page</source>
2955 <context-group purpose="location">
2956 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2957 <context context-type="linenumber">123</context>
2958 </context-group>
2959 </trans-unit><trans-unit id="0b7f242da10ece3f2995095c455b9a92ebcdd3b4" datatype="html">
2960 <source>By &lt;x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/&gt;</source>
2961 <context-group purpose="location">
2962 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2963 <context context-type="linenumber">134</context>
2964 </context-group>
2965 </trans-unit><trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c" datatype="html">
2966 <source>Go to the account page</source>
2967 <context-group purpose="location">
2968 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2969 <context context-type="linenumber">133</context>
2970 </context-group>
2971 </trans-unit><trans-unit id="5d5844aea729b7cd8e6e1e0d07c3956f8cb54f89" datatype="html">
2972 <source>You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box &lt;strong&gt;@&lt;x id="INTERPOLATION" equiv-text="{{video.account.name}}"/&gt;@&lt;x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/&gt;&lt;/strong&gt; and subscribe there.</source>
2973 <context-group purpose="location">
2974 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2975 <context context-type="linenumber">138</context>
2723 </context-group> 2976 </context-group>
2724 </trans-unit><trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b" datatype="html"> 2977 </trans-unit><trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b" datatype="html">
2725 <source>Show more</source> 2978 <source>Show more</source>
2726 <context-group purpose="location"> 2979 <context-group purpose="location">
2727 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2980 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2728 <context context-type="linenumber">130</context> 2981 <context context-type="linenumber">148</context>
2729 </context-group> 2982 </context-group>
2730 </trans-unit><trans-unit id="5403a767248e304199592271bba3366d2ca3f903" datatype="html"> 2983 </trans-unit><trans-unit id="5403a767248e304199592271bba3366d2ca3f903" datatype="html">
2731 <source>Show less</source> 2984 <source>Show less</source>
2732 <context-group purpose="location"> 2985 <context-group purpose="location">
2733 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2986 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2734 <context context-type="linenumber">136</context> 2987 <context context-type="linenumber">154</context>
2735 </context-group>
2736 </trans-unit><trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1" datatype="html">
2737 <source>
2738 Other videos
2739 </source>
2740 <context-group purpose="location">
2741 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2742 <context context-type="linenumber">187</context>
2743 </context-group> 2988 </context-group>
2744 </trans-unit><trans-unit id="fb779d2b25c4d0ffa7d52c823a240717e8c1fe6c" datatype="html"> 2989 </trans-unit><trans-unit id="4c0ba3cde3b3c58b855ffb4beaa5804a2fc3826b" datatype="html">
2745 <source>Friendly Reminder:</source> 2990 <source>Friendly Reminder: </source>
2746 <context-group purpose="location"> 2991 <context-group purpose="location">
2747 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 2992 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2748 <context context-type="linenumber">199</context> 2993 <context context-type="linenumber">210</context>
2749 </context-group> 2994 </context-group>
2750 </trans-unit><trans-unit id="329900dd14bc4ca33cec3775d25c246e4cde7867" datatype="html"> 2995 </trans-unit><trans-unit id="9e66f7507eb263abdbab7abafd825f1dc8bc880b" datatype="html">
2751 <source> 2996 <source>
2752 The sharing system used by this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. 2997 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.
2753 </source> 2998 </source>
2754 <context-group purpose="location"> 2999 <context-group purpose="location">
2755 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 3000 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2756 <context context-type="linenumber">201</context> 3001 <context context-type="linenumber">211</context>
2757 </context-group> 3002 </context-group>
2758 </trans-unit><trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e" datatype="html"> 3003 </trans-unit><trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e" datatype="html">
2759 <source>More information</source> 3004 <source>More information</source>
2760 <context-group purpose="location"> 3005 <context-group purpose="location">
2761 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 3006 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2762 <context context-type="linenumber">204</context> 3007 <context context-type="linenumber">214</context>
2763 </context-group> 3008 </context-group>
2764 </trans-unit><trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318" datatype="html"> 3009 </trans-unit><trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318" datatype="html">
2765 <source>Get more information</source> 3010 <source>Get more information</source>
2766 <context-group purpose="location"> 3011 <context-group purpose="location">
2767 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 3012 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2768 <context context-type="linenumber">204</context> 3013 <context context-type="linenumber">214</context>
2769 </context-group> 3014 </context-group>
2770 </trans-unit><trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f" datatype="html"> 3015 </trans-unit><trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f" datatype="html">
2771 <source> 3016 <source>
@@ -2773,7 +3018,15 @@ When you will upload a video in this channel, the video support field will be au
2773 </source> 3018 </source>
2774 <context-group purpose="location"> 3019 <context-group purpose="location">
2775 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context> 3020 <context context-type="sourcefile">app/videos/+video-watch/video-watch.component.html</context>
2776 <context context-type="linenumber">207</context> 3021 <context context-type="linenumber">217</context>
3022 </context-group>
3023 </trans-unit><trans-unit id="abf2b0f7b6405fa2841ca39c827e86089a95cc27" datatype="html">
3024 <source>
3025 Other videos
3026 </source>
3027 <context-group purpose="location">
3028 <context context-type="sourcefile">app/videos/recommendations/recommended-videos.component.html</context>
3029 <context context-type="linenumber">2</context>
2777 </context-group> 3030 </context-group>
2778 </trans-unit><trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7" datatype="html"> 3031 </trans-unit><trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7" datatype="html">
2779 <source> 3032 <source>
@@ -2821,7 +3074,7 @@ When you will upload a video in this channel, the video support field will be au
2821 </source> 3074 </source>
2822 <context-group purpose="location"> 3075 <context-group purpose="location">
2823 <context context-type="sourcefile">app/videos/+video-watch/comment/video-comment-add.component.html</context> 3076 <context context-type="sourcefile">app/videos/+video-watch/comment/video-comment-add.component.html</context>
2824 <context context-type="linenumber">17</context> 3077 <context context-type="linenumber">18</context>
2825 </context-group> 3078 </context-group>
2826 </trans-unit><trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> 3079 </trans-unit><trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html">
2827 <source>Highlighted comment</source> 3080 <source>Highlighted comment</source>
@@ -2955,6 +3208,18 @@ When you will upload a video in this channel, the video support field will be au
2955 <context context-type="linenumber">1</context> 3208 <context context-type="linenumber">1</context>
2956 </context-group> 3209 </context-group>
2957 <context-group purpose="location"> 3210 <context-group purpose="location">
3211 <context context-type="sourcefile">src/app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.ts</context>
3212 <context context-type="linenumber">1</context>
3213 </context-group>
3214 <context-group purpose="location">
3215 <context context-type="sourcefile">src/app/+my-account/my-account-ownership/my-account-ownership.component.ts</context>
3216 <context context-type="linenumber">1</context>
3217 </context-group>
3218 <context-group purpose="location">
3219 <context context-type="sourcefile">src/app/+my-account/my-account-ownership/my-account-ownership.component.ts</context>
3220 <context context-type="linenumber">1</context>
3221 </context-group>
3222 <context-group purpose="location">
2958 <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context> 3223 <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context>
2959 <context context-type="linenumber">1</context> 3224 <context context-type="linenumber">1</context>
2960 </context-group> 3225 </context-group>
@@ -2991,6 +3256,22 @@ When you will upload a video in this channel, the video support field will be au
2991 <context context-type="linenumber">1</context> 3256 <context context-type="linenumber">1</context>
2992 </context-group> 3257 </context-group>
2993 <context-group purpose="location"> 3258 <context-group purpose="location">
3259 <context context-type="sourcefile">src/app/+my-account/my-account-videos/video-change-ownership/video-change-ownership.component.ts</context>
3260 <context context-type="linenumber">1</context>
3261 </context-group>
3262 <context-group purpose="location">
3263 <context context-type="sourcefile">src/app/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context>
3264 <context context-type="linenumber">1</context>
3265 </context-group>
3266 <context-group purpose="location">
3267 <context context-type="sourcefile">src/app/+verify-account/verify-account-email/verify-account-email.component.ts</context>
3268 <context context-type="linenumber">1</context>
3269 </context-group>
3270 <context-group purpose="location">
3271 <context context-type="sourcefile">src/app/+verify-account/verify-account-email/verify-account-email.component.ts</context>
3272 <context context-type="linenumber">1</context>
3273 </context-group>
3274 <context-group purpose="location">
2994 <context context-type="sourcefile">src/app/core/auth/auth.service.ts</context> 3275 <context context-type="sourcefile">src/app/core/auth/auth.service.ts</context>
2995 <context context-type="linenumber">1</context> 3276 <context context-type="linenumber">1</context>
2996 </context-group> 3277 </context-group>
@@ -3055,6 +3336,10 @@ When you will upload a video in this channel, the video support field will be au
3055 <context context-type="linenumber">1</context> 3336 <context context-type="linenumber">1</context>
3056 </context-group> 3337 </context-group>
3057 <context-group purpose="location"> 3338 <context-group purpose="location">
3339 <context context-type="sourcefile">src/app/videos/+video-edit/video-add-components/video-upload.component.ts</context>
3340 <context context-type="linenumber">1</context>
3341 </context-group>
3342 <context-group purpose="location">
3058 <context context-type="sourcefile">src/app/videos/+video-edit/video-update.component.ts</context> 3343 <context context-type="sourcefile">src/app/videos/+video-edit/video-update.component.ts</context>
3059 <context context-type="linenumber">1</context> 3344 <context context-type="linenumber">1</context>
3060 </context-group> 3345 </context-group>
@@ -3193,6 +3478,10 @@ When you will upload a video in this channel, the video support field will be au
3193 <context context-type="linenumber">1</context> 3478 <context context-type="linenumber">1</context>
3194 </context-group> 3479 </context-group>
3195 <context-group purpose="location"> 3480 <context-group purpose="location">
3481 <context context-type="sourcefile">src/app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.ts</context>
3482 <context context-type="linenumber">1</context>
3483 </context-group>
3484 <context-group purpose="location">
3196 <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context> 3485 <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context>
3197 <context context-type="linenumber">1</context> 3486 <context context-type="linenumber">1</context>
3198 </context-group> 3487 </context-group>
@@ -3237,6 +3526,14 @@ When you will upload a video in this channel, the video support field will be au
3237 <context context-type="linenumber">1</context> 3526 <context context-type="linenumber">1</context>
3238 </context-group> 3527 </context-group>
3239 <context-group purpose="location"> 3528 <context-group purpose="location">
3529 <context context-type="sourcefile">src/app/+my-account/my-account-videos/video-change-ownership/video-change-ownership.component.ts</context>
3530 <context context-type="linenumber">1</context>
3531 </context-group>
3532 <context-group purpose="location">
3533 <context context-type="sourcefile">src/app/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context>
3534 <context context-type="linenumber">1</context>
3535 </context-group>
3536 <context-group purpose="location">
3240 <context context-type="sourcefile">src/app/login/login.component.ts</context> 3537 <context context-type="sourcefile">src/app/login/login.component.ts</context>
3241 <context context-type="linenumber">1</context> 3538 <context context-type="linenumber">1</context>
3242 </context-group> 3539 </context-group>
@@ -3518,10 +3815,10 @@ When you will upload a video in this channel, the video support field will be au
3518 <context context-type="linenumber">1</context> 3815 <context context-type="linenumber">1</context>
3519 </context-group> 3816 </context-group>
3520 </trans-unit> 3817 </trans-unit>
3521 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732" datatype="html"> 3818 <trans-unit id="507192ee1fa84aefed02d603caada2d84927023e" datatype="html">
3522 <source>The new password and the confirmed password do not correspond.</source> 3819 <source>Ownership accepted</source>
3523 <context-group purpose="location"> 3820 <context-group purpose="location">
3524 <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context> 3821 <context context-type="sourcefile">src/app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.ts</context>
3525 <context context-type="linenumber">1</context> 3822 <context context-type="linenumber">1</context>
3526 </context-group> 3823 </context-group>
3527 </trans-unit> 3824 </trans-unit>
@@ -3701,6 +3998,45 @@ When you will upload a video in this channel, the video support field will be au
3701 <context context-type="linenumber">1</context> 3998 <context context-type="linenumber">1</context>
3702 </context-group> 3999 </context-group>
3703 </trans-unit> 4000 </trans-unit>
4001 <trans-unit id="740c53a50a618bf5c7a5bd5c3f7321f0bd1840dd" datatype="html">
4002 <source>Ownership change request sent.</source>
4003 <context-group purpose="location">
4004 <context context-type="sourcefile">src/app/+my-account/my-account-videos/video-change-ownership/video-change-ownership.component.ts</context>
4005 <context context-type="linenumber">1</context>
4006 </context-group>
4007 </trans-unit>
4008 <trans-unit id="807cf11e6ac1cde912496f764c176bdfdd6b7e19" datatype="html">
4009 <source>Channels</source>
4010 <context-group purpose="location">
4011 <context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context>
4012 <context context-type="linenumber">1</context>
4013 </context-group>
4014 </trans-unit>
4015 <trans-unit id="4bc7db3e3f8ae777dd480e2019af97fd8c1be47d" datatype="html">
4016 <source>Video imports</source>
4017 <context-group purpose="location">
4018 <context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context>
4019 <context context-type="linenumber">1</context>
4020 </context-group>
4021 </trans-unit>
4022 <trans-unit id="af55337b4032d675ab6b2081af797ca9c979b706" datatype="html">
4023 <source>An email with verification link will be sent to &lt;x id="INTERPOLATION" equiv-text="{{email}}"/&gt;.</source>
4024 <context-group purpose="location">
4025 <context context-type="sourcefile">src/app/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context>
4026 <context context-type="linenumber">1</context>
4027 </context-group>
4028 </trans-unit>
4029 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752" datatype="html">
4030 <source>Unable to find user id or verification string.</source>
4031 <context-group purpose="location">
4032 <context context-type="sourcefile">src/app/+verify-account/verify-account-email/verify-account-email.component.ts</context>
4033 <context context-type="linenumber">1</context>
4034 </context-group>
4035 <context-group purpose="location">
4036 <context context-type="sourcefile">src/app/reset-password/reset-password.component.ts</context>
4037 <context context-type="linenumber">1</context>
4038 </context-group>
4039 </trans-unit>
3704 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7" datatype="html"> 4040 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7" datatype="html">
3705 <source>Cannot retrieve OAuth Client credentials: &lt;x id="INTERPOLATION" equiv-text="{{errorText}}"/&gt;. 4041 <source>Cannot retrieve OAuth Client credentials: &lt;x id="INTERPOLATION" equiv-text="{{errorText}}"/&gt;.
3706</source> 4042</source>
@@ -3751,13 +4087,6 @@ When you will upload a video in this channel, the video support field will be au
3751 <context context-type="linenumber">1</context> 4087 <context context-type="linenumber">1</context>
3752 </context-group> 4088 </context-group>
3753 </trans-unit> 4089 </trans-unit>
3754 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752" datatype="html">
3755 <source>Unable to find user id or verification string.</source>
3756 <context-group purpose="location">
3757 <context context-type="sourcefile">src/app/reset-password/reset-password.component.ts</context>
3758 <context context-type="linenumber">1</context>
3759 </context-group>
3760 </trans-unit>
3761 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26" datatype="html"> 4090 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26" datatype="html">
3762 <source>Your password has been successfully reset!</source> 4091 <source>Your password has been successfully reset!</source>
3763 <context-group purpose="location"> 4092 <context-group purpose="location">
@@ -4036,6 +4365,13 @@ When you will upload a video in this channel, the video support field will be au
4036 <context context-type="linenumber">1</context> 4365 <context context-type="linenumber">1</context>
4037 </context-group> 4366 </context-group>
4038 </trans-unit> 4367 </trans-unit>
4368 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732" datatype="html">
4369 <source>The new password and the confirmed password do not correspond.</source>
4370 <context-group purpose="location">
4371 <context context-type="sourcefile">src/app/shared/forms/form-validators/user-validators.service.ts</context>
4372 <context context-type="linenumber">1</context>
4373 </context-group>
4374 </trans-unit>
4039 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf" datatype="html"> 4375 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf" datatype="html">
4040 <source>Video quota is required.</source> 4376 <source>Video quota is required.</source>
4041 <context-group purpose="location"> 4377 <context-group purpose="location">
@@ -4050,6 +4386,20 @@ When you will upload a video in this channel, the video support field will be au
4050 <context context-type="linenumber">1</context> 4386 <context context-type="linenumber">1</context>
4051 </context-group> 4387 </context-group>
4052 </trans-unit> 4388 </trans-unit>
4389 <trans-unit id="7e58d1fb4e86af94f5199660ef349d55811888bb" datatype="html">
4390 <source>Daily upload limit is required.</source>
4391 <context-group purpose="location">
4392 <context context-type="sourcefile">src/app/shared/forms/form-validators/user-validators.service.ts</context>
4393 <context context-type="linenumber">1</context>
4394 </context-group>
4395 </trans-unit>
4396 <trans-unit id="e283cbc4469959ea664f9d545f15278e089a6f1e" datatype="html">
4397 <source>Daily upload limit must be greater than -1.</source>
4398 <context-group purpose="location">
4399 <context context-type="sourcefile">src/app/shared/forms/form-validators/user-validators.service.ts</context>
4400 <context context-type="linenumber">1</context>
4401 </context-group>
4402 </trans-unit>
4053 <trans-unit id="545e77fd5d9526228a2133109447c23225ed9c85" datatype="html"> 4403 <trans-unit id="545e77fd5d9526228a2133109447c23225ed9c85" datatype="html">
4054 <source>User role is required.</source> 4404 <source>User role is required.</source>
4055 <context-group purpose="location"> 4405 <context-group purpose="location">
@@ -4171,6 +4521,13 @@ When you will upload a video in this channel, the video support field will be au
4171 <context context-type="linenumber">1</context> 4521 <context context-type="linenumber">1</context>
4172 </context-group> 4522 </context-group>
4173 </trans-unit> 4523 </trans-unit>
4524 <trans-unit id="94b831c7e3684258f88e099c6cd3b8f73f8a2de6" datatype="html">
4525 <source>The channel is required.</source>
4526 <context-group purpose="location">
4527 <context context-type="sourcefile">src/app/shared/forms/form-validators/video-accept-ownership-validators.service.ts</context>
4528 <context context-type="linenumber">1</context>
4529 </context-group>
4530 </trans-unit>
4174 <trans-unit id="0776b05d442a0a16f083a5eefa52a166b9d514ca" datatype="html"> 4531 <trans-unit id="0776b05d442a0a16f083a5eefa52a166b9d514ca" datatype="html">
4175 <source>Blacklist reason must be at least 2 characters long.</source> 4532 <source>Blacklist reason must be at least 2 characters long.</source>
4176 <context-group purpose="location"> 4533 <context-group purpose="location">
@@ -4199,6 +4556,13 @@ When you will upload a video in this channel, the video support field will be au
4199 <context context-type="linenumber">1</context> 4556 <context context-type="linenumber">1</context>
4200 </context-group> 4557 </context-group>
4201 </trans-unit> 4558 </trans-unit>
4559 <trans-unit id="bd7fc070c728dc6dbf3959d49fe5bb27ce15d294" datatype="html">
4560 <source>The username is required.</source>
4561 <context-group purpose="location">
4562 <context context-type="sourcefile">src/app/shared/forms/form-validators/video-change-ownership-validators.service.ts</context>
4563 <context context-type="linenumber">1</context>
4564 </context-group>
4565 </trans-unit>
4202 <trans-unit id="541087322c34e8b26954fd67ff4fc80d1a6c1b33" datatype="html"> 4566 <trans-unit id="541087322c34e8b26954fd67ff4fc80d1a6c1b33" datatype="html">
4203 <source>Name is required.</source> 4567 <source>Name is required.</source>
4204 <context-group purpose="location"> 4568 <context-group purpose="location">
@@ -4726,6 +5090,62 @@ When you will upload a video in this channel, the video support field will be au
4726 </context-group> 5090 </context-group>
4727 <note priority="1" from="description">Date format in this locale.</note> 5091 <note priority="1" from="description">Date format in this locale.</note>
4728 </trans-unit> 5092 </trans-unit>
5093 <trans-unit id="a0fdb831d4557925dbaa4f8aff7e5035f7506411" datatype="html">
5094 <source>Transcode your videos in multiple resolutions</source>
5095 <context-group purpose="location">
5096 <context context-type="sourcefile">src/app/shared/instance/instance-features-table.component.ts</context>
5097 <context context-type="linenumber">1</context>
5098 </context-group>
5099 </trans-unit>
5100 <trans-unit id="590fc27fcbd7dd680da2bb2da644a183338f6bd1" datatype="html">
5101 <source>HTTP import (YouTube, Vimeo, direct URL...)</source>
5102 <context-group purpose="location">
5103 <context context-type="sourcefile">src/app/shared/instance/instance-features-table.component.ts</context>
5104 <context context-type="linenumber">1</context>
5105 </context-group>
5106 </trans-unit>
5107 <trans-unit id="4e231a74ad4739e7b0606e8e66d5a656f5855a5a" datatype="html">
5108 <source>Torrent import</source>
5109 <context-group purpose="location">
5110 <context context-type="sourcefile">src/app/shared/instance/instance-features-table.component.ts</context>
5111 <context context-type="linenumber">1</context>
5112 </context-group>
5113 </trans-unit>
5114 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba" datatype="html">
5115 <source>~ &lt;x id="INTERPOLATION" equiv-text="{{minutes}}"/&gt; &lt;x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/&gt;</source>
5116 <context-group purpose="location">
5117 <context context-type="sourcefile">src/app/shared/instance/instance-features-table.component.ts</context>
5118 <context context-type="linenumber">1</context>
5119 </context-group>
5120 </trans-unit>
5121 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24" datatype="html">
5122 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
5123 <context-group purpose="location">
5124 <context context-type="sourcefile">src/app/shared/instance/instance-features-table.component.ts</context>
5125 <context context-type="linenumber">1</context>
5126 </context-group>
5127 </trans-unit>
5128 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86" datatype="html">
5129 <source>&lt;x id="INTERPOLATION" equiv-text="{{seconds}}"/&gt; of full HD videos</source>
5130 <context-group purpose="location">
5131 <context context-type="sourcefile">src/app/shared/instance/instance-features-table.component.ts</context>
5132 <context context-type="linenumber">1</context>
5133 </context-group>
5134 </trans-unit>
5135 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8" datatype="html">
5136 <source>&lt;x id="INTERPOLATION" equiv-text="{{seconds}}"/&gt; of HD videos</source>
5137 <context-group purpose="location">
5138 <context context-type="sourcefile">src/app/shared/instance/instance-features-table.component.ts</context>
5139 <context context-type="linenumber">1</context>
5140 </context-group>
5141 </trans-unit>
5142 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5" datatype="html">
5143 <source>&lt;x id="INTERPOLATION" equiv-text="{{seconds}}"/&gt; of average quality videos</source>
5144 <context-group purpose="location">
5145 <context context-type="sourcefile">src/app/shared/instance/instance-features-table.component.ts</context>
5146 <context context-type="linenumber">1</context>
5147 </context-group>
5148 </trans-unit>
4729 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d" datatype="html"> 5149 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d" datatype="html">
4730 <source>&lt;x id="INTERPOLATION" equiv-text="{{interval}}"/&gt; years ago</source> 5150 <source>&lt;x id="INTERPOLATION" equiv-text="{{interval}}"/&gt; years ago</source>
4731 <context-group purpose="location"> 5151 <context-group purpose="location">
@@ -4894,43 +5314,43 @@ When you will upload a video in this channel, the video support field will be au
4894 <context context-type="linenumber">1</context> 5314 <context context-type="linenumber">1</context>
4895 </context-group> 5315 </context-group>
4896 </trans-unit> 5316 </trans-unit>
4897 <trans-unit id="20deec13d8d4ff199aa04318818ca44dab0585be" datatype="html"> 5317 <trans-unit id="d4195053fd38eacf6dee1fc507296928978cc8fb" datatype="html">
4898 <source>Registration for &lt;x id="INTERPOLATION" equiv-text="{{username}}"/&gt; complete.</source> 5318 <source>Only I can see this video</source>
4899 <context-group purpose="location"> 5319 <context-group purpose="location">
4900 <context context-type="sourcefile">src/app/signup/signup.component.ts</context> 5320 <context context-type="sourcefile">src/app/shared/video/video.service.ts</context>
4901 <context context-type="linenumber">1</context> 5321 <context context-type="linenumber">1</context>
4902 </context-group> 5322 </context-group>
4903 </trans-unit> 5323 </trans-unit>
4904 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba" datatype="html"> 5324 <trans-unit id="17b62592e5fcabb5235bb25c4883a827ab37cf70" datatype="html">
4905 <source>~ &lt;x id="INTERPOLATION" equiv-text="{{minutes}}"/&gt; &lt;x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/&gt;</source> 5325 <source>Only people with the private link can see this video</source>
4906 <context-group purpose="location"> 5326 <context-group purpose="location">
4907 <context context-type="sourcefile">src/app/signup/signup.component.ts</context> 5327 <context context-type="sourcefile">src/app/shared/video/video.service.ts</context>
4908 <context context-type="linenumber">1</context> 5328 <context context-type="linenumber">1</context>
4909 </context-group> 5329 </context-group>
4910 </trans-unit> 5330 </trans-unit>
4911 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24" datatype="html"> 5331 <trans-unit id="15be15cbdc6e960f57e801f457c19165ab39632b" datatype="html">
4912 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source> 5332 <source>Anyone can see this video</source>
4913 <context-group purpose="location"> 5333 <context-group purpose="location">
4914 <context context-type="sourcefile">src/app/signup/signup.component.ts</context> 5334 <context context-type="sourcefile">src/app/shared/video/video.service.ts</context>
4915 <context context-type="linenumber">1</context> 5335 <context context-type="linenumber">1</context>
4916 </context-group> 5336 </context-group>
4917 </trans-unit> 5337 </trans-unit>
4918 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86" datatype="html"> 5338 <trans-unit id="65cc4ab3b4c438e07c89be2b677d08369fb62da2" datatype="html">
4919 <source>&lt;x id="INTERPOLATION" equiv-text="{{seconds}}"/&gt; of full HD videos</source> 5339 <source>Welcome</source>
4920 <context-group purpose="location"> 5340 <context-group purpose="location">
4921 <context context-type="sourcefile">src/app/signup/signup.component.ts</context> 5341 <context context-type="sourcefile">src/app/signup/signup.component.ts</context>
4922 <context context-type="linenumber">1</context> 5342 <context context-type="linenumber">1</context>
4923 </context-group> 5343 </context-group>
4924 </trans-unit> 5344 </trans-unit>
4925 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8" datatype="html"> 5345 <trans-unit id="f5e3d1e1cd2650fc6e86fbfcc8fe854e5cf18d6c" datatype="html">
4926 <source>&lt;x id="INTERPOLATION" equiv-text="{{seconds}}"/&gt; of HD videos</source> 5346 <source>Please check your email to verify your account and complete signup.</source>
4927 <context-group purpose="location"> 5347 <context-group purpose="location">
4928 <context context-type="sourcefile">src/app/signup/signup.component.ts</context> 5348 <context context-type="sourcefile">src/app/signup/signup.component.ts</context>
4929 <context context-type="linenumber">1</context> 5349 <context context-type="linenumber">1</context>
4930 </context-group> 5350 </context-group>
4931 </trans-unit> 5351 </trans-unit>
4932 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5" datatype="html"> 5352 <trans-unit id="20deec13d8d4ff199aa04318818ca44dab0585be" datatype="html">
4933 <source>&lt;x id="INTERPOLATION" equiv-text="{{seconds}}"/&gt; of average quality videos</source> 5353 <source>Registration for &lt;x id="INTERPOLATION" equiv-text="{{username}}"/&gt; complete.</source>
4934 <context-group purpose="location"> 5354 <context-group purpose="location">
4935 <context context-type="sourcefile">src/app/signup/signup.component.ts</context> 5355 <context context-type="sourcefile">src/app/signup/signup.component.ts</context>
4936 <context context-type="linenumber">1</context> 5356 <context context-type="linenumber">1</context>
@@ -4989,8 +5409,15 @@ When you will upload a video in this channel, the video support field will be au
4989 <context context-type="linenumber">1</context> 5409 <context context-type="linenumber">1</context>
4990 </context-group> 5410 </context-group>
4991 </trans-unit> 5411 </trans-unit>
4992 <trans-unit id="d31d39e8ee9b2f20bffb3468ee062eaa5409c59f" datatype="html"> 5412 <trans-unit id="a6019e856f511dbe1fe658790c71c594b26930ee" datatype="html">
4993 <source>Your video quota is exceeded with this video (video size: &lt;x id="INTERPOLATION" equiv-text="{{ videoSize }}"/&gt;, used: &lt;x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/&gt;, quota: &lt;x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/&gt;)</source> 5413 <source>Your video quota is exceeded with this video (video size: &lt;x id="INTERPOLATION" equiv-text="{{videoSize}}"/&gt;, used: &lt;x id="INTERPOLATION_1" equiv-text="{{videoQuotaUsed}}"/&gt;, quota: &lt;x id="INTERPOLATION_2" equiv-text="{{videoQuota}}"/&gt;)</source>
5414 <context-group purpose="location">
5415 <context context-type="sourcefile">src/app/videos/+video-edit/video-add-components/video-upload.component.ts</context>
5416 <context context-type="linenumber">1</context>
5417 </context-group>
5418 </trans-unit>
5419 <trans-unit id="c980896ac8e08e9751545db1b7ef0e93fb8a52cd" datatype="html">
5420 <source>Your daily video quota is exceeded with this video (video size: &lt;x id="INTERPOLATION" equiv-text="{{videoSize}}"/&gt;, used: &lt;x id="INTERPOLATION_1" equiv-text="{{quotaUsedDaily}}"/&gt;, quota: &lt;x id="INTERPOLATION_2" equiv-text="{{quotaDaily}}"/&gt;)</source>
4994 <context-group purpose="location"> 5421 <context-group purpose="location">
4995 <context context-type="sourcefile">src/app/videos/+video-edit/video-add-components/video-upload.component.ts</context> 5422 <context context-type="sourcefile">src/app/videos/+video-edit/video-add-components/video-upload.component.ts</context>
4996 <context context-type="linenumber">1</context> 5423 <context context-type="linenumber">1</context>
@@ -5038,6 +5465,13 @@ When you will upload a video in this channel, the video support field will be au
5038 <context context-type="linenumber">1</context> 5465 <context context-type="linenumber">1</context>
5039 </context-group> 5466 </context-group>
5040 </trans-unit> 5467 </trans-unit>
5468 <trans-unit id="aca77c42f255d4bc6e95c12c5d656070726c6c2f" datatype="html">
5469 <source>Start at &lt;x id="INTERPOLATION" equiv-text="{{timestamp}}"/&gt;</source>
5470 <context-group purpose="location">
5471 <context context-type="sourcefile">src/app/videos/+video-watch/modal/video-share.component.ts</context>
5472 <context context-type="linenumber">1</context>
5473 </context-group>
5474 </trans-unit>
5041 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95" datatype="html"> 5475 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95" datatype="html">
5042 <source>Do you really want to delete this video?</source> 5476 <source>Do you really want to delete this video?</source>
5043 <context-group purpose="location"> 5477 <context-group purpose="location">
diff --git a/client/src/locale/source/iso639_en_US.xml b/client/src/locale/source/iso639_en_US.xml
index 7c2a6a6e0..905e6181e 100644
--- a/client/src/locale/source/iso639_en_US.xml
+++ b/client/src/locale/source/iso639_en_US.xml
@@ -1,5 +1,5 @@
1<xliff xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 http://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd" xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2"> 1<xliff xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 http://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd" xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
2 <file original="namespace1" datatype="plaintext" source-language="undefined" target-language="undefined"> 2 <file original="namespace1" datatype="plaintext">
3 <body> 3 <body>
4 <trans-unit id="Afar"> 4 <trans-unit id="Afar">
5 <source>Afar</source> 5 <source>Afar</source>
@@ -505,8 +505,8 @@
505 <source>Nyanja</source> 505 <source>Nyanja</source>
506 <target>undefined</target> 506 <target>undefined</target>
507 </trans-unit> 507 </trans-unit>
508 <trans-unit id="Occitan (post 1500)"> 508 <trans-unit id="Occitan">
509 <source>Occitan (post 1500)</source> 509 <source>Occitan</source>
510 <target>undefined</target> 510 <target>undefined</target>
511 </trans-unit> 511 </trans-unit>
512 <trans-unit id="Ojibwa"> 512 <trans-unit id="Ojibwa">
diff --git a/client/src/locale/source/player_en_US.xml b/client/src/locale/source/player_en_US.xml
index 3666a907d..a38f6375c 100644
--- a/client/src/locale/source/player_en_US.xml
+++ b/client/src/locale/source/player_en_US.xml
@@ -1,5 +1,5 @@
1<xliff xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 http://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd" xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2"> 1<xliff xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 http://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd" xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
2 <file original="namespace1" datatype="plaintext" source-language="undefined" target-language="undefined"> 2 <file original="namespace1" datatype="plaintext">
3 <body> 3 <body>
4 <trans-unit id="Audio Player"> 4 <trans-unit id="Audio Player">
5 <source>Audio Player</source> 5 <source>Audio Player</source>
diff --git a/client/src/locale/source/server_en_US.xml b/client/src/locale/source/server_en_US.xml
index 050acacb5..8858a7a59 100644
--- a/client/src/locale/source/server_en_US.xml
+++ b/client/src/locale/source/server_en_US.xml
@@ -1,5 +1,5 @@
1<xliff xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 http://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd" xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2"> 1<xliff xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 http://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd" xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
2 <file original="namespace1" datatype="plaintext" source-language="undefined" target-language="undefined"> 2 <file original="namespace1" datatype="plaintext">
3 <body> 3 <body>
4 <trans-unit id="Music"> 4 <trans-unit id="Music">
5 <source>Music</source> 5 <source>Music</source>
diff --git a/client/src/locale/target/angular_ca_ES.xml b/client/src/locale/target/angular_ca_ES.xml
index 719ca5f69..98a94ba5a 100644
--- a/client/src/locale/target/angular_ca_ES.xml
+++ b/client/src/locale/target/angular_ca_ES.xml
@@ -3,29 +3,25 @@
3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1"> 3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1">
4 <file source-language="en-US" datatype="plaintext" original="" target-language="ca-ES"> 4 <file source-language="en-US" datatype="plaintext" original="" target-language="ca-ES">
5 <body> 5 <body>
6 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
7 <source>
8 Cancel
9 </source>
10 <target>
11 Cancel·la
12 </target>
13 <context-group name="null">
14 <context context-type="linenumber">45</context>
15 </context-group>
16 </trans-unit>
17 <trans-unit id="9d5f16f0233b39fa2cd843321407a7358c323ad8"> 6 <trans-unit id="9d5f16f0233b39fa2cd843321407a7358c323ad8">
18 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 7 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
19 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visualitzacions</target> 8 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visualitzacions</target>
20 <context-group name="null"> 9 <context-group name="null">
21 <context context-type="linenumber">34</context> 10 <context context-type="linenumber">12</context>
11 </context-group>
12 </trans-unit>
13 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7">
14 <source>Delete</source>
15 <target>Esborra</target>
16 <context-group name="null">
17 <context context-type="linenumber">15</context>
22 </context-group> 18 </context-group>
23 </trans-unit> 19 </trans-unit>
24 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> 20 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c">
25 <source>Edit</source> 21 <source>Edit</source>
26 <target>Editar</target> 22 <target>Editar</target>
27 <context-group name="null"> 23 <context-group name="null">
28 <context context-type="linenumber">3</context> 24 <context context-type="linenumber">5</context>
29 </context-group> 25 </context-group>
30 </trans-unit> 26 </trans-unit>
31 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> 27 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d">
@@ -39,7 +35,7 @@
39 <source>Complete preview</source> 35 <source>Complete preview</source>
40 <target>Vista prèvia completa</target> 36 <target>Vista prèvia completa</target>
41 <context-group name="null"> 37 <context-group name="null">
42 <context context-type="linenumber">10</context> 38 <context context-type="linenumber">13</context>
43 </context-group> 39 </context-group>
44 </trans-unit> 40 </trans-unit>
45 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> 41 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f">
@@ -49,6 +45,13 @@
49 <context context-type="linenumber">18</context> 45 <context context-type="linenumber">18</context>
50 </context-group> 46 </context-group>
51 </trans-unit> 47 </trans-unit>
48 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
49 <source>Video quota</source>
50 <target>Quota de vídeo</target>
51 <context-group name="null">
52 <context context-type="linenumber">19</context>
53 </context-group>
54 </trans-unit>
52 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea"> 55 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea">
53 <source> 56 <source>
54 Login 57 Login
@@ -63,14 +66,14 @@
63 <source>User</source> 66 <source>User</source>
64 <target>Usuari</target> 67 <target>Usuari</target>
65 <context-group name="null"> 68 <context-group name="null">
66 <context context-type="linenumber">11</context> 69 <context context-type="linenumber">13</context>
67 </context-group> 70 </context-group>
68 </trans-unit> 71 </trans-unit>
69 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> 72 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478">
70 <source>Username or email address</source> 73 <source>Username or email address</source>
71 <target>Nom d'usuari o adreça de correu electrònic</target> 74 <target>Nom d'usuari o adreça de correu electrònic</target>
72 <context-group name="null"> 75 <context-group name="null">
73 <context context-type="linenumber">13</context> 76 <context context-type="linenumber">15</context>
74 </context-group> 77 </context-group>
75 </trans-unit> 78 </trans-unit>
76 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87"> 79 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87">
@@ -81,7 +84,7 @@
81 o crear un compte 84 o crear un compte
82 </target> 85 </target>
83 <context-group name="null"> 86 <context-group name="null">
84 <context context-type="linenumber">16</context> 87 <context context-type="linenumber">18</context>
85 </context-group> 88 </context-group>
86 </trans-unit> 89 </trans-unit>
87 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b"> 90 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b">
@@ -92,14 +95,14 @@
92 o crear un compte en un altre instància 95 o crear un compte en un altre instància
93 </target> 96 </target>
94 <context-group name="null"> 97 <context-group name="null">
95 <context context-type="linenumber">20</context> 98 <context context-type="linenumber">22</context>
96 </context-group> 99 </context-group>
97 </trans-unit> 100 </trans-unit>
98 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3"> 101 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3">
99 <source>User registration is not allowed on this instance, but you can register on many others!</source> 102 <source>User registration is not allowed on this instance, but you can register on many others!</source>
100 <target>El registre d'usuaris no és permès en aquesta instància però pots registrar-te en moltes altres!</target> 103 <target>El registre d'usuaris no és permès en aquesta instància però pots registrar-te en moltes altres!</target>
101 <context-group name="null"> 104 <context-group name="null">
102 <context context-type="linenumber">26</context> 105 <context context-type="linenumber">28</context>
103 </context-group> 106 </context-group>
104 </trans-unit> 107 </trans-unit>
105 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> 108 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407">
@@ -113,35 +116,35 @@
113 <source>I forgot my password</source> 116 <source>I forgot my password</source>
114 <target>He oblidat la meva contrasenya</target> 117 <target>He oblidat la meva contrasenya</target>
115 <context-group name="null"> 118 <context-group name="null">
116 <context context-type="linenumber">42</context> 119 <context context-type="linenumber">44</context>
117 </context-group> 120 </context-group>
118 </trans-unit> 121 </trans-unit>
119 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681"> 122 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681">
120 <source>Forgot your password</source> 123 <source>Forgot your password</source>
121 <target>Has oblidat la teva contrasenya</target> 124 <target>Has oblidat la teva contrasenya</target>
122 <context-group name="null"> 125 <context-group name="null">
123 <context context-type="linenumber">59</context> 126 <context context-type="linenumber">57</context>
124 </context-group> 127 </context-group>
125 </trans-unit> 128 </trans-unit>
126 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc"> 129 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc">
127 <source>Email</source> 130 <source>Email</source>
128 <target>Correu</target> 131 <target>Correu</target>
129 <context-group name="null"> 132 <context-group name="null">
130 <context context-type="linenumber">17</context> 133 <context context-type="linenumber">8</context>
131 </context-group> 134 </context-group>
132 </trans-unit> 135 </trans-unit>
133 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529"> 136 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529">
134 <source>Email address</source> 137 <source>Email address</source>
135 <target>Adreça de correu</target> 138 <target>Adreça de correu</target>
136 <context-group name="null"> 139 <context-group name="null">
137 <context context-type="linenumber">66</context> 140 <context context-type="linenumber">10</context>
138 </context-group> 141 </context-group>
139 </trans-unit> 142 </trans-unit>
140 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55"> 143 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55">
141 <source>Send me an email to reset my password</source> 144 <source>Send me an email to reset my password</source>
142 <target>Envia'm un correu per reiniciar la meva contrasenya</target> 145 <target>Envia'm un correu per reiniciar la meva contrasenya</target>
143 <context-group name="null"> 146 <context-group name="null">
144 <context context-type="linenumber">77</context> 147 <context context-type="linenumber">75</context>
145 </context-group> 148 </context-group>
146 </trans-unit> 149 </trans-unit>
147 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa"> 150 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa">
@@ -187,24 +190,6 @@
187 <context context-type="linenumber">3</context> 190 <context context-type="linenumber">3</context>
188 </context-group> 191 </context-group>
189 </trans-unit> 192 </trans-unit>
190 <trans-unit id="a6807b834e01ce165aa61fad157b0ff4288b6bf1">
191 <source>Initial video quota:</source>
192 <target>Quota de vídeo inicial:</target>
193 <context-group name="null">
194 <context context-type="linenumber">8</context>
195 </context-group>
196 </trans-unit>
197 <trans-unit id="87b6b2c26215c5e712d3bfe4cc86ba53bc23451c">
198 <source>
199 Unlimited
200 </source>
201 <target>
202 Il·limitat
203 </target>
204 <context-group name="null">
205 <context context-type="linenumber">16</context>
206 </context-group>
207 </trans-unit>
208 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> 193 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48">
209 <source>Username</source> 194 <source>Username</source>
210 <target>Nom d'usuari</target> 195 <target>Nom d'usuari</target>
@@ -212,107 +197,124 @@
212 <context context-type="linenumber">8</context> 197 <context context-type="linenumber">8</context>
213 </context-group> 198 </context-group>
214 </trans-unit> 199 </trans-unit>
200 <trans-unit id="2ac776627e18565d7ae85cd7f4cd033bc5d0c88b">
201 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source>
202 <target>He llegit i estic d'acord amb &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; d'aquesta instància</target>
203 <context-group name="null">
204 <context context-type="linenumber">54</context>
205 </context-group>
206 </trans-unit>
215 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4"> 207 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4">
216 <source>Signup</source> 208 <source>Signup</source>
217 <target>Registra't</target> 209 <target>Registra't</target>
218 <context-group name="null"> 210 <context-group name="null">
219 <context context-type="linenumber">86</context> 211 <context context-type="linenumber">88</context>
220 </context-group> 212 </context-group>
221 </trans-unit> 213 </trans-unit>
222 <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96"> 214 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a">
223 <source>Change the language</source> 215 <source><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> results</source>
224 <target>Canvia la llengua</target> 216 <target><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> resultats</target>
225 <context-group name="null"> 217 <context-group name="null">
226 <context context-type="linenumber">76</context> 218 <context context-type="linenumber">5</context>
227 </context-group> 219 </context-group>
228 </trans-unit> 220 </trans-unit>
229 <trans-unit id="b8ccc4f1b3f839fca9bd59e072f715fd487d540f"> 221 <trans-unit id="4c3960fb1d9b07d1db3b5bda3ee40019211830dc">
230 <source> 222 <source>
231 My public profile 223 for <x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span&gt;"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/>
232 </source> 224 </source>
233 <target> 225 <target>
234 El meu perfil públic 226 for <x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span&gt;"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/>
235 </target> 227 </target>
236 <context-group name="null"> 228 <context-group name="null">
237 <context context-type="linenumber">19</context> 229 <context context-type="linenumber">6</context>
238 </context-group> 230 </context-group>
239 </trans-unit> 231 </trans-unit>
240 <trans-unit id="c84b721e9325c9cce20d92f4dbd66898ab5ec947"> 232 <trans-unit id="1298c1d2bbbb7415f5494e800f6775fdb70f4df6">
241 <source> 233 <source>Filters</source>
242 My account 234 <target>Filtres</target>
243 </source>
244 <target>
245 El meu compte
246 </target>
247 <context-group name="null"> 235 <context-group name="null">
248 <context context-type="linenumber">23</context> 236 <context context-type="linenumber">16</context>
249 </context-group> 237 </context-group>
250 </trans-unit> 238 </trans-unit>
251 <trans-unit id="ba7378cdaaa60b4fee17a551b232ad3512dac17d"> 239 <trans-unit id="e2dbf0426cbb0b573faf49dffeb7d5bdf16eda5d">
252 <source> 240 <source>
253 Log out 241 No results found
254 </source> 242 </source>
255 <target> 243 <target>
256 Tanca sessió 244 Cap resultat
257 </target> 245 </target>
258 <context-group name="null"> 246 <context-group name="null">
259 <context context-type="linenumber">27</context> 247 <context context-type="linenumber">25</context>
248 </context-group>
249 </trans-unit>
250 <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96">
251 <source>Change the language</source>
252 <target>Canvia la llengua</target>
253 <context-group name="null">
254 <context context-type="linenumber">88</context>
260 </context-group> 255 </context-group>
261 </trans-unit> 256 </trans-unit>
262 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> 257 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9">
263 <source>Login</source> 258 <source>Login</source>
264 <target>Iniciar sessió</target> 259 <target>Iniciar sessió</target>
265 <context-group name="null"> 260 <context-group name="null">
266 <context context-type="linenumber">36</context> 261 <context context-type="linenumber">38</context>
267 </context-group> 262 </context-group>
268 </trans-unit> 263 </trans-unit>
269 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> 264 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87">
270 <source>Create an account</source> 265 <source>Create an account</source>
271 <target>Registrar un compte</target> 266 <target>Registrar un compte</target>
272 <context-group name="null"> 267 <context-group name="null">
273 <context context-type="linenumber">37</context> 268 <context context-type="linenumber">39</context>
274 </context-group> 269 </context-group>
275 </trans-unit> 270 </trans-unit>
276 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238"> 271 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238">
277 <source>Videos</source> 272 <source>Videos</source>
278 <target>Vídeos</target> 273 <target>Vídeos</target>
279 <context-group name="null"> 274 <context-group name="null">
280 <context context-type="linenumber">21</context> 275 <context context-type="linenumber">24</context>
281 </context-group> 276 </context-group>
282 </trans-unit> 277 </trans-unit>
283 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> 278 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807">
284 <source>Trending</source> 279 <source>Trending</source>
285 <target>Tendència</target> 280 <target>Tendència</target>
286 <context-group name="null"> 281 <context-group name="null">
287 <context context-type="linenumber">45</context> 282 <context context-type="linenumber">57</context>
288 </context-group> 283 </context-group>
289 </trans-unit> 284 </trans-unit>
290 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> 285 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1">
291 <source>Recently added</source> 286 <source>Recently added</source>
292 <target>Afegits fa poc</target> 287 <target>Afegits fa poc</target>
293 <context-group name="null"> 288 <context-group name="null">
294 <context context-type="linenumber">50</context> 289 <context context-type="linenumber">62</context>
295 </context-group> 290 </context-group>
296 </trans-unit> 291 </trans-unit>
297 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d"> 292 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d">
298 <source>Local</source> 293 <source>Local</source>
299 <target>Local</target> 294 <target>Local</target>
300 <context-group name="null"> 295 <context-group name="null">
301 <context context-type="linenumber">55</context> 296 <context context-type="linenumber">67</context>
297 </context-group>
298 </trans-unit>
299 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f">
300 <source>More</source>
301 <target>Més</target>
302 <context-group name="null">
303 <context context-type="linenumber">72</context>
302 </context-group> 304 </context-group>
303 </trans-unit> 305 </trans-unit>
304 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> 306 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919">
305 <source>Administration</source> 307 <source>Administration</source>
306 <target>Administració</target> 308 <target>Administració</target>
307 <context-group name="null"> 309 <context-group name="null">
308 <context context-type="linenumber">64</context> 310 <context context-type="linenumber">76</context>
309 </context-group> 311 </context-group>
310 </trans-unit> 312 </trans-unit>
311 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> 313 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a">
312 <source>About</source> 314 <source>About</source>
313 <target>Quant a</target> 315 <target>Quant a</target>
314 <context-group name="null"> 316 <context-group name="null">
315 <context context-type="linenumber">23</context> 317 <context context-type="linenumber">25</context>
316 </context-group> 318 </context-group>
317 </trans-unit> 319 </trans-unit>
318 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> 320 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599">
@@ -329,25 +331,88 @@
329 <context context-type="linenumber">9</context> 331 <context context-type="linenumber">9</context>
330 </context-group> 332 </context-group>
331 </trans-unit> 333 </trans-unit>
334 <trans-unit id="5d43539fc358c3a548b9d487be821db73e2702ff">
335 <source>Sort</source>
336 <target>Ordena</target>
337 <context-group name="null">
338 <context context-type="linenumber">6</context>
339 </context-group>
340 </trans-unit>
341 <trans-unit id="98acac685fc4b2d35e5d0cf3cd224d247a756c3e">
342 <source>Published date</source>
343 <target>Data de publicació</target>
344 <context-group name="null">
345 <context context-type="linenumber">15</context>
346 </context-group>
347 </trans-unit>
348 <trans-unit id="a02ea1d4e7424ca989929da5e598f379940fdbf2">
349 <source>Duration</source>
350 <target>Durada</target>
351 <context-group name="null">
352 <context context-type="linenumber">24</context>
353 </context-group>
354 </trans-unit>
355 <trans-unit id="dc67060f94f0f2b58549f54a5c07925dffd20238">
356 <source>Display sensitive content</source>
357 <target>Mostra contingut sensible</target>
358 <context-group name="null">
359 <context context-type="linenumber">33</context>
360 </context-group>
361 </trans-unit>
362 <trans-unit id="4f20f2d5a6882190892e58b85f6ccbedfa737952">
363 <source>Yes</source>
364 <target>Sí</target>
365 <context-group name="null">
366 <context context-type="linenumber">37</context>
367 </context-group>
368 </trans-unit>
369 <trans-unit id="3d3ae7deebc5949b0c1c78b9847886a94321d9fd">
370 <source>No</source>
371 <target>No</target>
372 <context-group name="null">
373 <context context-type="linenumber">42</context>
374 </context-group>
375 </trans-unit>
332 <trans-unit id="607de17c2a755f65775881c19e276e7c933bcf94"> 376 <trans-unit id="607de17c2a755f65775881c19e276e7c933bcf94">
333 <source>Category</source> 377 <source>Category</source>
334 <target>Categoria</target> 378 <target>Categoria</target>
335 <context-group name="null"> 379 <context-group name="null">
336 <context context-type="linenumber">148</context> 380 <context context-type="linenumber">166</context>
337 </context-group> 381 </context-group>
338 </trans-unit> 382 </trans-unit>
339 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c"> 383 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c">
340 <source>Licence</source> 384 <source>Licence</source>
341 <target>Llicència</target> 385 <target>Llicència</target>
342 <context-group name="null"> 386 <context-group name="null">
343 <context context-type="linenumber">157</context> 387 <context context-type="linenumber">175</context>
344 </context-group> 388 </context-group>
345 </trans-unit> 389 </trans-unit>
346 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619"> 390 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619">
347 <source>Language</source> 391 <source>Language</source>
348 <target>Llengua</target> 392 <target>Llengua</target>
349 <context-group name="null"> 393 <context-group name="null">
350 <context context-type="linenumber">166</context> 394 <context context-type="linenumber">184</context>
395 </context-group>
396 </trans-unit>
397 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8">
398 <source>All of these tags</source>
399 <target>Totes aquestes etiquetes</target>
400 <context-group name="null">
401 <context context-type="linenumber">82</context>
402 </context-group>
403 </trans-unit>
404 <trans-unit id="492d2bd18db0cba03f6d9e3b0c42b8639fbe51ab">
405 <source>One of these tags</source>
406 <target>Una d'aquestes etiquetes</target>
407 <context-group name="null">
408 <context context-type="linenumber">87</context>
409 </context-group>
410 </trans-unit>
411 <trans-unit id="5ca707824ab93066c7d9b44e1b8bf216725c2c22">
412 <source>Filter</source>
413 <target>Filtre</target>
414 <context-group name="null">
415 <context context-type="linenumber">94</context>
351 </context-group> 416 </context-group>
352 </trans-unit> 417 </trans-unit>
353 <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e"> 418 <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e">
@@ -361,7 +426,7 @@
361 <source>Instance</source> 426 <source>Instance</source>
362 <target>Instància</target> 427 <target>Instància</target>
363 <context-group name="null"> 428 <context-group name="null">
364 <context context-type="linenumber">7</context> 429 <context context-type="linenumber">8</context>
365 </context-group> 430 </context-group>
366 </trans-unit> 431 </trans-unit>
367 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390"> 432 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390">
@@ -386,14 +451,14 @@
386 <source>Description</source> 451 <source>Description</source>
387 <target>Descripció</target> 452 <target>Descripció</target>
388 <context-group name="null"> 453 <context-group name="null">
389 <context context-type="linenumber">23</context> 454 <context context-type="linenumber">26</context>
390 </context-group> 455 </context-group>
391 </trans-unit> 456 </trans-unit>
392 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774"> 457 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774">
393 <source>Terms</source> 458 <source>Terms</source>
394 <target>Termes</target> 459 <target>Termes</target>
395 <context-group name="null"> 460 <context-group name="null">
396 <context context-type="linenumber">43</context> 461 <context context-type="linenumber">44</context>
397 </context-group> 462 </context-group>
398 </trans-unit> 463 </trans-unit>
399 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27"> 464 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27">
@@ -711,7 +776,7 @@
711 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source> 776 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source>
712 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscriptors</target> 777 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscriptors</target>
713 <context-group name="null"> 778 <context-group name="null">
714 <context context-type="linenumber">11</context> 779 <context context-type="linenumber">14</context>
715 </context-group> 780 </context-group>
716 </trans-unit> 781 </trans-unit>
717 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f"> 782 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f">
@@ -725,49 +790,49 @@
725 <source>Name</source> 790 <source>Name</source>
726 <target>Nom</target> 791 <target>Nom</target>
727 <context-group name="null"> 792 <context-group name="null">
728 <context context-type="linenumber">9</context> 793 <context context-type="linenumber">12</context>
729 </context-group> 794 </context-group>
730 </trans-unit> 795 </trans-unit>
731 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b"> 796 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b">
732 <source>Short description</source> 797 <source>Short description</source>
733 <target>Descripció curta</target> 798 <target>Descripció curta</target>
734 <context-group name="null"> 799 <context-group name="null">
735 <context context-type="linenumber">21</context> 800 <context context-type="linenumber">22</context>
736 </context-group> 801 </context-group>
737 </trans-unit> 802 </trans-unit>
738 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003"> 803 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003">
739 <source>Default client route</source> 804 <source>Default client route</source>
740 <target>Ruta per defecte del client</target> 805 <target>Ruta per defecte del client</target>
741 <context-group name="null"> 806 <context-group name="null">
742 <context context-type="linenumber">54</context> 807 <context context-type="linenumber">55</context>
743 </context-group> 808 </context-group>
744 </trans-unit> 809 </trans-unit>
745 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948"> 810 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948">
746 <source>Videos Trending</source> 811 <source>Videos Trending</source>
747 <target>Vídeos tendència</target> 812 <target>Vídeos tendència</target>
748 <context-group name="null"> 813 <context-group name="null">
749 <context context-type="linenumber">57</context> 814 <context context-type="linenumber">59</context>
750 </context-group> 815 </context-group>
751 </trans-unit> 816 </trans-unit>
752 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883"> 817 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883">
753 <source>Videos Recently Added</source> 818 <source>Videos Recently Added</source>
754 <target>Vídeos afegits fa poc</target> 819 <target>Vídeos afegits fa poc</target>
755 <context-group name="null"> 820 <context-group name="null">
756 <context context-type="linenumber">58</context> 821 <context context-type="linenumber">60</context>
757 </context-group> 822 </context-group>
758 </trans-unit> 823 </trans-unit>
759 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f"> 824 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f">
760 <source>Local videos</source> 825 <source>Local videos</source>
761 <target>Vídeos locals</target> 826 <target>Vídeos locals</target>
762 <context-group name="null"> 827 <context-group name="null">
763 <context context-type="linenumber">59</context> 828 <context context-type="linenumber">61</context>
764 </context-group> 829 </context-group>
765 </trans-unit> 830 </trans-unit>
766 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9"> 831 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9">
767 <source>Policy on videos containing sensitive content</source> 832 <source>Policy on videos containing sensitive content</source>
768 <target>Política sobre vídeos que contenen contingut sensible</target> 833 <target>Política sobre vídeos que contenen contingut sensible</target>
769 <context-group name="null"> 834 <context-group name="null">
770 <context context-type="linenumber">68</context> 835 <context context-type="linenumber">70</context>
771 </context-group> 836 </context-group>
772 </trans-unit> 837 </trans-unit>
773 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df"> 838 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df">
@@ -802,42 +867,42 @@
802 <source>Signup enabled</source> 867 <source>Signup enabled</source>
803 <target>Registre activat</target> 868 <target>Registre activat</target>
804 <context-group name="null"> 869 <context-group name="null">
805 <context context-type="linenumber">90</context> 870 <context context-type="linenumber">92</context>
806 </context-group> 871 </context-group>
807 </trans-unit> 872 </trans-unit>
808 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402"> 873 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402">
809 <source>Signup limit</source> 874 <source>Signup limit</source>
810 <target>Limit de registres</target> 875 <target>Limit de registres</target>
811 <context-group name="null"> 876 <context-group name="null">
812 <context context-type="linenumber">94</context> 877 <context context-type="linenumber">101</context>
813 </context-group> 878 </context-group>
814 </trans-unit> 879 </trans-unit>
815 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011"> 880 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011">
816 <source>Administrator</source> 881 <source>Administrator</source>
817 <target>Administrador</target> 882 <target>Administrador</target>
818 <context-group name="null"> 883 <context-group name="null">
819 <context context-type="linenumber">116</context> 884 <context context-type="linenumber">123</context>
820 </context-group> 885 </context-group>
821 </trans-unit> 886 </trans-unit>
822 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> 887 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587">
823 <source>Admin email</source> 888 <source>Admin email</source>
824 <target>Correu del Administrador</target> 889 <target>Correu del Administrador</target>
825 <context-group name="null"> 890 <context-group name="null">
826 <context context-type="linenumber">119</context> 891 <context context-type="linenumber">126</context>
827 </context-group> 892 </context-group>
828 </trans-unit> 893 </trans-unit>
829 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be"> 894 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be">
830 <source>Users</source> 895 <source>Users</source>
831 <target>Usuaris</target> 896 <target>Usuaris</target>
832 <context-group name="null"> 897 <context-group name="null">
833 <context context-type="linenumber">129</context> 898 <context context-type="linenumber">136</context>
834 </context-group> 899 </context-group>
835 </trans-unit> 900 </trans-unit>
836 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09"> 901 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09">
837 <source>User default video quota</source> 902 <source>User default video quota</source>
838 <target>Quota de vídeo per defecte de l'usuari</target> 903 <target>Quota de vídeo per defecte de l'usuari</target>
839 <context-group name="null"> 904 <context-group name="null">
840 <context context-type="linenumber">132</context> 905 <context context-type="linenumber">139</context>
841 </context-group> 906 </context-group>
842 </trans-unit> 907 </trans-unit>
843 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5"> 908 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5">
@@ -851,158 +916,112 @@
851 <source>Twitter</source> 916 <source>Twitter</source>
852 <target>Twitter</target> 917 <target>Twitter</target>
853 <context-group name="null"> 918 <context-group name="null">
854 <context context-type="linenumber">148</context> 919 <context context-type="linenumber">170</context>
855 </context-group> 920 </context-group>
856 </trans-unit> 921 </trans-unit>
857 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> 922 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524">
858 <source>Your Twitter username</source> 923 <source>Your Twitter username</source>
859 <target>El teu nom d'usuari de Twitter</target> 924 <target>El teu nom d'usuari de Twitter</target>
860 <context-group name="null"> 925 <context-group name="null">
861 <context context-type="linenumber">151</context> 926 <context context-type="linenumber">173</context>
862 </context-group> 927 </context-group>
863 </trans-unit> 928 </trans-unit>
864 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c"> 929 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c">
865 <source>Indicates the Twitter account for the website or platform on which the content was published.</source> 930 <source>Indicates the Twitter account for the website or platform on which the content was published.</source>
866 <target>Indica el compte de Twitter del lloc web o plataforma en què es va publicar el contingut.</target> 931 <target>Indica el compte de Twitter del lloc web o plataforma en què es va publicar el contingut.</target>
867 <context-group name="null"> 932 <context-group name="null">
868 <context context-type="linenumber">154</context> 933 <context context-type="linenumber">176</context>
869 </context-group> 934 </context-group>
870 </trans-unit> 935 </trans-unit>
871 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605"> 936 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605">
872 <source>Instance whitelisted by Twitter</source> 937 <source>Instance whitelisted by Twitter</source>
873 <target>Instància a la llista blanca de Twitter</target> 938 <target>Instància a la llista blanca de Twitter</target>
874 <context-group name="null"> 939 <context-group name="null">
875 <context context-type="linenumber">167</context> 940 <context context-type="linenumber">189</context>
876 </context-group>
877 </trans-unit>
878 <trans-unit id="3f008a1a07ca42c6ad258fde1bbd80ed74ada19b">
879 <source>If your instance is whitelisted by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.&lt;br /&gt;
880If the instance is not whitelisted, we use an image link card that will redirect on your PeerTube instance.&lt;br /&gt;&lt;br /&gt;
881Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; to see if you instance is whitelisted.</source>
882 <target>Si la teva instància es troba a la llista blanca de Twitter, un reproductor de vídeo s'incorporarà al canal de Twitter de la part compartida de PeerTube.&lt;br /&gt;
883Si la instància no es troba a la llista blanca, utilitzem una targeta d'enllaç d'imatge que redirigirà a la teva instància de PeerTube.&lt;br /&gt;&lt;br /&gt;
884Marca aquesta casella, desa la configuració i prova amb una URL de vídeo de la teva instància (https://exemple.com/videos/veure/exemple) a &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; per comprovar si la teva instància és a la llista blanca.</target>
885 <context-group name="null">
886 <context context-type="linenumber">168</context>
887 </context-group> 941 </context-group>
888 </trans-unit> 942 </trans-unit>
889 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> 943 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5">
890 <source>Services</source> 944 <source>Services</source>
891 <target>Serveis</target> 945 <target>Serveis</target>
892 <context-group name="null"> 946 <context-group name="null">
893 <context context-type="linenumber">146</context> 947 <context context-type="linenumber">168</context>
894 </context-group> 948 </context-group>
895 </trans-unit> 949 </trans-unit>
896 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490"> 950 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490">
897 <source>Transcoding</source> 951 <source>Transcoding</source>
898 <target>Transcodificació</target> 952 <target>Transcodificació</target>
899 <context-group name="null"> 953 <context-group name="null">
900 <context context-type="linenumber">176</context> 954 <context context-type="linenumber">200</context>
901 </context-group> 955 </context-group>
902 </trans-unit> 956 </trans-unit>
903 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> 957 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9">
904 <source>Transcoding enabled</source> 958 <source>Transcoding enabled</source>
905 <target>Transcodificació activada</target> 959 <target>Transcodificació activada</target>
906 <context-group name="null"> 960 <context-group name="null">
907 <context context-type="linenumber">180</context> 961 <context context-type="linenumber">204</context>
908 </context-group> 962 </context-group>
909 </trans-unit> 963 </trans-unit>
910 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> 964 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f">
911 <source>If you disable transcoding, many videos from your users will not work!</source> 965 <source>If you disable transcoding, many videos from your users will not work!</source>
912 <target>Si desactives la transcodificació, molts vídeos dels teus usuaris no funcionaran.</target> 966 <target>Si desactives la transcodificació, molts vídeos dels teus usuaris no funcionaran.</target>
913 <context-group name="null"> 967 <context-group name="null">
914 <context context-type="linenumber">181</context> 968 <context context-type="linenumber">205</context>
915 </context-group> 969 </context-group>
916 </trans-unit> 970 </trans-unit>
917 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> 971 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2">
918 <source>Transcoding threads</source> 972 <source>Transcoding threads</source>
919 <target>Subprocessos per la transcodificació</target> 973 <target>Subprocessos per la transcodificació</target>
920 <context-group name="null"> 974 <context-group name="null">
921 <context context-type="linenumber">187</context> 975 <context context-type="linenumber">211</context>
922 </context-group> 976 </context-group>
923 </trans-unit> 977 </trans-unit>
924 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7"> 978 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7">
925 <source>Previews cache size</source> 979 <source>Previews cache size</source>
926 <target>Memòria cau per a visualitzacions prèvies</target> 980 <target>Memòria cau per a visualitzacions prèvies</target>
927 <context-group name="null"> 981 <context-group name="null">
928 <context context-type="linenumber">219</context> 982 <context context-type="linenumber">243</context>
929 </context-group> 983 </context-group>
930 </trans-unit> 984 </trans-unit>
931 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c"> 985 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c">
932 <source>Customizations</source> 986 <source>Customizations</source>
933 <target>Personalitzacions</target> 987 <target>Personalitzacions</target>
934 <context-group name="null"> 988 <context-group name="null">
935 <context context-type="linenumber">240</context> 989 <context context-type="linenumber">264</context>
936 </context-group> 990 </context-group>
937 </trans-unit> 991 </trans-unit>
938 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> 992 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c">
939 <source>JavaScript</source> 993 <source>JavaScript</source>
940 <target>JavaScript</target> 994 <target>JavaScript</target>
941 <context-group name="null"> 995 <context-group name="null">
942 <context context-type="linenumber">243</context> 996 <context context-type="linenumber">267</context>
943 </context-group> 997 </context-group>
944 </trans-unit> 998 </trans-unit>
945 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c"> 999 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c">
946 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source> 1000 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source>
947 <target>Escriu directament el codi JavaScript.&lt;br /&gt;Exemple: &lt;pre&gt;console.log('la meva instància és sorprenent');&lt;/pre&gt;</target> 1001 <target>Escriu directament el codi JavaScript.&lt;br /&gt;Exemple: &lt;pre&gt;console.log('la meva instància és sorprenent');&lt;/pre&gt;</target>
948 <context-group name="null"> 1002 <context-group name="null">
949 <context context-type="linenumber">246</context> 1003 <context context-type="linenumber">270</context>
950 </context-group>
951 </trans-unit>
952 <trans-unit id="f133b08d6519081bfb8ef51cff4bf2b3af23dde6">
953 <source>
954 Write directly CSS code. Example:&lt;br /&gt;
955 &lt;pre&gt;
956 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
957 background-color: red;
958 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
959 &lt;/pre&gt;
960
961 Prepend with &lt;em&gt;#custom-css&lt;/em&gt; to override styles. Example:
962 &lt;pre&gt;
963 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
964 color: red;
965 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
966 &lt;/pre&gt;
967 </source>
968 <target>
969 Escriu directament el codi JavaScript. Exemple:&lt;br /&gt;
970 &lt;pre&gt;
971 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
972 background-color: red;
973 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
974 &lt;/pre&gt;
975
976 Prefixa amb &lt;em&gt;#custom-css&lt;/em&gt; per a substituir els estils. Exemple:
977 &lt;pre&gt;
978 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
979 color: red;
980 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
981 &lt;/pre&gt;
982 </target>
983 <context-group name="null">
984 <context context-type="linenumber">262</context>
985 </context-group> 1004 </context-group>
986 </trans-unit> 1005 </trans-unit>
987 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> 1006 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab">
988 <source>Advanced configuration</source> 1007 <source>Advanced configuration</source>
989 <target>Configuració avançada</target> 1008 <target>Configuració avançada</target>
990 <context-group name="null"> 1009 <context-group name="null">
991 <context context-type="linenumber">174</context> 1010 <context context-type="linenumber">197</context>
992 </context-group> 1011 </context-group>
993 </trans-unit> 1012 </trans-unit>
994 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> 1013 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8">
995 <source>Update configuration</source> 1014 <source>Update configuration</source>
996 <target>Actualitza la configuració</target> 1015 <target>Actualitza la configuració</target>
997 <context-group name="null"> 1016 <context-group name="null">
998 <context context-type="linenumber">289</context> 1017 <context context-type="linenumber">314</context>
999 </context-group> 1018 </context-group>
1000 </trans-unit> 1019 </trans-unit>
1001 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca"> 1020 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca">
1002 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source> 1021 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source>
1003 <target>Sembla que la configuració no és vàlida. Cerca possibles errors a les diferents pestanyes.</target> 1022 <target>Sembla que la configuració no és vàlida. Cerca possibles errors a les diferents pestanyes.</target>
1004 <context-group name="null"> 1023 <context-group name="null">
1005 <context context-type="linenumber">290</context> 1024 <context context-type="linenumber">315</context>
1006 </context-group> 1025 </context-group>
1007 </trans-unit> 1026 </trans-unit>
1008 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c"> 1027 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c">
@@ -1027,28 +1046,6 @@ Marca aquesta casella, desa la configuració i prova amb una URL de vídeo de la
1027 <context context-type="linenumber">7</context> 1046 <context context-type="linenumber">7</context>
1028 </context-group> 1047 </context-group>
1029 </trans-unit> 1048 </trans-unit>
1030 <trans-unit id="1c9406213cf05033eda4d3df678217b5eb822315">
1031 <source>
1032 Video abuses
1033 </source>
1034 <target>
1035 Abusos de vídeo
1036 </target>
1037 <context-group name="null">
1038 <context context-type="linenumber">11</context>
1039 </context-group>
1040 </trans-unit>
1041 <trans-unit id="96ccede058f0022f34230c3adc09e60076b6d037">
1042 <source>
1043 Video blacklist
1044 </source>
1045 <target>
1046 Llista negra de vídeo
1047 </target>
1048 <context-group name="null">
1049 <context context-type="linenumber">15</context>
1050 </context-group>
1051 </trans-unit>
1052 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368"> 1049 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368">
1053 <source> 1050 <source>
1054 Jobs 1051 Jobs
@@ -1057,7 +1054,7 @@ Marca aquesta casella, desa la configuració i prova amb una URL de vídeo de la
1057 Tasques 1054 Tasques
1058 </target> 1055 </target>
1059 <context-group name="null"> 1056 <context-group name="null">
1060 <context context-type="linenumber">19</context> 1057 <context context-type="linenumber">15</context>
1061 </context-group> 1058 </context-group>
1062 </trans-unit> 1059 </trans-unit>
1063 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13"> 1060 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13">
@@ -1068,7 +1065,7 @@ Marca aquesta casella, desa la configuració i prova amb una URL de vídeo de la
1068 Configuració 1065 Configuració
1069 </target> 1066 </target>
1070 <context-group name="null"> 1067 <context-group name="null">
1071 <context context-type="linenumber">23</context> 1068 <context context-type="linenumber">19</context>
1072 </context-group> 1069 </context-group>
1073 </trans-unit> 1070 </trans-unit>
1074 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396"> 1071 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396">
@@ -1138,6 +1135,27 @@ Marca aquesta casella, desa la configuració i prova amb una URL de vídeo de la
1138 <context context-type="linenumber">2</context> 1135 <context context-type="linenumber">2</context>
1139 </context-group> 1136 </context-group>
1140 </trans-unit> 1137 </trans-unit>
1138 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936">
1139 <source>Following</source>
1140 <target>Seguint</target>
1141 <context-group name="null">
1142 <context context-type="linenumber">5</context>
1143 </context-group>
1144 </trans-unit>
1145 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
1146 <source>Follow</source>
1147 <target>Segueix</target>
1148 <context-group name="null">
1149 <context context-type="linenumber">7</context>
1150 </context-group>
1151 </trans-unit>
1152 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
1153 <source>Followers</source>
1154 <target>Seguidors</target>
1155 <context-group name="null">
1156 <context context-type="linenumber">9</context>
1157 </context-group>
1158 </trans-unit>
1141 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f"> 1159 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f">
1142 <source>Jobs list</source> 1160 <source>Jobs list</source>
1143 <target>Llistat de tasques</target> 1161 <target>Llistat de tasques</target>
@@ -1184,14 +1202,7 @@ Marca aquesta casella, desa la configuració i prova amb una URL de vídeo de la
1184 <source>Role</source> 1202 <source>Role</source>
1185 <target>Rol</target> 1203 <target>Rol</target>
1186 <context-group name="null"> 1204 <context-group name="null">
1187 <context context-type="linenumber">19</context> 1205 <context context-type="linenumber">20</context>
1188 </context-group>
1189 </trans-unit>
1190 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
1191 <source>Video quota</source>
1192 <target>Quota de vídeo</target>
1193 <context-group name="null">
1194 <context context-type="linenumber">18</context>
1195 </context-group> 1206 </context-group>
1196 </trans-unit> 1207 </trans-unit>
1197 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345"> 1208 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345">
@@ -1207,6 +1218,13 @@ Marca aquesta casella, desa la configuració i prova amb una URL de vídeo de la
1207 <context context-type="linenumber">65</context> 1218 <context context-type="linenumber">65</context>
1208 </context-group> 1219 </context-group>
1209 </trans-unit> 1220 </trans-unit>
1221 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
1222 <source>Reason...</source>
1223 <target>Motiu...</target>
1224 <context-group name="null">
1225 <context context-type="linenumber">11</context>
1226 </context-group>
1227 </trans-unit>
1210 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f"> 1228 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f">
1211 <source>Users list</source> 1229 <source>Users list</source>
1212 <target>Llista d'usuaris</target> 1230 <target>Llista d'usuaris</target>
@@ -1218,91 +1236,42 @@ Marca aquesta casella, desa la configuració i prova amb una URL de vídeo de la
1218 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source> 1236 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1219 <target>Nom d'usuari <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target> 1237 <target>Nom d'usuari <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1220 <context-group name="null"> 1238 <context-group name="null">
1221 <context context-type="linenumber">16</context> 1239 <context context-type="linenumber">17</context>
1222 </context-group>
1223 </trans-unit>
1224 <trans-unit id="0c7e8870481f1287af6a142f538391d8c16c2408">
1225 <source>Video abuses list</source>
1226 <target>Llista d'abusos de vídeo</target>
1227 <context-group name="null">
1228 <context context-type="linenumber">2</context>
1229 </context-group>
1230 </trans-unit>
1231 <trans-unit id="4ba250869daa372b54d24fafc0ea934769ee4076">
1232 <source>Reason</source>
1233 <target>Motiu</target>
1234 <context-group name="null">
1235 <context context-type="linenumber">11</context>
1236 </context-group> 1240 </context-group>
1237 </trans-unit> 1241 </trans-unit>
1238 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2"> 1242 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2">
1239 <source>Reporter</source> 1243 <source>Reporter</source>
1240 <target>Reporter</target> 1244 <target>Reporter</target>
1241 <context-group name="null"> 1245 <context-group name="null">
1242 <context context-type="linenumber">12</context> 1246 <context context-type="linenumber">8</context>
1243 </context-group> 1247 </context-group>
1244 </trans-unit> 1248 </trans-unit>
1245 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4"> 1249 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4">
1246 <source>Video</source> 1250 <source>Video</source>
1247 <target>Vídeo</target> 1251 <target>Vídeo</target>
1248 <context-group name="null"> 1252 <context-group name="null">
1249 <context context-type="linenumber">9</context> 1253 <context context-type="linenumber">14</context>
1250 </context-group> 1254 </context-group>
1251 </trans-unit> 1255 </trans-unit>
1252 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7"> 1256 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7">
1253 <source>Go to the account</source> 1257 <source>Go to the account</source>
1254 <target>Anar al compte</target> 1258 <target>Anar al compte</target>
1255 <context-group name="null"> 1259 <context-group name="null">
1256 <context context-type="linenumber">22</context> 1260 <context context-type="linenumber">27</context>
1257 </context-group> 1261 </context-group>
1258 </trans-unit> 1262 </trans-unit>
1259 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5"> 1263 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5">
1260 <source>Go to the video</source> 1264 <source>Go to the video</source>
1261 <target>Anar al vídeo</target> 1265 <target>Anar al vídeo</target>
1262 <context-group name="null"> 1266 <context-group name="null">
1263 <context context-type="linenumber">28</context> 1267 <context context-type="linenumber">33</context>
1264 </context-group> 1268 </context-group>
1265 </trans-unit> 1269 </trans-unit>
1266 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1"> 1270 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1">
1267 <source>Blacklisted videos</source> 1271 <source>Blacklisted videos</source>
1268 <target>Vídeos a la llista negra</target> 1272 <target>Vídeos a la llista negra</target>
1269 <context-group name="null"> 1273 <context-group name="null">
1270 <context context-type="linenumber">2</context> 1274 <context context-type="linenumber">7</context>
1271 </context-group>
1272 </trans-unit>
1273 <trans-unit id="7c02d113e9b7884037834cddecf2a32a5538b35b">
1274 <source>Name <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1275 <target>Nom <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1276 <context-group name="null">
1277 <context context-type="linenumber">11</context>
1278 </context-group>
1279 </trans-unit>
1280 <trans-unit id="cd5ca5da9e2fa21571e9f86a24a5c3b45a3ddc51">
1281 <source>Views <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1282 <target>Visualitzacions <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1283 <context-group name="null">
1284 <context context-type="linenumber">13</context>
1285 </context-group>
1286 </trans-unit>
1287 <trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9">
1288 <source>NSFW</source>
1289 <target>NSFW</target>
1290 <context-group name="null">
1291 <context context-type="linenumber">14</context>
1292 </context-group>
1293 </trans-unit>
1294 <trans-unit id="8c87d9527af7ff2ada84c911516a9e43a352e401">
1295 <source>UUID</source>
1296 <target>UUID</target>
1297 <context-group name="null">
1298 <context context-type="linenumber">15</context>
1299 </context-group>
1300 </trans-unit>
1301 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1302 <source>Unblacklist</source>
1303 <target>Treure de llista negra</target>
1304 <context-group name="null">
1305 <context context-type="linenumber">30</context>
1306 </context-group> 1275 </context-group>
1307 </trans-unit> 1276 </trans-unit>
1308 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6"> 1277 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6">
@@ -1312,18 +1281,11 @@ Marca aquesta casella, desa la configuració i prova amb una URL de vídeo de la
1312 <context context-type="linenumber">3</context> 1281 <context context-type="linenumber">3</context>
1313 </context-group> 1282 </context-group>
1314 </trans-unit> 1283 </trans-unit>
1315 <trans-unit id="520d68b2c9f7dacaf2a5073716cad9bd328ea7e7">
1316 <source>My video channels</source>
1317 <target>Els meus canals de vídeo</target>
1318 <context-group name="null">
1319 <context context-type="linenumber">5</context>
1320 </context-group>
1321 </trans-unit>
1322 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894"> 1284 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894">
1323 <source>My videos</source> 1285 <source>My videos</source>
1324 <target>Els meus vídeos</target> 1286 <target>Els meus vídeos</target>
1325 <context-group name="null"> 1287 <context-group name="null">
1326 <context context-type="linenumber">7</context> 1288 <context context-type="linenumber">14</context>
1327 </context-group> 1289 </context-group>
1328 </trans-unit> 1290 </trans-unit>
1329 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48"> 1291 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48">
@@ -1347,6 +1309,13 @@ Marca aquesta casella, desa la configuració i prova amb una URL de vídeo de la
1347 <context context-type="linenumber">15</context> 1309 <context context-type="linenumber">15</context>
1348 </context-group> 1310 </context-group>
1349 </trans-unit> 1311 </trans-unit>
1312 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
1313 <source>Submit</source>
1314 <target>Envia</target>
1315 <context-group name="null">
1316 <context context-type="linenumber">24</context>
1317 </context-group>
1318 </trans-unit>
1350 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79"> 1319 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79">
1351 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 1320 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
1352 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visualitzacions</target> 1321 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visualitzacions</target>
@@ -1354,11 +1323,15 @@ Marca aquesta casella, desa la configuració i prova amb una URL de vídeo de la
1354 <context context-type="linenumber">19</context> 1323 <context context-type="linenumber">19</context>
1355 </context-group> 1324 </context-group>
1356 </trans-unit> 1325 </trans-unit>
1357 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7"> 1326 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
1358 <source>Delete</source> 1327 <source>
1359 <target>Esborra</target> 1328 Cancel
1329 </source>
1330 <target>
1331 Cancel·la
1332 </target>
1360 <context-group name="null"> 1333 <context-group name="null">
1361 <context context-type="linenumber">15</context> 1334 <context context-type="linenumber">30</context>
1362 </context-group> 1335 </context-group>
1363 </trans-unit> 1336 </trans-unit>
1364 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260"> 1337 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260">
@@ -1372,7 +1345,7 @@ Marca aquesta casella, desa la configuració i prova amb una URL de vídeo de la
1372 <source>Go to the channel</source> 1345 <source>Go to the channel</source>
1373 <target>Anar al canal</target> 1346 <target>Anar al canal</target>
1374 <context-group name="null"> 1347 <context-group name="null">
1375 <context context-type="linenumber">15</context> 1348 <context context-type="linenumber">8</context>
1376 </context-group> 1349 </context-group>
1377 </trans-unit> 1350 </trans-unit>
1378 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68"> 1351 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68">
@@ -1395,14 +1368,28 @@ When you will upload a video in this channel, the video support field will be au
1395 <target>Text breu per dir a la gent com poden donar suport al teu canal (plataforma de pertinença ...).S&lt;br /&gt;&lt;br /&gt; 1368 <target>Text breu per dir a la gent com poden donar suport al teu canal (plataforma de pertinença ...).S&lt;br /&gt;&lt;br /&gt;
1396Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplirà automàticament amb aquest text.</target> 1369Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplirà automàticament amb aquest text.</target>
1397 <context-group name="null"> 1370 <context-group name="null">
1398 <context context-type="linenumber">36</context> 1371 <context context-type="linenumber">52</context>
1372 </context-group>
1373 </trans-unit>
1374 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1375 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1376 <target>Creat per <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1377 <context-group name="null">
1378 <context context-type="linenumber">17</context>
1379 </context-group>
1380 </trans-unit>
1381 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1382 <source>Go the owner account page</source>
1383 <target>Aneu a la pàgina del compte del propietari</target>
1384 <context-group name="null">
1385 <context context-type="linenumber">16</context>
1399 </context-group> 1386 </context-group>
1400 </trans-unit> 1387 </trans-unit>
1401 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9"> 1388 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9">
1402 <source>Change password</source> 1389 <source>Change password</source>
1403 <target>Canvia contrasenya</target> 1390 <target>Canvia contrasenya</target>
1404 <context-group name="null"> 1391 <context-group name="null">
1405 <context context-type="linenumber">19</context> 1392 <context context-type="linenumber">22</context>
1406 </context-group> 1393 </context-group>
1407 </trans-unit> 1394 </trans-unit>
1408 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229"> 1395 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229">
@@ -1465,20 +1452,6 @@ Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplir
1465 <context context-type="linenumber">1</context> 1452 <context context-type="linenumber">1</context>
1466 </context-group> 1453 </context-group>
1467 </trans-unit> 1454 </trans-unit>
1468 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1469 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1470 <target>Creat per <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1471 <context-group name="null">
1472 <context context-type="linenumber">14</context>
1473 </context-group>
1474 </trans-unit>
1475 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1476 <source>Go the owner account page</source>
1477 <target>Aneu a la pàgina del compte del propietari</target>
1478 <context-group name="null">
1479 <context context-type="linenumber">13</context>
1480 </context-group>
1481 </trans-unit>
1482 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8"> 1455 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8">
1483 <source>Support this channel</source> 1456 <source>Support this channel</source>
1484 <target>Donar suport a aquest canal</target> 1457 <target>Donar suport a aquest canal</target>
@@ -1497,28 +1470,28 @@ Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplir
1497 <source>URL</source> 1470 <source>URL</source>
1498 <target>URL</target> 1471 <target>URL</target>
1499 <context-group name="null"> 1472 <context-group name="null">
1500 <context context-type="linenumber">12</context> 1473 <context context-type="linenumber">17</context>
1501 </context-group> 1474 </context-group>
1502 </trans-unit> 1475 </trans-unit>
1503 <trans-unit id="0cc554f4d7bb6a87515d2d95438e183b50702071"> 1476 <trans-unit id="0cc554f4d7bb6a87515d2d95438e183b50702071">
1504 <source>Channel</source> 1477 <source>Channel</source>
1505 <target>Canal</target> 1478 <target>Canal</target>
1506 <context-group name="null"> 1479 <context-group name="null">
1507 <context context-type="linenumber">35</context> 1480 <context context-type="linenumber">38</context>
1508 </context-group> 1481 </context-group>
1509 </trans-unit> 1482 </trans-unit>
1510 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427"> 1483 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427">
1511 <source>Privacy</source> 1484 <source>Privacy</source>
1512 <target>Privacitat</target> 1485 <target>Privacitat</target>
1513 <context-group name="null"> 1486 <context-group name="null">
1514 <context context-type="linenumber">143</context> 1487 <context context-type="linenumber">161</context>
1515 </context-group> 1488 </context-group>
1516 </trans-unit> 1489 </trans-unit>
1517 <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb"> 1490 <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb">
1518 <source>Update</source> 1491 <source>Update</source>
1519 <target>Actualitza</target> 1492 <target>Actualitza</target>
1520 <context-group name="null"> 1493 <context-group name="null">
1521 <context context-type="linenumber">105</context> 1494 <context context-type="linenumber">92</context>
1522 </context-group> 1495 </context-group>
1523 </trans-unit> 1496 </trans-unit>
1524 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> 1497 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9">
@@ -1546,63 +1519,56 @@ Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplir
1546 <source>Title</source> 1519 <source>Title</source>
1547 <target>Títol</target> 1520 <target>Títol</target>
1548 <context-group name="null"> 1521 <context-group name="null">
1549 <context context-type="linenumber">7</context> 1522 <context context-type="linenumber">9</context>
1550 </context-group> 1523 </context-group>
1551 </trans-unit> 1524 </trans-unit>
1552 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b"> 1525 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b">
1553 <source>Tags</source> 1526 <source>Tags</source>
1554 <target>Etiquetes</target> 1527 <target>Etiquetes</target>
1555 <context-group name="null"> 1528 <context-group name="null">
1556 <context context-type="linenumber">175</context> 1529 <context context-type="linenumber">193</context>
1557 </context-group>
1558 </trans-unit>
1559 <trans-unit id="935e7146fe6c12169abfda18536c5856935cfd82">
1560 <source>(press Enter to add)</source>
1561 <target>(prem Retorn per afegir)</target>
1562 <context-group name="null">
1563 <context context-type="linenumber">15</context>
1564 </context-group> 1530 </context-group>
1565 </trans-unit> 1531 </trans-unit>
1566 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e"> 1532 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e">
1567 <source>Video descriptions are truncated by default and require manual action to expand them.</source> 1533 <source>Video descriptions are truncated by default and require manual action to expand them.</source>
1568 <target>Les descripcions de vídeo es trunquen per defecte i es requereix accion manual per ampliar-les.</target> 1534 <target>Les descripcions de vídeo es trunquen per defecte i es requereix accion manual per ampliar-les.</target>
1569 <context-group name="null"> 1535 <context-group name="null">
1570 <context context-type="linenumber">24</context> 1536 <context context-type="linenumber">27</context>
1571 </context-group> 1537 </context-group>
1572 </trans-unit> 1538 </trans-unit>
1573 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> 1539 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5">
1574 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source> 1540 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source>
1575 <target>Programa la publicació (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target> 1541 <target>Programa la publicació (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target>
1576 <context-group name="null"> 1542 <context-group name="null">
1577 <context context-type="linenumber">101</context> 1543 <context context-type="linenumber">104</context>
1578 </context-group> 1544 </context-group>
1579 </trans-unit> 1545 </trans-unit>
1580 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee"> 1546 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee">
1581 <source>This video contains mature or explicit content</source> 1547 <source>This video contains mature or explicit content</source>
1582 <target>Aquest vídeo conté contingut madur o explícit</target> 1548 <target>Aquest vídeo conté contingut madur o explícit</target>
1583 <context-group name="null"> 1549 <context-group name="null">
1584 <context context-type="linenumber">115</context> 1550 <context context-type="linenumber">118</context>
1585 </context-group> 1551 </context-group>
1586 </trans-unit> 1552 </trans-unit>
1587 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644"> 1553 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644">
1588 <source>Some instances do not list videos containing mature or explicit content by default.</source> 1554 <source>Some instances do not list videos containing mature or explicit content by default.</source>
1589 <target>Alguns instàncies, de manera determinada, no mostren els vídeos que contenen contingut madur o explícit.</target> 1555 <target>Alguns instàncies, de manera determinada, no mostren els vídeos que contenen contingut madur o explícit.</target>
1590 <context-group name="null"> 1556 <context-group name="null">
1591 <context context-type="linenumber">116</context> 1557 <context context-type="linenumber">119</context>
1592 </context-group> 1558 </context-group>
1593 </trans-unit> 1559 </trans-unit>
1594 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a"> 1560 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a">
1595 <source>Enable video comments</source> 1561 <source>Enable video comments</source>
1596 <target>Activa els comentaris de vídeo</target> 1562 <target>Activa els comentaris de vídeo</target>
1597 <context-group name="null"> 1563 <context-group name="null">
1598 <context context-type="linenumber">121</context> 1564 <context context-type="linenumber">124</context>
1599 </context-group> 1565 </context-group>
1600 </trans-unit> 1566 </trans-unit>
1601 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0"> 1567 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0">
1602 <source>Wait transcoding before publishing the video</source> 1568 <source>Wait transcoding before publishing the video</source>
1603 <target>Espera la transcodificació abans de publicar el vídeo</target> 1569 <target>Espera la transcodificació abans de publicar el vídeo</target>
1604 <context-group name="null"> 1570 <context-group name="null">
1605 <context context-type="linenumber">126</context> 1571 <context context-type="linenumber">129</context>
1606 </context-group> 1572 </context-group>
1607 </trans-unit> 1573 </trans-unit>
1608 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7"> 1574 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7">
@@ -1616,35 +1582,35 @@ Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplir
1616 <source>Upload thumbnail</source> 1582 <source>Upload thumbnail</source>
1617 <target>Puja miniatura</target> 1583 <target>Puja miniatura</target>
1618 <context-group name="null"> 1584 <context-group name="null">
1619 <context context-type="linenumber">186</context> 1585 <context context-type="linenumber">194</context>
1620 </context-group> 1586 </context-group>
1621 </trans-unit> 1587 </trans-unit>
1622 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639"> 1588 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639">
1623 <source>Upload preview</source> 1589 <source>Upload preview</source>
1624 <target>Previsualitza la càrrega</target> 1590 <target>Previsualitza la càrrega</target>
1625 <context-group name="null"> 1591 <context-group name="null">
1626 <context context-type="linenumber">193</context> 1592 <context context-type="linenumber">201</context>
1627 </context-group> 1593 </context-group>
1628 </trans-unit> 1594 </trans-unit>
1629 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604"> 1595 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604">
1630 <source>Support</source> 1596 <source>Support</source>
1631 <target>Suporta</target> 1597 <target>Suporta</target>
1632 <context-group name="null"> 1598 <context-group name="null">
1633 <context context-type="linenumber">71</context> 1599 <context context-type="linenumber">69</context>
1634 </context-group> 1600 </context-group>
1635 </trans-unit> 1601 </trans-unit>
1636 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0"> 1602 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0">
1637 <source>Short text to tell people how they can support you (membership platform...).</source> 1603 <source>Short text to tell people how they can support you (membership platform...).</source>
1638 <target>Text breu per dir a la gent com us poden ajudar (plataforma de pertinença ...).</target> 1604 <target>Text breu per dir a la gent com us poden ajudar (plataforma de pertinença ...).</target>
1639 <context-group name="null"> 1605 <context-group name="null">
1640 <context context-type="linenumber">200</context> 1606 <context context-type="linenumber">208</context>
1641 </context-group> 1607 </context-group>
1642 </trans-unit> 1608 </trans-unit>
1643 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1"> 1609 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1">
1644 <source>Advanced settings</source> 1610 <source>Advanced settings</source>
1645 <target>Ajustos avançats</target> 1611 <target>Ajustos avançats</target>
1646 <context-group name="null"> 1612 <context-group name="null">
1647 <context context-type="linenumber">182</context> 1613 <context context-type="linenumber">189</context>
1648 </context-group> 1614 </context-group>
1649 </trans-unit> 1615 </trans-unit>
1650 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0"> 1616 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0">
@@ -1662,78 +1628,42 @@ Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplir
1662 <source>Download video</source> 1628 <source>Download video</source>
1663 <target>Descàrrega el vídeo</target> 1629 <target>Descàrrega el vídeo</target>
1664 <context-group name="null"> 1630 <context-group name="null">
1665 <context context-type="linenumber">7</context> 1631 <context context-type="linenumber">3</context>
1666 </context-group> 1632 </context-group>
1667 </trans-unit> 1633 </trans-unit>
1668 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c"> 1634 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c">
1669 <source>Direct download</source> 1635 <source>Direct download</source>
1670 <target>Descàrrega directe</target> 1636 <target>Descàrrega directe</target>
1671 <context-group name="null"> 1637 <context-group name="null">
1672 <context context-type="linenumber">20</context> 1638 <context context-type="linenumber">17</context>
1673 </context-group> 1639 </context-group>
1674 </trans-unit> 1640 </trans-unit>
1675 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> 1641 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd">
1676 <source>Download</source> 1642 <source>Download</source>
1677 <target>Descàrrega</target> 1643 <target>Descàrrega</target>
1678 <context-group name="null"> 1644 <context-group name="null">
1679 <context context-type="linenumber">87</context> 1645 <context context-type="linenumber">84</context>
1680 </context-group> 1646 </context-group>
1681 </trans-unit> 1647 </trans-unit>
1682 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b"> 1648 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b">
1683 <source>Report video</source> 1649 <source>Report video</source>
1684 <target>Denúncia el vídeo</target> 1650 <target>Denúncia el vídeo</target>
1685 <context-group name="null"> 1651 <context-group name="null">
1686 <context context-type="linenumber">7</context> 1652 <context context-type="linenumber">3</context>
1687 </context-group>
1688 </trans-unit>
1689 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
1690 <source>Reason...</source>
1691 <target>Motiu...</target>
1692 <context-group name="null">
1693 <context context-type="linenumber">14</context>
1694 </context-group>
1695 </trans-unit>
1696 <trans-unit id="0e6b8229bd65f93bc8040d0fb598967f220740c7">
1697 <source>
1698 Cancel
1699 </source>
1700 <target>
1701 Cancel·la
1702 </target>
1703 <context-group name="null">
1704 <context context-type="linenumber">22</context>
1705 </context-group>
1706 </trans-unit>
1707 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
1708 <source>Submit</source>
1709 <target>Envia</target>
1710 <context-group name="null">
1711 <context context-type="linenumber">27</context>
1712 </context-group> 1653 </context-group>
1713 </trans-unit> 1654 </trans-unit>
1714 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9"> 1655 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9">
1715 <source>Share</source> 1656 <source>Share</source>
1716 <target>Comparteix</target> 1657 <target>Comparteix</target>
1717 <context-group name="null"> 1658 <context-group name="null">
1718 <context context-type="linenumber">76</context> 1659 <context context-type="linenumber">74</context>
1719 </context-group> 1660 </context-group>
1720 </trans-unit> 1661 </trans-unit>
1721 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c"> 1662 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
1722 <source>Embed</source> 1663 <source>Embed</source>
1723 <target>Incrusta</target> 1664 <target>Incrusta</target>
1724 <context-group name="null"> 1665 <context-group name="null">
1725 <context context-type="linenumber">24</context> 1666 <context context-type="linenumber">34</context>
1726 </context-group>
1727 </trans-unit>
1728 <trans-unit id="239fe0316cfe91aa6e1e7bf1ef19e3b7772131f8">
1729 <source>
1730 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).
1731 </source>
1732 <target>
1733 La URL no és segura (no hi ha HTTPS), de manera que el vídeo incrustat no funcionarà en llocs web amb HTTPS (els navegadors web bloquegen les sol·licituds HTTP no segures en els llocs web amb HTTPS).
1734 </target>
1735 <context-group name="null">
1736 <context context-type="linenumber">35</context>
1737 </context-group> 1667 </context-group>
1738 </trans-unit> 1668 </trans-unit>
1739 <trans-unit id="9ed65ae88f6c982bc44d6fed2796e55f47dbf304"> 1669 <trans-unit id="9ed65ae88f6c982bc44d6fed2796e55f47dbf304">
@@ -1747,163 +1677,116 @@ Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplir
1747 <context context-type="linenumber">15</context> 1677 <context context-type="linenumber">15</context>
1748 </context-group> 1678 </context-group>
1749 </trans-unit> 1679 </trans-unit>
1750 <trans-unit id="fbc205ea3d06fa8f65973fa3b490ae172f71c087">
1751 <source>
1752 This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
1753 </source>
1754 <target>
1755 Aquest vídeo es publicarà en <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
1756 </target>
1757 <context-group name="null">
1758 <context context-type="linenumber">19</context>
1759 </context-group>
1760 </trans-unit>
1761 <trans-unit id="643ab402461b1169eebbe2ed790e12a9a83551aa">
1762 <source>
1763 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views
1764 </source>
1765 <target>
1766 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visualitzacions
1767 </target>
1768 <context-group name="null">
1769 <context context-type="linenumber">30</context>
1770 </context-group>
1771 </trans-unit>
1772 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
1773 <source>Go the channel page</source>
1774 <target>Anar a la pàgina del canal</target>
1775 <context-group name="null">
1776 <context context-type="linenumber">35</context>
1777 </context-group>
1778 </trans-unit>
1779 <trans-unit id="ccc07df383b7a32be3e2e105faa5488caf261c1c">
1780 <source>By <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></source>
1781 <target>Per <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></target>
1782 <context-group name="null">
1783 <context context-type="linenumber">45</context>
1784 </context-group>
1785 </trans-unit>
1786 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
1787 <source>Go to the account page</source>
1788 <target>Anar a la pàgina del compte</target>
1789 <context-group name="null">
1790 <context context-type="linenumber">44</context>
1791 </context-group>
1792 </trans-unit>
1793 <trans-unit id="57075c778cf28b81272df4eb17da944366c98e51">
1794 <source>You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; and subscribe there. Subscription as a PeerTube user is being worked on in &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</source>
1795 <target>Pots subscriu-re''t a aquest compte mitjançant qualsevol instància del fedivers que sigui compatible amb ActivityPub. Per exemple, amb Mastodon o Pleroma, pots escriure en el quadre de cerca &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; i subscriu-re''t allà. S''està treballant en la subscripció com a usuari de PeerTube a &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</target>
1796 <context-group name="null">
1797 <context context-type="linenumber">49</context>
1798 </context-group>
1799 </trans-unit>
1800 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced"> 1680 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced">
1801 <source>Like this video</source> 1681 <source>Like this video</source>
1802 <target>M'agrada aquest vídeo</target> 1682 <target>M'agrada aquest vídeo</target>
1803 <context-group name="null"> 1683 <context-group name="null">
1804 <context context-type="linenumber">59</context> 1684 <context context-type="linenumber">57</context>
1805 </context-group> 1685 </context-group>
1806 </trans-unit> 1686 </trans-unit>
1807 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509"> 1687 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509">
1808 <source>Dislike this video</source> 1688 <source>Dislike this video</source>
1809 <target>No m'agrada aquest vídeo</target> 1689 <target>No m'agrada aquest vídeo</target>
1810 <context-group name="null"> 1690 <context-group name="null">
1811 <context context-type="linenumber">66</context> 1691 <context context-type="linenumber">64</context>
1812 </context-group> 1692 </context-group>
1813 </trans-unit> 1693 </trans-unit>
1814 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2"> 1694 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2">
1815 <source>Download the video</source> 1695 <source>Download the video</source>
1816 <target>Descarrega el vídeo</target> 1696 <target>Descarrega el vídeo</target>
1817 <context-group name="null"> 1697 <context-group name="null">
1818 <context context-type="linenumber">86</context> 1698 <context context-type="linenumber">83</context>
1819 </context-group> 1699 </context-group>
1820 </trans-unit> 1700 </trans-unit>
1821 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a"> 1701 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a">
1822 <source>Report</source> 1702 <source>Report</source>
1823 <target>Reporta</target> 1703 <target>Reporta</target>
1824 <context-group name="null"> 1704 <context-group name="null">
1825 <context context-type="linenumber">93</context> 1705 <context context-type="linenumber">88</context>
1826 </context-group> 1706 </context-group>
1827 </trans-unit> 1707 </trans-unit>
1828 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf"> 1708 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf">
1829 <source>Report this video</source> 1709 <source>Report this video</source>
1830 <target>Reporta aquest vídeo</target> 1710 <target>Reporta aquest vídeo</target>
1831 <context-group name="null"> 1711 <context-group name="null">
1832 <context context-type="linenumber">92</context> 1712 <context context-type="linenumber">87</context>
1713 </context-group>
1714 </trans-unit>
1715 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1">
1716 <source>Update this video</source>
1717 <target>Actualitza aquest vídeo</target>
1718 <context-group name="null">
1719 <context context-type="linenumber">91</context>
1833 </context-group> 1720 </context-group>
1834 </trans-unit> 1721 </trans-unit>
1835 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61"> 1722 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61">
1836 <source>Blacklist</source> 1723 <source>Blacklist</source>
1837 <target>Llista negra</target> 1724 <target>Llista negra</target>
1838 <context-group name="null"> 1725 <context-group name="null">
1839 <context context-type="linenumber">99</context> 1726 <context context-type="linenumber">96</context>
1840 </context-group> 1727 </context-group>
1841 </trans-unit> 1728 </trans-unit>
1842 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037"> 1729 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037">
1843 <source>Blacklist this video</source> 1730 <source>Blacklist this video</source>
1844 <target>Llista negra d'aquest vídeo</target> 1731 <target>Llista negra d'aquest vídeo</target>
1845 <context-group name="null"> 1732 <context-group name="null">
1846 <context context-type="linenumber">98</context> 1733 <context context-type="linenumber">95</context>
1847 </context-group> 1734 </context-group>
1848 </trans-unit> 1735 </trans-unit>
1849 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1"> 1736 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1850 <source>Update this video</source> 1737 <source>Unblacklist</source>
1851 <target>Actualitza aquest vídeo</target> 1738 <target>Treure de llista negra</target>
1852 <context-group name="null"> 1739 <context-group name="null">
1853 <context context-type="linenumber">104</context> 1740 <context context-type="linenumber">100</context>
1854 </context-group> 1741 </context-group>
1855 </trans-unit> 1742 </trans-unit>
1856 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5"> 1743 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5">
1857 <source>Delete this video</source> 1744 <source>Delete this video</source>
1858 <target>Esborra aquest vídeo</target> 1745 <target>Esborra aquest vídeo</target>
1859 <context-group name="null"> 1746 <context-group name="null">
1860 <context context-type="linenumber">110</context> 1747 <context context-type="linenumber">103</context>
1861 </context-group> 1748 </context-group>
1862 </trans-unit> 1749 </trans-unit>
1863 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b"> 1750 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
1864 <source>Show more</source> 1751 <source>Go the channel page</source>
1865 <target>Veure ms</target> 1752 <target>Anar a la pgina del canal</target>
1866 <context-group name="null"> 1753 <context-group name="null">
1867 <context context-type="linenumber">130</context> 1754 <context context-type="linenumber">123</context>
1868 </context-group> 1755 </context-group>
1869 </trans-unit> 1756 </trans-unit>
1870 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903"> 1757 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
1871 <source>Show less</source> 1758 <source>Go to the account page</source>
1872 <target>Veure menys</target> 1759 <target>Anar a la pàgina del compte</target>
1873 <context-group name="null"> 1760 <context-group name="null">
1874 <context context-type="linenumber">136</context> 1761 <context context-type="linenumber">133</context>
1875 </context-group> 1762 </context-group>
1876 </trans-unit> 1763 </trans-unit>
1877 <trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1"> 1764 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b">
1878 <source> 1765 <source>Show more</source>
1879 Other videos 1766 <target>Veure més</target>
1880 </source>
1881 <target>
1882 Altres vídeos
1883 </target>
1884 <context-group name="null"> 1767 <context-group name="null">
1885 <context context-type="linenumber">187</context> 1768 <context context-type="linenumber">148</context>
1886 </context-group> 1769 </context-group>
1887 </trans-unit> 1770 </trans-unit>
1888 <trans-unit id="fb779d2b25c4d0ffa7d52c823a240717e8c1fe6c"> 1771 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903">
1889 <source>Friendly Reminder:</source> 1772 <source>Show less</source>
1890 <target>Recordatori amistós:</target> 1773 <target>Veure menys</target>
1891 <context-group name="null"> 1774 <context-group name="null">
1892 <context context-type="linenumber">199</context> 1775 <context context-type="linenumber">154</context>
1893 </context-group> 1776 </context-group>
1894 </trans-unit> 1777 </trans-unit>
1895 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e"> 1778 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e">
1896 <source>More information</source> 1779 <source>More information</source>
1897 <target>Més informació</target> 1780 <target>Més informació</target>
1898 <context-group name="null"> 1781 <context-group name="null">
1899 <context context-type="linenumber">204</context> 1782 <context context-type="linenumber">214</context>
1900 </context-group> 1783 </context-group>
1901 </trans-unit> 1784 </trans-unit>
1902 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318"> 1785 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318">
1903 <source>Get more information</source> 1786 <source>Get more information</source>
1904 <target>Obtenir més informació</target> 1787 <target>Obtenir més informació</target>
1905 <context-group name="null"> 1788 <context-group name="null">
1906 <context context-type="linenumber">204</context> 1789 <context context-type="linenumber">214</context>
1907 </context-group> 1790 </context-group>
1908 </trans-unit> 1791 </trans-unit>
1909 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f"> 1792 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f">
@@ -1914,7 +1797,7 @@ Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplir
1914 D'acord 1797 D'acord
1915 </target> 1798 </target>
1916 <context-group name="null"> 1799 <context-group name="null">
1917 <context context-type="linenumber">207</context> 1800 <context context-type="linenumber">217</context>
1918 </context-group> 1801 </context-group>
1919 </trans-unit> 1802 </trans-unit>
1920 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7"> 1803 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7">
@@ -1975,7 +1858,7 @@ Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplir
1975 Publicar comentari 1858 Publicar comentari
1976 </target> 1859 </target>
1977 <context-group name="null"> 1860 <context-group name="null">
1978 <context context-type="linenumber">17</context> 1861 <context context-type="linenumber">18</context>
1979 </context-group> 1862 </context-group>
1980 </trans-unit> 1863 </trans-unit>
1981 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> 1864 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285">
@@ -2139,23 +2022,9 @@ Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplir
2139 <context context-type="linenumber">1</context> 2022 <context context-type="linenumber">1</context>
2140 </context-group> 2023 </context-group>
2141 </trans-unit> 2024 </trans-unit>
2142 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936"> 2025 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2143 <source>Following</source> 2026 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2144 <target>Seguint</target> 2027 <target>Vídeo <x id="INTERPOLATION" equiv-text="{{name}}"/> tret de la llista negra.</target>
2145 <context-group name="null">
2146 <context context-type="linenumber">1</context>
2147 </context-group>
2148 </trans-unit>
2149 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
2150 <source>Follow</source>
2151 <target>Segueix</target>
2152 <context-group name="null">
2153 <context context-type="linenumber">1</context>
2154 </context-group>
2155 </trans-unit>
2156 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
2157 <source>Followers</source>
2158 <target>Seguidors</target>
2159 <context-group name="null"> 2028 <context-group name="null">
2160 <context context-type="linenumber">1</context> 2029 <context context-type="linenumber">1</context>
2161 </context-group> 2030 </context-group>
@@ -2209,27 +2078,6 @@ Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplir
2209 <context context-type="linenumber">1</context> 2078 <context context-type="linenumber">1</context>
2210 </context-group> 2079 </context-group>
2211 </trans-unit> 2080 </trans-unit>
2212 <trans-unit id="4733ad1d7e63960438c0203b9a64f165b5fc84f2">
2213 <source>Do you really want to remove this video from the blacklist ? It will be available again in the videos list.</source>
2214 <target>Segur que vols eliminar aquest vídeo de la llista negra? Estarà de nou disponible a la llista de vídeos.</target>
2215 <context-group name="null">
2216 <context context-type="linenumber">1</context>
2217 </context-group>
2218 </trans-unit>
2219 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2220 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2221 <target>Vídeo <x id="INTERPOLATION" equiv-text="{{name}}"/> tret de la llista negra.</target>
2222 <context-group name="null">
2223 <context context-type="linenumber">1</context>
2224 </context-group>
2225 </trans-unit>
2226 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2227 <source>The new password and the confirmed password do not correspond.</source>
2228 <target>La nova contrasenya i la contrasenya confirmada no es corresponen.</target>
2229 <context-group name="null">
2230 <context context-type="linenumber">1</context>
2231 </context-group>
2232 </trans-unit>
2233 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc"> 2081 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc">
2234 <source>Password updated.</source> 2082 <source>Password updated.</source>
2235 <target>Contrasenya actualitzada.</target> 2083 <target>Contrasenya actualitzada.</target>
@@ -2356,6 +2204,13 @@ Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplir
2356 <context context-type="linenumber">1</context> 2204 <context context-type="linenumber">1</context>
2357 </context-group> 2205 </context-group>
2358 </trans-unit> 2206 </trans-unit>
2207 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2208 <source>Unable to find user id or verification string.</source>
2209 <target>No es pot trobar l'identificador d'usuari ni la cadena de verificació.</target>
2210 <context-group name="null">
2211 <context context-type="linenumber">1</context>
2212 </context-group>
2213 </trans-unit>
2359 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7"> 2214 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7">
2360 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>. 2215 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>.
2361</source> 2216</source>
@@ -2386,13 +2241,6 @@ Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplir
2386 <context context-type="linenumber">1</context> 2241 <context context-type="linenumber">1</context>
2387 </context-group> 2242 </context-group>
2388 </trans-unit> 2243 </trans-unit>
2389 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2390 <source>Unable to find user id or verification string.</source>
2391 <target>No es pot trobar l'identificador d'usuari ni la cadena de verificació.</target>
2392 <context-group name="null">
2393 <context context-type="linenumber">1</context>
2394 </context-group>
2395 </trans-unit>
2396 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26"> 2244 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26">
2397 <source>Your password has been successfully reset!</source> 2245 <source>Your password has been successfully reset!</source>
2398 <target>La contrasenya s'ha restablit correctament.</target> 2246 <target>La contrasenya s'ha restablit correctament.</target>
@@ -2498,13 +2346,6 @@ Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplir
2498 <context context-type="linenumber">1</context> 2346 <context context-type="linenumber">1</context>
2499 </context-group> 2347 </context-group>
2500 </trans-unit> 2348 </trans-unit>
2501 <trans-unit id="ba88636d27c1a6a7e1f75ff57ec182b30b851c2e">
2502 <source>Transcoding threads must be greater than 1.</source>
2503 <target>Els subprocessos de transcodificació han de ser superiors a 1.</target>
2504 <context-group name="null">
2505 <context context-type="linenumber">1</context>
2506 </context-group>
2507 </trans-unit>
2508 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149"> 2349 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149">
2509 <source>Username is required.</source> 2350 <source>Username is required.</source>
2510 <target>Es requereix nom d'usuari.</target> 2351 <target>Es requereix nom d'usuari.</target>
@@ -2575,6 +2416,13 @@ Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplir
2575 <context context-type="linenumber">1</context> 2416 <context context-type="linenumber">1</context>
2576 </context-group> 2417 </context-group>
2577 </trans-unit> 2418 </trans-unit>
2419 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2420 <source>The new password and the confirmed password do not correspond.</source>
2421 <target>La nova contrasenya i la contrasenya confirmada no es corresponen.</target>
2422 <context-group name="null">
2423 <context context-type="linenumber">1</context>
2424 </context-group>
2425 </trans-unit>
2578 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf"> 2426 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf">
2579 <source>Video quota is required.</source> 2427 <source>Video quota is required.</source>
2580 <target>Es requereix una quota de vídeo.</target> 2428 <target>Es requereix una quota de vídeo.</target>
@@ -3114,6 +2962,41 @@ Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplir
3114 <context context-type="linenumber">1</context> 2962 <context context-type="linenumber">1</context>
3115 </context-group> 2963 </context-group>
3116 </trans-unit> 2964 </trans-unit>
2965 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
2966 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
2967 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
2968 <context-group name="null">
2969 <context context-type="linenumber">1</context>
2970 </context-group>
2971 </trans-unit>
2972 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
2973 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
2974 <target>{VAR_PLURAL, plural, =1 {minute} altre {minutes} }</target>
2975 <context-group name="null">
2976 <context context-type="linenumber">1</context>
2977 </context-group>
2978 </trans-unit>
2979 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
2980 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
2981 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vídeos HD</target>
2982 <context-group name="null">
2983 <context context-type="linenumber">1</context>
2984 </context-group>
2985 </trans-unit>
2986 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
2987 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
2988 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vídeos HD</target>
2989 <context-group name="null">
2990 <context context-type="linenumber">1</context>
2991 </context-group>
2992 </trans-unit>
2993 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
2994 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
2995 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vídeos de qualitat mitjana</target>
2996 <context-group name="null">
2997 <context context-type="linenumber">1</context>
2998 </context-group>
2999 </trans-unit>
3117 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d"> 3000 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d">
3118 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source> 3001 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source>
3119 <target>Fa <x id="INTERPOLATION" equiv-text="{{interval}}"/> anys</target> 3002 <target>Fa <x id="INTERPOLATION" equiv-text="{{interval}}"/> anys</target>
@@ -3268,41 +3151,6 @@ Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplir
3268 <context context-type="linenumber">1</context> 3151 <context context-type="linenumber">1</context>
3269 </context-group> 3152 </context-group>
3270 </trans-unit> 3153 </trans-unit>
3271 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3272 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3273 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3274 <context-group name="null">
3275 <context context-type="linenumber">1</context>
3276 </context-group>
3277 </trans-unit>
3278 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3279 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3280 <target>{VAR_PLURAL, plural, =1 {minute} altre {minutes} }</target>
3281 <context-group name="null">
3282 <context context-type="linenumber">1</context>
3283 </context-group>
3284 </trans-unit>
3285 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3286 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3287 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vídeos HD</target>
3288 <context-group name="null">
3289 <context context-type="linenumber">1</context>
3290 </context-group>
3291 </trans-unit>
3292 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3293 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3294 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vídeos HD</target>
3295 <context-group name="null">
3296 <context context-type="linenumber">1</context>
3297 </context-group>
3298 </trans-unit>
3299 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3300 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3301 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vídeos de qualitat mitjana</target>
3302 <context-group name="null">
3303 <context context-type="linenumber">1</context>
3304 </context-group>
3305 </trans-unit>
3306 <trans-unit id="24840228f2826b66252cfcaab9820b1c7e0da264"> 3154 <trans-unit id="24840228f2826b66252cfcaab9820b1c7e0da264">
3307 <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> 3155 <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source>
3308 <target>Però es perdran les dades associades (etiquetes, descripció ...), estàs segur que vols deixar aquesta pàgina?</target> 3156 <target>Però es perdran les dades associades (etiquetes, descripció ...), estàs segur que vols deixar aquesta pàgina?</target>
@@ -3331,13 +3179,6 @@ Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplir
3331 <context context-type="linenumber">1</context> 3179 <context context-type="linenumber">1</context>
3332 </context-group> 3180 </context-group>
3333 </trans-unit> 3181 </trans-unit>
3334 <trans-unit id="d31d39e8ee9b2f20bffb3468ee062eaa5409c59f">
3335 <source>Your video quota is exceeded with this video (video size: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, used: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, quota: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</source>
3336 <target>La teva quota de vídeo s''ha superat amb aquest vídeo (video size: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, used: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, quota: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</target>
3337 <context-group name="null">
3338 <context context-type="linenumber">1</context>
3339 </context-group>
3340 </trans-unit>
3341 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce"> 3182 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce">
3342 <source>Video published.</source> 3183 <source>Video published.</source>
3343 <target>Vídeo publicat.</target> 3184 <target>Vídeo publicat.</target>
@@ -3373,20 +3214,6 @@ Quan pugis un vídeo en aquest canal, el camp d'assistència de vídeo s'omplir
3373 <context context-type="linenumber">1</context> 3214 <context context-type="linenumber">1</context>
3374 </context-group> 3215 </context-group>
3375 </trans-unit> 3216 </trans-unit>
3376 <trans-unit id="23b2c2f4dd69e29c3bff00469e259dcb01de5633">
3377 <source>Do you really want to blacklist this video?</source>
3378 <target>Segur que vols incloure aquest vídeo a la llista negra?</target>
3379 <context-group name="null">
3380 <context context-type="linenumber">1</context>
3381 </context-group>
3382 </trans-unit>
3383 <trans-unit id="cafd8ec6020e69f241a107b1cb7081bd9e773d4e">
3384 <source>Video <x id="INTERPOLATION" equiv-text="{{videoName}}"/> had been blacklisted.</source>
3385 <target>El vídeo <x id="INTERPOLATION" equiv-text="{{videoName}}"/> s''ha inclòs en la llista negra.</target>
3386 <context-group name="null">
3387 <context context-type="linenumber">1</context>
3388 </context-group>
3389 </trans-unit>
3390 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95"> 3217 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95">
3391 <source>Do you really want to delete this video?</source> 3218 <source>Do you really want to delete this video?</source>
3392 <target>Segur que vols suprimir aquest vídeo?</target> 3219 <target>Segur que vols suprimir aquest vídeo?</target>
diff --git a/client/src/locale/target/angular_cs_CZ.xml b/client/src/locale/target/angular_cs_CZ.xml
index 12a9744fe..b0378b355 100644
--- a/client/src/locale/target/angular_cs_CZ.xml
+++ b/client/src/locale/target/angular_cs_CZ.xml
@@ -3,29 +3,25 @@
3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1"> 3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1">
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 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
7 <source>
8 Cancel
9 </source>
10 <target>
11 Zrušit
12 </target>
13 <context-group name="null">
14 <context context-type="linenumber">45</context>
15 </context-group>
16 </trans-unit>
17 <trans-unit id="9d5f16f0233b39fa2cd843321407a7358c323ad8"> 6 <trans-unit id="9d5f16f0233b39fa2cd843321407a7358c323ad8">
18 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 7 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
19 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> zhlédnutí</target> 8 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> zhlédnutí</target>
20 <context-group name="null"> 9 <context-group name="null">
21 <context context-type="linenumber">34</context> 10 <context context-type="linenumber">12</context>
11 </context-group>
12 </trans-unit>
13 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7">
14 <source>Delete</source>
15 <target>Odstranit</target>
16 <context-group name="null">
17 <context context-type="linenumber">15</context>
22 </context-group> 18 </context-group>
23 </trans-unit> 19 </trans-unit>
24 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> 20 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c">
25 <source>Edit</source> 21 <source>Edit</source>
26 <target>Upravit</target> 22 <target>Upravit</target>
27 <context-group name="null"> 23 <context-group name="null">
28 <context context-type="linenumber">3</context> 24 <context context-type="linenumber">5</context>
29 </context-group> 25 </context-group>
30 </trans-unit> 26 </trans-unit>
31 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> 27 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d">
@@ -39,7 +35,7 @@
39 <source>Complete preview</source> 35 <source>Complete preview</source>
40 <target>Náhled</target> 36 <target>Náhled</target>
41 <context-group name="null"> 37 <context-group name="null">
42 <context context-type="linenumber">10</context> 38 <context context-type="linenumber">13</context>
43 </context-group> 39 </context-group>
44 </trans-unit> 40 </trans-unit>
45 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> 41 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f">
@@ -49,6 +45,13 @@
49 <context context-type="linenumber">18</context> 45 <context context-type="linenumber">18</context>
50 </context-group> 46 </context-group>
51 </trans-unit> 47 </trans-unit>
48 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
49 <source>Video quota</source>
50 <target>Limit na videa</target>
51 <context-group name="null">
52 <context context-type="linenumber">19</context>
53 </context-group>
54 </trans-unit>
52 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea"> 55 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea">
53 <source> 56 <source>
54 Login 57 Login
@@ -64,14 +67,14 @@
64 <source>User</source> 67 <source>User</source>
65 <target>Uživatel</target> 68 <target>Uživatel</target>
66 <context-group name="null"> 69 <context-group name="null">
67 <context context-type="linenumber">11</context> 70 <context context-type="linenumber">13</context>
68 </context-group> 71 </context-group>
69 </trans-unit> 72 </trans-unit>
70 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> 73 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478">
71 <source>Username or email address</source> 74 <source>Username or email address</source>
72 <target>Uživatelské jméno nebo email</target> 75 <target>Uživatelské jméno nebo email</target>
73 <context-group name="null"> 76 <context-group name="null">
74 <context context-type="linenumber">13</context> 77 <context context-type="linenumber">15</context>
75 </context-group> 78 </context-group>
76 </trans-unit> 79 </trans-unit>
77 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87"> 80 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87">
@@ -82,7 +85,7 @@
82 nebo si vytvořte účet 85 nebo si vytvořte účet
83 </target> 86 </target>
84 <context-group name="null"> 87 <context-group name="null">
85 <context context-type="linenumber">16</context> 88 <context context-type="linenumber">18</context>
86 </context-group> 89 </context-group>
87 </trans-unit> 90 </trans-unit>
88 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b"> 91 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b">
@@ -93,14 +96,14 @@
93 nebo si vytvořte účet na jiné instanci 96 nebo si vytvořte účet na jiné instanci
94 </target> 97 </target>
95 <context-group name="null"> 98 <context-group name="null">
96 <context context-type="linenumber">20</context> 99 <context context-type="linenumber">22</context>
97 </context-group> 100 </context-group>
98 </trans-unit> 101 </trans-unit>
99 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3"> 102 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3">
100 <source>User registration is not allowed on this instance, but you can register on many others!</source> 103 <source>User registration is not allowed on this instance, but you can register on many others!</source>
101 <target>Registrace uživatelů není na této instanci povolena, ale můžete se registrovat na spoustě jiných!</target> 104 <target>Registrace uživatelů není na této instanci povolena, ale můžete se registrovat na spoustě jiných!</target>
102 <context-group name="null"> 105 <context-group name="null">
103 <context context-type="linenumber">26</context> 106 <context context-type="linenumber">28</context>
104 </context-group> 107 </context-group>
105 </trans-unit> 108 </trans-unit>
106 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> 109 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407">
@@ -114,35 +117,35 @@
114 <source>I forgot my password</source> 117 <source>I forgot my password</source>
115 <target>Zapomněl jsem heslo</target> 118 <target>Zapomněl jsem heslo</target>
116 <context-group name="null"> 119 <context-group name="null">
117 <context context-type="linenumber">42</context> 120 <context context-type="linenumber">44</context>
118 </context-group> 121 </context-group>
119 </trans-unit> 122 </trans-unit>
120 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681"> 123 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681">
121 <source>Forgot your password</source> 124 <source>Forgot your password</source>
122 <target>Zapomenuté heslo</target> 125 <target>Zapomenuté heslo</target>
123 <context-group name="null"> 126 <context-group name="null">
124 <context context-type="linenumber">59</context> 127 <context context-type="linenumber">57</context>
125 </context-group> 128 </context-group>
126 </trans-unit> 129 </trans-unit>
127 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc"> 130 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc">
128 <source>Email</source> 131 <source>Email</source>
129 <target>Email</target> 132 <target>Email</target>
130 <context-group name="null"> 133 <context-group name="null">
131 <context context-type="linenumber">17</context> 134 <context context-type="linenumber">8</context>
132 </context-group> 135 </context-group>
133 </trans-unit> 136 </trans-unit>
134 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529"> 137 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529">
135 <source>Email address</source> 138 <source>Email address</source>
136 <target>Emailová adresa</target> 139 <target>Emailová adresa</target>
137 <context-group name="null"> 140 <context-group name="null">
138 <context context-type="linenumber">66</context> 141 <context context-type="linenumber">10</context>
139 </context-group> 142 </context-group>
140 </trans-unit> 143 </trans-unit>
141 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55"> 144 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55">
142 <source>Send me an email to reset my password</source> 145 <source>Send me an email to reset my password</source>
143 <target>Poslat email pro resetování hesla</target> 146 <target>Poslat email pro resetování hesla</target>
144 <context-group name="null"> 147 <context-group name="null">
145 <context context-type="linenumber">77</context> 148 <context context-type="linenumber">75</context>
146 </context-group> 149 </context-group>
147 </trans-unit> 150 </trans-unit>
148 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa"> 151 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa">
@@ -188,24 +191,6 @@
188 <context context-type="linenumber">3</context> 191 <context context-type="linenumber">3</context>
189 </context-group> 192 </context-group>
190 </trans-unit> 193 </trans-unit>
191 <trans-unit id="a6807b834e01ce165aa61fad157b0ff4288b6bf1">
192 <source>Initial video quota:</source>
193 <target>Výchozí limit na video:</target>
194 <context-group name="null">
195 <context context-type="linenumber">8</context>
196 </context-group>
197 </trans-unit>
198 <trans-unit id="87b6b2c26215c5e712d3bfe4cc86ba53bc23451c">
199 <source>
200 Unlimited
201 </source>
202 <target>
203 Neomezený
204 </target>
205 <context-group name="null">
206 <context context-type="linenumber">16</context>
207 </context-group>
208 </trans-unit>
209 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> 194 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48">
210 <source>Username</source> 195 <source>Username</source>
211 <target>Uživatelské jméno</target> 196 <target>Uživatelské jméno</target>
@@ -217,103 +202,70 @@
217 <source>Signup</source> 202 <source>Signup</source>
218 <target>Registrovat</target> 203 <target>Registrovat</target>
219 <context-group name="null"> 204 <context-group name="null">
220 <context context-type="linenumber">86</context> 205 <context context-type="linenumber">88</context>
221 </context-group> 206 </context-group>
222 </trans-unit> 207 </trans-unit>
223 <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96"> 208 <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96">
224 <source>Change the language</source> 209 <source>Change the language</source>
225 <target>Změnit jazyk</target> 210 <target>Změnit jazyk</target>
226 <context-group name="null"> 211 <context-group name="null">
227 <context context-type="linenumber">76</context> 212 <context context-type="linenumber">88</context>
228 </context-group>
229 </trans-unit>
230 <trans-unit id="b8ccc4f1b3f839fca9bd59e072f715fd487d540f">
231 <source>
232 My public profile
233 </source>
234 <target>
235 Zobrazovaný profil
236 </target>
237 <context-group name="null">
238 <context context-type="linenumber">19</context>
239 </context-group>
240 </trans-unit>
241 <trans-unit id="c84b721e9325c9cce20d92f4dbd66898ab5ec947">
242 <source>
243 My account
244 </source>
245 <target>
246 Správa mého profilu
247 </target>
248 <context-group name="null">
249 <context context-type="linenumber">23</context>
250 </context-group>
251 </trans-unit>
252 <trans-unit id="ba7378cdaaa60b4fee17a551b232ad3512dac17d">
253 <source>
254 Log out
255 </source>
256 <target>
257 Odhlásit
258 </target>
259 <context-group name="null">
260 <context context-type="linenumber">27</context>
261 </context-group> 213 </context-group>
262 </trans-unit> 214 </trans-unit>
263 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> 215 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9">
264 <source>Login</source> 216 <source>Login</source>
265 <target>Přihlásit</target> 217 <target>Přihlásit</target>
266 <context-group name="null"> 218 <context-group name="null">
267 <context context-type="linenumber">36</context> 219 <context context-type="linenumber">38</context>
268 </context-group> 220 </context-group>
269 </trans-unit> 221 </trans-unit>
270 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> 222 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87">
271 <source>Create an account</source> 223 <source>Create an account</source>
272 <target>Vytvořit účet</target> 224 <target>Vytvořit účet</target>
273 <context-group name="null"> 225 <context-group name="null">
274 <context context-type="linenumber">37</context> 226 <context context-type="linenumber">39</context>
275 </context-group> 227 </context-group>
276 </trans-unit> 228 </trans-unit>
277 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238"> 229 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238">
278 <source>Videos</source> 230 <source>Videos</source>
279 <target>Videa</target> 231 <target>Videa</target>
280 <context-group name="null"> 232 <context-group name="null">
281 <context context-type="linenumber">21</context> 233 <context context-type="linenumber">24</context>
282 </context-group> 234 </context-group>
283 </trans-unit> 235 </trans-unit>
284 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> 236 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807">
285 <source>Trending</source> 237 <source>Trending</source>
286 <target>Trendy</target> 238 <target>Trendy</target>
287 <context-group name="null"> 239 <context-group name="null">
288 <context context-type="linenumber">45</context> 240 <context context-type="linenumber">57</context>
289 </context-group> 241 </context-group>
290 </trans-unit> 242 </trans-unit>
291 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> 243 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1">
292 <source>Recently added</source> 244 <source>Recently added</source>
293 <target>Nedávno přidané</target> 245 <target>Nedávno přidané</target>
294 <context-group name="null"> 246 <context-group name="null">
295 <context context-type="linenumber">50</context> 247 <context context-type="linenumber">62</context>
296 </context-group> 248 </context-group>
297 </trans-unit> 249 </trans-unit>
298 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d"> 250 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d">
299 <source>Local</source> 251 <source>Local</source>
300 <target>Místní</target> 252 <target>Místní</target>
301 <context-group name="null"> 253 <context-group name="null">
302 <context context-type="linenumber">55</context> 254 <context context-type="linenumber">67</context>
303 </context-group> 255 </context-group>
304 </trans-unit> 256 </trans-unit>
305 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> 257 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919">
306 <source>Administration</source> 258 <source>Administration</source>
307 <target>Administrace</target> 259 <target>Administrace</target>
308 <context-group name="null"> 260 <context-group name="null">
309 <context context-type="linenumber">64</context> 261 <context context-type="linenumber">76</context>
310 </context-group> 262 </context-group>
311 </trans-unit> 263 </trans-unit>
312 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> 264 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a">
313 <source>About</source> 265 <source>About</source>
314 <target>O službě</target> 266 <target>O službě</target>
315 <context-group name="null"> 267 <context-group name="null">
316 <context context-type="linenumber">23</context> 268 <context context-type="linenumber">25</context>
317 </context-group> 269 </context-group>
318 </trans-unit> 270 </trans-unit>
319 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> 271 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599">
@@ -334,21 +286,21 @@
334 <source>Category</source> 286 <source>Category</source>
335 <target>Kategorie</target> 287 <target>Kategorie</target>
336 <context-group name="null"> 288 <context-group name="null">
337 <context context-type="linenumber">148</context> 289 <context context-type="linenumber">166</context>
338 </context-group> 290 </context-group>
339 </trans-unit> 291 </trans-unit>
340 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c"> 292 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c">
341 <source>Licence</source> 293 <source>Licence</source>
342 <target>Licence</target> 294 <target>Licence</target>
343 <context-group name="null"> 295 <context-group name="null">
344 <context context-type="linenumber">157</context> 296 <context context-type="linenumber">175</context>
345 </context-group> 297 </context-group>
346 </trans-unit> 298 </trans-unit>
347 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619"> 299 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619">
348 <source>Language</source> 300 <source>Language</source>
349 <target>Jazyk</target> 301 <target>Jazyk</target>
350 <context-group name="null"> 302 <context-group name="null">
351 <context context-type="linenumber">166</context> 303 <context context-type="linenumber">184</context>
352 </context-group> 304 </context-group>
353 </trans-unit> 305 </trans-unit>
354 <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e"> 306 <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e">
@@ -362,7 +314,7 @@
362 <source>Instance</source> 314 <source>Instance</source>
363 <target>Instance</target> 315 <target>Instance</target>
364 <context-group name="null"> 316 <context-group name="null">
365 <context context-type="linenumber">7</context> 317 <context context-type="linenumber">8</context>
366 </context-group> 318 </context-group>
367 </trans-unit> 319 </trans-unit>
368 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390"> 320 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390">
@@ -387,14 +339,14 @@
387 <source>Description</source> 339 <source>Description</source>
388 <target>Popis</target> 340 <target>Popis</target>
389 <context-group name="null"> 341 <context-group name="null">
390 <context context-type="linenumber">23</context> 342 <context context-type="linenumber">26</context>
391 </context-group> 343 </context-group>
392 </trans-unit> 344 </trans-unit>
393 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774"> 345 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774">
394 <source>Terms</source> 346 <source>Terms</source>
395 <target>Podmínky</target> 347 <target>Podmínky</target>
396 <context-group name="null"> 348 <context-group name="null">
397 <context context-type="linenumber">43</context> 349 <context context-type="linenumber">44</context>
398 </context-group> 350 </context-group>
399 </trans-unit> 351 </trans-unit>
400 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27"> 352 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27">
@@ -706,7 +658,7 @@
706 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source> 658 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source>
707 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> odběratelů</target> 659 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> odběratelů</target>
708 <context-group name="null"> 660 <context-group name="null">
709 <context context-type="linenumber">11</context> 661 <context context-type="linenumber">14</context>
710 </context-group> 662 </context-group>
711 </trans-unit> 663 </trans-unit>
712 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f"> 664 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f">
@@ -720,49 +672,49 @@
720 <source>Name</source> 672 <source>Name</source>
721 <target>Jméno</target> 673 <target>Jméno</target>
722 <context-group name="null"> 674 <context-group name="null">
723 <context context-type="linenumber">9</context> 675 <context context-type="linenumber">12</context>
724 </context-group> 676 </context-group>
725 </trans-unit> 677 </trans-unit>
726 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b"> 678 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b">
727 <source>Short description</source> 679 <source>Short description</source>
728 <target>Krátký popis</target> 680 <target>Krátký popis</target>
729 <context-group name="null"> 681 <context-group name="null">
730 <context context-type="linenumber">21</context> 682 <context context-type="linenumber">22</context>
731 </context-group> 683 </context-group>
732 </trans-unit> 684 </trans-unit>
733 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003"> 685 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003">
734 <source>Default client route</source> 686 <source>Default client route</source>
735 <target>Výchozí hlavní stránka</target> 687 <target>Výchozí hlavní stránka</target>
736 <context-group name="null"> 688 <context-group name="null">
737 <context context-type="linenumber">54</context> 689 <context context-type="linenumber">55</context>
738 </context-group> 690 </context-group>
739 </trans-unit> 691 </trans-unit>
740 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948"> 692 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948">
741 <source>Videos Trending</source> 693 <source>Videos Trending</source>
742 <target>Trendy</target> 694 <target>Trendy</target>
743 <context-group name="null"> 695 <context-group name="null">
744 <context context-type="linenumber">57</context> 696 <context context-type="linenumber">59</context>
745 </context-group> 697 </context-group>
746 </trans-unit> 698 </trans-unit>
747 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883"> 699 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883">
748 <source>Videos Recently Added</source> 700 <source>Videos Recently Added</source>
749 <target>Naposledy přidaná videa</target> 701 <target>Naposledy přidaná videa</target>
750 <context-group name="null"> 702 <context-group name="null">
751 <context context-type="linenumber">58</context> 703 <context context-type="linenumber">60</context>
752 </context-group> 704 </context-group>
753 </trans-unit> 705 </trans-unit>
754 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f"> 706 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f">
755 <source>Local videos</source> 707 <source>Local videos</source>
756 <target>Místní videa</target> 708 <target>Místní videa</target>
757 <context-group name="null"> 709 <context-group name="null">
758 <context context-type="linenumber">59</context> 710 <context context-type="linenumber">61</context>
759 </context-group> 711 </context-group>
760 </trans-unit> 712 </trans-unit>
761 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9"> 713 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9">
762 <source>Policy on videos containing sensitive content</source> 714 <source>Policy on videos containing sensitive content</source>
763 <target>Pravidla pro videa obsahující citlivý obsah</target> 715 <target>Pravidla pro videa obsahující citlivý obsah</target>
764 <context-group name="null"> 716 <context-group name="null">
765 <context context-type="linenumber">68</context> 717 <context context-type="linenumber">70</context>
766 </context-group> 718 </context-group>
767 </trans-unit> 719 </trans-unit>
768 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df"> 720 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df">
@@ -797,42 +749,42 @@
797 <source>Signup enabled</source> 749 <source>Signup enabled</source>
798 <target>Povolit registrace</target> 750 <target>Povolit registrace</target>
799 <context-group name="null"> 751 <context-group name="null">
800 <context context-type="linenumber">90</context> 752 <context context-type="linenumber">92</context>
801 </context-group> 753 </context-group>
802 </trans-unit> 754 </trans-unit>
803 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402"> 755 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402">
804 <source>Signup limit</source> 756 <source>Signup limit</source>
805 <target>Limit registrací</target> 757 <target>Limit registrací</target>
806 <context-group name="null"> 758 <context-group name="null">
807 <context context-type="linenumber">94</context> 759 <context context-type="linenumber">101</context>
808 </context-group> 760 </context-group>
809 </trans-unit> 761 </trans-unit>
810 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011"> 762 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011">
811 <source>Administrator</source> 763 <source>Administrator</source>
812 <target>Administrátor</target> 764 <target>Administrátor</target>
813 <context-group name="null"> 765 <context-group name="null">
814 <context context-type="linenumber">116</context> 766 <context context-type="linenumber">123</context>
815 </context-group> 767 </context-group>
816 </trans-unit> 768 </trans-unit>
817 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> 769 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587">
818 <source>Admin email</source> 770 <source>Admin email</source>
819 <target>Email administrátora</target> 771 <target>Email administrátora</target>
820 <context-group name="null"> 772 <context-group name="null">
821 <context context-type="linenumber">119</context> 773 <context context-type="linenumber">126</context>
822 </context-group> 774 </context-group>
823 </trans-unit> 775 </trans-unit>
824 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be"> 776 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be">
825 <source>Users</source> 777 <source>Users</source>
826 <target>Uživatelé</target> 778 <target>Uživatelé</target>
827 <context-group name="null"> 779 <context-group name="null">
828 <context context-type="linenumber">129</context> 780 <context context-type="linenumber">136</context>
829 </context-group> 781 </context-group>
830 </trans-unit> 782 </trans-unit>
831 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09"> 783 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09">
832 <source>User default video quota</source> 784 <source>User default video quota</source>
833 <target>Výchozí limit na uživatele</target> 785 <target>Výchozí limit na uživatele</target>
834 <context-group name="null"> 786 <context-group name="null">
835 <context context-type="linenumber">132</context> 787 <context context-type="linenumber">139</context>
836 </context-group> 788 </context-group>
837 </trans-unit> 789 </trans-unit>
838 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5"> 790 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5">
@@ -846,158 +798,112 @@
846 <source>Twitter</source> 798 <source>Twitter</source>
847 <target>Twitter</target> 799 <target>Twitter</target>
848 <context-group name="null"> 800 <context-group name="null">
849 <context context-type="linenumber">148</context> 801 <context context-type="linenumber">170</context>
850 </context-group> 802 </context-group>
851 </trans-unit> 803 </trans-unit>
852 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> 804 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524">
853 <source>Your Twitter username</source> 805 <source>Your Twitter username</source>
854 <target>Váš účet na Twitteru</target> 806 <target>Váš účet na Twitteru</target>
855 <context-group name="null"> 807 <context-group name="null">
856 <context context-type="linenumber">151</context> 808 <context context-type="linenumber">173</context>
857 </context-group> 809 </context-group>
858 </trans-unit> 810 </trans-unit>
859 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c"> 811 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c">
860 <source>Indicates the Twitter account for the website or platform on which the content was published.</source> 812 <source>Indicates the Twitter account for the website or platform on which the content was published.</source>
861 <target>Uveďte Twitter účet stránky nebo služby, na které byl obsah publikován.</target> 813 <target>Uveďte Twitter účet stránky nebo služby, na které byl obsah publikován.</target>
862 <context-group name="null"> 814 <context-group name="null">
863 <context context-type="linenumber">154</context> 815 <context context-type="linenumber">176</context>
864 </context-group> 816 </context-group>
865 </trans-unit> 817 </trans-unit>
866 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605"> 818 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605">
867 <source>Instance whitelisted by Twitter</source> 819 <source>Instance whitelisted by Twitter</source>
868 <target>Twitter povolil tuto instanci</target> 820 <target>Twitter povolil tuto instanci</target>
869 <context-group name="null"> 821 <context-group name="null">
870 <context context-type="linenumber">167</context> 822 <context context-type="linenumber">189</context>
871 </context-group>
872 </trans-unit>
873 <trans-unit id="3f008a1a07ca42c6ad258fde1bbd80ed74ada19b">
874 <source>If your instance is whitelisted by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.&lt;br /&gt;
875If the instance is not whitelisted, we use an image link card that will redirect on your PeerTube instance.&lt;br /&gt;&lt;br /&gt;
876Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; to see if you instance is whitelisted.</source>
877 <target>Pokud je vaše instance povolena Twitterem, videopřehrávač bude přiložen ve feedu.&lt;br /&gt;
878Pokud instance není povolena, bude zobrazen obrázek vedoucí jako link na vaši PeerTube instanci.&lt;br /&gt;&lt;br /&gt;
879Zakšrtněne tuto možnost, uložte nastavení a vyzkoušejte adresu videa z vaší instance (https://example.com/videos/watch/blabla) na &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; pro zjištění, zda je vaše instance povolená.</target>
880 <context-group name="null">
881 <context context-type="linenumber">168</context>
882 </context-group> 823 </context-group>
883 </trans-unit> 824 </trans-unit>
884 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> 825 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5">
885 <source>Services</source> 826 <source>Services</source>
886 <target>Služby</target> 827 <target>Služby</target>
887 <context-group name="null"> 828 <context-group name="null">
888 <context context-type="linenumber">146</context> 829 <context context-type="linenumber">168</context>
889 </context-group> 830 </context-group>
890 </trans-unit> 831 </trans-unit>
891 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490"> 832 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490">
892 <source>Transcoding</source> 833 <source>Transcoding</source>
893 <target>Překódování</target> 834 <target>Překódování</target>
894 <context-group name="null"> 835 <context-group name="null">
895 <context context-type="linenumber">176</context> 836 <context context-type="linenumber">200</context>
896 </context-group> 837 </context-group>
897 </trans-unit> 838 </trans-unit>
898 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> 839 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9">
899 <source>Transcoding enabled</source> 840 <source>Transcoding enabled</source>
900 <target>Překódování povoleno</target> 841 <target>Překódování povoleno</target>
901 <context-group name="null"> 842 <context-group name="null">
902 <context context-type="linenumber">180</context> 843 <context context-type="linenumber">204</context>
903 </context-group> 844 </context-group>
904 </trans-unit> 845 </trans-unit>
905 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> 846 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f">
906 <source>If you disable transcoding, many videos from your users will not work!</source> 847 <source>If you disable transcoding, many videos from your users will not work!</source>
907 <target>Pokud zakážete překódování, mnoho videí od vašich uživatelů nebude fungovat!</target> 848 <target>Pokud zakážete překódování, mnoho videí od vašich uživatelů nebude fungovat!</target>
908 <context-group name="null"> 849 <context-group name="null">
909 <context context-type="linenumber">181</context> 850 <context context-type="linenumber">205</context>
910 </context-group> 851 </context-group>
911 </trans-unit> 852 </trans-unit>
912 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> 853 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2">
913 <source>Transcoding threads</source> 854 <source>Transcoding threads</source>
914 <target>Vlákna na překódování</target> 855 <target>Vlákna na překódování</target>
915 <context-group name="null"> 856 <context-group name="null">
916 <context context-type="linenumber">187</context> 857 <context context-type="linenumber">211</context>
917 </context-group> 858 </context-group>
918 </trans-unit> 859 </trans-unit>
919 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7"> 860 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7">
920 <source>Previews cache size</source> 861 <source>Previews cache size</source>
921 <target>Velikost mezipaměti náhledů</target> 862 <target>Velikost mezipaměti náhledů</target>
922 <context-group name="null"> 863 <context-group name="null">
923 <context context-type="linenumber">219</context> 864 <context context-type="linenumber">243</context>
924 </context-group> 865 </context-group>
925 </trans-unit> 866 </trans-unit>
926 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c"> 867 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c">
927 <source>Customizations</source> 868 <source>Customizations</source>
928 <target>Přizpůsobení</target> 869 <target>Přizpůsobení</target>
929 <context-group name="null"> 870 <context-group name="null">
930 <context context-type="linenumber">240</context> 871 <context context-type="linenumber">264</context>
931 </context-group> 872 </context-group>
932 </trans-unit> 873 </trans-unit>
933 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> 874 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c">
934 <source>JavaScript</source> 875 <source>JavaScript</source>
935 <target>JavaScript</target> 876 <target>JavaScript</target>
936 <context-group name="null"> 877 <context-group name="null">
937 <context context-type="linenumber">243</context> 878 <context context-type="linenumber">267</context>
938 </context-group> 879 </context-group>
939 </trans-unit> 880 </trans-unit>
940 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c"> 881 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c">
941 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source> 882 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source>
942 <target>Pište přímo JavaScript kód.&lt;br /&gt;Například: &lt;pre&gt;console.log('moje instance je úžasná');&lt;/pre&gt;</target> 883 <target>Pište přímo JavaScript kód.&lt;br /&gt;Například: &lt;pre&gt;console.log('moje instance je úžasná');&lt;/pre&gt;</target>
943 <context-group name="null"> 884 <context-group name="null">
944 <context context-type="linenumber">246</context> 885 <context context-type="linenumber">270</context>
945 </context-group>
946 </trans-unit>
947 <trans-unit id="f133b08d6519081bfb8ef51cff4bf2b3af23dde6">
948 <source>
949 Write directly CSS code. Example:&lt;br /&gt;
950 &lt;pre&gt;
951 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
952 background-color: red;
953 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
954 &lt;/pre&gt;
955
956 Prepend with &lt;em&gt;#custom-css&lt;/em&gt; to override styles. Example:
957 &lt;pre&gt;
958 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
959 color: red;
960 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
961 &lt;/pre&gt;
962 </source>
963 <target>
964 Pište přímo CSS kód. Například:&lt;br /&gt;
965 &lt;pre&gt;
966 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
967 background-color: red;
968 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
969 &lt;/pre&gt;
970
971 Předřaďtě &lt;em&gt;#custom-css&lt;/em&gt; pro přepsání stylů. Například:
972 &lt;pre&gt;
973 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
974 color: red;
975 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
976 &lt;/pre&gt;
977 </target>
978 <context-group name="null">
979 <context context-type="linenumber">262</context>
980 </context-group> 886 </context-group>
981 </trans-unit> 887 </trans-unit>
982 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> 888 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab">
983 <source>Advanced configuration</source> 889 <source>Advanced configuration</source>
984 <target>Pokročilá nastavení</target> 890 <target>Pokročilá nastavení</target>
985 <context-group name="null"> 891 <context-group name="null">
986 <context context-type="linenumber">174</context> 892 <context context-type="linenumber">197</context>
987 </context-group> 893 </context-group>
988 </trans-unit> 894 </trans-unit>
989 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> 895 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8">
990 <source>Update configuration</source> 896 <source>Update configuration</source>
991 <target>Aktualizovat nastavení</target> 897 <target>Aktualizovat nastavení</target>
992 <context-group name="null"> 898 <context-group name="null">
993 <context context-type="linenumber">289</context> 899 <context context-type="linenumber">314</context>
994 </context-group> 900 </context-group>
995 </trans-unit> 901 </trans-unit>
996 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca"> 902 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca">
997 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source> 903 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source>
998 <target>Zdá se, že vaše konfigurace není validní. Prosím, vyhledejte potencialní chyby v jiné záložce.</target> 904 <target>Zdá se, že vaše konfigurace není validní. Prosím, vyhledejte potencialní chyby v jiné záložce.</target>
999 <context-group name="null"> 905 <context-group name="null">
1000 <context context-type="linenumber">290</context> 906 <context context-type="linenumber">315</context>
1001 </context-group> 907 </context-group>
1002 </trans-unit> 908 </trans-unit>
1003 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c"> 909 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c">
@@ -1022,28 +928,6 @@ Zakšrtněne tuto možnost, uložte nastavení a vyzkoušejte adresu videa z va
1022 <context context-type="linenumber">7</context> 928 <context context-type="linenumber">7</context>
1023 </context-group> 929 </context-group>
1024 </trans-unit> 930 </trans-unit>
1025 <trans-unit id="1c9406213cf05033eda4d3df678217b5eb822315">
1026 <source>
1027 Video abuses
1028 </source>
1029 <target>
1030 Nahlášená videa
1031 </target>
1032 <context-group name="null">
1033 <context context-type="linenumber">11</context>
1034 </context-group>
1035 </trans-unit>
1036 <trans-unit id="96ccede058f0022f34230c3adc09e60076b6d037">
1037 <source>
1038 Video blacklist
1039 </source>
1040 <target>
1041 Černá listina
1042 </target>
1043 <context-group name="null">
1044 <context context-type="linenumber">15</context>
1045 </context-group>
1046 </trans-unit>
1047 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368"> 931 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368">
1048 <source> 932 <source>
1049 Jobs 933 Jobs
@@ -1052,7 +936,7 @@ Zakšrtněne tuto možnost, uložte nastavení a vyzkoušejte adresu videa z va
1052 Úlohy 936 Úlohy
1053 </target> 937 </target>
1054 <context-group name="null"> 938 <context-group name="null">
1055 <context context-type="linenumber">19</context> 939 <context context-type="linenumber">15</context>
1056 </context-group> 940 </context-group>
1057 </trans-unit> 941 </trans-unit>
1058 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13"> 942 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13">
@@ -1063,7 +947,7 @@ Zakšrtněne tuto možnost, uložte nastavení a vyzkoušejte adresu videa z va
1063 Nastavení 947 Nastavení
1064 </target> 948 </target>
1065 <context-group name="null"> 949 <context-group name="null">
1066 <context context-type="linenumber">23</context> 950 <context context-type="linenumber">19</context>
1067 </context-group> 951 </context-group>
1068 </trans-unit> 952 </trans-unit>
1069 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396"> 953 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396">
@@ -1133,6 +1017,27 @@ Zakšrtněne tuto možnost, uložte nastavení a vyzkoušejte adresu videa z va
1133 <context context-type="linenumber">2</context> 1017 <context context-type="linenumber">2</context>
1134 </context-group> 1018 </context-group>
1135 </trans-unit> 1019 </trans-unit>
1020 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936">
1021 <source>Following</source>
1022 <target>Odebíráno</target>
1023 <context-group name="null">
1024 <context context-type="linenumber">5</context>
1025 </context-group>
1026 </trans-unit>
1027 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
1028 <source>Follow</source>
1029 <target>Odebírat</target>
1030 <context-group name="null">
1031 <context context-type="linenumber">7</context>
1032 </context-group>
1033 </trans-unit>
1034 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
1035 <source>Followers</source>
1036 <target>Odběratelé</target>
1037 <context-group name="null">
1038 <context context-type="linenumber">9</context>
1039 </context-group>
1040 </trans-unit>
1136 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f"> 1041 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f">
1137 <source>Jobs list</source> 1042 <source>Jobs list</source>
1138 <target>Seznam úloh</target> 1043 <target>Seznam úloh</target>
@@ -1179,14 +1084,7 @@ Zakšrtněne tuto možnost, uložte nastavení a vyzkoušejte adresu videa z va
1179 <source>Role</source> 1084 <source>Role</source>
1180 <target>Role</target> 1085 <target>Role</target>
1181 <context-group name="null"> 1086 <context-group name="null">
1182 <context context-type="linenumber">19</context> 1087 <context context-type="linenumber">20</context>
1183 </context-group>
1184 </trans-unit>
1185 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
1186 <source>Video quota</source>
1187 <target>Limit na videa</target>
1188 <context-group name="null">
1189 <context context-type="linenumber">18</context>
1190 </context-group> 1088 </context-group>
1191 </trans-unit> 1089 </trans-unit>
1192 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345"> 1090 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345">
@@ -1202,6 +1100,13 @@ Zakšrtněne tuto možnost, uložte nastavení a vyzkoušejte adresu videa z va
1202 <context context-type="linenumber">65</context> 1100 <context context-type="linenumber">65</context>
1203 </context-group> 1101 </context-group>
1204 </trans-unit> 1102 </trans-unit>
1103 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
1104 <source>Reason...</source>
1105 <target>Důvod...</target>
1106 <context-group name="null">
1107 <context context-type="linenumber">11</context>
1108 </context-group>
1109 </trans-unit>
1205 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f"> 1110 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f">
1206 <source>Users list</source> 1111 <source>Users list</source>
1207 <target>Seznam uživatelů</target> 1112 <target>Seznam uživatelů</target>
@@ -1213,91 +1118,42 @@ Zakšrtněne tuto možnost, uložte nastavení a vyzkoušejte adresu videa z va
1213 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source> 1118 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1214 <target>Uživatelské jméno <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target> 1119 <target>Uživatelské jméno <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1215 <context-group name="null"> 1120 <context-group name="null">
1216 <context context-type="linenumber">16</context> 1121 <context context-type="linenumber">17</context>
1217 </context-group>
1218 </trans-unit>
1219 <trans-unit id="0c7e8870481f1287af6a142f538391d8c16c2408">
1220 <source>Video abuses list</source>
1221 <target>Seznam nahlášených videí</target>
1222 <context-group name="null">
1223 <context context-type="linenumber">2</context>
1224 </context-group>
1225 </trans-unit>
1226 <trans-unit id="4ba250869daa372b54d24fafc0ea934769ee4076">
1227 <source>Reason</source>
1228 <target>Důvod</target>
1229 <context-group name="null">
1230 <context context-type="linenumber">11</context>
1231 </context-group> 1122 </context-group>
1232 </trans-unit> 1123 </trans-unit>
1233 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2"> 1124 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2">
1234 <source>Reporter</source> 1125 <source>Reporter</source>
1235 <target>Autor nahlášení</target> 1126 <target>Autor nahlášení</target>
1236 <context-group name="null"> 1127 <context-group name="null">
1237 <context context-type="linenumber">12</context> 1128 <context context-type="linenumber">8</context>
1238 </context-group> 1129 </context-group>
1239 </trans-unit> 1130 </trans-unit>
1240 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4"> 1131 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4">
1241 <source>Video</source> 1132 <source>Video</source>
1242 <target>Video</target> 1133 <target>Video</target>
1243 <context-group name="null"> 1134 <context-group name="null">
1244 <context context-type="linenumber">9</context> 1135 <context context-type="linenumber">14</context>
1245 </context-group> 1136 </context-group>
1246 </trans-unit> 1137 </trans-unit>
1247 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7"> 1138 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7">
1248 <source>Go to the account</source> 1139 <source>Go to the account</source>
1249 <target>Přejít na účet</target> 1140 <target>Přejít na účet</target>
1250 <context-group name="null"> 1141 <context-group name="null">
1251 <context context-type="linenumber">22</context> 1142 <context context-type="linenumber">27</context>
1252 </context-group> 1143 </context-group>
1253 </trans-unit> 1144 </trans-unit>
1254 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5"> 1145 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5">
1255 <source>Go to the video</source> 1146 <source>Go to the video</source>
1256 <target>Přejít na video</target> 1147 <target>Přejít na video</target>
1257 <context-group name="null"> 1148 <context-group name="null">
1258 <context context-type="linenumber">28</context> 1149 <context context-type="linenumber">33</context>
1259 </context-group> 1150 </context-group>
1260 </trans-unit> 1151 </trans-unit>
1261 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1"> 1152 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1">
1262 <source>Blacklisted videos</source> 1153 <source>Blacklisted videos</source>
1263 <target>Videa na černé listině</target> 1154 <target>Videa na černé listině</target>
1264 <context-group name="null"> 1155 <context-group name="null">
1265 <context context-type="linenumber">2</context> 1156 <context context-type="linenumber">7</context>
1266 </context-group>
1267 </trans-unit>
1268 <trans-unit id="7c02d113e9b7884037834cddecf2a32a5538b35b">
1269 <source>Name <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1270 <target>Jméno <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1271 <context-group name="null">
1272 <context context-type="linenumber">11</context>
1273 </context-group>
1274 </trans-unit>
1275 <trans-unit id="cd5ca5da9e2fa21571e9f86a24a5c3b45a3ddc51">
1276 <source>Views <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1277 <target>Zhlednutí <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1278 <context-group name="null">
1279 <context context-type="linenumber">13</context>
1280 </context-group>
1281 </trans-unit>
1282 <trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9">
1283 <source>NSFW</source>
1284 <target>Citlivý obsah</target>
1285 <context-group name="null">
1286 <context context-type="linenumber">14</context>
1287 </context-group>
1288 </trans-unit>
1289 <trans-unit id="8c87d9527af7ff2ada84c911516a9e43a352e401">
1290 <source>UUID</source>
1291 <target>UUID</target>
1292 <context-group name="null">
1293 <context context-type="linenumber">15</context>
1294 </context-group>
1295 </trans-unit>
1296 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1297 <source>Unblacklist</source>
1298 <target>Odebrat z černé listiny</target>
1299 <context-group name="null">
1300 <context context-type="linenumber">30</context>
1301 </context-group> 1157 </context-group>
1302 </trans-unit> 1158 </trans-unit>
1303 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6"> 1159 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6">
@@ -1307,18 +1163,11 @@ Zakšrtněne tuto možnost, uložte nastavení a vyzkoušejte adresu videa z va
1307 <context context-type="linenumber">3</context> 1163 <context context-type="linenumber">3</context>
1308 </context-group> 1164 </context-group>
1309 </trans-unit> 1165 </trans-unit>
1310 <trans-unit id="520d68b2c9f7dacaf2a5073716cad9bd328ea7e7">
1311 <source>My video channels</source>
1312 <target>Mé video kanály</target>
1313 <context-group name="null">
1314 <context context-type="linenumber">5</context>
1315 </context-group>
1316 </trans-unit>
1317 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894"> 1166 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894">
1318 <source>My videos</source> 1167 <source>My videos</source>
1319 <target>Moje videa</target> 1168 <target>Moje videa</target>
1320 <context-group name="null"> 1169 <context-group name="null">
1321 <context context-type="linenumber">7</context> 1170 <context context-type="linenumber">14</context>
1322 </context-group> 1171 </context-group>
1323 </trans-unit> 1172 </trans-unit>
1324 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48"> 1173 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48">
@@ -1342,6 +1191,13 @@ Zakšrtněne tuto možnost, uložte nastavení a vyzkoušejte adresu videa z va
1342 <context context-type="linenumber">15</context> 1191 <context context-type="linenumber">15</context>
1343 </context-group> 1192 </context-group>
1344 </trans-unit> 1193 </trans-unit>
1194 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
1195 <source>Submit</source>
1196 <target>Odeslat</target>
1197 <context-group name="null">
1198 <context context-type="linenumber">24</context>
1199 </context-group>
1200 </trans-unit>
1345 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79"> 1201 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79">
1346 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 1202 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
1347 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> zhlédnutí</target> 1203 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> zhlédnutí</target>
@@ -1349,11 +1205,15 @@ Zakšrtněne tuto možnost, uložte nastavení a vyzkoušejte adresu videa z va
1349 <context context-type="linenumber">19</context> 1205 <context context-type="linenumber">19</context>
1350 </context-group> 1206 </context-group>
1351 </trans-unit> 1207 </trans-unit>
1352 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7"> 1208 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
1353 <source>Delete</source> 1209 <source>
1354 <target>Odstranit</target> 1210 Cancel
1211 </source>
1212 <target>
1213 Zrušit
1214 </target>
1355 <context-group name="null"> 1215 <context-group name="null">
1356 <context context-type="linenumber">15</context> 1216 <context context-type="linenumber">30</context>
1357 </context-group> 1217 </context-group>
1358 </trans-unit> 1218 </trans-unit>
1359 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260"> 1219 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260">
@@ -1367,7 +1227,7 @@ Zakšrtněne tuto možnost, uložte nastavení a vyzkoušejte adresu videa z va
1367 <source>Go to the channel</source> 1227 <source>Go to the channel</source>
1368 <target>Přejít na video kanál</target> 1228 <target>Přejít na video kanál</target>
1369 <context-group name="null"> 1229 <context-group name="null">
1370 <context context-type="linenumber">15</context> 1230 <context context-type="linenumber">8</context>
1371 </context-group> 1231 </context-group>
1372 </trans-unit> 1232 </trans-unit>
1373 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68"> 1233 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68">
@@ -1390,14 +1250,28 @@ When you will upload a video in this channel, the video support field will be au
1390 <target>Krátký text, kterým sdělíte lidem, jak mohou podporovat tento kanál (členství...).&lt;br /&gt;&lt;br /&gt; 1250 <target>Krátký text, kterým sdělíte lidem, jak mohou podporovat tento kanál (členství...).&lt;br /&gt;&lt;br /&gt;
1391 Když nahrajete video na tento kanál, text bude přiložen.</target> 1251 Když nahrajete video na tento kanál, text bude přiložen.</target>
1392 <context-group name="null"> 1252 <context-group name="null">
1393 <context context-type="linenumber">36</context> 1253 <context context-type="linenumber">52</context>
1254 </context-group>
1255 </trans-unit>
1256 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1257 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1258 <target>Autor: <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1259 <context-group name="null">
1260 <context context-type="linenumber">17</context>
1261 </context-group>
1262 </trans-unit>
1263 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1264 <source>Go the owner account page</source>
1265 <target>Přejít na autorův profil</target>
1266 <context-group name="null">
1267 <context context-type="linenumber">16</context>
1394 </context-group> 1268 </context-group>
1395 </trans-unit> 1269 </trans-unit>
1396 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9"> 1270 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9">
1397 <source>Change password</source> 1271 <source>Change password</source>
1398 <target>Změnit heslo</target> 1272 <target>Změnit heslo</target>
1399 <context-group name="null"> 1273 <context-group name="null">
1400 <context context-type="linenumber">19</context> 1274 <context context-type="linenumber">22</context>
1401 </context-group> 1275 </context-group>
1402 </trans-unit> 1276 </trans-unit>
1403 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229"> 1277 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229">
@@ -1460,20 +1334,6 @@ When you will upload a video in this channel, the video support field will be au
1460 <context context-type="linenumber">1</context> 1334 <context context-type="linenumber">1</context>
1461 </context-group> 1335 </context-group>
1462 </trans-unit> 1336 </trans-unit>
1463 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1464 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1465 <target>Autor: <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1466 <context-group name="null">
1467 <context context-type="linenumber">14</context>
1468 </context-group>
1469 </trans-unit>
1470 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1471 <source>Go the owner account page</source>
1472 <target>Přejít na autorův profil</target>
1473 <context-group name="null">
1474 <context context-type="linenumber">13</context>
1475 </context-group>
1476 </trans-unit>
1477 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8"> 1337 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8">
1478 <source>Support this channel</source> 1338 <source>Support this channel</source>
1479 <target>Podpořit tento kanál</target> 1339 <target>Podpořit tento kanál</target>
@@ -1492,28 +1352,28 @@ When you will upload a video in this channel, the video support field will be au
1492 <source>URL</source> 1352 <source>URL</source>
1493 <target>URL</target> 1353 <target>URL</target>
1494 <context-group name="null"> 1354 <context-group name="null">
1495 <context context-type="linenumber">12</context> 1355 <context context-type="linenumber">17</context>
1496 </context-group> 1356 </context-group>
1497 </trans-unit> 1357 </trans-unit>
1498 <trans-unit id="0cc554f4d7bb6a87515d2d95438e183b50702071"> 1358 <trans-unit id="0cc554f4d7bb6a87515d2d95438e183b50702071">
1499 <source>Channel</source> 1359 <source>Channel</source>
1500 <target>Kanál</target> 1360 <target>Kanál</target>
1501 <context-group name="null"> 1361 <context-group name="null">
1502 <context context-type="linenumber">35</context> 1362 <context context-type="linenumber">38</context>
1503 </context-group> 1363 </context-group>
1504 </trans-unit> 1364 </trans-unit>
1505 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427"> 1365 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427">
1506 <source>Privacy</source> 1366 <source>Privacy</source>
1507 <target>Soukromí</target> 1367 <target>Soukromí</target>
1508 <context-group name="null"> 1368 <context-group name="null">
1509 <context context-type="linenumber">143</context> 1369 <context context-type="linenumber">161</context>
1510 </context-group> 1370 </context-group>
1511 </trans-unit> 1371 </trans-unit>
1512 <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb"> 1372 <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb">
1513 <source>Update</source> 1373 <source>Update</source>
1514 <target>Aktualizovat</target> 1374 <target>Aktualizovat</target>
1515 <context-group name="null"> 1375 <context-group name="null">
1516 <context context-type="linenumber">105</context> 1376 <context context-type="linenumber">92</context>
1517 </context-group> 1377 </context-group>
1518 </trans-unit> 1378 </trans-unit>
1519 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> 1379 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9">
@@ -1541,63 +1401,56 @@ When you will upload a video in this channel, the video support field will be au
1541 <source>Title</source> 1401 <source>Title</source>
1542 <target>Nadpis</target> 1402 <target>Nadpis</target>
1543 <context-group name="null"> 1403 <context-group name="null">
1544 <context context-type="linenumber">7</context> 1404 <context context-type="linenumber">9</context>
1545 </context-group> 1405 </context-group>
1546 </trans-unit> 1406 </trans-unit>
1547 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b"> 1407 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b">
1548 <source>Tags</source> 1408 <source>Tags</source>
1549 <target>Tagy</target> 1409 <target>Tagy</target>
1550 <context-group name="null"> 1410 <context-group name="null">
1551 <context context-type="linenumber">175</context> 1411 <context context-type="linenumber">193</context>
1552 </context-group>
1553 </trans-unit>
1554 <trans-unit id="935e7146fe6c12169abfda18536c5856935cfd82">
1555 <source>(press Enter to add)</source>
1556 <target>(stiskněte Enter pro přidání)</target>
1557 <context-group name="null">
1558 <context context-type="linenumber">15</context>
1559 </context-group> 1412 </context-group>
1560 </trans-unit> 1413 </trans-unit>
1561 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e"> 1414 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e">
1562 <source>Video descriptions are truncated by default and require manual action to expand them.</source> 1415 <source>Video descriptions are truncated by default and require manual action to expand them.</source>
1563 <target>Popisy videí jsou ve výchozím stavu sbaleny a rozbalují se kliknutím.</target> 1416 <target>Popisy videí jsou ve výchozím stavu sbaleny a rozbalují se kliknutím.</target>
1564 <context-group name="null"> 1417 <context-group name="null">
1565 <context context-type="linenumber">24</context> 1418 <context context-type="linenumber">27</context>
1566 </context-group> 1419 </context-group>
1567 </trans-unit> 1420 </trans-unit>
1568 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> 1421 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5">
1569 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source> 1422 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source>
1570 <target>Naplánovat publikování (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target> 1423 <target>Naplánovat publikování (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target>
1571 <context-group name="null"> 1424 <context-group name="null">
1572 <context context-type="linenumber">101</context> 1425 <context context-type="linenumber">104</context>
1573 </context-group> 1426 </context-group>
1574 </trans-unit> 1427 </trans-unit>
1575 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee"> 1428 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee">
1576 <source>This video contains mature or explicit content</source> 1429 <source>This video contains mature or explicit content</source>
1577 <target>Video obsahující citlivý materiál</target> 1430 <target>Video obsahující citlivý materiál</target>
1578 <context-group name="null"> 1431 <context-group name="null">
1579 <context context-type="linenumber">115</context> 1432 <context context-type="linenumber">118</context>
1580 </context-group> 1433 </context-group>
1581 </trans-unit> 1434 </trans-unit>
1582 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644"> 1435 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644">
1583 <source>Some instances do not list videos containing mature or explicit content by default.</source> 1436 <source>Some instances do not list videos containing mature or explicit content by default.</source>
1584 <target>Některé instance nezobrazují videa s citlivým materiálem.</target> 1437 <target>Některé instance nezobrazují videa s citlivým materiálem.</target>
1585 <context-group name="null"> 1438 <context-group name="null">
1586 <context context-type="linenumber">116</context> 1439 <context context-type="linenumber">119</context>
1587 </context-group> 1440 </context-group>
1588 </trans-unit> 1441 </trans-unit>
1589 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a"> 1442 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a">
1590 <source>Enable video comments</source> 1443 <source>Enable video comments</source>
1591 <target>Povolit komentáře</target> 1444 <target>Povolit komentáře</target>
1592 <context-group name="null"> 1445 <context-group name="null">
1593 <context context-type="linenumber">121</context> 1446 <context context-type="linenumber">124</context>
1594 </context-group> 1447 </context-group>
1595 </trans-unit> 1448 </trans-unit>
1596 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0"> 1449 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0">
1597 <source>Wait transcoding before publishing the video</source> 1450 <source>Wait transcoding before publishing the video</source>
1598 <target>Čekat na překódování před publikováním videa</target> 1451 <target>Čekat na překódování před publikováním videa</target>
1599 <context-group name="null"> 1452 <context-group name="null">
1600 <context context-type="linenumber">126</context> 1453 <context context-type="linenumber">129</context>
1601 </context-group> 1454 </context-group>
1602 </trans-unit> 1455 </trans-unit>
1603 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7"> 1456 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7">
@@ -1611,35 +1464,35 @@ When you will upload a video in this channel, the video support field will be au
1611 <source>Upload thumbnail</source> 1464 <source>Upload thumbnail</source>
1612 <target>Nahrát miniaturu</target> 1465 <target>Nahrát miniaturu</target>
1613 <context-group name="null"> 1466 <context-group name="null">
1614 <context context-type="linenumber">186</context> 1467 <context context-type="linenumber">194</context>
1615 </context-group> 1468 </context-group>
1616 </trans-unit> 1469 </trans-unit>
1617 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639"> 1470 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639">
1618 <source>Upload preview</source> 1471 <source>Upload preview</source>
1619 <target>Nahrát náhled</target> 1472 <target>Nahrát náhled</target>
1620 <context-group name="null"> 1473 <context-group name="null">
1621 <context context-type="linenumber">193</context> 1474 <context context-type="linenumber">201</context>
1622 </context-group> 1475 </context-group>
1623 </trans-unit> 1476 </trans-unit>
1624 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604"> 1477 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604">
1625 <source>Support</source> 1478 <source>Support</source>
1626 <target>Podpora</target> 1479 <target>Podpora</target>
1627 <context-group name="null"> 1480 <context-group name="null">
1628 <context context-type="linenumber">71</context> 1481 <context context-type="linenumber">69</context>
1629 </context-group> 1482 </context-group>
1630 </trans-unit> 1483 </trans-unit>
1631 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0"> 1484 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0">
1632 <source>Short text to tell people how they can support you (membership platform...).</source> 1485 <source>Short text to tell people how they can support you (membership platform...).</source>
1633 <target>Krátký text, co řekne lidem, jak vás mohou podpořit.</target> 1486 <target>Krátký text, co řekne lidem, jak vás mohou podpořit.</target>
1634 <context-group name="null"> 1487 <context-group name="null">
1635 <context context-type="linenumber">200</context> 1488 <context context-type="linenumber">208</context>
1636 </context-group> 1489 </context-group>
1637 </trans-unit> 1490 </trans-unit>
1638 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1"> 1491 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1">
1639 <source>Advanced settings</source> 1492 <source>Advanced settings</source>
1640 <target>Rozšířená nastavení</target> 1493 <target>Rozšířená nastavení</target>
1641 <context-group name="null"> 1494 <context-group name="null">
1642 <context context-type="linenumber">182</context> 1495 <context context-type="linenumber">189</context>
1643 </context-group> 1496 </context-group>
1644 </trans-unit> 1497 </trans-unit>
1645 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0"> 1498 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0">
@@ -1657,78 +1510,42 @@ When you will upload a video in this channel, the video support field will be au
1657 <source>Download video</source> 1510 <source>Download video</source>
1658 <target>Stáhnout video</target> 1511 <target>Stáhnout video</target>
1659 <context-group name="null"> 1512 <context-group name="null">
1660 <context context-type="linenumber">7</context> 1513 <context context-type="linenumber">3</context>
1661 </context-group> 1514 </context-group>
1662 </trans-unit> 1515 </trans-unit>
1663 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c"> 1516 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c">
1664 <source>Direct download</source> 1517 <source>Direct download</source>
1665 <target>Přímý odkaz</target> 1518 <target>Přímý odkaz</target>
1666 <context-group name="null"> 1519 <context-group name="null">
1667 <context context-type="linenumber">20</context> 1520 <context context-type="linenumber">17</context>
1668 </context-group> 1521 </context-group>
1669 </trans-unit> 1522 </trans-unit>
1670 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> 1523 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd">
1671 <source>Download</source> 1524 <source>Download</source>
1672 <target>Stáhnout</target> 1525 <target>Stáhnout</target>
1673 <context-group name="null"> 1526 <context-group name="null">
1674 <context context-type="linenumber">87</context> 1527 <context context-type="linenumber">84</context>
1675 </context-group> 1528 </context-group>
1676 </trans-unit> 1529 </trans-unit>
1677 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b"> 1530 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b">
1678 <source>Report video</source> 1531 <source>Report video</source>
1679 <target>Nahlásit video</target> 1532 <target>Nahlásit video</target>
1680 <context-group name="null"> 1533 <context-group name="null">
1681 <context context-type="linenumber">7</context> 1534 <context context-type="linenumber">3</context>
1682 </context-group>
1683 </trans-unit>
1684 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
1685 <source>Reason...</source>
1686 <target>Důvod...</target>
1687 <context-group name="null">
1688 <context context-type="linenumber">14</context>
1689 </context-group>
1690 </trans-unit>
1691 <trans-unit id="0e6b8229bd65f93bc8040d0fb598967f220740c7">
1692 <source>
1693 Cancel
1694 </source>
1695 <target>
1696 Zrušit
1697 </target>
1698 <context-group name="null">
1699 <context context-type="linenumber">22</context>
1700 </context-group>
1701 </trans-unit>
1702 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
1703 <source>Submit</source>
1704 <target>Odeslat</target>
1705 <context-group name="null">
1706 <context context-type="linenumber">27</context>
1707 </context-group> 1535 </context-group>
1708 </trans-unit> 1536 </trans-unit>
1709 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9"> 1537 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9">
1710 <source>Share</source> 1538 <source>Share</source>
1711 <target>Sdílet</target> 1539 <target>Sdílet</target>
1712 <context-group name="null"> 1540 <context-group name="null">
1713 <context context-type="linenumber">76</context> 1541 <context context-type="linenumber">74</context>
1714 </context-group> 1542 </context-group>
1715 </trans-unit> 1543 </trans-unit>
1716 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c"> 1544 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
1717 <source>Embed</source> 1545 <source>Embed</source>
1718 <target>Vložit do stránky</target> 1546 <target>Vložit do stránky</target>
1719 <context-group name="null"> 1547 <context-group name="null">
1720 <context context-type="linenumber">24</context> 1548 <context context-type="linenumber">34</context>
1721 </context-group>
1722 </trans-unit>
1723 <trans-unit id="239fe0316cfe91aa6e1e7bf1ef19e3b7772131f8">
1724 <source>
1725 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).
1726 </source>
1727 <target>
1728 URL není zabezpečená (žádné HTTPS), takže vložené video nebude fungovat na HTTPS stránkách (prohlížeče zablokují nezabezpečené HTTP požadavky na HTTPS stránkách).
1729 </target>
1730 <context-group name="null">
1731 <context context-type="linenumber">35</context>
1732 </context-group> 1549 </context-group>
1733 </trans-unit> 1550 </trans-unit>
1734 <trans-unit id="9ed65ae88f6c982bc44d6fed2796e55f47dbf304"> 1551 <trans-unit id="9ed65ae88f6c982bc44d6fed2796e55f47dbf304">
@@ -1742,163 +1559,116 @@ When you will upload a video in this channel, the video support field will be au
1742 <context context-type="linenumber">15</context> 1559 <context context-type="linenumber">15</context>
1743 </context-group> 1560 </context-group>
1744 </trans-unit> 1561 </trans-unit>
1745 <trans-unit id="fbc205ea3d06fa8f65973fa3b490ae172f71c087">
1746 <source>
1747 This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
1748 </source>
1749 <target>
1750 Toto video bude publikováno <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
1751 </target>
1752 <context-group name="null">
1753 <context context-type="linenumber">19</context>
1754 </context-group>
1755 </trans-unit>
1756 <trans-unit id="643ab402461b1169eebbe2ed790e12a9a83551aa">
1757 <source>
1758 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views
1759 </source>
1760 <target>
1761 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> zhlédnutí
1762 </target>
1763 <context-group name="null">
1764 <context context-type="linenumber">30</context>
1765 </context-group>
1766 </trans-unit>
1767 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
1768 <source>Go the channel page</source>
1769 <target>Přejít na stránku kanálu</target>
1770 <context-group name="null">
1771 <context context-type="linenumber">35</context>
1772 </context-group>
1773 </trans-unit>
1774 <trans-unit id="ccc07df383b7a32be3e2e105faa5488caf261c1c">
1775 <source>By <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></source>
1776 <target>Autor: <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></target>
1777 <context-group name="null">
1778 <context context-type="linenumber">45</context>
1779 </context-group>
1780 </trans-unit>
1781 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
1782 <source>Go to the account page</source>
1783 <target>Přejít na stránku kanálu</target>
1784 <context-group name="null">
1785 <context context-type="linenumber">44</context>
1786 </context-group>
1787 </trans-unit>
1788 <trans-unit id="57075c778cf28b81272df4eb17da944366c98e51">
1789 <source>You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; and subscribe there. Subscription as a PeerTube user is being worked on in &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</source>
1790 <target>Tento účet můžete odebírat přes kteroukoliv instanci obsahující ActivityPub federaci. V instancích s Mastodon nebo Pleroma můžete napsat do vyhledávacího pole &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; a přidat odběr. Na odběrech jako PeerTube uživatel se pracuje: &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</target>
1791 <context-group name="null">
1792 <context context-type="linenumber">49</context>
1793 </context-group>
1794 </trans-unit>
1795 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced"> 1562 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced">
1796 <source>Like this video</source> 1563 <source>Like this video</source>
1797 <target>To se mi líbí</target> 1564 <target>To se mi líbí</target>
1798 <context-group name="null"> 1565 <context-group name="null">
1799 <context context-type="linenumber">59</context> 1566 <context context-type="linenumber">57</context>
1800 </context-group> 1567 </context-group>
1801 </trans-unit> 1568 </trans-unit>
1802 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509"> 1569 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509">
1803 <source>Dislike this video</source> 1570 <source>Dislike this video</source>
1804 <target>To se mi nelíbí</target> 1571 <target>To se mi nelíbí</target>
1805 <context-group name="null"> 1572 <context-group name="null">
1806 <context context-type="linenumber">66</context> 1573 <context context-type="linenumber">64</context>
1807 </context-group> 1574 </context-group>
1808 </trans-unit> 1575 </trans-unit>
1809 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2"> 1576 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2">
1810 <source>Download the video</source> 1577 <source>Download the video</source>
1811 <target>Stáhnout video</target> 1578 <target>Stáhnout video</target>
1812 <context-group name="null"> 1579 <context-group name="null">
1813 <context context-type="linenumber">86</context> 1580 <context context-type="linenumber">83</context>
1814 </context-group> 1581 </context-group>
1815 </trans-unit> 1582 </trans-unit>
1816 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a"> 1583 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a">
1817 <source>Report</source> 1584 <source>Report</source>
1818 <target>Nahlásit</target> 1585 <target>Nahlásit</target>
1819 <context-group name="null"> 1586 <context-group name="null">
1820 <context context-type="linenumber">93</context> 1587 <context context-type="linenumber">88</context>
1821 </context-group> 1588 </context-group>
1822 </trans-unit> 1589 </trans-unit>
1823 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf"> 1590 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf">
1824 <source>Report this video</source> 1591 <source>Report this video</source>
1825 <target>Nahlásit toto video</target> 1592 <target>Nahlásit toto video</target>
1826 <context-group name="null"> 1593 <context-group name="null">
1827 <context context-type="linenumber">92</context> 1594 <context context-type="linenumber">87</context>
1595 </context-group>
1596 </trans-unit>
1597 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1">
1598 <source>Update this video</source>
1599 <target>Aktualizovat video</target>
1600 <context-group name="null">
1601 <context context-type="linenumber">91</context>
1828 </context-group> 1602 </context-group>
1829 </trans-unit> 1603 </trans-unit>
1830 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61"> 1604 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61">
1831 <source>Blacklist</source> 1605 <source>Blacklist</source>
1832 <target>Černá listina</target> 1606 <target>Černá listina</target>
1833 <context-group name="null"> 1607 <context-group name="null">
1834 <context context-type="linenumber">99</context> 1608 <context context-type="linenumber">96</context>
1835 </context-group> 1609 </context-group>
1836 </trans-unit> 1610 </trans-unit>
1837 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037"> 1611 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037">
1838 <source>Blacklist this video</source> 1612 <source>Blacklist this video</source>
1839 <target>Přidat toto video na černou listinu</target> 1613 <target>Přidat toto video na černou listinu</target>
1840 <context-group name="null"> 1614 <context-group name="null">
1841 <context context-type="linenumber">98</context> 1615 <context context-type="linenumber">95</context>
1842 </context-group> 1616 </context-group>
1843 </trans-unit> 1617 </trans-unit>
1844 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1"> 1618 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1845 <source>Update this video</source> 1619 <source>Unblacklist</source>
1846 <target>Aktualizovat video</target> 1620 <target>Odebrat z černé listiny</target>
1847 <context-group name="null"> 1621 <context-group name="null">
1848 <context context-type="linenumber">104</context> 1622 <context context-type="linenumber">100</context>
1849 </context-group> 1623 </context-group>
1850 </trans-unit> 1624 </trans-unit>
1851 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5"> 1625 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5">
1852 <source>Delete this video</source> 1626 <source>Delete this video</source>
1853 <target>Odstranit video</target> 1627 <target>Odstranit video</target>
1854 <context-group name="null"> 1628 <context-group name="null">
1855 <context context-type="linenumber">110</context> 1629 <context context-type="linenumber">103</context>
1856 </context-group> 1630 </context-group>
1857 </trans-unit> 1631 </trans-unit>
1858 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b"> 1632 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
1859 <source>Show more</source> 1633 <source>Go the channel page</source>
1860 <target>Zobrazit vce</target> 1634 <target>Přejít na stránku kanlu</target>
1861 <context-group name="null"> 1635 <context-group name="null">
1862 <context context-type="linenumber">130</context> 1636 <context context-type="linenumber">123</context>
1863 </context-group> 1637 </context-group>
1864 </trans-unit> 1638 </trans-unit>
1865 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903"> 1639 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
1866 <source>Show less</source> 1640 <source>Go to the account page</source>
1867 <target>Zobrazit mně</target> 1641 <target>Přejít na strnku kanálu</target>
1868 <context-group name="null"> 1642 <context-group name="null">
1869 <context context-type="linenumber">136</context> 1643 <context context-type="linenumber">133</context>
1870 </context-group> 1644 </context-group>
1871 </trans-unit> 1645 </trans-unit>
1872 <trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1"> 1646 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b">
1873 <source> 1647 <source>Show more</source>
1874 Other videos 1648 <target>Zobrazit více</target>
1875 </source>
1876 <target>
1877 Další videa
1878 </target>
1879 <context-group name="null"> 1649 <context-group name="null">
1880 <context context-type="linenumber">187</context> 1650 <context context-type="linenumber">148</context>
1881 </context-group> 1651 </context-group>
1882 </trans-unit> 1652 </trans-unit>
1883 <trans-unit id="fb779d2b25c4d0ffa7d52c823a240717e8c1fe6c"> 1653 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903">
1884 <source>Friendly Reminder:</source> 1654 <source>Show less</source>
1885 <target>Přátelské připomenut:</target> 1655 <target>Zobrazit m</target>
1886 <context-group name="null"> 1656 <context-group name="null">
1887 <context context-type="linenumber">199</context> 1657 <context context-type="linenumber">154</context>
1888 </context-group> 1658 </context-group>
1889 </trans-unit> 1659 </trans-unit>
1890 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e"> 1660 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e">
1891 <source>More information</source> 1661 <source>More information</source>
1892 <target>Více informací</target> 1662 <target>Více informací</target>
1893 <context-group name="null"> 1663 <context-group name="null">
1894 <context context-type="linenumber">204</context> 1664 <context context-type="linenumber">214</context>
1895 </context-group> 1665 </context-group>
1896 </trans-unit> 1666 </trans-unit>
1897 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318"> 1667 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318">
1898 <source>Get more information</source> 1668 <source>Get more information</source>
1899 <target>Získat více informací</target> 1669 <target>Získat více informací</target>
1900 <context-group name="null"> 1670 <context-group name="null">
1901 <context context-type="linenumber">204</context> 1671 <context context-type="linenumber">214</context>
1902 </context-group> 1672 </context-group>
1903 </trans-unit> 1673 </trans-unit>
1904 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f"> 1674 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f">
@@ -1909,7 +1679,7 @@ When you will upload a video in this channel, the video support field will be au
1909 OK 1679 OK
1910 </target> 1680 </target>
1911 <context-group name="null"> 1681 <context-group name="null">
1912 <context context-type="linenumber">207</context> 1682 <context context-type="linenumber">217</context>
1913 </context-group> 1683 </context-group>
1914 </trans-unit> 1684 </trans-unit>
1915 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7"> 1685 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7">
@@ -1970,7 +1740,7 @@ When you will upload a video in this channel, the video support field will be au
1970 Odeslat komentář 1740 Odeslat komentář
1971 </target> 1741 </target>
1972 <context-group name="null"> 1742 <context-group name="null">
1973 <context context-type="linenumber">17</context> 1743 <context context-type="linenumber">18</context>
1974 </context-group> 1744 </context-group>
1975 </trans-unit> 1745 </trans-unit>
1976 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> 1746 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285">
@@ -2134,23 +1904,9 @@ When you will upload a video in this channel, the video support field will be au
2134 <context context-type="linenumber">1</context> 1904 <context context-type="linenumber">1</context>
2135 </context-group> 1905 </context-group>
2136 </trans-unit> 1906 </trans-unit>
2137 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936"> 1907 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2138 <source>Following</source> 1908 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2139 <target>Odebíráno</target> 1909 <target>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> odebráno z černé listiny.</target>
2140 <context-group name="null">
2141 <context context-type="linenumber">1</context>
2142 </context-group>
2143 </trans-unit>
2144 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
2145 <source>Follow</source>
2146 <target>Odebírat</target>
2147 <context-group name="null">
2148 <context context-type="linenumber">1</context>
2149 </context-group>
2150 </trans-unit>
2151 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
2152 <source>Followers</source>
2153 <target>Odběratelé</target>
2154 <context-group name="null"> 1910 <context-group name="null">
2155 <context context-type="linenumber">1</context> 1911 <context context-type="linenumber">1</context>
2156 </context-group> 1912 </context-group>
@@ -2204,27 +1960,6 @@ When you will upload a video in this channel, the video support field will be au
2204 <context context-type="linenumber">1</context> 1960 <context context-type="linenumber">1</context>
2205 </context-group> 1961 </context-group>
2206 </trans-unit> 1962 </trans-unit>
2207 <trans-unit id="4733ad1d7e63960438c0203b9a64f165b5fc84f2">
2208 <source>Do you really want to remove this video from the blacklist ? It will be available again in the videos list.</source>
2209 <target>Opravdu chcete odebrat toto video z černé listiny? Tato akce jej učiní znovu dostupným v seznamu videí.</target>
2210 <context-group name="null">
2211 <context context-type="linenumber">1</context>
2212 </context-group>
2213 </trans-unit>
2214 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2215 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2216 <target>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> odebráno z černé listiny.</target>
2217 <context-group name="null">
2218 <context context-type="linenumber">1</context>
2219 </context-group>
2220 </trans-unit>
2221 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2222 <source>The new password and the confirmed password do not correspond.</source>
2223 <target>Nové heslo a jeho potvrzení nesouhlasí.</target>
2224 <context-group name="null">
2225 <context context-type="linenumber">1</context>
2226 </context-group>
2227 </trans-unit>
2228 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc"> 1963 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc">
2229 <source>Password updated.</source> 1964 <source>Password updated.</source>
2230 <target>Heslo aktualizováno.</target> 1965 <target>Heslo aktualizováno.</target>
@@ -2351,6 +2086,13 @@ When you will upload a video in this channel, the video support field will be au
2351 <context context-type="linenumber">1</context> 2086 <context context-type="linenumber">1</context>
2352 </context-group> 2087 </context-group>
2353 </trans-unit> 2088 </trans-unit>
2089 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2090 <source>Unable to find user id or verification string.</source>
2091 <target>Nelze najít uživatelovo id nebo verifikační řetězec.</target>
2092 <context-group name="null">
2093 <context context-type="linenumber">1</context>
2094 </context-group>
2095 </trans-unit>
2354 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7"> 2096 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7">
2355 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>. 2097 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>.
2356</source> 2098</source>
@@ -2381,13 +2123,6 @@ When you will upload a video in this channel, the video support field will be au
2381 <context context-type="linenumber">1</context> 2123 <context context-type="linenumber">1</context>
2382 </context-group> 2124 </context-group>
2383 </trans-unit> 2125 </trans-unit>
2384 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2385 <source>Unable to find user id or verification string.</source>
2386 <target>Nelze najít uživatelovo id nebo verifikační řetězec.</target>
2387 <context-group name="null">
2388 <context context-type="linenumber">1</context>
2389 </context-group>
2390 </trans-unit>
2391 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26"> 2126 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26">
2392 <source>Your password has been successfully reset!</source> 2127 <source>Your password has been successfully reset!</source>
2393 <target>Vaše heslo bylo úspěšně resetováno!</target> 2128 <target>Vaše heslo bylo úspěšně resetováno!</target>
@@ -2493,13 +2228,6 @@ When you will upload a video in this channel, the video support field will be au
2493 <context context-type="linenumber">1</context> 2228 <context context-type="linenumber">1</context>
2494 </context-group> 2229 </context-group>
2495 </trans-unit> 2230 </trans-unit>
2496 <trans-unit id="ba88636d27c1a6a7e1f75ff57ec182b30b851c2e">
2497 <source>Transcoding threads must be greater than 1.</source>
2498 <target>Počet vláken pro překódování musí být větší než 1.</target>
2499 <context-group name="null">
2500 <context context-type="linenumber">1</context>
2501 </context-group>
2502 </trans-unit>
2503 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149"> 2231 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149">
2504 <source>Username is required.</source> 2232 <source>Username is required.</source>
2505 <target>Uživatelské jméno je vyžadováno.</target> 2233 <target>Uživatelské jméno je vyžadováno.</target>
@@ -2570,6 +2298,13 @@ When you will upload a video in this channel, the video support field will be au
2570 <context context-type="linenumber">1</context> 2298 <context context-type="linenumber">1</context>
2571 </context-group> 2299 </context-group>
2572 </trans-unit> 2300 </trans-unit>
2301 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2302 <source>The new password and the confirmed password do not correspond.</source>
2303 <target>Nové heslo a jeho potvrzení nesouhlasí.</target>
2304 <context-group name="null">
2305 <context context-type="linenumber">1</context>
2306 </context-group>
2307 </trans-unit>
2573 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf"> 2308 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf">
2574 <source>Video quota is required.</source> 2309 <source>Video quota is required.</source>
2575 <target>Limit na videa je vyžadován.</target> 2310 <target>Limit na videa je vyžadován.</target>
@@ -3109,6 +2844,41 @@ When you will upload a video in this channel, the video support field will be au
3109 <context context-type="linenumber">1</context> 2844 <context context-type="linenumber">1</context>
3110 </context-group> 2845 </context-group>
3111 </trans-unit> 2846 </trans-unit>
2847 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
2848 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
2849 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
2850 <context-group name="null">
2851 <context context-type="linenumber">1</context>
2852 </context-group>
2853 </trans-unit>
2854 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
2855 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
2856 <target>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</target>
2857 <context-group name="null">
2858 <context context-type="linenumber">1</context>
2859 </context-group>
2860 </trans-unit>
2861 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
2862 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
2863 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> FullHD videí</target>
2864 <context-group name="null">
2865 <context context-type="linenumber">1</context>
2866 </context-group>
2867 </trans-unit>
2868 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
2869 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
2870 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> HD videí</target>
2871 <context-group name="null">
2872 <context context-type="linenumber">1</context>
2873 </context-group>
2874 </trans-unit>
2875 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
2876 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
2877 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> videí průměrné kvality</target>
2878 <context-group name="null">
2879 <context context-type="linenumber">1</context>
2880 </context-group>
2881 </trans-unit>
3112 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d"> 2882 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d">
3113 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source> 2883 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source>
3114 <target>před <x id="INTERPOLATION" equiv-text="{{interval}}"/> lety</target> 2884 <target>před <x id="INTERPOLATION" equiv-text="{{interval}}"/> lety</target>
@@ -3263,41 +3033,6 @@ When you will upload a video in this channel, the video support field will be au
3263 <context context-type="linenumber">1</context> 3033 <context context-type="linenumber">1</context>
3264 </context-group> 3034 </context-group>
3265 </trans-unit> 3035 </trans-unit>
3266 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3267 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3268 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3269 <context-group name="null">
3270 <context context-type="linenumber">1</context>
3271 </context-group>
3272 </trans-unit>
3273 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3274 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3275 <target>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</target>
3276 <context-group name="null">
3277 <context context-type="linenumber">1</context>
3278 </context-group>
3279 </trans-unit>
3280 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3281 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3282 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> FullHD videí</target>
3283 <context-group name="null">
3284 <context context-type="linenumber">1</context>
3285 </context-group>
3286 </trans-unit>
3287 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3288 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3289 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> HD videí</target>
3290 <context-group name="null">
3291 <context context-type="linenumber">1</context>
3292 </context-group>
3293 </trans-unit>
3294 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3295 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3296 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> videí průměrné kvality</target>
3297 <context-group name="null">
3298 <context context-type="linenumber">1</context>
3299 </context-group>
3300 </trans-unit>
3301 <trans-unit id="24840228f2826b66252cfcaab9820b1c7e0da264"> 3036 <trans-unit id="24840228f2826b66252cfcaab9820b1c7e0da264">
3302 <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> 3037 <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source>
3303 <target>Přiřazená data (tagy, popis...) budou ztraceny, opravdu chcete opustit tuto stránku?</target> 3038 <target>Přiřazená data (tagy, popis...) budou ztraceny, opravdu chcete opustit tuto stránku?</target>
@@ -3326,13 +3061,6 @@ When you will upload a video in this channel, the video support field will be au
3326 <context context-type="linenumber">1</context> 3061 <context context-type="linenumber">1</context>
3327 </context-group> 3062 </context-group>
3328 </trans-unit> 3063 </trans-unit>
3329 <trans-unit id="d31d39e8ee9b2f20bffb3468ee062eaa5409c59f">
3330 <source>Your video quota is exceeded with this video (video size: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, used: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, quota: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</source>
3331 <target>Váš limit na videa byl překročen tímto videem (velikost videa: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, použito: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, limit: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</target>
3332 <context-group name="null">
3333 <context context-type="linenumber">1</context>
3334 </context-group>
3335 </trans-unit>
3336 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce"> 3064 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce">
3337 <source>Video published.</source> 3065 <source>Video published.</source>
3338 <target>Video publikováno</target> 3066 <target>Video publikováno</target>
@@ -3368,20 +3096,6 @@ When you will upload a video in this channel, the video support field will be au
3368 <context context-type="linenumber">1</context> 3096 <context context-type="linenumber">1</context>
3369 </context-group> 3097 </context-group>
3370 </trans-unit> 3098 </trans-unit>
3371 <trans-unit id="23b2c2f4dd69e29c3bff00469e259dcb01de5633">
3372 <source>Do you really want to blacklist this video?</source>
3373 <target>Opravdu chcete přidat toto video na černou listinu?</target>
3374 <context-group name="null">
3375 <context context-type="linenumber">1</context>
3376 </context-group>
3377 </trans-unit>
3378 <trans-unit id="cafd8ec6020e69f241a107b1cb7081bd9e773d4e">
3379 <source>Video <x id="INTERPOLATION" equiv-text="{{videoName}}"/> had been blacklisted.</source>
3380 <target>Video <x id="INTERPOLATION" equiv-text="{{videoName}}"/> bylo přidáno na černou listinu.</target>
3381 <context-group name="null">
3382 <context context-type="linenumber">1</context>
3383 </context-group>
3384 </trans-unit>
3385 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95"> 3099 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95">
3386 <source>Do you really want to delete this video?</source> 3100 <source>Do you really want to delete this video?</source>
3387 <target>Opravdu chcete odstranit toto video?</target> 3101 <target>Opravdu chcete odstranit toto video?</target>
diff --git a/client/src/locale/target/angular_de_DE.xml b/client/src/locale/target/angular_de_DE.xml
index 468d66164..82093934a 100644
--- a/client/src/locale/target/angular_de_DE.xml
+++ b/client/src/locale/target/angular_de_DE.xml
@@ -3,17 +3,6 @@
3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1"> 3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1">
4 <file source-language="en-US" datatype="plaintext" original="" target-language="de-DE"> 4 <file source-language="en-US" datatype="plaintext" original="" target-language="de-DE">
5 <body> 5 <body>
6 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
7 <source>
8 Cancel
9 </source>
10 <target>
11 Abbrechen
12 </target>
13 <context-group name="null">
14 <context context-type="linenumber">45</context>
15 </context-group>
16 </trans-unit>
17 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46"> 6 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46">
18 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source> 7 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source>
19 <target>(zulässige Datei-Erweiterungen: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, maximale Größe: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target> 8 <target>(zulässige Datei-Erweiterungen: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, maximale Größe: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target>
@@ -25,14 +14,21 @@
25 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 14 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
26 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> Aufrufe</target> 15 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> Aufrufe</target>
27 <context-group name="null"> 16 <context-group name="null">
28 <context context-type="linenumber">34</context> 17 <context context-type="linenumber">12</context>
18 </context-group>
19 </trans-unit>
20 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7">
21 <source>Delete</source>
22 <target>Löschen</target>
23 <context-group name="null">
24 <context context-type="linenumber">15</context>
29 </context-group> 25 </context-group>
30 </trans-unit> 26 </trans-unit>
31 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> 27 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c">
32 <source>Edit</source> 28 <source>Edit</source>
33 <target>Bearbeiten</target> 29 <target>Bearbeiten</target>
34 <context-group name="null"> 30 <context-group name="null">
35 <context context-type="linenumber">3</context> 31 <context context-type="linenumber">5</context>
36 </context-group> 32 </context-group>
37 </trans-unit> 33 </trans-unit>
38 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> 34 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d">
@@ -46,7 +42,7 @@
46 <source>Complete preview</source> 42 <source>Complete preview</source>
47 <target>Vollständige Vorschau</target> 43 <target>Vollständige Vorschau</target>
48 <context-group name="null"> 44 <context-group name="null">
49 <context context-type="linenumber">10</context> 45 <context context-type="linenumber">13</context>
50 </context-group> 46 </context-group>
51 </trans-unit> 47 </trans-unit>
52 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> 48 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f">
@@ -56,6 +52,13 @@
56 <context context-type="linenumber">18</context> 52 <context context-type="linenumber">18</context>
57 </context-group> 53 </context-group>
58 </trans-unit> 54 </trans-unit>
55 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
56 <source>Video quota</source>
57 <target>Videokontingent</target>
58 <context-group name="null">
59 <context context-type="linenumber">19</context>
60 </context-group>
61 </trans-unit>
59 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea"> 62 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea">
60 <source> 63 <source>
61 Login 64 Login
@@ -71,14 +74,14 @@
71 <source>User</source> 74 <source>User</source>
72 <target>Benutzer</target> 75 <target>Benutzer</target>
73 <context-group name="null"> 76 <context-group name="null">
74 <context context-type="linenumber">11</context> 77 <context context-type="linenumber">13</context>
75 </context-group> 78 </context-group>
76 </trans-unit> 79 </trans-unit>
77 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> 80 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478">
78 <source>Username or email address</source> 81 <source>Username or email address</source>
79 <target>Benutzername und E-Mail-Adresse</target> 82 <target>Benutzername und E-Mail-Adresse</target>
80 <context-group name="null"> 83 <context-group name="null">
81 <context context-type="linenumber">13</context> 84 <context context-type="linenumber">15</context>
82 </context-group> 85 </context-group>
83 </trans-unit> 86 </trans-unit>
84 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87"> 87 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87">
@@ -89,7 +92,7 @@
89 oder erstelle ein Konto 92 oder erstelle ein Konto
90 </target> 93 </target>
91 <context-group name="null"> 94 <context-group name="null">
92 <context context-type="linenumber">16</context> 95 <context context-type="linenumber">18</context>
93 </context-group> 96 </context-group>
94 </trans-unit> 97 </trans-unit>
95 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b"> 98 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b">
@@ -100,14 +103,14 @@
100 oder erstelle ein Konto auf einer anderen Instanz 103 oder erstelle ein Konto auf einer anderen Instanz
101 </target> 104 </target>
102 <context-group name="null"> 105 <context-group name="null">
103 <context context-type="linenumber">20</context> 106 <context context-type="linenumber">22</context>
104 </context-group> 107 </context-group>
105 </trans-unit> 108 </trans-unit>
106 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3"> 109 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3">
107 <source>User registration is not allowed on this instance, but you can register on many others!</source> 110 <source>User registration is not allowed on this instance, but you can register on many others!</source>
108 <target>Die Benutzerregistrierung ist hier nicht möglich, dafür auf vielen anderen Instanzen!</target> 111 <target>Die Benutzerregistrierung ist hier nicht möglich, dafür auf vielen anderen Instanzen!</target>
109 <context-group name="null"> 112 <context-group name="null">
110 <context context-type="linenumber">26</context> 113 <context context-type="linenumber">28</context>
111 </context-group> 114 </context-group>
112 </trans-unit> 115 </trans-unit>
113 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> 116 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407">
@@ -121,35 +124,35 @@
121 <source>I forgot my password</source> 124 <source>I forgot my password</source>
122 <target>Ich habe mein Passwort vergessen.</target> 125 <target>Ich habe mein Passwort vergessen.</target>
123 <context-group name="null"> 126 <context-group name="null">
124 <context context-type="linenumber">42</context> 127 <context context-type="linenumber">44</context>
125 </context-group> 128 </context-group>
126 </trans-unit> 129 </trans-unit>
127 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681"> 130 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681">
128 <source>Forgot your password</source> 131 <source>Forgot your password</source>
129 <target>Passwort vergessen</target> 132 <target>Passwort vergessen</target>
130 <context-group name="null"> 133 <context-group name="null">
131 <context context-type="linenumber">59</context> 134 <context context-type="linenumber">57</context>
132 </context-group> 135 </context-group>
133 </trans-unit> 136 </trans-unit>
134 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc"> 137 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc">
135 <source>Email</source> 138 <source>Email</source>
136 <target>E-Mail</target> 139 <target>E-Mail</target>
137 <context-group name="null"> 140 <context-group name="null">
138 <context context-type="linenumber">17</context> 141 <context context-type="linenumber">8</context>
139 </context-group> 142 </context-group>
140 </trans-unit> 143 </trans-unit>
141 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529"> 144 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529">
142 <source>Email address</source> 145 <source>Email address</source>
143 <target>E-Mail-Adresse</target> 146 <target>E-Mail-Adresse</target>
144 <context-group name="null"> 147 <context-group name="null">
145 <context context-type="linenumber">66</context> 148 <context context-type="linenumber">10</context>
146 </context-group> 149 </context-group>
147 </trans-unit> 150 </trans-unit>
148 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55"> 151 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55">
149 <source>Send me an email to reset my password</source> 152 <source>Send me an email to reset my password</source>
150 <target>Mir eine E-Mail schicken, um mein Passwort zurückzusetzen</target> 153 <target>Mir eine E-Mail schicken, um mein Passwort zurückzusetzen</target>
151 <context-group name="null"> 154 <context-group name="null">
152 <context context-type="linenumber">77</context> 155 <context context-type="linenumber">75</context>
153 </context-group> 156 </context-group>
154 </trans-unit> 157 </trans-unit>
155 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa"> 158 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa">
@@ -194,25 +197,6 @@ Konto erstellen</target>
194 <context context-type="linenumber">3</context> 197 <context context-type="linenumber">3</context>
195 </context-group> 198 </context-group>
196 </trans-unit> 199 </trans-unit>
197 <trans-unit id="a6807b834e01ce165aa61fad157b0ff4288b6bf1">
198 <source>Initial video quota:</source>
199 <target>Kontingent für Videos zu Beginn:</target>
200 <context-group name="null">
201 <context context-type="linenumber">8</context>
202 </context-group>
203 </trans-unit>
204 <trans-unit id="87b6b2c26215c5e712d3bfe4cc86ba53bc23451c">
205 <source>
206 Unlimited
207 </source>
208 <target>
209
210 Unbegrenzt
211 </target>
212 <context-group name="null">
213 <context context-type="linenumber">16</context>
214 </context-group>
215 </trans-unit>
216 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> 200 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48">
217 <source>Username</source> 201 <source>Username</source>
218 <target>Nutzername</target> 202 <target>Nutzername</target>
@@ -224,14 +208,14 @@ Konto erstellen</target>
224 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source> 208 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source>
225 <target>Ich habe die &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Bestimmungen&lt;/a&gt; dieser Instanz gelesen und stimme ihnen zu.</target> 209 <target>Ich habe die &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Bestimmungen&lt;/a&gt; dieser Instanz gelesen und stimme ihnen zu.</target>
226 <context-group name="null"> 210 <context-group name="null">
227 <context context-type="linenumber">60</context> 211 <context context-type="linenumber">54</context>
228 </context-group> 212 </context-group>
229 </trans-unit> 213 </trans-unit>
230 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4"> 214 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4">
231 <source>Signup</source> 215 <source>Signup</source>
232 <target>Registrieren</target> 216 <target>Registrieren</target>
233 <context-group name="null"> 217 <context-group name="null">
234 <context context-type="linenumber">86</context> 218 <context context-type="linenumber">88</context>
235 </context-group> 219 </context-group>
236 </trans-unit> 220 </trans-unit>
237 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a"> 221 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a">
@@ -274,103 +258,70 @@ Konto erstellen</target>
274 <source>Change the language</source> 258 <source>Change the language</source>
275 <target>Sprache wechseln</target> 259 <target>Sprache wechseln</target>
276 <context-group name="null"> 260 <context-group name="null">
277 <context context-type="linenumber">76</context> 261 <context context-type="linenumber">88</context>
278 </context-group>
279 </trans-unit>
280 <trans-unit id="b8ccc4f1b3f839fca9bd59e072f715fd487d540f">
281 <source>
282 My public profile
283 </source>
284 <target>
285 Mein öffentliches Profil
286 </target>
287 <context-group name="null">
288 <context context-type="linenumber">19</context>
289 </context-group>
290 </trans-unit>
291 <trans-unit id="c84b721e9325c9cce20d92f4dbd66898ab5ec947">
292 <source>
293 My account
294 </source>
295 <target>
296 Mein Konto
297 </target>
298 <context-group name="null">
299 <context context-type="linenumber">23</context>
300 </context-group>
301 </trans-unit>
302 <trans-unit id="ba7378cdaaa60b4fee17a551b232ad3512dac17d">
303 <source>
304 Log out
305 </source>
306 <target>
307 Abmelden
308 </target>
309 <context-group name="null">
310 <context context-type="linenumber">27</context>
311 </context-group> 262 </context-group>
312 </trans-unit> 263 </trans-unit>
313 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> 264 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9">
314 <source>Login</source> 265 <source>Login</source>
315 <target>Anmelden</target> 266 <target>Anmelden</target>
316 <context-group name="null"> 267 <context-group name="null">
317 <context context-type="linenumber">36</context> 268 <context context-type="linenumber">38</context>
318 </context-group> 269 </context-group>
319 </trans-unit> 270 </trans-unit>
320 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> 271 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87">
321 <source>Create an account</source> 272 <source>Create an account</source>
322 <target>Konto erstellen</target> 273 <target>Konto erstellen</target>
323 <context-group name="null"> 274 <context-group name="null">
324 <context context-type="linenumber">37</context> 275 <context context-type="linenumber">39</context>
325 </context-group> 276 </context-group>
326 </trans-unit> 277 </trans-unit>
327 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238"> 278 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238">
328 <source>Videos</source> 279 <source>Videos</source>
329 <target>Videos</target> 280 <target>Videos</target>
330 <context-group name="null"> 281 <context-group name="null">
331 <context context-type="linenumber">21</context> 282 <context context-type="linenumber">24</context>
332 </context-group> 283 </context-group>
333 </trans-unit> 284 </trans-unit>
334 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> 285 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807">
335 <source>Trending</source> 286 <source>Trending</source>
336 <target>Trend</target> 287 <target>Beliebt</target>
337 <context-group name="null"> 288 <context-group name="null">
338 <context context-type="linenumber">45</context> 289 <context context-type="linenumber">57</context>
339 </context-group> 290 </context-group>
340 </trans-unit> 291 </trans-unit>
341 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> 292 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1">
342 <source>Recently added</source> 293 <source>Recently added</source>
343 <target>Kürzlich hinzugfügt</target> 294 <target>Kürzlich hinzugefügt</target>
344 <context-group name="null"> 295 <context-group name="null">
345 <context context-type="linenumber">50</context> 296 <context context-type="linenumber">62</context>
346 </context-group> 297 </context-group>
347 </trans-unit> 298 </trans-unit>
348 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d"> 299 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d">
349 <source>Local</source> 300 <source>Local</source>
350 <target>Lokal</target> 301 <target>Lokal</target>
351 <context-group name="null"> 302 <context-group name="null">
352 <context context-type="linenumber">55</context> 303 <context context-type="linenumber">67</context>
353 </context-group> 304 </context-group>
354 </trans-unit> 305 </trans-unit>
355 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f"> 306 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f">
356 <source>More</source> 307 <source>More</source>
357 <target>Mehr</target> 308 <target>Mehr</target>
358 <context-group name="null"> 309 <context-group name="null">
359 <context context-type="linenumber">60</context> 310 <context context-type="linenumber">72</context>
360 </context-group> 311 </context-group>
361 </trans-unit> 312 </trans-unit>
362 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> 313 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919">
363 <source>Administration</source> 314 <source>Administration</source>
364 <target>Administration</target> 315 <target>Administration</target>
365 <context-group name="null"> 316 <context-group name="null">
366 <context context-type="linenumber">64</context> 317 <context context-type="linenumber">76</context>
367 </context-group> 318 </context-group>
368 </trans-unit> 319 </trans-unit>
369 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> 320 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a">
370 <source>About</source> 321 <source>About</source>
371 <target>Info</target> 322 <target>Info</target>
372 <context-group name="null"> 323 <context-group name="null">
373 <context context-type="linenumber">23</context> 324 <context context-type="linenumber">25</context>
374 </context-group> 325 </context-group>
375 </trans-unit> 326 </trans-unit>
376 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> 327 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599">
@@ -433,21 +384,21 @@ Konto erstellen</target>
433 <source>Category</source> 384 <source>Category</source>
434 <target>Kategorie</target> 385 <target>Kategorie</target>
435 <context-group name="null"> 386 <context-group name="null">
436 <context context-type="linenumber">148</context> 387 <context context-type="linenumber">166</context>
437 </context-group> 388 </context-group>
438 </trans-unit> 389 </trans-unit>
439 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c"> 390 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c">
440 <source>Licence</source> 391 <source>Licence</source>
441 <target>Lizenz</target> 392 <target>Lizenz</target>
442 <context-group name="null"> 393 <context-group name="null">
443 <context context-type="linenumber">157</context> 394 <context context-type="linenumber">175</context>
444 </context-group> 395 </context-group>
445 </trans-unit> 396 </trans-unit>
446 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619"> 397 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619">
447 <source>Language</source> 398 <source>Language</source>
448 <target>Sprache</target> 399 <target>Sprache</target>
449 <context-group name="null"> 400 <context-group name="null">
450 <context context-type="linenumber">166</context> 401 <context context-type="linenumber">184</context>
451 </context-group> 402 </context-group>
452 </trans-unit> 403 </trans-unit>
453 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8"> 404 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8">
@@ -482,7 +433,7 @@ Konto erstellen</target>
482 <source>Instance</source> 433 <source>Instance</source>
483 <target>Instanz</target> 434 <target>Instanz</target>
484 <context-group name="null"> 435 <context-group name="null">
485 <context context-type="linenumber">7</context> 436 <context context-type="linenumber">8</context>
486 </context-group> 437 </context-group>
487 </trans-unit> 438 </trans-unit>
488 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390"> 439 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390">
@@ -507,14 +458,14 @@ Konto erstellen</target>
507 <source>Description</source> 458 <source>Description</source>
508 <target>Beschreibung</target> 459 <target>Beschreibung</target>
509 <context-group name="null"> 460 <context-group name="null">
510 <context context-type="linenumber">23</context> 461 <context context-type="linenumber">26</context>
511 </context-group> 462 </context-group>
512 </trans-unit> 463 </trans-unit>
513 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774"> 464 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774">
514 <source>Terms</source> 465 <source>Terms</source>
515 <target>Bestimmungen</target> 466 <target>Bestimmungen</target>
516 <context-group name="null"> 467 <context-group name="null">
517 <context context-type="linenumber">43</context> 468 <context context-type="linenumber">44</context>
518 </context-group> 469 </context-group>
519 </trans-unit> 470 </trans-unit>
520 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27"> 471 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27">
@@ -580,7 +531,7 @@ Konto erstellen</target>
580 It is a free and open-source software, under the <x id="START_LINK" ctype="x-a" equiv-text="&lt;a&gt;"/>AGPLv3 licence<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/>. 531 It is a free and open-source software, under the <x id="START_LINK" ctype="x-a" equiv-text="&lt;a&gt;"/>AGPLv3 licence<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/>.
581 </source> 532 </source>
582 <target> 533 <target>
583 Es ist eine freie Open Source Software unter der <x id="START_LINK" ctype="x-a" equiv-text="&lt;a&gt;"/>AGPLv3 Lizenz<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/>. 534 Es ist freie Open Source Software, die unter der <x id="START_LINK" ctype="x-a" equiv-text="&lt;a&gt;"/>AGPLv3 Lizenz<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/> steht.
584 </target> 535 </target>
585 <context-group name="null"> 536 <context-group name="null">
586 <context context-type="linenumber">8</context> 537 <context context-type="linenumber">8</context>
@@ -591,7 +542,7 @@ Konto erstellen</target>
591 For more information, please visit <x id="START_LINK" ctype="x-a" equiv-text="&lt;a&gt;"/>joinpeertube.org<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/>. 542 For more information, please visit <x id="START_LINK" ctype="x-a" equiv-text="&lt;a&gt;"/>joinpeertube.org<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/>.
592 </source> 543 </source>
593 <target> 544 <target>
594 Für mehr Informationen, besuche <x id="START_LINK" ctype="x-a" equiv-text="&lt;a&gt;"/>joinpeertube.org<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/>. 545 Besuche für weitere Informationen <x id="START_LINK" ctype="x-a" equiv-text="&lt;a&gt;"/>joinpeertube.org<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/>.
595 </target> 546 </target>
596 <context-group name="null"> 547 <context-group name="null">
597 <context context-type="linenumber">12</context> 548 <context context-type="linenumber">12</context>
@@ -611,7 +562,7 @@ Konto erstellen</target>
611 </source> 562 </source>
612 <target> 563 <target>
613 PeerTube verwendet das BitTorrent-Protokoll, um Bandbreite zwischen den Usern aufzuteilen. 564 PeerTube verwendet das BitTorrent-Protokoll, um Bandbreite zwischen den Usern aufzuteilen.
614 Das setzt voraus, dass deine IP Adresse auf dem BitTorrent-Tracker zwischengespeichert wird, solange du dir ein Video ansiehst oder herunterlädst. 565 Das setzt voraus, dass deine IP-Adresse auf dem BitTorrent-Tracker zwischengespeichert wird, solange du dir ein Video ansiehst oder herunterlädst.
615 </target> 566 </target>
616 <context-group name="null"> 567 <context-group name="null">
617 <context context-type="linenumber">20</context> 568 <context context-type="linenumber">20</context>
@@ -630,7 +581,7 @@ Konto erstellen</target>
630 In practice, this is much more difficult because: 581 In practice, this is much more difficult because:
631 </source> 582 </source>
632 <target> 583 <target>
633 Theoretisch könnte jemand mit genug technischer Erfahrung herausfinden, welche IP welches Video herunterlädt. 584 Theoretisch könnte jemand mit genug technischer Erfahrung herausfinden, welche IP-Adresse welches Video herunterlädt.
634 In der Praxis ist das jedoch sehr schwierig, denn: 585 In der Praxis ist das jedoch sehr schwierig, denn:
635 </target> 586 </target>
636 <context-group name="null"> 587 <context-group name="null">
@@ -739,7 +690,7 @@ Konto erstellen</target>
739 </source> 690 </source>
740 <target> 691 <target>
741 Die Gefahren für die Privatsphäre sind bei YouTube anderer Art als bei PeerTube. 692 Die Gefahren für die Privatsphäre sind bei YouTube anderer Art als bei PeerTube.
742 YouTube speichert eine große Menge persönlicher Daten (nicht nur die IP), um sie dann zu analysieren und dich zu tracken. 693 YouTube speichert eine große Menge persönlicher Daten (nicht nur die IP-Adresse), um sie dann zu analysieren und dich zu verfolgen.
743 Außerdem ist YouTube Teil von Google/Alphabet, einer Firma, die dich über mehrere Webseiten hinweg verfolgt (mit AdSense oder Google Analytics). 694 Außerdem ist YouTube Teil von Google/Alphabet, einer Firma, die dich über mehrere Webseiten hinweg verfolgt (mit AdSense oder Google Analytics).
744 </target> 695 </target>
745 <context-group name="null"> 696 <context-group name="null">
@@ -760,9 +711,10 @@ Konto erstellen</target>
760 Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense. 711 Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense.
761 </source> 712 </source>
762 <target> 713 <target>
763 Jedes Mal, wenn du eine Website aufrufst, ist deine IP-Adresse nicht nur für Seite, sondern auch für ISPs/Router/Tracker/CDNs und andere sichtbar. 714 Jedes Mal, wenn du eine Website aufrufst, ist deine IP-Adresse nicht nur für die besuchte Seite, sondern auch für eine Reihe weiterer Akteure sichtbar, darunter Tracker und Content-Delivery-Netzwerke.
764PeerTube sagt da ganz offen und transparent: Um deine Privatsphäre zu schützen, empfehlen wir ein VPN oder einen Tor Browser zu verwenden. 715 PeerTube sagt da ganz offen und transparent: Um deine Privatsphäre zu schützen, empfehlen wir, ein VPN oder den Tor Browser zu verwenden.
765P2P ist nicht der Grund für die fehlende Anonymität.</target> 716 P2P ist nicht der Grund für die fehlende Anonymität.
717 </target>
766 <context-group name="null"> 718 <context-group name="null">
767 <context context-type="linenumber">77</context> 719 <context context-type="linenumber">77</context>
768 </context-group> 720 </context-group>
@@ -854,7 +806,7 @@ P2P ist nicht der Grund für die fehlende Anonymität.</target>
854 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source> 806 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source>
855 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> Abonnenten</target> 807 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> Abonnenten</target>
856 <context-group name="null"> 808 <context-group name="null">
857 <context context-type="linenumber">11</context> 809 <context context-type="linenumber">14</context>
858 </context-group> 810 </context-group>
859 </trans-unit> 811 </trans-unit>
860 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f"> 812 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f">
@@ -868,75 +820,75 @@ P2P ist nicht der Grund für die fehlende Anonymität.</target>
868 <source>Name</source> 820 <source>Name</source>
869 <target>Name</target> 821 <target>Name</target>
870 <context-group name="null"> 822 <context-group name="null">
871 <context context-type="linenumber">9</context> 823 <context context-type="linenumber">12</context>
872 </context-group> 824 </context-group>
873 </trans-unit> 825 </trans-unit>
874 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b"> 826 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b">
875 <source>Short description</source> 827 <source>Short description</source>
876 <target>Kurze Beschreibung</target> 828 <target>Kurze Beschreibung</target>
877 <context-group name="null"> 829 <context-group name="null">
878 <context context-type="linenumber">21</context> 830 <context context-type="linenumber">22</context>
879 </context-group> 831 </context-group>
880 </trans-unit> 832 </trans-unit>
881 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003"> 833 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003">
882 <source>Default client route</source> 834 <source>Default client route</source>
883 <target>Standardpfad (Client)</target> 835 <target>Standardpfad (Client)</target>
884 <context-group name="null"> 836 <context-group name="null">
885 <context context-type="linenumber">54</context> 837 <context context-type="linenumber">55</context>
886 </context-group> 838 </context-group>
887 </trans-unit> 839 </trans-unit>
888 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948"> 840 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948">
889 <source>Videos Trending</source> 841 <source>Videos Trending</source>
890 <target>Beliebte Videos</target> 842 <target>Beliebte Videos</target>
891 <context-group name="null"> 843 <context-group name="null">
892 <context context-type="linenumber">57</context> 844 <context context-type="linenumber">59</context>
893 </context-group> 845 </context-group>
894 </trans-unit> 846 </trans-unit>
895 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883"> 847 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883">
896 <source>Videos Recently Added</source> 848 <source>Videos Recently Added</source>
897 <target>Kürzlich hinzugfügt</target> 849 <target>Kürzlich hinzugefügte Videos</target>
898 <context-group name="null"> 850 <context-group name="null">
899 <context context-type="linenumber">58</context> 851 <context context-type="linenumber">60</context>
900 </context-group> 852 </context-group>
901 </trans-unit> 853 </trans-unit>
902 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f"> 854 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f">
903 <source>Local videos</source> 855 <source>Local videos</source>
904 <target>Lokale Videos</target> 856 <target>Lokale Videos</target>
905 <context-group name="null"> 857 <context-group name="null">
906 <context context-type="linenumber">59</context> 858 <context context-type="linenumber">61</context>
907 </context-group> 859 </context-group>
908 </trans-unit> 860 </trans-unit>
909 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9"> 861 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9">
910 <source>Policy on videos containing sensitive content</source> 862 <source>Policy on videos containing sensitive content</source>
911 <target>Verhalten bei Videos mit anstößigen Inhalten</target> 863 <target>Verhalten bei Videos mit anstößigen Inhalten</target>
912 <context-group name="null"> 864 <context-group name="null">
913 <context context-type="linenumber">68</context> 865 <context context-type="linenumber">70</context>
914 </context-group> 866 </context-group>
915 </trans-unit> 867 </trans-unit>
916 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df"> 868 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df">
917 <source>With &lt;strong&gt;Do not list&lt;/strong&gt; or &lt;strong&gt;Blur thumbnails&lt;/strong&gt;, a confirmation will be requested to watch the video.</source> 869 <source>With &lt;strong&gt;Do not list&lt;/strong&gt; or &lt;strong&gt;Blur thumbnails&lt;/strong&gt;, a confirmation will be requested to watch the video.</source>
918 <target>Mit &lt;strong&gt;Nicht listen&lt;/strong&gt; oder &lt;strong&gt;Thumbnails verschwommen machen&lt;/strong&gt; muss zum Ansehen des Videos eine Bestätigung angefragt werden.</target> 870 <target>Mit &lt;strong&gt;Nicht anzeigen&lt;/strong&gt; oder &lt;strong&gt;Vorschaubilder verschwommen anzeigen&lt;/strong&gt; muss zum Ansehen des Videos eine Bestätigung angefragt werden.</target>
919 <context-group name="null"> 871 <context-group name="null">
920 <context context-type="linenumber">6</context> 872 <context context-type="linenumber">6</context>
921 </context-group> 873 </context-group>
922 </trans-unit> 874 </trans-unit>
923 <trans-unit id="5e155c34fb3ed8159bf0a486a366cfbc6874f9fe"> 875 <trans-unit id="5e155c34fb3ed8159bf0a486a366cfbc6874f9fe">
924 <source>Do not list</source> 876 <source>Do not list</source>
925 <target>Nicht listen</target> 877 <target>Nicht anzeigen</target>
926 <context-group name="null"> 878 <context-group name="null">
927 <context context-type="linenumber">11</context> 879 <context context-type="linenumber">11</context>
928 </context-group> 880 </context-group>
929 </trans-unit> 881 </trans-unit>
930 <trans-unit id="aaa900149c2ca1575ac1918d1ded33fb69830ab2"> 882 <trans-unit id="aaa900149c2ca1575ac1918d1ded33fb69830ab2">
931 <source>Blur thumbnails</source> 883 <source>Blur thumbnails</source>
932 <target>Thumbnails verschwommen machen</target> 884 <target>Vorschaubilder verschwommen anzeigen</target>
933 <context-group name="null"> 885 <context-group name="null">
934 <context context-type="linenumber">12</context> 886 <context context-type="linenumber">12</context>
935 </context-group> 887 </context-group>
936 </trans-unit> 888 </trans-unit>
937 <trans-unit id="010d24ef3c43b2d8f45a4d6cba7d73e12ee1557e"> 889 <trans-unit id="010d24ef3c43b2d8f45a4d6cba7d73e12ee1557e">
938 <source>Display</source> 890 <source>Display</source>
939 <target>Anzeige</target> 891 <target>Zeigen</target>
940 <context-group name="null"> 892 <context-group name="null">
941 <context context-type="linenumber">13</context> 893 <context context-type="linenumber">13</context>
942 </context-group> 894 </context-group>
@@ -945,63 +897,63 @@ P2P ist nicht der Grund für die fehlende Anonymität.</target>
945 <source>Signup enabled</source> 897 <source>Signup enabled</source>
946 <target>Registrierung an</target> 898 <target>Registrierung an</target>
947 <context-group name="null"> 899 <context-group name="null">
948 <context context-type="linenumber">90</context> 900 <context context-type="linenumber">92</context>
949 </context-group> 901 </context-group>
950 </trans-unit> 902 </trans-unit>
951 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402"> 903 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402">
952 <source>Signup limit</source> 904 <source>Signup limit</source>
953 <target>Registrierungslimit</target> 905 <target>Registrierungslimit</target>
954 <context-group name="null"> 906 <context-group name="null">
955 <context context-type="linenumber">94</context> 907 <context context-type="linenumber">101</context>
956 </context-group> 908 </context-group>
957 </trans-unit> 909 </trans-unit>
958 <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36"> 910 <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36">
959 <source>Import</source> 911 <source>Import</source>
960 <target>Import</target> 912 <target>Importieren</target>
961 <context-group name="null"> 913 <context-group name="null">
962 <context context-type="linenumber">42</context> 914 <context context-type="linenumber">42</context>
963 </context-group> 915 </context-group>
964 </trans-unit> 916 </trans-unit>
965 <trans-unit id="e9964673c94eb0b4ff8088c84018217c031f31ce"> 917 <trans-unit id="e9964673c94eb0b4ff8088c84018217c031f31ce">
966 <source>Video import with HTTP enabled</source> 918 <source>Video import with HTTP enabled</source>
967 <target>Videoimport mit HTTP aktiviert</target> 919 <target>Video-Import über HTTP aktiviert</target>
968 <context-group name="null"> 920 <context-group name="null">
969 <context context-type="linenumber">108</context> 921 <context context-type="linenumber">115</context>
970 </context-group> 922 </context-group>
971 </trans-unit> 923 </trans-unit>
972 <trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e"> 924 <trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e">
973 <source>Video import with a torrent file or a magnet URI enabled</source> 925 <source>Video import with a torrent file or a magnet URI enabled</source>
974 <target>Videoimport mit einem Torrent oder ein Magnet URI aktiviert</target> 926 <target>Video-Import über eine Torrent-Datei oder einen Magnet-Link aktiviert</target>
975 <context-group name="null"> 927 <context-group name="null">
976 <context context-type="linenumber">113</context> 928 <context context-type="linenumber">120</context>
977 </context-group> 929 </context-group>
978 </trans-unit> 930 </trans-unit>
979 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011"> 931 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011">
980 <source>Administrator</source> 932 <source>Administrator</source>
981 <target>Administrator</target> 933 <target>Administrator</target>
982 <context-group name="null"> 934 <context-group name="null">
983 <context context-type="linenumber">116</context> 935 <context context-type="linenumber">123</context>
984 </context-group> 936 </context-group>
985 </trans-unit> 937 </trans-unit>
986 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> 938 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587">
987 <source>Admin email</source> 939 <source>Admin email</source>
988 <target>Admin E-Mail</target> 940 <target>Admin E-Mail</target>
989 <context-group name="null"> 941 <context-group name="null">
990 <context context-type="linenumber">119</context> 942 <context context-type="linenumber">126</context>
991 </context-group> 943 </context-group>
992 </trans-unit> 944 </trans-unit>
993 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be"> 945 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be">
994 <source>Users</source> 946 <source>Users</source>
995 <target>Benutzer</target> 947 <target>Benutzer</target>
996 <context-group name="null"> 948 <context-group name="null">
997 <context context-type="linenumber">129</context> 949 <context context-type="linenumber">136</context>
998 </context-group> 950 </context-group>
999 </trans-unit> 951 </trans-unit>
1000 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09"> 952 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09">
1001 <source>User default video quota</source> 953 <source>User default video quota</source>
1002 <target>Standardkontingent für die Videos eines Nutzers</target> 954 <target>Standardkontingent für die Videos eines Nutzers</target>
1003 <context-group name="null"> 955 <context-group name="null">
1004 <context context-type="linenumber">132</context> 956 <context context-type="linenumber">139</context>
1005 </context-group> 957 </context-group>
1006 </trans-unit> 958 </trans-unit>
1007 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5"> 959 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5">
@@ -1015,194 +967,133 @@ P2P ist nicht der Grund für die fehlende Anonymität.</target>
1015 <source>Twitter</source> 967 <source>Twitter</source>
1016 <target>Twitter</target> 968 <target>Twitter</target>
1017 <context-group name="null"> 969 <context-group name="null">
1018 <context context-type="linenumber">148</context> 970 <context context-type="linenumber">170</context>
1019 </context-group> 971 </context-group>
1020 </trans-unit> 972 </trans-unit>
1021 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> 973 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524">
1022 <source>Your Twitter username</source> 974 <source>Your Twitter username</source>
1023 <target>Dein Twitter-Benutzername</target> 975 <target>Dein Twitter-Benutzername</target>
1024 <context-group name="null"> 976 <context-group name="null">
1025 <context context-type="linenumber">151</context> 977 <context context-type="linenumber">173</context>
1026 </context-group> 978 </context-group>
1027 </trans-unit> 979 </trans-unit>
1028 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c"> 980 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c">
1029 <source>Indicates the Twitter account for the website or platform on which the content was published.</source> 981 <source>Indicates the Twitter account for the website or platform on which the content was published.</source>
1030 <target>Zeigt den Twitter-Account für die Webseite, auf der der Inhalt veröffentlicht wurde.</target> 982 <target>Zeigt den Twitter-Account für die Webseite, auf der der Inhalt veröffentlicht wurde.</target>
1031 <context-group name="null"> 983 <context-group name="null">
1032 <context context-type="linenumber">154</context> 984 <context context-type="linenumber">176</context>
1033 </context-group> 985 </context-group>
1034 </trans-unit> 986 </trans-unit>
1035 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605"> 987 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605">
1036 <source>Instance whitelisted by Twitter</source> 988 <source>Instance whitelisted by Twitter</source>
1037 <target>Instanz von Twitter vertraut</target> 989 <target>Instanz von Twitter vertraut</target>
1038 <context-group name="null"> 990 <context-group name="null">
1039 <context context-type="linenumber">167</context> 991 <context context-type="linenumber">189</context>
1040 </context-group>
1041 </trans-unit>
1042 <trans-unit id="3f008a1a07ca42c6ad258fde1bbd80ed74ada19b">
1043 <source>If your instance is whitelisted by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.&lt;br /&gt;
1044If the instance is not whitelisted, we use an image link card that will redirect on your PeerTube instance.&lt;br /&gt;&lt;br /&gt;
1045Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; to see if you instance is whitelisted.</source>
1046 <target>Wenn deine Instanz von Twitter zugelassen ist, wird ein Video-Player in den Twitter-Feed von PeerTube eingebettet.&lt;br /&gt;
1047Wenn die Instanz nicht zugelassen ist, benutzen wir ein Bild, dass auf deine Instanz verlinkt.&lt;br /&gt;&lt;br /&gt;
1048Setze hier deinen Haken, speichere die Einstellungen und teste die Adresse eines deiner Videos (https://example.com/videos/watch/blabla) auf &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; um herauszufinden, ob deine Instanz zugelassen ist.</target>
1049 <context-group name="null">
1050 <context context-type="linenumber">168</context>
1051 </context-group> 992 </context-group>
1052 </trans-unit> 993 </trans-unit>
1053 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> 994 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5">
1054 <source>Services</source> 995 <source>Services</source>
1055 <target>Dienste</target> 996 <target>Dienste</target>
1056 <context-group name="null"> 997 <context-group name="null">
1057 <context context-type="linenumber">146</context> 998 <context context-type="linenumber">168</context>
1058 </context-group> 999 </context-group>
1059 </trans-unit> 1000 </trans-unit>
1060 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490"> 1001 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490">
1061 <source>Transcoding</source> 1002 <source>Transcoding</source>
1062 <target>Transkodierung</target> 1003 <target>Transkodierung</target>
1063 <context-group name="null"> 1004 <context-group name="null">
1064 <context context-type="linenumber">176</context> 1005 <context context-type="linenumber">200</context>
1065 </context-group> 1006 </context-group>
1066 </trans-unit> 1007 </trans-unit>
1067 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> 1008 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9">
1068 <source>Transcoding enabled</source> 1009 <source>Transcoding enabled</source>
1069 <target>Transkodierung an</target> 1010 <target>Transkodierung an</target>
1070 <context-group name="null"> 1011 <context-group name="null">
1071 <context context-type="linenumber">180</context> 1012 <context context-type="linenumber">204</context>
1072 </context-group> 1013 </context-group>
1073 </trans-unit> 1014 </trans-unit>
1074 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> 1015 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f">
1075 <source>If you disable transcoding, many videos from your users will not work!</source> 1016 <source>If you disable transcoding, many videos from your users will not work!</source>
1076 <target>Wenn du die Transkodierung abschaltest, werden viele Videos nicht laufen!</target> 1017 <target>Wenn du die Transkodierung abschaltest, werden viele Videos nicht laufen!</target>
1077 <context-group name="null"> 1018 <context-group name="null">
1078 <context context-type="linenumber">181</context> 1019 <context context-type="linenumber">205</context>
1079 </context-group> 1020 </context-group>
1080 </trans-unit> 1021 </trans-unit>
1081 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> 1022 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2">
1082 <source>Transcoding threads</source> 1023 <source>Transcoding threads</source>
1083 <target>Transcodierungsthreads</target> 1024 <target>Transcodierungsthreads</target>
1084 <context-group name="null"> 1025 <context-group name="null">
1085 <context context-type="linenumber">187</context> 1026 <context context-type="linenumber">211</context>
1086 </context-group> 1027 </context-group>
1087 </trans-unit> 1028 </trans-unit>
1088 <trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500"> 1029 <trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500">
1089 <source>Resolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> enabled</source> 1030 <source>Resolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> enabled</source>
1090 <target>Eingestellte Auflösung: <x id="INTERPOLATION" equiv-text="{{resolution}}"/></target> 1031 <target>Eingestellte Auflösung: <x id="INTERPOLATION" equiv-text="{{resolution}}"/></target>
1091 <context-group name="null"> 1032 <context-group name="null">
1092 <context context-type="linenumber">203</context> 1033 <context context-type="linenumber">227</context>
1093 </context-group>
1094 </trans-unit>
1095 <trans-unit id="f86acfe567b75b7ea85af6f1cb3efb88085dfb9a">
1096 <source>
1097 Cache
1098
1099 <x id="START_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;my-help&gt;"/><x id="CLOSE_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;/my-help&gt;"/>
1100 </source>
1101 <target>
1102 Cache
1103
1104 <x id="START_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;my-help&gt;"/><x id="CLOSE_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;/my-help&gt;"/>
1105 </target>
1106 <context-group name="null">
1107 <context context-type="linenumber">209</context>
1108 </context-group> 1034 </context-group>
1109 </trans-unit> 1035 </trans-unit>
1110 <trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0"> 1036 <trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0">
1111 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source> 1037 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source>
1112 <target>Einige Dateien (Vorschau, Untertitel) werden nicht verteilt gespeichert. Wir laden sie direkt von der Ursprungsinstanz und speichern sie zwischen.</target> 1038 <target>Einige Dateien (Vorschau, Untertitel) werden nicht verteilt gespeichert. Wir laden sie direkt von der Ursprungsinstanz und speichern sie zwischen.</target>
1113 <context-group name="null"> 1039 <context-group name="null">
1114 <context context-type="linenumber">214</context> 1040 <context context-type="linenumber">238</context>
1115 </context-group> 1041 </context-group>
1116 </trans-unit> 1042 </trans-unit>
1117 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7"> 1043 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7">
1118 <source>Previews cache size</source> 1044 <source>Previews cache size</source>
1119 <target>Cachegröße der Vorschau</target> 1045 <target>Cachegröße der Vorschau</target>
1120 <context-group name="null"> 1046 <context-group name="null">
1121 <context context-type="linenumber">219</context> 1047 <context context-type="linenumber">243</context>
1122 </context-group> 1048 </context-group>
1123 </trans-unit> 1049 </trans-unit>
1124 <trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607"> 1050 <trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607">
1125 <source>Video captions cache size</source> 1051 <source>Video captions cache size</source>
1126 <target>Cachegröße der Untertitel</target> 1052 <target>Cachegröße der Untertitel</target>
1127 <context-group name="null"> 1053 <context-group name="null">
1128 <context context-type="linenumber">230</context> 1054 <context context-type="linenumber">254</context>
1129 </context-group> 1055 </context-group>
1130 </trans-unit> 1056 </trans-unit>
1131 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c"> 1057 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c">
1132 <source>Customizations</source> 1058 <source>Customizations</source>
1133 <target>Personalisierung</target> 1059 <target>Personalisierung</target>
1134 <context-group name="null"> 1060 <context-group name="null">
1135 <context context-type="linenumber">240</context> 1061 <context context-type="linenumber">264</context>
1136 </context-group> 1062 </context-group>
1137 </trans-unit> 1063 </trans-unit>
1138 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> 1064 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c">
1139 <source>JavaScript</source> 1065 <source>JavaScript</source>
1140 <target>JavaScript</target> 1066 <target>JavaScript</target>
1141 <context-group name="null"> 1067 <context-group name="null">
1142 <context context-type="linenumber">243</context> 1068 <context context-type="linenumber">267</context>
1143 </context-group> 1069 </context-group>
1144 </trans-unit> 1070 </trans-unit>
1145 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c"> 1071 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c">
1146 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source> 1072 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source>
1147 <target>Füge dein JavaScript ein.&lt;br /&gt;Beispiel: &lt;pre&gt;console.log('Meine Instanz ist großartig');&lt;/pre&gt;</target> 1073 <target>Füge dein JavaScript ein.&lt;br /&gt;Beispiel: &lt;pre&gt;console.log('Meine Instanz ist großartig');&lt;/pre&gt;</target>
1148 <context-group name="null"> 1074 <context-group name="null">
1149 <context context-type="linenumber">246</context> 1075 <context context-type="linenumber">270</context>
1150 </context-group>
1151 </trans-unit>
1152 <trans-unit id="f133b08d6519081bfb8ef51cff4bf2b3af23dde6">
1153 <source>
1154 Write directly CSS code. Example:&lt;br /&gt;
1155 &lt;pre&gt;
1156 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1157 background-color: red;
1158 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1159 &lt;/pre&gt;
1160
1161 Prepend with &lt;em&gt;#custom-css&lt;/em&gt; to override styles. Example:
1162 &lt;pre&gt;
1163 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1164 color: red;
1165 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1166 &lt;/pre&gt;
1167 </source>
1168 <target>
1169 Füge dein CSS ein. Beispiel:&lt;br /&gt;
1170 &lt;pre&gt;
1171 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1172 background-color: red;
1173 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1174 &lt;/pre&gt;
1175
1176 Schreibe &lt;em&gt;#custom-css&lt;/em&gt; davor, um einen eigenen Stil zu verwenden. Beispiel:
1177 &lt;pre&gt;
1178 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1179 color: red;
1180 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1181 &lt;/pre&gt;
1182 </target>
1183 <context-group name="null">
1184 <context context-type="linenumber">262</context>
1185 </context-group> 1076 </context-group>
1186 </trans-unit> 1077 </trans-unit>
1187 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> 1078 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab">
1188 <source>Advanced configuration</source> 1079 <source>Advanced configuration</source>
1189 <target>Erweiterte Einstellungen</target> 1080 <target>Erweiterte Einstellungen</target>
1190 <context-group name="null"> 1081 <context-group name="null">
1191 <context context-type="linenumber">174</context> 1082 <context context-type="linenumber">197</context>
1192 </context-group> 1083 </context-group>
1193 </trans-unit> 1084 </trans-unit>
1194 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> 1085 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8">
1195 <source>Update configuration</source> 1086 <source>Update configuration</source>
1196 <target>Einstellungen aktualisieren</target> 1087 <target>Einstellungen aktualisieren</target>
1197 <context-group name="null"> 1088 <context-group name="null">
1198 <context context-type="linenumber">289</context> 1089 <context context-type="linenumber">314</context>
1199 </context-group> 1090 </context-group>
1200 </trans-unit> 1091 </trans-unit>
1201 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca"> 1092 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca">
1202 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source> 1093 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source>
1203 <target>Die Einstellungen sind anscheinend ungültig. Bitte suche nach potentiellen Fehlern in den verschiedenen Reitern.</target> 1094 <target>Die Einstellungen sind anscheinend ungültig. Bitte suche nach potentiellen Fehlern in den verschiedenen Reitern.</target>
1204 <context-group name="null"> 1095 <context-group name="null">
1205 <context context-type="linenumber">290</context> 1096 <context context-type="linenumber">315</context>
1206 </context-group> 1097 </context-group>
1207 </trans-unit> 1098 </trans-unit>
1208 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c"> 1099 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c">
@@ -1227,27 +1118,6 @@ Setze hier deinen Haken, speichere die Einstellungen und teste die Adresse eines
1227 <context context-type="linenumber">7</context> 1118 <context context-type="linenumber">7</context>
1228 </context-group> 1119 </context-group>
1229 </trans-unit> 1120 </trans-unit>
1230 <trans-unit id="1c9406213cf05033eda4d3df678217b5eb822315">
1231 <source>
1232 Video abuses
1233 </source>
1234 <target>
1235 Verstöße </target>
1236 <context-group name="null">
1237 <context context-type="linenumber">11</context>
1238 </context-group>
1239 </trans-unit>
1240 <trans-unit id="96ccede058f0022f34230c3adc09e60076b6d037">
1241 <source>
1242 Video blacklist
1243 </source>
1244 <target>
1245 Video-Sperrliste
1246 </target>
1247 <context-group name="null">
1248 <context context-type="linenumber">15</context>
1249 </context-group>
1250 </trans-unit>
1251 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368"> 1121 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368">
1252 <source> 1122 <source>
1253 Jobs 1123 Jobs
@@ -1256,7 +1126,7 @@ Setze hier deinen Haken, speichere die Einstellungen und teste die Adresse eines
1256 Jobs 1126 Jobs
1257 </target> 1127 </target>
1258 <context-group name="null"> 1128 <context-group name="null">
1259 <context context-type="linenumber">19</context> 1129 <context context-type="linenumber">15</context>
1260 </context-group> 1130 </context-group>
1261 </trans-unit> 1131 </trans-unit>
1262 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13"> 1132 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13">
@@ -1267,7 +1137,7 @@ Setze hier deinen Haken, speichere die Einstellungen und teste die Adresse eines
1267 Einstellungen 1137 Einstellungen
1268 </target> 1138 </target>
1269 <context-group name="null"> 1139 <context-group name="null">
1270 <context context-type="linenumber">23</context> 1140 <context context-type="linenumber">19</context>
1271 </context-group> 1141 </context-group>
1272 </trans-unit> 1142 </trans-unit>
1273 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396"> 1143 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396">
@@ -1337,6 +1207,27 @@ Setze hier deinen Haken, speichere die Einstellungen und teste die Adresse eines
1337 <context context-type="linenumber">2</context> 1207 <context context-type="linenumber">2</context>
1338 </context-group> 1208 </context-group>
1339 </trans-unit> 1209 </trans-unit>
1210 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936">
1211 <source>Following</source>
1212 <target>Abonniert</target>
1213 <context-group name="null">
1214 <context context-type="linenumber">5</context>
1215 </context-group>
1216 </trans-unit>
1217 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
1218 <source>Follow</source>
1219 <target>Abonnieren</target>
1220 <context-group name="null">
1221 <context context-type="linenumber">7</context>
1222 </context-group>
1223 </trans-unit>
1224 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
1225 <source>Followers</source>
1226 <target>Abonnenten</target>
1227 <context-group name="null">
1228 <context context-type="linenumber">9</context>
1229 </context-group>
1230 </trans-unit>
1340 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f"> 1231 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f">
1341 <source>Jobs list</source> 1232 <source>Jobs list</source>
1342 <target>Jobliste</target> 1233 <target>Jobliste</target>
@@ -1397,14 +1288,7 @@ Setze hier deinen Haken, speichere die Einstellungen und teste die Adresse eines
1397 <source>Role</source> 1288 <source>Role</source>
1398 <target>Benutzerrolle</target> 1289 <target>Benutzerrolle</target>
1399 <context-group name="null"> 1290 <context-group name="null">
1400 <context context-type="linenumber">19</context> 1291 <context context-type="linenumber">20</context>
1401 </context-group>
1402 </trans-unit>
1403 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
1404 <source>Video quota</source>
1405 <target>Videokontingent</target>
1406 <context-group name="null">
1407 <context context-type="linenumber">18</context>
1408 </context-group> 1292 </context-group>
1409 </trans-unit> 1293 </trans-unit>
1410 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345"> 1294 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345">
@@ -1419,6 +1303,13 @@ Setze hier deinen Haken, speichere die Einstellungen und teste die Adresse eines
1419 <context context-type="linenumber">65</context> 1303 <context context-type="linenumber">65</context>
1420 </context-group> 1304 </context-group>
1421 </trans-unit> 1305 </trans-unit>
1306 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
1307 <source>Reason...</source>
1308 <target>Grund...</target>
1309 <context-group name="null">
1310 <context context-type="linenumber">11</context>
1311 </context-group>
1312 </trans-unit>
1422 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f"> 1313 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f">
1423 <source>Users list</source> 1314 <source>Users list</source>
1424 <target>Benutzerliste</target> 1315 <target>Benutzerliste</target>
@@ -1430,91 +1321,42 @@ Setze hier deinen Haken, speichere die Einstellungen und teste die Adresse eines
1430 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source> 1321 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1431 <target>Benutzername <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target> 1322 <target>Benutzername <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1432 <context-group name="null"> 1323 <context-group name="null">
1433 <context context-type="linenumber">16</context> 1324 <context context-type="linenumber">17</context>
1434 </context-group>
1435 </trans-unit>
1436 <trans-unit id="0c7e8870481f1287af6a142f538391d8c16c2408">
1437 <source>Video abuses list</source>
1438 <target>Liste der Verstöße</target>
1439 <context-group name="null">
1440 <context context-type="linenumber">2</context>
1441 </context-group>
1442 </trans-unit>
1443 <trans-unit id="4ba250869daa372b54d24fafc0ea934769ee4076">
1444 <source>Reason</source>
1445 <target>Grund</target>
1446 <context-group name="null">
1447 <context context-type="linenumber">11</context>
1448 </context-group> 1325 </context-group>
1449 </trans-unit> 1326 </trans-unit>
1450 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2"> 1327 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2">
1451 <source>Reporter</source> 1328 <source>Reporter</source>
1452 <target>Melder</target> 1329 <target>Melder</target>
1453 <context-group name="null"> 1330 <context-group name="null">
1454 <context context-type="linenumber">12</context> 1331 <context context-type="linenumber">8</context>
1455 </context-group> 1332 </context-group>
1456 </trans-unit> 1333 </trans-unit>
1457 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4"> 1334 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4">
1458 <source>Video</source> 1335 <source>Video</source>
1459 <target>Video</target> 1336 <target>Video</target>
1460 <context-group name="null"> 1337 <context-group name="null">
1461 <context context-type="linenumber">9</context> 1338 <context context-type="linenumber">14</context>
1462 </context-group> 1339 </context-group>
1463 </trans-unit> 1340 </trans-unit>
1464 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7"> 1341 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7">
1465 <source>Go to the account</source> 1342 <source>Go to the account</source>
1466 <target>Zum Konto gehen</target> 1343 <target>Zum Konto gehen</target>
1467 <context-group name="null"> 1344 <context-group name="null">
1468 <context context-type="linenumber">22</context> 1345 <context context-type="linenumber">27</context>
1469 </context-group> 1346 </context-group>
1470 </trans-unit> 1347 </trans-unit>
1471 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5"> 1348 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5">
1472 <source>Go to the video</source> 1349 <source>Go to the video</source>
1473 <target>Zum Video gehen</target> 1350 <target>Zum Video gehen</target>
1474 <context-group name="null"> 1351 <context-group name="null">
1475 <context context-type="linenumber">28</context> 1352 <context context-type="linenumber">33</context>
1476 </context-group> 1353 </context-group>
1477 </trans-unit> 1354 </trans-unit>
1478 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1"> 1355 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1">
1479 <source>Blacklisted videos</source> 1356 <source>Blacklisted videos</source>
1480 <target>Gesperrte Videos</target> 1357 <target>Gesperrte Videos</target>
1481 <context-group name="null"> 1358 <context-group name="null">
1482 <context context-type="linenumber">2</context> 1359 <context context-type="linenumber">7</context>
1483 </context-group>
1484 </trans-unit>
1485 <trans-unit id="7c02d113e9b7884037834cddecf2a32a5538b35b">
1486 <source>Name <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1487 <target>Name <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1488 <context-group name="null">
1489 <context context-type="linenumber">11</context>
1490 </context-group>
1491 </trans-unit>
1492 <trans-unit id="cd5ca5da9e2fa21571e9f86a24a5c3b45a3ddc51">
1493 <source>Views <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1494 <target>Aufrufe <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1495 <context-group name="null">
1496 <context context-type="linenumber">13</context>
1497 </context-group>
1498 </trans-unit>
1499 <trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9">
1500 <source>NSFW</source>
1501 <target>NSFW (Nicht zur Ansicht am Arbeitsplatz geeignet)</target>
1502 <context-group name="null">
1503 <context context-type="linenumber">14</context>
1504 </context-group>
1505 </trans-unit>
1506 <trans-unit id="8c87d9527af7ff2ada84c911516a9e43a352e401">
1507 <source>UUID</source>
1508 <target>UUID</target>
1509 <context-group name="null">
1510 <context context-type="linenumber">15</context>
1511 </context-group>
1512 </trans-unit>
1513 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1514 <source>Unblacklist</source>
1515 <target>Entsperren</target>
1516 <context-group name="null">
1517 <context context-type="linenumber">30</context>
1518 </context-group> 1360 </context-group>
1519 </trans-unit> 1361 </trans-unit>
1520 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6"> 1362 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6">
@@ -1524,25 +1366,11 @@ Setze hier deinen Haken, speichere die Einstellungen und teste die Adresse eines
1524 <context context-type="linenumber">3</context> 1366 <context context-type="linenumber">3</context>
1525 </context-group> 1367 </context-group>
1526 </trans-unit> 1368 </trans-unit>
1527 <trans-unit id="520d68b2c9f7dacaf2a5073716cad9bd328ea7e7">
1528 <source>My video channels</source>
1529 <target>Meine Videokanäle</target>
1530 <context-group name="null">
1531 <context context-type="linenumber">5</context>
1532 </context-group>
1533 </trans-unit>
1534 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894"> 1369 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894">
1535 <source>My videos</source> 1370 <source>My videos</source>
1536 <target>Meine Videos</target> 1371 <target>Meine Videos</target>
1537 <context-group name="null"> 1372 <context-group name="null">
1538 <context context-type="linenumber">7</context> 1373 <context context-type="linenumber">14</context>
1539 </context-group>
1540 </trans-unit>
1541 <trans-unit id="0bb0c57c6d12635d26996c124248e748b666e5ad">
1542 <source>My video imports</source>
1543 <target>Meine Videoimporte</target>
1544 <context-group name="null">
1545 <context context-type="linenumber">9</context>
1546 </context-group> 1374 </context-group>
1547 </trans-unit> 1375 </trans-unit>
1548 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48"> 1376 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48">
@@ -1573,6 +1401,13 @@ Setze hier deinen Haken, speichere die Einstellungen und teste die Adresse eines
1573 <context context-type="linenumber">18</context> 1401 <context context-type="linenumber">18</context>
1574 </context-group> 1402 </context-group>
1575 </trans-unit> 1403 </trans-unit>
1404 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
1405 <source>Submit</source>
1406 <target>Abschicken</target>
1407 <context-group name="null">
1408 <context context-type="linenumber">24</context>
1409 </context-group>
1410 </trans-unit>
1576 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79"> 1411 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79">
1577 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 1412 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
1578 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> Aufrufe</target> 1413 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> Aufrufe</target>
@@ -1580,11 +1415,15 @@ Setze hier deinen Haken, speichere die Einstellungen und teste die Adresse eines
1580 <context context-type="linenumber">19</context> 1415 <context context-type="linenumber">19</context>
1581 </context-group> 1416 </context-group>
1582 </trans-unit> 1417 </trans-unit>
1583 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7"> 1418 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
1584 <source>Delete</source> 1419 <source>
1585 <target>Löschen</target> 1420 Cancel
1421 </source>
1422 <target>
1423 Abbrechen
1424 </target>
1586 <context-group name="null"> 1425 <context-group name="null">
1587 <context context-type="linenumber">15</context> 1426 <context context-type="linenumber">30</context>
1588 </context-group> 1427 </context-group>
1589 </trans-unit> 1428 </trans-unit>
1590 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260"> 1429 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260">
@@ -1598,7 +1437,7 @@ Setze hier deinen Haken, speichere die Einstellungen und teste die Adresse eines
1598 <source>Go to the channel</source> 1437 <source>Go to the channel</source>
1599 <target>Zum Kanal gehen</target> 1438 <target>Zum Kanal gehen</target>
1600 <context-group name="null"> 1439 <context-group name="null">
1601 <context context-type="linenumber">15</context> 1440 <context context-type="linenumber">8</context>
1602 </context-group> 1441 </context-group>
1603 </trans-unit> 1442 </trans-unit>
1604 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68"> 1443 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68">
@@ -1621,7 +1460,7 @@ When you will upload a video in this channel, the video support field will be au
1621 <target>Ein kurzer Text, der anderen erklärt, wie sie deinen Kanal unterstützen können.&lt;br /&gt;&lt;br /&gt; 1460 <target>Ein kurzer Text, der anderen erklärt, wie sie deinen Kanal unterstützen können.&lt;br /&gt;&lt;br /&gt;
1622Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automatisch mit diesem Text gefüllt.</target> 1461Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automatisch mit diesem Text gefüllt.</target>
1623 <context-group name="null"> 1462 <context-group name="null">
1624 <context context-type="linenumber">36</context> 1463 <context context-type="linenumber">52</context>
1625 </context-group> 1464 </context-group>
1626 </trans-unit> 1465 </trans-unit>
1627 <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191"> 1466 <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191">
@@ -1631,11 +1470,25 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
1631 <context context-type="linenumber">8</context> 1470 <context context-type="linenumber">8</context>
1632 </context-group> 1471 </context-group>
1633 </trans-unit> 1472 </trans-unit>
1473 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1474 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1475 <target>Erstellt von <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1476 <context-group name="null">
1477 <context context-type="linenumber">17</context>
1478 </context-group>
1479 </trans-unit>
1480 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1481 <source>Go the owner account page</source>
1482 <target>Zum Kanal des Besitzers</target>
1483 <context-group name="null">
1484 <context context-type="linenumber">16</context>
1485 </context-group>
1486 </trans-unit>
1634 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9"> 1487 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9">
1635 <source>Change password</source> 1488 <source>Change password</source>
1636 <target>Passwort ändern</target> 1489 <target>Passwort ändern</target>
1637 <context-group name="null"> 1490 <context-group name="null">
1638 <context context-type="linenumber">19</context> 1491 <context context-type="linenumber">22</context>
1639 </context-group> 1492 </context-group>
1640 </trans-unit> 1493 </trans-unit>
1641 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229"> 1494 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229">
@@ -1712,20 +1565,6 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
1712 <context context-type="linenumber">1</context> 1565 <context context-type="linenumber">1</context>
1713 </context-group> 1566 </context-group>
1714 </trans-unit> 1567 </trans-unit>
1715 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1716 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1717 <target>Erstellt von <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1718 <context-group name="null">
1719 <context context-type="linenumber">14</context>
1720 </context-group>
1721 </trans-unit>
1722 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1723 <source>Go the owner account page</source>
1724 <target>Zum Kanal des Besitzers</target>
1725 <context-group name="null">
1726 <context context-type="linenumber">13</context>
1727 </context-group>
1728 </trans-unit>
1729 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8"> 1568 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8">
1730 <source>Support this channel</source> 1569 <source>Support this channel</source>
1731 <target>Unterstütze diesen Kanal</target> 1570 <target>Unterstütze diesen Kanal</target>
@@ -1744,12 +1583,12 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
1744 <source>URL</source> 1583 <source>URL</source>
1745 <target>URL</target> 1584 <target>URL</target>
1746 <context-group name="null"> 1585 <context-group name="null">
1747 <context context-type="linenumber">12</context> 1586 <context context-type="linenumber">17</context>
1748 </context-group> 1587 </context-group>
1749 </trans-unit> 1588 </trans-unit>
1750 <trans-unit id="bfe7f34fbd4c3afa5f84a5580e0fae942cad2333"> 1589 <trans-unit id="bfe7f34fbd4c3afa5f84a5580e0fae942cad2333">
1751 <source>You can import any URL &lt;a href='https://rg3.github.io/youtube-dl/supportedsites.html' target='_blank' rel='noopener noreferrer'&gt;supported by youtube-dl&lt;/a&gt; or URL that points to a raw MP4 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> 1590 <source>You can import any URL &lt;a href='https://rg3.github.io/youtube-dl/supportedsites.html' target='_blank' rel='noopener noreferrer'&gt;supported by youtube-dl&lt;/a&gt; or URL that points to a raw MP4 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>
1752 <target>Du kannst jede URL importieren, &lt;a href='https://rg3.github.io/youtube-dl/supportedsites.html' target='_blank' rel='noopener noreferrer'&gt;die von youtube-dl unterstützt wird&lt;/a&gt; oder jede URL, die auf eine MP4-Datei zeigt. Du solltest sicherstellen, dass du die Verbreitungsrechte für den Inhalt hast, ansonsten könnte es legale Schwierigkeiten für dich und deine Instanz verursachen.</target> 1591 <target>Du kannst von jeder URL importieren, &lt;a href='https://rg3.github.io/youtube-dl/supportedsites.html' target='_blank' rel='noopener noreferrer'&gt;die von youtube-dl unterstützt wird&lt;/a&gt; oder jeder URL, die auf eine MP4-Datei zeigt. Du solltest sicherstellen, dass du die Verbreitungsrechte für den Inhalt hast, ansonsten könnte es legale Schwierigkeiten für dich und deine Instanz verursachen.</target>
1753 <context-group name="null"> 1592 <context-group name="null">
1754 <context context-type="linenumber">9</context> 1593 <context context-type="linenumber">9</context>
1755 </context-group> 1594 </context-group>
@@ -1758,14 +1597,14 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
1758 <source>Channel</source> 1597 <source>Channel</source>
1759 <target>Kanal</target> 1598 <target>Kanal</target>
1760 <context-group name="null"> 1599 <context-group name="null">
1761 <context context-type="linenumber">35</context> 1600 <context context-type="linenumber">38</context>
1762 </context-group> 1601 </context-group>
1763 </trans-unit> 1602 </trans-unit>
1764 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427"> 1603 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427">
1765 <source>Privacy</source> 1604 <source>Privacy</source>
1766 <target>Privatsphäre</target> 1605 <target>Sichtbarkeit</target>
1767 <context-group name="null"> 1606 <context-group name="null">
1768 <context context-type="linenumber">143</context> 1607 <context context-type="linenumber">161</context>
1769 </context-group> 1608 </context-group>
1770 </trans-unit> 1609 </trans-unit>
1771 <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2"> 1610 <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2">
@@ -1783,7 +1622,7 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
1783 <source>Update</source> 1622 <source>Update</source>
1784 <target>Aktualisieren</target> 1623 <target>Aktualisieren</target>
1785 <context-group name="null"> 1624 <context-group name="null">
1786 <context context-type="linenumber">105</context> 1625 <context context-type="linenumber">92</context>
1787 </context-group> 1626 </context-group>
1788 </trans-unit> 1627 </trans-unit>
1789 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> 1628 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9">
@@ -1809,7 +1648,7 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
1809 </trans-unit> 1648 </trans-unit>
1810 <trans-unit id="2fcbf437e001f47974d45bd03a19e0d9245fdb3b"> 1649 <trans-unit id="2fcbf437e001f47974d45bd03a19e0d9245fdb3b">
1811 <source>Select the torrent to import</source> 1650 <source>Select the torrent to import</source>
1812 <target>Wähle den zu importierenden Torrent</target> 1651 <target>Wähle die Torrent-Datei für den Import</target>
1813 <context-group name="null"> 1652 <context-group name="null">
1814 <context context-type="linenumber">6</context> 1653 <context context-type="linenumber">6</context>
1815 </context-group> 1654 </context-group>
@@ -1823,7 +1662,7 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
1823 </trans-unit> 1662 </trans-unit>
1824 <trans-unit id="1ce18c12c809a738f05f2290f46df0677f27ed70"> 1663 <trans-unit id="1ce18c12c809a738f05f2290f46df0677f27ed70">
1825 <source>You can import any torrent file that points to a mp4 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> 1664 <source>You can import any torrent file that points to a mp4 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>
1826 <target>Du kannst jedes Torrent, das auf eine MP4-Datei zeigt, importieren. Du solltest sicherstellen, dass du die Verbreitungsrechte für den Inhalt hast, ansonsten könnte es legale Schwierigkeiten für dich und deine Instanz verursachen.</target> 1665 <target>Du kannst jede Torrent-Datei, die auf eine MP4-Datei zeigt, zum Import verwenden. Du solltest sicherstellen, dass du die Verbreitungsrechte für den Inhalt hast, ansonsten könnte es legale Schwierigkeiten für dich und deine Instanz verursachen.</target>
1827 <context-group name="null"> 1666 <context-group name="null">
1828 <context context-type="linenumber">17</context> 1667 <context context-type="linenumber">17</context>
1829 </context-group> 1668 </context-group>
@@ -1857,46 +1696,35 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
1857 <source>Upload a file</source> 1696 <source>Upload a file</source>
1858 <target>Lade eine Datei hoch</target> 1697 <target>Lade eine Datei hoch</target>
1859 <context-group name="null"> 1698 <context-group name="null">
1860 <context context-type="linenumber">9</context> 1699 <context context-type="linenumber">10</context>
1861 </context-group> 1700 </context-group>
1862 </trans-unit> 1701 </trans-unit>
1863 <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470"> 1702 <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470">
1864 <source>Import with URL</source> 1703 <source>Import with URL</source>
1865 <target>Importiere mit einer URL</target> 1704 <target>Importiere über einer URL</target>
1866 <context-group name="null"> 1705 <context-group name="null">
1867 <context context-type="linenumber">13</context> 1706 <context context-type="linenumber">17</context>
1868 </context-group> 1707 </context-group>
1869 </trans-unit> 1708 </trans-unit>
1870 <trans-unit id="752c401d7dcd708944eef60e411187f71d882340"> 1709 <trans-unit id="752c401d7dcd708944eef60e411187f71d882340">
1871 <source>Import with torrent</source> 1710 <source>Import with torrent</source>
1872 <target>Importiere einen Torrent</target> 1711 <target>Importiere über eine Torrent-Datei</target>
1873 <context-group name="null"> 1712 <context-group name="null">
1874 <context context-type="linenumber">17</context> 1713 <context context-type="linenumber">24</context>
1875 </context-group> 1714 </context-group>
1876 </trans-unit> 1715 </trans-unit>
1877 <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0"> 1716 <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0">
1878 <source>Add caption</source> 1717 <source>Add caption</source>
1879 <target>Untertitel hinzufügen</target> 1718 <target>Untertitel hinzufügen</target>
1880 <context-group name="null"> 1719 <context-group name="null">
1881 <context context-type="linenumber">7</context> 1720 <context context-type="linenumber">5</context>
1882 </context-group> 1721 </context-group>
1883 </trans-unit> 1722 </trans-unit>
1884 <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8"> 1723 <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8">
1885 <source>Select the caption file</source> 1724 <source>Select the caption file</source>
1886 <target>Untertitel-Datei auswählen</target> 1725 <target>Untertitel-Datei auswählen</target>
1887 <context-group name="null"> 1726 <context-group name="null">
1888 <context context-type="linenumber">25</context> 1727 <context context-type="linenumber">24</context>
1889 </context-group>
1890 </trans-unit>
1891 <trans-unit id="a40a8a9f8359eda00c6a79809e9499100fde3ffd">
1892 <source>
1893 This will replace an existing caption!
1894 </source>
1895 <target>
1896 Dies ersetzt bestehende Untertitel!
1897 </target>
1898 <context-group name="null">
1899 <context context-type="linenumber">30</context>
1900 </context-group> 1728 </context-group>
1901 </trans-unit> 1729 </trans-unit>
1902 <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c"> 1730 <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c">
@@ -1910,70 +1738,63 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
1910 <source>Title</source> 1738 <source>Title</source>
1911 <target>Titel</target> 1739 <target>Titel</target>
1912 <context-group name="null"> 1740 <context-group name="null">
1913 <context context-type="linenumber">7</context> 1741 <context context-type="linenumber">9</context>
1914 </context-group> 1742 </context-group>
1915 </trans-unit> 1743 </trans-unit>
1916 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b"> 1744 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b">
1917 <source>Tags</source> 1745 <source>Tags</source>
1918 <target>Tags</target> 1746 <target>Tags</target>
1919 <context-group name="null"> 1747 <context-group name="null">
1920 <context context-type="linenumber">175</context> 1748 <context context-type="linenumber">193</context>
1921 </context-group>
1922 </trans-unit>
1923 <trans-unit id="935e7146fe6c12169abfda18536c5856935cfd82">
1924 <source>(press Enter to add)</source>
1925 <target>(zum Hinzufügen Eingabetaste drücken)</target>
1926 <context-group name="null">
1927 <context context-type="linenumber">15</context>
1928 </context-group> 1749 </context-group>
1929 </trans-unit> 1750 </trans-unit>
1930 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e"> 1751 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e">
1931 <source>Video descriptions are truncated by default and require manual action to expand them.</source> 1752 <source>Video descriptions are truncated by default and require manual action to expand them.</source>
1932 <target>Videobeschreibungen sind standardmäßig gekürzt und müssen manuell aufgeklappt werden.</target> 1753 <target>Videobeschreibungen sind standardmäßig gekürzt und müssen manuell aufgeklappt werden.</target>
1933 <context-group name="null"> 1754 <context-group name="null">
1934 <context context-type="linenumber">24</context> 1755 <context context-type="linenumber">27</context>
1935 </context-group> 1756 </context-group>
1936 </trans-unit> 1757 </trans-unit>
1937 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> 1758 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5">
1938 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source> 1759 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source>
1939 <target>Veröffentlichung planen (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target> 1760 <target>Veröffentlichung planen (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target>
1940 <context-group name="null"> 1761 <context-group name="null">
1941 <context context-type="linenumber">101</context> 1762 <context context-type="linenumber">104</context>
1942 </context-group> 1763 </context-group>
1943 </trans-unit> 1764 </trans-unit>
1944 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee"> 1765 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee">
1945 <source>This video contains mature or explicit content</source> 1766 <source>This video contains mature or explicit content</source>
1946 <target>Dieses Video enthält Inhalte, die möglicherweise für bestimmte Zuschauer ungeeignet sind oder von diesen als anstößig empfunden werden.</target> 1767 <target>Dieses Video enthält Inhalte, die möglicherweise für bestimmte Zuschauer ungeeignet sind oder von diesen als anstößig empfunden werden.</target>
1947 <context-group name="null"> 1768 <context-group name="null">
1948 <context context-type="linenumber">115</context> 1769 <context context-type="linenumber">118</context>
1949 </context-group> 1770 </context-group>
1950 </trans-unit> 1771 </trans-unit>
1951 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644"> 1772 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644">
1952 <source>Some instances do not list videos containing mature or explicit content by default.</source> 1773 <source>Some instances do not list videos containing mature or explicit content by default.</source>
1953 <target>Einige Instanzen zeigen keine Videos, die möglicherweise für bestimmte Zuschauer ungeeignet sind oder von diesen als anstößig empfunden werden.</target> 1774 <target>Einige Instanzen zeigen keine Videos, die möglicherweise für bestimmte Zuschauer ungeeignet sind oder von diesen als anstößig empfunden werden.</target>
1954 <context-group name="null"> 1775 <context-group name="null">
1955 <context context-type="linenumber">116</context> 1776 <context context-type="linenumber">119</context>
1956 </context-group> 1777 </context-group>
1957 </trans-unit> 1778 </trans-unit>
1958 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a"> 1779 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a">
1959 <source>Enable video comments</source> 1780 <source>Enable video comments</source>
1960 <target>Videokommentare zulassen</target> 1781 <target>Videokommentare zulassen</target>
1961 <context-group name="null"> 1782 <context-group name="null">
1962 <context context-type="linenumber">121</context> 1783 <context context-type="linenumber">124</context>
1963 </context-group> 1784 </context-group>
1964 </trans-unit> 1785 </trans-unit>
1965 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0"> 1786 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0">
1966 <source>Wait transcoding before publishing the video</source> 1787 <source>Wait transcoding before publishing the video</source>
1967 <target>Warte das Transkodieren ab, bevor du das Video veröffentlichst</target> 1788 <target>Warte das Transkodieren ab, bevor du das Video veröffentlichst</target>
1968 <context-group name="null"> 1789 <context-group name="null">
1969 <context context-type="linenumber">126</context> 1790 <context context-type="linenumber">129</context>
1970 </context-group> 1791 </context-group>
1971 </trans-unit> 1792 </trans-unit>
1972 <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63"> 1793 <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63">
1973 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source> 1794 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source>
1974 <target>Wenn du dich entschließt, dass Transkodieren nicht abzuwarten, kann das Video unabspielbar sein, bis das Transkodieren beendet ist.</target> 1795 <target>Wenn du dich entschließt, dass Transkodieren nicht abzuwarten, kann das Video unabspielbar sein, bis das Transkodieren beendet ist.</target>
1975 <context-group name="null"> 1796 <context-group name="null">
1976 <context context-type="linenumber">127</context> 1797 <context context-type="linenumber">130</context>
1977 </context-group> 1798 </context-group>
1978 </trans-unit> 1799 </trans-unit>
1979 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7"> 1800 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7">
@@ -1987,70 +1808,70 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
1987 <source>Add another caption</source> 1808 <source>Add another caption</source>
1988 <target>Weiteren Untertitel hinzufügen</target> 1809 <target>Weiteren Untertitel hinzufügen</target>
1989 <context-group name="null"> 1810 <context-group name="null">
1990 <context context-type="linenumber">139</context> 1811 <context context-type="linenumber">145</context>
1991 </context-group> 1812 </context-group>
1992 </trans-unit> 1813 </trans-unit>
1993 <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed"> 1814 <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed">
1994 <source>See the subtitle file</source> 1815 <source>See the subtitle file</source>
1995 <target>Siehe in der Untertiteldatei</target> 1816 <target>Siehe in der Untertiteldatei</target>
1996 <context-group name="null"> 1817 <context-group name="null">
1997 <context context-type="linenumber">148</context> 1818 <context context-type="linenumber">154</context>
1998 </context-group> 1819 </context-group>
1999 </trans-unit> 1820 </trans-unit>
2000 <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9"> 1821 <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9">
2001 <source>Cancel create</source> 1822 <source>Cancel create</source>
2002 <target>Erstellen abbrechen</target> 1823 <target>Erstellen abbrechen</target>
2003 <context-group name="null"> 1824 <context-group name="null">
2004 <context context-type="linenumber">162</context> 1825 <context context-type="linenumber">168</context>
2005 </context-group> 1826 </context-group>
2006 </trans-unit> 1827 </trans-unit>
2007 <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c"> 1828 <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c">
2008 <source>Cancel deletion</source> 1829 <source>Cancel deletion</source>
2009 <target>Löschen abbrechen</target> 1830 <target>Löschen abbrechen</target>
2010 <context-group name="null"> 1831 <context-group name="null">
2011 <context context-type="linenumber">170</context> 1832 <context context-type="linenumber">176</context>
2012 </context-group> 1833 </context-group>
2013 </trans-unit> 1834 </trans-unit>
2014 <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93"> 1835 <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93">
2015 <source>Captions</source> 1836 <source>Captions</source>
2016 <target>Untertitel</target> 1837 <target>Untertitel</target>
2017 <context-group name="null"> 1838 <context-group name="null">
2018 <context context-type="linenumber">133</context> 1839 <context context-type="linenumber">138</context>
2019 </context-group> 1840 </context-group>
2020 </trans-unit> 1841 </trans-unit>
2021 <trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513"> 1842 <trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513">
2022 <source>Upload thumbnail</source> 1843 <source>Upload thumbnail</source>
2023 <target>Miniaturansicht hochladen</target> 1844 <target>Vorschaubild hochladen</target>
2024 <context-group name="null"> 1845 <context-group name="null">
2025 <context context-type="linenumber">186</context> 1846 <context context-type="linenumber">194</context>
2026 </context-group> 1847 </context-group>
2027 </trans-unit> 1848 </trans-unit>
2028 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639"> 1849 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639">
2029 <source>Upload preview</source> 1850 <source>Upload preview</source>
2030 <target>Vorschau hochladen</target> 1851 <target>Vorschau hochladen</target>
2031 <context-group name="null"> 1852 <context-group name="null">
2032 <context context-type="linenumber">193</context> 1853 <context context-type="linenumber">201</context>
2033 </context-group> 1854 </context-group>
2034 </trans-unit> 1855 </trans-unit>
2035 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604"> 1856 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604">
2036 <source>Support</source> 1857 <source>Support</source>
2037 <target>Unterstützen</target> 1858 <target>Unterstützen</target>
2038 <context-group name="null"> 1859 <context-group name="null">
2039 <context context-type="linenumber">71</context> 1860 <context context-type="linenumber">69</context>
2040 </context-group> 1861 </context-group>
2041 </trans-unit> 1862 </trans-unit>
2042 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0"> 1863 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0">
2043 <source>Short text to tell people how they can support you (membership platform...).</source> 1864 <source>Short text to tell people how they can support you (membership platform...).</source>
2044 <target>Ein kurzer Text, der anderen erklärt, wie sie dich unterstützen können.</target> 1865 <target>Ein kurzer Text, der anderen erklärt, wie sie dich unterstützen können.</target>
2045 <context-group name="null"> 1866 <context-group name="null">
2046 <context context-type="linenumber">200</context> 1867 <context context-type="linenumber">208</context>
2047 </context-group> 1868 </context-group>
2048 </trans-unit> 1869 </trans-unit>
2049 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1"> 1870 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1">
2050 <source>Advanced settings</source> 1871 <source>Advanced settings</source>
2051 <target>Erweiterte Einstellungen</target> 1872 <target>Erweiterte Einstellungen</target>
2052 <context-group name="null"> 1873 <context-group name="null">
2053 <context context-type="linenumber">182</context> 1874 <context context-type="linenumber">189</context>
2054 </context-group> 1875 </context-group>
2055 </trans-unit> 1876 </trans-unit>
2056 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0"> 1877 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0">
@@ -2068,99 +1889,63 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
2068 <source>Download video</source> 1889 <source>Download video</source>
2069 <target>Video herunterladen</target> 1890 <target>Video herunterladen</target>
2070 <context-group name="null"> 1891 <context-group name="null">
2071 <context context-type="linenumber">7</context> 1892 <context context-type="linenumber">3</context>
2072 </context-group> 1893 </context-group>
2073 </trans-unit> 1894 </trans-unit>
2074 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c"> 1895 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c">
2075 <source>Direct download</source> 1896 <source>Direct download</source>
2076 <target>Direkter Download</target> 1897 <target>Direkter Download</target>
2077 <context-group name="null"> 1898 <context-group name="null">
2078 <context context-type="linenumber">20</context> 1899 <context context-type="linenumber">17</context>
2079 </context-group> 1900 </context-group>
2080 </trans-unit> 1901 </trans-unit>
2081 <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d"> 1902 <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d">
2082 <source>Torrent (.torrent file)</source> 1903 <source>Torrent (.torrent file)</source>
2083 <target>Torrent (Torrent-Datei)</target> 1904 <target>Torrent (Torrent-Datei)</target>
2084 <context-group name="null"> 1905 <context-group name="null">
2085 <context context-type="linenumber">25</context> 1906 <context context-type="linenumber">22</context>
2086 </context-group> 1907 </context-group>
2087 </trans-unit> 1908 </trans-unit>
2088 <trans-unit id="2db8d7cf6a3071f4c1519ef2b5e2713d9ff4e87f"> 1909 <trans-unit id="2db8d7cf6a3071f4c1519ef2b5e2713d9ff4e87f">
2089 <source>Torrent (magnet link)</source> 1910 <source>Torrent (magnet link)</source>
2090 <target>Torrent (Magnet-Link)</target> 1911 <target>Torrent (Magnet-Link)</target>
2091 <context-group name="null"> 1912 <context-group name="null">
2092 <context context-type="linenumber">30</context> 1913 <context context-type="linenumber">27</context>
2093 </context-group> 1914 </context-group>
2094 </trans-unit> 1915 </trans-unit>
2095 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> 1916 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd">
2096 <source>Download</source> 1917 <source>Download</source>
2097 <target>Herunterladen</target> 1918 <target>Herunterladen</target>
2098 <context-group name="null"> 1919 <context-group name="null">
2099 <context context-type="linenumber">87</context> 1920 <context context-type="linenumber">84</context>
2100 </context-group> 1921 </context-group>
2101 </trans-unit> 1922 </trans-unit>
2102 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b"> 1923 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b">
2103 <source>Report video</source> 1924 <source>Report video</source>
2104 <target>Video melden</target> 1925 <target>Video melden</target>
2105 <context-group name="null"> 1926 <context-group name="null">
2106 <context context-type="linenumber">7</context> 1927 <context context-type="linenumber">3</context>
2107 </context-group>
2108 </trans-unit>
2109 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
2110 <source>Reason...</source>
2111 <target>Grund...</target>
2112 <context-group name="null">
2113 <context context-type="linenumber">14</context>
2114 </context-group>
2115 </trans-unit>
2116 <trans-unit id="0e6b8229bd65f93bc8040d0fb598967f220740c7">
2117 <source>
2118 Cancel
2119 </source>
2120 <target>
2121 Abbrechen
2122 </target>
2123 <context-group name="null">
2124 <context context-type="linenumber">22</context>
2125 </context-group>
2126 </trans-unit>
2127 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
2128 <source>Submit</source>
2129 <target>Abschicken</target>
2130 <context-group name="null">
2131 <context context-type="linenumber">27</context>
2132 </context-group> 1928 </context-group>
2133 </trans-unit> 1929 </trans-unit>
2134 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9"> 1930 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9">
2135 <source>Share</source> 1931 <source>Share</source>
2136 <target>Teilen</target> 1932 <target>Teilen</target>
2137 <context-group name="null"> 1933 <context-group name="null">
2138 <context context-type="linenumber">76</context> 1934 <context context-type="linenumber">74</context>
2139 </context-group>
2140 </trans-unit>
2141 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
2142 <source>Embed</source>
2143 <target>Einbetten</target>
2144 <context-group name="null">
2145 <context context-type="linenumber">24</context>
2146 </context-group>
2147 </trans-unit>
2148 <trans-unit id="239fe0316cfe91aa6e1e7bf1ef19e3b7772131f8">
2149 <source>
2150 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).
2151 </source>
2152 <target>
2153 Diese URL ist nicht sicher (kein HTTPS), das Video kann also nicht in Webseiten eingebettet werden, die über HTTPS ausgeliefert werden (Web-Browser blockieren unsichere HTTP-Verbindungen auf sicheren HTTPS-Webseiten).
2154 </target>
2155 <context-group name="null">
2156 <context context-type="linenumber">35</context>
2157 </context-group> 1935 </context-group>
2158 </trans-unit> 1936 </trans-unit>
2159 <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f"> 1937 <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f">
2160 <source>QR-Code</source> 1938 <source>QR-Code</source>
2161 <target>QR-Code</target> 1939 <target>QR-Code</target>
2162 <context-group name="null"> 1940 <context-group name="null">
2163 <context context-type="linenumber">40</context> 1941 <context context-type="linenumber">29</context>
1942 </context-group>
1943 </trans-unit>
1944 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
1945 <source>Embed</source>
1946 <target>Einbetten</target>
1947 <context-group name="null">
1948 <context context-type="linenumber">34</context>
2164 </context-group> 1949 </context-group>
2165 </trans-unit> 1950 </trans-unit>
2166 <trans-unit id="7584313e33a66811eb10646627914a01fff0347d"> 1951 <trans-unit id="7584313e33a66811eb10646627914a01fff0347d">
@@ -2168,7 +1953,7 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
2168 The video is being imported, it will be available when the import is finished. 1953 The video is being imported, it will be available when the import is finished.
2169 </source> 1954 </source>
2170 <target> 1955 <target>
2171 Das Video wird importiert, es ist verfügbar sobald der Import abgeschlossen ist. 1956 Das Video wird importiert, es ist verfügbar, sobald der Import abgeschlossen ist.
2172 </target> 1957 </target>
2173 <context-group name="null"> 1958 <context-group name="null">
2174 <context context-type="linenumber">11</context> 1959 <context context-type="linenumber">11</context>
@@ -2185,174 +1970,116 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
2185 <context context-type="linenumber">15</context> 1970 <context context-type="linenumber">15</context>
2186 </context-group> 1971 </context-group>
2187 </trans-unit> 1972 </trans-unit>
2188 <trans-unit id="fbc205ea3d06fa8f65973fa3b490ae172f71c087">
2189 <source>
2190 This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
2191 </source>
2192 <target>
2193 Dieses Video wird am <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/> veröffentlicht
2194 </target>
2195 <context-group name="null">
2196 <context context-type="linenumber">19</context>
2197 </context-group>
2198 </trans-unit>
2199 <trans-unit id="643ab402461b1169eebbe2ed790e12a9a83551aa">
2200 <source>
2201 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views
2202 </source>
2203 <target>
2204 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> Aufrufe
2205 </target>
2206 <context-group name="null">
2207 <context context-type="linenumber">30</context>
2208 </context-group>
2209 </trans-unit>
2210 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
2211 <source>Go the channel page</source>
2212 <target>Zur Seite des Kanals gehen</target>
2213 <context-group name="null">
2214 <context context-type="linenumber">35</context>
2215 </context-group>
2216 </trans-unit>
2217 <trans-unit id="ccc07df383b7a32be3e2e105faa5488caf261c1c">
2218 <source>By <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></source>
2219 <target>Von <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></target>
2220 <context-group name="null">
2221 <context context-type="linenumber">45</context>
2222 </context-group>
2223 </trans-unit>
2224 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
2225 <source>Go to the account page</source>
2226 <target>Gehe zur Kontoseite</target>
2227 <context-group name="null">
2228 <context context-type="linenumber">44</context>
2229 </context-group>
2230 </trans-unit>
2231 <trans-unit id="57075c778cf28b81272df4eb17da944366c98e51">
2232 <source>You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; and subscribe there. Subscription as a PeerTube user is being worked on in &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</source>
2233 <target>Du kannst dieses Konto mit einer beliebigen Fediverse-Instanz abonnieren, die ActivityPub unterstützt. Bei Mastodon oder Pleroma z. B. kannst du in das Suchfeld &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; eingeben und dort abonnieren. An einem Abonnement für PeerTube-Nutzer wird gearbeitet: &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;</target>
2234 <context-group name="null">
2235 <context context-type="linenumber">49</context>
2236 </context-group>
2237 </trans-unit>
2238 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced"> 1973 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced">
2239 <source>Like this video</source> 1974 <source>Like this video</source>
2240 <target>Das Video gefällt mir</target> 1975 <target>Das Video gefällt mir</target>
2241 <context-group name="null"> 1976 <context-group name="null">
2242 <context context-type="linenumber">59</context> 1977 <context context-type="linenumber">57</context>
2243 </context-group> 1978 </context-group>
2244 </trans-unit> 1979 </trans-unit>
2245 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509"> 1980 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509">
2246 <source>Dislike this video</source> 1981 <source>Dislike this video</source>
2247 <target>Das Video gefällt mir nicht</target> 1982 <target>Das Video gefällt mir nicht</target>
2248 <context-group name="null"> 1983 <context-group name="null">
2249 <context context-type="linenumber">66</context> 1984 <context context-type="linenumber">64</context>
2250 </context-group> 1985 </context-group>
2251 </trans-unit> 1986 </trans-unit>
2252 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2"> 1987 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2">
2253 <source>Download the video</source> 1988 <source>Download the video</source>
2254 <target>Video herunterladen</target> 1989 <target>Video herunterladen</target>
2255 <context-group name="null"> 1990 <context-group name="null">
2256 <context context-type="linenumber">86</context> 1991 <context context-type="linenumber">83</context>
2257 </context-group> 1992 </context-group>
2258 </trans-unit> 1993 </trans-unit>
2259 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a"> 1994 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a">
2260 <source>Report</source> 1995 <source>Report</source>
2261 <target>Melden</target> 1996 <target>Melden</target>
2262 <context-group name="null"> 1997 <context-group name="null">
2263 <context context-type="linenumber">93</context> 1998 <context context-type="linenumber">88</context>
2264 </context-group> 1999 </context-group>
2265 </trans-unit> 2000 </trans-unit>
2266 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf"> 2001 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf">
2267 <source>Report this video</source> 2002 <source>Report this video</source>
2268 <target>Dieses Video melden</target> 2003 <target>Dieses Video melden</target>
2269 <context-group name="null"> 2004 <context-group name="null">
2270 <context context-type="linenumber">92</context> 2005 <context context-type="linenumber">87</context>
2006 </context-group>
2007 </trans-unit>
2008 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1">
2009 <source>Update this video</source>
2010 <target>Dieses Video aktualisieren</target>
2011 <context-group name="null">
2012 <context context-type="linenumber">91</context>
2271 </context-group> 2013 </context-group>
2272 </trans-unit> 2014 </trans-unit>
2273 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61"> 2015 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61">
2274 <source>Blacklist</source> 2016 <source>Blacklist</source>
2275 <target>Sperren</target> 2017 <target>Sperren</target>
2276 <context-group name="null"> 2018 <context-group name="null">
2277 <context context-type="linenumber">99</context> 2019 <context context-type="linenumber">96</context>
2278 </context-group> 2020 </context-group>
2279 </trans-unit> 2021 </trans-unit>
2280 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037"> 2022 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037">
2281 <source>Blacklist this video</source> 2023 <source>Blacklist this video</source>
2282 <target>Dieses Video sperren</target> 2024 <target>Dieses Video sperren</target>
2283 <context-group name="null"> 2025 <context-group name="null">
2284 <context context-type="linenumber">98</context> 2026 <context context-type="linenumber">95</context>
2285 </context-group> 2027 </context-group>
2286 </trans-unit> 2028 </trans-unit>
2287 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1"> 2029 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
2288 <source>Update this video</source> 2030 <source>Unblacklist</source>
2289 <target>Dieses Video aktualisieren</target> 2031 <target>Entsperren</target>
2290 <context-group name="null"> 2032 <context-group name="null">
2291 <context context-type="linenumber">104</context> 2033 <context context-type="linenumber">100</context>
2292 </context-group> 2034 </context-group>
2293 </trans-unit> 2035 </trans-unit>
2294 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5"> 2036 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5">
2295 <source>Delete this video</source> 2037 <source>Delete this video</source>
2296 <target>Dieses Video löschen</target> 2038 <target>Dieses Video löschen</target>
2297 <context-group name="null"> 2039 <context-group name="null">
2298 <context context-type="linenumber">110</context> 2040 <context context-type="linenumber">103</context>
2299 </context-group>
2300 </trans-unit>
2301 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b">
2302 <source>Show more</source>
2303 <target>Mehr anzeigen</target>
2304 <context-group name="null">
2305 <context context-type="linenumber">130</context>
2306 </context-group> 2041 </context-group>
2307 </trans-unit> 2042 </trans-unit>
2308 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903"> 2043 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
2309 <source>Show less</source> 2044 <source>Go the channel page</source>
2310 <target>Weniger anzeigen</target> 2045 <target>Zur Seite des Kanals gehen</target>
2311 <context-group name="null"> 2046 <context-group name="null">
2312 <context context-type="linenumber">136</context> 2047 <context context-type="linenumber">123</context>
2313 </context-group> 2048 </context-group>
2314 </trans-unit> 2049 </trans-unit>
2315 <trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1"> 2050 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
2316 <source> 2051 <source>Go to the account page</source>
2317 Other videos 2052 <target>Gehe zur Kontoseite</target>
2318 </source>
2319 <target>
2320 Andere Videos
2321 </target>
2322 <context-group name="null"> 2053 <context-group name="null">
2323 <context context-type="linenumber">187</context> 2054 <context context-type="linenumber">133</context>
2324 </context-group> 2055 </context-group>
2325 </trans-unit> 2056 </trans-unit>
2326 <trans-unit id="fb779d2b25c4d0ffa7d52c823a240717e8c1fe6c"> 2057 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b">
2327 <source>Friendly Reminder:</source> 2058 <source>Show more</source>
2328 <target>Freundliche Erinnerung:</target> 2059 <target>Mehr anzeigen</target>
2329 <context-group name="null"> 2060 <context-group name="null">
2330 <context context-type="linenumber">199</context> 2061 <context context-type="linenumber">148</context>
2331 </context-group> 2062 </context-group>
2332 </trans-unit> 2063 </trans-unit>
2333 <trans-unit id="329900dd14bc4ca33cec3775d25c246e4cde7867"> 2064 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903">
2334 <source> 2065 <source>Show less</source>
2335 The sharing system used by this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. 2066 <target>Weniger anzeigen</target>
2336 </source>
2337 <target>
2338 Die zur Darstellung dieses Videos verwendete Technik sendet einige Daten über dein System (wie die öffentliche IP-Adresse) an andere Peers.
2339 </target>
2340 <context-group name="null"> 2067 <context-group name="null">
2341 <context context-type="linenumber">201</context> 2068 <context context-type="linenumber">154</context>
2342 </context-group> 2069 </context-group>
2343 </trans-unit> 2070 </trans-unit>
2344 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e"> 2071 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e">
2345 <source>More information</source> 2072 <source>More information</source>
2346 <target>Weitere Informationen</target> 2073 <target>Weitere Informationen</target>
2347 <context-group name="null"> 2074 <context-group name="null">
2348 <context context-type="linenumber">204</context> 2075 <context context-type="linenumber">214</context>
2349 </context-group> 2076 </context-group>
2350 </trans-unit> 2077 </trans-unit>
2351 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318"> 2078 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318">
2352 <source>Get more information</source> 2079 <source>Get more information</source>
2353 <target>Weitere Informationen bekommen</target> 2080 <target>Weitere Informationen bekommen</target>
2354 <context-group name="null"> 2081 <context-group name="null">
2355 <context context-type="linenumber">204</context> 2082 <context context-type="linenumber">214</context>
2356 </context-group> 2083 </context-group>
2357 </trans-unit> 2084 </trans-unit>
2358 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f"> 2085 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f">
@@ -2363,7 +2090,7 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
2363 OK 2090 OK
2364 </target> 2091 </target>
2365 <context-group name="null"> 2092 <context-group name="null">
2366 <context context-type="linenumber">207</context> 2093 <context context-type="linenumber">217</context>
2367 </context-group> 2094 </context-group>
2368 </trans-unit> 2095 </trans-unit>
2369 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7"> 2096 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7">
@@ -2424,7 +2151,7 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
2424 Kommentieren 2151 Kommentieren
2425 </target> 2152 </target>
2426 <context-group name="null"> 2153 <context-group name="null">
2427 <context context-type="linenumber">17</context> 2154 <context context-type="linenumber">18</context>
2428 </context-group> 2155 </context-group>
2429 </trans-unit> 2156 </trans-unit>
2430 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> 2157 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285">
@@ -2588,23 +2315,9 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
2588 <context context-type="linenumber">1</context> 2315 <context context-type="linenumber">1</context>
2589 </context-group> 2316 </context-group>
2590 </trans-unit> 2317 </trans-unit>
2591 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936"> 2318 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2592 <source>Following</source> 2319 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2593 <target>Abonniert</target> 2320 <target>Sperrung von <x id="INTERPOLATION" equiv-text="{{name}}"/> aufgehoben.</target>
2594 <context-group name="null">
2595 <context context-type="linenumber">1</context>
2596 </context-group>
2597 </trans-unit>
2598 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
2599 <source>Follow</source>
2600 <target>Abonnieren</target>
2601 <context-group name="null">
2602 <context context-type="linenumber">1</context>
2603 </context-group>
2604 </trans-unit>
2605 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
2606 <source>Followers</source>
2607 <target>Abonnenten</target>
2608 <context-group name="null"> 2321 <context-group name="null">
2609 <context context-type="linenumber">1</context> 2322 <context context-type="linenumber">1</context>
2610 </context-group> 2323 </context-group>
@@ -2658,27 +2371,6 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
2658 <context context-type="linenumber">1</context> 2371 <context context-type="linenumber">1</context>
2659 </context-group> 2372 </context-group>
2660 </trans-unit> 2373 </trans-unit>
2661 <trans-unit id="4733ad1d7e63960438c0203b9a64f165b5fc84f2">
2662 <source>Do you really want to remove this video from the blacklist ? It will be available again in the videos list.</source>
2663 <target>Willst du das Video wirklich entsperren? Es wird dann wieder gelistet.</target>
2664 <context-group name="null">
2665 <context context-type="linenumber">1</context>
2666 </context-group>
2667 </trans-unit>
2668 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2669 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2670 <target>Sperrung von <x id="INTERPOLATION" equiv-text="{{name}}"/> aufgehoben.</target>
2671 <context-group name="null">
2672 <context context-type="linenumber">1</context>
2673 </context-group>
2674 </trans-unit>
2675 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2676 <source>The new password and the confirmed password do not correspond.</source>
2677 <target>Die Passwörter stimmen nicht überein.</target>
2678 <context-group name="null">
2679 <context context-type="linenumber">1</context>
2680 </context-group>
2681 </trans-unit>
2682 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc"> 2374 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc">
2683 <source>Password updated.</source> 2375 <source>Password updated.</source>
2684 <target>Passwort aktualisiert.</target> 2376 <target>Passwort aktualisiert.</target>
@@ -2695,7 +2387,7 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
2695 </trans-unit> 2387 </trans-unit>
2696 <trans-unit id="e7d5b2de566e4c807c285daf8d8a78b5f7f33311"> 2388 <trans-unit id="e7d5b2de566e4c807c285daf8d8a78b5f7f33311">
2697 <source>Type your username to confirm</source> 2389 <source>Type your username to confirm</source>
2698 <target>Tippe deine Benutzernamen ein, um zu bestätigen</target> 2390 <target>Gib zur Bestätigung deinen Benutzernamen ein</target>
2699 <context-group name="null"> 2391 <context-group name="null">
2700 <context context-type="linenumber">1</context> 2392 <context context-type="linenumber">1</context>
2701 </context-group> 2393 </context-group>
@@ -2847,6 +2539,13 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
2847 <context context-type="linenumber">1</context> 2539 <context context-type="linenumber">1</context>
2848 </context-group> 2540 </context-group>
2849 </trans-unit> 2541 </trans-unit>
2542 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2543 <source>Unable to find user id or verification string.</source>
2544 <target>Benutzer-ID oder Verifizierungscode nicht gefunden.</target>
2545 <context-group name="null">
2546 <context context-type="linenumber">1</context>
2547 </context-group>
2548 </trans-unit>
2850 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7"> 2549 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7">
2851 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>. 2550 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>.
2852</source> 2551</source>
@@ -2884,13 +2583,6 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
2884 <context context-type="linenumber">1</context> 2583 <context context-type="linenumber">1</context>
2885 </context-group> 2584 </context-group>
2886 </trans-unit> 2585 </trans-unit>
2887 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2888 <source>Unable to find user id or verification string.</source>
2889 <target>Benutzer-ID oder Verifizierungscode nicht gefunden.</target>
2890 <context-group name="null">
2891 <context context-type="linenumber">1</context>
2892 </context-group>
2893 </trans-unit>
2894 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26"> 2586 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26">
2895 <source>Your password has been successfully reset!</source> 2587 <source>Your password has been successfully reset!</source>
2896 <target>Dein Passwort wurde zurückgesetzt!</target> 2588 <target>Dein Passwort wurde zurückgesetzt!</target>
@@ -3080,13 +2772,6 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
3080 <context context-type="linenumber">1</context> 2772 <context context-type="linenumber">1</context>
3081 </context-group> 2773 </context-group>
3082 </trans-unit> 2774 </trans-unit>
3083 <trans-unit id="ba88636d27c1a6a7e1f75ff57ec182b30b851c2e">
3084 <source>Transcoding threads must be greater than 1.</source>
3085 <target>Die Zahl der Transcodierungsthreads muss größer als 1 sein.</target>
3086 <context-group name="null">
3087 <context context-type="linenumber">1</context>
3088 </context-group>
3089 </trans-unit>
3090 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149"> 2775 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149">
3091 <source>Username is required.</source> 2776 <source>Username is required.</source>
3092 <target>Bitte gib einen Benutzernamen ein.</target> 2777 <target>Bitte gib einen Benutzernamen ein.</target>
@@ -3157,6 +2842,13 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
3157 <context context-type="linenumber">1</context> 2842 <context context-type="linenumber">1</context>
3158 </context-group> 2843 </context-group>
3159 </trans-unit> 2844 </trans-unit>
2845 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2846 <source>The new password and the confirmed password do not correspond.</source>
2847 <target>Die Passwörter stimmen nicht überein.</target>
2848 <context-group name="null">
2849 <context context-type="linenumber">1</context>
2850 </context-group>
2851 </trans-unit>
3160 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf"> 2852 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf">
3161 <source>Video quota is required.</source> 2853 <source>Video quota is required.</source>
3162 <target>Das Video-Kontingent muss angegeben werden.</target> 2854 <target>Das Video-Kontingent muss angegeben werden.</target>
@@ -3320,7 +3012,7 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
3320 </trans-unit> 3012 </trans-unit>
3321 <trans-unit id="a627c58cf1849d7d838696e7f36c1bae1a8b31a4"> 3013 <trans-unit id="a627c58cf1849d7d838696e7f36c1bae1a8b31a4">
3322 <source>Video privacy is required.</source> 3014 <source>Video privacy is required.</source>
3323 <target>Bitte gib einen Privatsphärestatus an.</target> 3015 <target>Die Sichtbarkeit muss angegeben werden.</target>
3324 <context-group name="null"> 3016 <context-group name="null">
3325 <context context-type="linenumber">1</context> 3017 <context context-type="linenumber">1</context>
3326 </context-group> 3018 </context-group>
@@ -3724,6 +3416,41 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
3724 <context context-type="linenumber">1</context> 3416 <context context-type="linenumber">1</context>
3725 </context-group> 3417 </context-group>
3726 </trans-unit> 3418 </trans-unit>
3419 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3420 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3421 <target>ca. <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3422 <context-group name="null">
3423 <context context-type="linenumber">1</context>
3424 </context-group>
3425 </trans-unit>
3426 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3427 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3428 <target>{VAR_PLURAL, plural, =1 {minute} oder {minutes} }</target>
3429 <context-group name="null">
3430 <context context-type="linenumber">1</context>
3431 </context-group>
3432 </trans-unit>
3433 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3434 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3435 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> Full-HD-Videos</target>
3436 <context-group name="null">
3437 <context context-type="linenumber">1</context>
3438 </context-group>
3439 </trans-unit>
3440 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3441 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3442 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> HD-Videos</target>
3443 <context-group name="null">
3444 <context context-type="linenumber">1</context>
3445 </context-group>
3446 </trans-unit>
3447 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3448 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3449 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> Videos mit durchschnittlicher Qualität</target>
3450 <context-group name="null">
3451 <context context-type="linenumber">1</context>
3452 </context-group>
3453 </trans-unit>
3727 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d"> 3454 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d">
3728 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source> 3455 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source>
3729 <target>Vor <x id="INTERPOLATION" equiv-text="{{interval}}"/> Jahren</target> 3456 <target>Vor <x id="INTERPOLATION" equiv-text="{{interval}}"/> Jahren</target>
@@ -3878,44 +3605,9 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
3878 <context context-type="linenumber">1</context> 3605 <context context-type="linenumber">1</context>
3879 </context-group> 3606 </context-group>
3880 </trans-unit> 3607 </trans-unit>
3881 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3882 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3883 <target>ca. <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3884 <context-group name="null">
3885 <context context-type="linenumber">1</context>
3886 </context-group>
3887 </trans-unit>
3888 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3889 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3890 <target>{VAR_PLURAL, plural, =1 {minute} oder {minutes} }</target>
3891 <context-group name="null">
3892 <context context-type="linenumber">1</context>
3893 </context-group>
3894 </trans-unit>
3895 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3896 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3897 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> Full-HD-Videos</target>
3898 <context-group name="null">
3899 <context context-type="linenumber">1</context>
3900 </context-group>
3901 </trans-unit>
3902 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3903 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3904 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> HD-Videos</target>
3905 <context-group name="null">
3906 <context context-type="linenumber">1</context>
3907 </context-group>
3908 </trans-unit>
3909 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3910 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3911 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> Videos mit durchschnittlicher Qualität</target>
3912 <context-group name="null">
3913 <context context-type="linenumber">1</context>
3914 </context-group>
3915 </trans-unit>
3916 <trans-unit id="320c9c3482a0ebe46da42ce9e0cbdc5ba26ea8bb"> 3608 <trans-unit id="320c9c3482a0ebe46da42ce9e0cbdc5ba26ea8bb">
3917 <source>Video to import updated.</source> 3609 <source>Video to import updated.</source>
3918 <target>Videoimport wurde aktualisiert.</target> 3610 <target>Zu importierendes Video wurde aktualisiert.</target>
3919 <context-group name="null"> 3611 <context-group name="null">
3920 <context context-type="linenumber">1</context> 3612 <context context-type="linenumber">1</context>
3921 </context-group> 3613 </context-group>
@@ -3962,13 +3654,6 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
3962 <context context-type="linenumber">1</context> 3654 <context context-type="linenumber">1</context>
3963 </context-group> 3655 </context-group>
3964 </trans-unit> 3656 </trans-unit>
3965 <trans-unit id="d31d39e8ee9b2f20bffb3468ee062eaa5409c59f">
3966 <source>Your video quota is exceeded with this video (video size: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, used: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, quota: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</source>
3967 <target>Dein Video-Kontingent ist mit diesem Video erschöpft (Größe des Videos: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, genutzt: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, Kontingent: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</target>
3968 <context-group name="null">
3969 <context context-type="linenumber">1</context>
3970 </context-group>
3971 </trans-unit>
3972 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce"> 3657 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce">
3973 <source>Video published.</source> 3658 <source>Video published.</source>
3974 <target>Video veröffentlicht.</target> 3659 <target>Video veröffentlicht.</target>
@@ -4004,20 +3689,6 @@ Wenn du ein Video in diesen Kanal hochlädst, wird das entsprechende Feld automa
4004 <context context-type="linenumber">1</context> 3689 <context context-type="linenumber">1</context>
4005 </context-group> 3690 </context-group>
4006 </trans-unit> 3691 </trans-unit>
4007 <trans-unit id="23b2c2f4dd69e29c3bff00469e259dcb01de5633">
4008 <source>Do you really want to blacklist this video?</source>
4009 <target>Möchtest du das Video wirklich sperren?</target>
4010 <context-group name="null">
4011 <context context-type="linenumber">1</context>
4012 </context-group>
4013 </trans-unit>
4014 <trans-unit id="cafd8ec6020e69f241a107b1cb7081bd9e773d4e">
4015 <source>Video <x id="INTERPOLATION" equiv-text="{{videoName}}"/> had been blacklisted.</source>
4016 <target>Video <x id="INTERPOLATION" equiv-text="{{videoName}}"/> wurde gesperrt.</target>
4017 <context-group name="null">
4018 <context context-type="linenumber">1</context>
4019 </context-group>
4020 </trans-unit>
4021 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95"> 3692 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95">
4022 <source>Do you really want to delete this video?</source> 3693 <source>Do you really want to delete this video?</source>
4023 <target>Möchtest du das Video wirklich löschen?</target> 3694 <target>Möchtest du das Video wirklich löschen?</target>
diff --git a/client/src/locale/target/angular_eo.xml b/client/src/locale/target/angular_eo.xml
index 07f385306..be42937bf 100644
--- a/client/src/locale/target/angular_eo.xml
+++ b/client/src/locale/target/angular_eo.xml
@@ -3,17 +3,6 @@
3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1"> 3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1">
4 <file source-language="en-US" datatype="plaintext" original="" target-language="eo"> 4 <file source-language="en-US" datatype="plaintext" original="" target-language="eo">
5 <body> 5 <body>
6 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
7 <source>
8 Cancel
9 </source>
10 <target>
11 Nuligi
12 </target>
13 <context-group name="null">
14 <context context-type="linenumber">45</context>
15 </context-group>
16 </trans-unit>
17 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46"> 6 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46">
18 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source> 7 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source>
19 <target>(postafiksoj: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, pleja grando: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target> 8 <target>(postafiksoj: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, pleja grando: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target>
@@ -25,14 +14,21 @@
25 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 14 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
26 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> rigardoj</target> 15 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> rigardoj</target>
27 <context-group name="null"> 16 <context-group name="null">
28 <context context-type="linenumber">34</context> 17 <context context-type="linenumber">12</context>
18 </context-group>
19 </trans-unit>
20 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7">
21 <source>Delete</source>
22 <target>Forigi</target>
23 <context-group name="null">
24 <context context-type="linenumber">15</context>
29 </context-group> 25 </context-group>
30 </trans-unit> 26 </trans-unit>
31 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> 27 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c">
32 <source>Edit</source> 28 <source>Edit</source>
33 <target>Redakti</target> 29 <target>Redakti</target>
34 <context-group name="null"> 30 <context-group name="null">
35 <context context-type="linenumber">3</context> 31 <context context-type="linenumber">5</context>
36 </context-group> 32 </context-group>
37 </trans-unit> 33 </trans-unit>
38 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> 34 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d">
@@ -46,7 +42,7 @@
46 <source>Complete preview</source> 42 <source>Complete preview</source>
47 <target>Plena antaŭrigardo</target> 43 <target>Plena antaŭrigardo</target>
48 <context-group name="null"> 44 <context-group name="null">
49 <context context-type="linenumber">10</context> 45 <context context-type="linenumber">13</context>
50 </context-group> 46 </context-group>
51 </trans-unit> 47 </trans-unit>
52 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> 48 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f">
@@ -56,6 +52,13 @@
56 <context context-type="linenumber">18</context> 52 <context context-type="linenumber">18</context>
57 </context-group> 53 </context-group>
58 </trans-unit> 54 </trans-unit>
55 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
56 <source>Video quota</source>
57 <target>Datumlimo por filmoj</target>
58 <context-group name="null">
59 <context context-type="linenumber">19</context>
60 </context-group>
61 </trans-unit>
59 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea"> 62 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea">
60 <source> 63 <source>
61 Login 64 Login
@@ -71,14 +74,14 @@
71 <source>User</source> 74 <source>User</source>
72 <target>Uzanto</target> 75 <target>Uzanto</target>
73 <context-group name="null"> 76 <context-group name="null">
74 <context context-type="linenumber">11</context> 77 <context context-type="linenumber">13</context>
75 </context-group> 78 </context-group>
76 </trans-unit> 79 </trans-unit>
77 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> 80 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478">
78 <source>Username or email address</source> 81 <source>Username or email address</source>
79 <target>Salutnomo aŭ retpoŝtadreso</target> 82 <target>Salutnomo aŭ retpoŝtadreso</target>
80 <context-group name="null"> 83 <context-group name="null">
81 <context context-type="linenumber">13</context> 84 <context context-type="linenumber">15</context>
82 </context-group> 85 </context-group>
83 </trans-unit> 86 </trans-unit>
84 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87"> 87 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87">
@@ -89,7 +92,7 @@
89 aŭ kreu konton 92 aŭ kreu konton
90 </target> 93 </target>
91 <context-group name="null"> 94 <context-group name="null">
92 <context context-type="linenumber">16</context> 95 <context context-type="linenumber">18</context>
93 </context-group> 96 </context-group>
94 </trans-unit> 97 </trans-unit>
95 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b"> 98 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b">
@@ -100,14 +103,14 @@
100 aŭ kreu konton ĉe alia nodo 103 aŭ kreu konton ĉe alia nodo
101 </target> 104 </target>
102 <context-group name="null"> 105 <context-group name="null">
103 <context context-type="linenumber">20</context> 106 <context context-type="linenumber">22</context>
104 </context-group> 107 </context-group>
105 </trans-unit> 108 </trans-unit>
106 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3"> 109 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3">
107 <source>User registration is not allowed on this instance, but you can register on many others!</source> 110 <source>User registration is not allowed on this instance, but you can register on many others!</source>
108 <target>Registrado de novaj uzantoj ne estas permesata ĉe tiu ĉi nodo, sed vi povas registriĝi ĉe multaj aliaj!</target> 111 <target>Registrado de novaj uzantoj ne estas permesata ĉe tiu ĉi nodo, sed vi povas registriĝi ĉe multaj aliaj!</target>
109 <context-group name="null"> 112 <context-group name="null">
110 <context context-type="linenumber">26</context> 113 <context context-type="linenumber">28</context>
111 </context-group> 114 </context-group>
112 </trans-unit> 115 </trans-unit>
113 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> 116 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407">
@@ -121,35 +124,35 @@
121 <source>I forgot my password</source> 124 <source>I forgot my password</source>
122 <target>Mi forgesis pasvorton</target> 125 <target>Mi forgesis pasvorton</target>
123 <context-group name="null"> 126 <context-group name="null">
124 <context context-type="linenumber">42</context> 127 <context context-type="linenumber">44</context>
125 </context-group> 128 </context-group>
126 </trans-unit> 129 </trans-unit>
127 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681"> 130 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681">
128 <source>Forgot your password</source> 131 <source>Forgot your password</source>
129 <target>Forgesita pasvorto</target> 132 <target>Forgesita pasvorto</target>
130 <context-group name="null"> 133 <context-group name="null">
131 <context context-type="linenumber">59</context> 134 <context context-type="linenumber">57</context>
132 </context-group> 135 </context-group>
133 </trans-unit> 136 </trans-unit>
134 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc"> 137 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc">
135 <source>Email</source> 138 <source>Email</source>
136 <target>Retpoŝtadreso</target> 139 <target>Retpoŝtadreso</target>
137 <context-group name="null"> 140 <context-group name="null">
138 <context context-type="linenumber">17</context> 141 <context context-type="linenumber">8</context>
139 </context-group> 142 </context-group>
140 </trans-unit> 143 </trans-unit>
141 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529"> 144 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529">
142 <source>Email address</source> 145 <source>Email address</source>
143 <target>Retpoŝtadreso</target> 146 <target>Retpoŝtadreso</target>
144 <context-group name="null"> 147 <context-group name="null">
145 <context context-type="linenumber">66</context> 148 <context context-type="linenumber">10</context>
146 </context-group> 149 </context-group>
147 </trans-unit> 150 </trans-unit>
148 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55"> 151 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55">
149 <source>Send me an email to reset my password</source> 152 <source>Send me an email to reset my password</source>
150 <target>Sendu al mi retleteron por restarigi mian pasvorton</target> 153 <target>Sendu al mi retleteron por restarigi mian pasvorton</target>
151 <context-group name="null"> 154 <context-group name="null">
152 <context context-type="linenumber">77</context> 155 <context context-type="linenumber">75</context>
153 </context-group> 156 </context-group>
154 </trans-unit> 157 </trans-unit>
155 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa"> 158 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa">
@@ -195,24 +198,6 @@
195 <context context-type="linenumber">3</context> 198 <context context-type="linenumber">3</context>
196 </context-group> 199 </context-group>
197 </trans-unit> 200 </trans-unit>
198 <trans-unit id="a6807b834e01ce165aa61fad157b0ff4288b6bf1">
199 <source>Initial video quota:</source>
200 <target>Komenca datumlimo por filmoj:</target>
201 <context-group name="null">
202 <context context-type="linenumber">8</context>
203 </context-group>
204 </trans-unit>
205 <trans-unit id="87b6b2c26215c5e712d3bfe4cc86ba53bc23451c">
206 <source>
207 Unlimited
208 </source>
209 <target>
210 Senlima
211 </target>
212 <context-group name="null">
213 <context context-type="linenumber">16</context>
214 </context-group>
215 </trans-unit>
216 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> 201 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48">
217 <source>Username</source> 202 <source>Username</source>
218 <target>Salutnomo</target> 203 <target>Salutnomo</target>
@@ -224,14 +209,14 @@
224 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source> 209 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source>
225 <target>Mi legis kaj konsentis &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;la kondiĉojn&lt;/a&gt; de ĉi tiu nodo</target> 210 <target>Mi legis kaj konsentis &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;la kondiĉojn&lt;/a&gt; de ĉi tiu nodo</target>
226 <context-group name="null"> 211 <context-group name="null">
227 <context context-type="linenumber">60</context> 212 <context context-type="linenumber">54</context>
228 </context-group> 213 </context-group>
229 </trans-unit> 214 </trans-unit>
230 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4"> 215 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4">
231 <source>Signup</source> 216 <source>Signup</source>
232 <target>Registriĝo</target> 217 <target>Registriĝo</target>
233 <context-group name="null"> 218 <context-group name="null">
234 <context context-type="linenumber">86</context> 219 <context context-type="linenumber">88</context>
235 </context-group> 220 </context-group>
236 </trans-unit> 221 </trans-unit>
237 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a"> 222 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a">
@@ -274,103 +259,70 @@
274 <source>Change the language</source> 259 <source>Change the language</source>
275 <target>Ŝanĝi la lingvon</target> 260 <target>Ŝanĝi la lingvon</target>
276 <context-group name="null"> 261 <context-group name="null">
277 <context context-type="linenumber">76</context> 262 <context context-type="linenumber">88</context>
278 </context-group>
279 </trans-unit>
280 <trans-unit id="b8ccc4f1b3f839fca9bd59e072f715fd487d540f">
281 <source>
282 My public profile
283 </source>
284 <target>
285 Mia publika profilo
286 </target>
287 <context-group name="null">
288 <context context-type="linenumber">19</context>
289 </context-group>
290 </trans-unit>
291 <trans-unit id="c84b721e9325c9cce20d92f4dbd66898ab5ec947">
292 <source>
293 My account
294 </source>
295 <target>
296 Mia konto
297 </target>
298 <context-group name="null">
299 <context context-type="linenumber">23</context>
300 </context-group>
301 </trans-unit>
302 <trans-unit id="ba7378cdaaa60b4fee17a551b232ad3512dac17d">
303 <source>
304 Log out
305 </source>
306 <target>
307 Adiaŭi
308 </target>
309 <context-group name="null">
310 <context context-type="linenumber">27</context>
311 </context-group> 263 </context-group>
312 </trans-unit> 264 </trans-unit>
313 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> 265 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9">
314 <source>Login</source> 266 <source>Login</source>
315 <target>Saluti</target> 267 <target>Saluti</target>
316 <context-group name="null"> 268 <context-group name="null">
317 <context context-type="linenumber">36</context> 269 <context context-type="linenumber">38</context>
318 </context-group> 270 </context-group>
319 </trans-unit> 271 </trans-unit>
320 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> 272 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87">
321 <source>Create an account</source> 273 <source>Create an account</source>
322 <target>Krei konton</target> 274 <target>Krei konton</target>
323 <context-group name="null"> 275 <context-group name="null">
324 <context context-type="linenumber">37</context> 276 <context context-type="linenumber">39</context>
325 </context-group> 277 </context-group>
326 </trans-unit> 278 </trans-unit>
327 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238"> 279 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238">
328 <source>Videos</source> 280 <source>Videos</source>
329 <target>Filmoj</target> 281 <target>Filmoj</target>
330 <context-group name="null"> 282 <context-group name="null">
331 <context context-type="linenumber">21</context> 283 <context context-type="linenumber">24</context>
332 </context-group> 284 </context-group>
333 </trans-unit> 285 </trans-unit>
334 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> 286 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807">
335 <source>Trending</source> 287 <source>Trending</source>
336 <target>Furoraj</target> 288 <target>Furoraj</target>
337 <context-group name="null"> 289 <context-group name="null">
338 <context context-type="linenumber">45</context> 290 <context context-type="linenumber">57</context>
339 </context-group> 291 </context-group>
340 </trans-unit> 292 </trans-unit>
341 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> 293 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1">
342 <source>Recently added</source> 294 <source>Recently added</source>
343 <target>Freŝe aldonitaj</target> 295 <target>Freŝe aldonitaj</target>
344 <context-group name="null"> 296 <context-group name="null">
345 <context context-type="linenumber">50</context> 297 <context context-type="linenumber">62</context>
346 </context-group> 298 </context-group>
347 </trans-unit> 299 </trans-unit>
348 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d"> 300 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d">
349 <source>Local</source> 301 <source>Local</source>
350 <target>Lokaj</target> 302 <target>Lokaj</target>
351 <context-group name="null"> 303 <context-group name="null">
352 <context context-type="linenumber">55</context> 304 <context context-type="linenumber">67</context>
353 </context-group> 305 </context-group>
354 </trans-unit> 306 </trans-unit>
355 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f"> 307 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f">
356 <source>More</source> 308 <source>More</source>
357 <target>Pli</target> 309 <target>Pli</target>
358 <context-group name="null"> 310 <context-group name="null">
359 <context context-type="linenumber">60</context> 311 <context context-type="linenumber">72</context>
360 </context-group> 312 </context-group>
361 </trans-unit> 313 </trans-unit>
362 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> 314 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919">
363 <source>Administration</source> 315 <source>Administration</source>
364 <target>Administrado</target> 316 <target>Administrado</target>
365 <context-group name="null"> 317 <context-group name="null">
366 <context context-type="linenumber">64</context> 318 <context context-type="linenumber">76</context>
367 </context-group> 319 </context-group>
368 </trans-unit> 320 </trans-unit>
369 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> 321 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a">
370 <source>About</source> 322 <source>About</source>
371 <target>Pri</target> 323 <target>Pri</target>
372 <context-group name="null"> 324 <context-group name="null">
373 <context context-type="linenumber">23</context> 325 <context context-type="linenumber">25</context>
374 </context-group> 326 </context-group>
375 </trans-unit> 327 </trans-unit>
376 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> 328 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599">
@@ -433,21 +385,21 @@
433 <source>Category</source> 385 <source>Category</source>
434 <target>Kategorio</target> 386 <target>Kategorio</target>
435 <context-group name="null"> 387 <context-group name="null">
436 <context context-type="linenumber">148</context> 388 <context context-type="linenumber">166</context>
437 </context-group> 389 </context-group>
438 </trans-unit> 390 </trans-unit>
439 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c"> 391 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c">
440 <source>Licence</source> 392 <source>Licence</source>
441 <target>Permesilo</target> 393 <target>Permesilo</target>
442 <context-group name="null"> 394 <context-group name="null">
443 <context context-type="linenumber">157</context> 395 <context context-type="linenumber">175</context>
444 </context-group> 396 </context-group>
445 </trans-unit> 397 </trans-unit>
446 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619"> 398 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619">
447 <source>Language</source> 399 <source>Language</source>
448 <target>Lingvo</target> 400 <target>Lingvo</target>
449 <context-group name="null"> 401 <context-group name="null">
450 <context context-type="linenumber">166</context> 402 <context context-type="linenumber">184</context>
451 </context-group> 403 </context-group>
452 </trans-unit> 404 </trans-unit>
453 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8"> 405 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8">
@@ -482,7 +434,7 @@
482 <source>Instance</source> 434 <source>Instance</source>
483 <target>Nodo</target> 435 <target>Nodo</target>
484 <context-group name="null"> 436 <context-group name="null">
485 <context context-type="linenumber">7</context> 437 <context context-type="linenumber">8</context>
486 </context-group> 438 </context-group>
487 </trans-unit> 439 </trans-unit>
488 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390"> 440 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390">
@@ -507,14 +459,14 @@
507 <source>Description</source> 459 <source>Description</source>
508 <target>Priskribo</target> 460 <target>Priskribo</target>
509 <context-group name="null"> 461 <context-group name="null">
510 <context context-type="linenumber">23</context> 462 <context context-type="linenumber">26</context>
511 </context-group> 463 </context-group>
512 </trans-unit> 464 </trans-unit>
513 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774"> 465 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774">
514 <source>Terms</source> 466 <source>Terms</source>
515 <target>Kondiĉoj</target> 467 <target>Kondiĉoj</target>
516 <context-group name="null"> 468 <context-group name="null">
517 <context context-type="linenumber">43</context> 469 <context context-type="linenumber">44</context>
518 </context-group> 470 </context-group>
519 </trans-unit> 471 </trans-unit>
520 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27"> 472 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27">
@@ -855,7 +807,7 @@
855 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source> 807 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source>
856 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> abonantoj</target> 808 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> abonantoj</target>
857 <context-group name="null"> 809 <context-group name="null">
858 <context context-type="linenumber">11</context> 810 <context context-type="linenumber">14</context>
859 </context-group> 811 </context-group>
860 </trans-unit> 812 </trans-unit>
861 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f"> 813 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f">
@@ -869,49 +821,49 @@
869 <source>Name</source> 821 <source>Name</source>
870 <target>Nomo</target> 822 <target>Nomo</target>
871 <context-group name="null"> 823 <context-group name="null">
872 <context context-type="linenumber">9</context> 824 <context context-type="linenumber">12</context>
873 </context-group> 825 </context-group>
874 </trans-unit> 826 </trans-unit>
875 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b"> 827 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b">
876 <source>Short description</source> 828 <source>Short description</source>
877 <target>Mallonga priskribo</target> 829 <target>Mallonga priskribo</target>
878 <context-group name="null"> 830 <context-group name="null">
879 <context context-type="linenumber">21</context> 831 <context context-type="linenumber">22</context>
880 </context-group> 832 </context-group>
881 </trans-unit> 833 </trans-unit>
882 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003"> 834 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003">
883 <source>Default client route</source> 835 <source>Default client route</source>
884 <target>Norma klienta vojo</target> 836 <target>Norma klienta vojo</target>
885 <context-group name="null"> 837 <context-group name="null">
886 <context context-type="linenumber">54</context> 838 <context context-type="linenumber">55</context>
887 </context-group> 839 </context-group>
888 </trans-unit> 840 </trans-unit>
889 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948"> 841 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948">
890 <source>Videos Trending</source> 842 <source>Videos Trending</source>
891 <target>Filmoj furoraj</target> 843 <target>Filmoj furoraj</target>
892 <context-group name="null"> 844 <context-group name="null">
893 <context context-type="linenumber">57</context> 845 <context context-type="linenumber">59</context>
894 </context-group> 846 </context-group>
895 </trans-unit> 847 </trans-unit>
896 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883"> 848 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883">
897 <source>Videos Recently Added</source> 849 <source>Videos Recently Added</source>
898 <target>Filmoj freŝe aldonitaj</target> 850 <target>Filmoj freŝe aldonitaj</target>
899 <context-group name="null"> 851 <context-group name="null">
900 <context context-type="linenumber">58</context> 852 <context context-type="linenumber">60</context>
901 </context-group> 853 </context-group>
902 </trans-unit> 854 </trans-unit>
903 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f"> 855 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f">
904 <source>Local videos</source> 856 <source>Local videos</source>
905 <target>Filmoj lokaj</target> 857 <target>Filmoj lokaj</target>
906 <context-group name="null"> 858 <context-group name="null">
907 <context context-type="linenumber">59</context> 859 <context context-type="linenumber">61</context>
908 </context-group> 860 </context-group>
909 </trans-unit> 861 </trans-unit>
910 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9"> 862 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9">
911 <source>Policy on videos containing sensitive content</source> 863 <source>Policy on videos containing sensitive content</source>
912 <target>Politiko pri filmoj kun konsterna enhavo</target> 864 <target>Politiko pri filmoj kun konsterna enhavo</target>
913 <context-group name="null"> 865 <context-group name="null">
914 <context context-type="linenumber">68</context> 866 <context context-type="linenumber">70</context>
915 </context-group> 867 </context-group>
916 </trans-unit> 868 </trans-unit>
917 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df"> 869 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df">
@@ -946,14 +898,14 @@
946 <source>Signup enabled</source> 898 <source>Signup enabled</source>
947 <target>Registriĝoj ŝaltitaj</target> 899 <target>Registriĝoj ŝaltitaj</target>
948 <context-group name="null"> 900 <context-group name="null">
949 <context context-type="linenumber">90</context> 901 <context context-type="linenumber">92</context>
950 </context-group> 902 </context-group>
951 </trans-unit> 903 </trans-unit>
952 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402"> 904 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402">
953 <source>Signup limit</source> 905 <source>Signup limit</source>
954 <target>Limo de registriĝoj</target> 906 <target>Limo de registriĝoj</target>
955 <context-group name="null"> 907 <context-group name="null">
956 <context context-type="linenumber">94</context> 908 <context context-type="linenumber">101</context>
957 </context-group> 909 </context-group>
958 </trans-unit> 910 </trans-unit>
959 <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36"> 911 <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36">
@@ -967,42 +919,42 @@
967 <source>Video import with HTTP enabled</source> 919 <source>Video import with HTTP enabled</source>
968 <target>Enporto de filmoj per HTTP ŝaltita</target> 920 <target>Enporto de filmoj per HTTP ŝaltita</target>
969 <context-group name="null"> 921 <context-group name="null">
970 <context context-type="linenumber">108</context> 922 <context context-type="linenumber">115</context>
971 </context-group> 923 </context-group>
972 </trans-unit> 924 </trans-unit>
973 <trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e"> 925 <trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e">
974 <source>Video import with a torrent file or a magnet URI enabled</source> 926 <source>Video import with a torrent file or a magnet URI enabled</source>
975 <target>Enporto de filmoj per torenta dosiero aŭ magneta ligilo ŝaltita</target> 927 <target>Enporto de filmoj per torenta dosiero aŭ magneta ligilo ŝaltita</target>
976 <context-group name="null"> 928 <context-group name="null">
977 <context context-type="linenumber">113</context> 929 <context context-type="linenumber">120</context>
978 </context-group> 930 </context-group>
979 </trans-unit> 931 </trans-unit>
980 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011"> 932 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011">
981 <source>Administrator</source> 933 <source>Administrator</source>
982 <target>Administranto</target> 934 <target>Administranto</target>
983 <context-group name="null"> 935 <context-group name="null">
984 <context context-type="linenumber">116</context> 936 <context context-type="linenumber">123</context>
985 </context-group> 937 </context-group>
986 </trans-unit> 938 </trans-unit>
987 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> 939 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587">
988 <source>Admin email</source> 940 <source>Admin email</source>
989 <target>Retpoŝtadreso de administranto</target> 941 <target>Retpoŝtadreso de administranto</target>
990 <context-group name="null"> 942 <context-group name="null">
991 <context context-type="linenumber">119</context> 943 <context context-type="linenumber">126</context>
992 </context-group> 944 </context-group>
993 </trans-unit> 945 </trans-unit>
994 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be"> 946 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be">
995 <source>Users</source> 947 <source>Users</source>
996 <target>Uzantoj</target> 948 <target>Uzantoj</target>
997 <context-group name="null"> 949 <context-group name="null">
998 <context context-type="linenumber">129</context> 950 <context context-type="linenumber">136</context>
999 </context-group> 951 </context-group>
1000 </trans-unit> 952 </trans-unit>
1001 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09"> 953 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09">
1002 <source>User default video quota</source> 954 <source>User default video quota</source>
1003 <target>Norma datumlimo por filmoj de uzantoj</target> 955 <target>Norma datumlimo por filmoj de uzantoj</target>
1004 <context-group name="null"> 956 <context-group name="null">
1005 <context context-type="linenumber">132</context> 957 <context context-type="linenumber">139</context>
1006 </context-group> 958 </context-group>
1007 </trans-unit> 959 </trans-unit>
1008 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5"> 960 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5">
@@ -1016,194 +968,133 @@
1016 <source>Twitter</source> 968 <source>Twitter</source>
1017 <target>Tvitero</target> 969 <target>Tvitero</target>
1018 <context-group name="null"> 970 <context-group name="null">
1019 <context context-type="linenumber">148</context> 971 <context context-type="linenumber">170</context>
1020 </context-group> 972 </context-group>
1021 </trans-unit> 973 </trans-unit>
1022 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> 974 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524">
1023 <source>Your Twitter username</source> 975 <source>Your Twitter username</source>
1024 <target>Via Tvitera salutnomo</target> 976 <target>Via Tvitera salutnomo</target>
1025 <context-group name="null"> 977 <context-group name="null">
1026 <context context-type="linenumber">151</context> 978 <context context-type="linenumber">173</context>
1027 </context-group> 979 </context-group>
1028 </trans-unit> 980 </trans-unit>
1029 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c"> 981 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c">
1030 <source>Indicates the Twitter account for the website or platform on which the content was published.</source> 982 <source>Indicates the Twitter account for the website or platform on which the content was published.</source>
1031 <target>Indikas konton de Twitter por la retejo aŭ platformo, sur kiu la afero publikiĝis.</target> 983 <target>Indikas konton de Twitter por la retejo aŭ platformo, sur kiu la afero publikiĝis.</target>
1032 <context-group name="null"> 984 <context-group name="null">
1033 <context context-type="linenumber">154</context> 985 <context context-type="linenumber">176</context>
1034 </context-group> 986 </context-group>
1035 </trans-unit> 987 </trans-unit>
1036 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605"> 988 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605">
1037 <source>Instance whitelisted by Twitter</source> 989 <source>Instance whitelisted by Twitter</source>
1038 <target>Nodo permesata de Twitter</target> 990 <target>Nodo permesata de Twitter</target>
1039 <context-group name="null"> 991 <context-group name="null">
1040 <context context-type="linenumber">167</context> 992 <context context-type="linenumber">189</context>
1041 </context-group>
1042 </trans-unit>
1043 <trans-unit id="3f008a1a07ca42c6ad258fde1bbd80ed74ada19b">
1044 <source>If your instance is whitelisted by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.&lt;br /&gt;
1045If the instance is not whitelisted, we use an image link card that will redirect on your PeerTube instance.&lt;br /&gt;&lt;br /&gt;
1046Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; to see if you instance is whitelisted.</source>
1047 <target>Se via nodo estas permesata de Twitter, film-ludujo estos enkorpigita en la abonfluo en Twitter post kunhavigo de la filmo.&lt;br /&gt;
1048Se la nodo ne estas permesata, ni ligos al la filmo sur via nodo per bildo.&lt;br /&gt;&lt;br /&gt;
1049Marku ĉi tiun markbutonon, konservu la agordon, kaj provu ĝin kun ligilo al filmo sur via nodo (https://ekzemplo.net/videos/watch/blablabla) en &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; por vidi, ĉu vio nodo estas permesata.</target>
1050 <context-group name="null">
1051 <context context-type="linenumber">168</context>
1052 </context-group> 993 </context-group>
1053 </trans-unit> 994 </trans-unit>
1054 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> 995 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5">
1055 <source>Services</source> 996 <source>Services</source>
1056 <target>Servoj</target> 997 <target>Servoj</target>
1057 <context-group name="null"> 998 <context-group name="null">
1058 <context context-type="linenumber">146</context> 999 <context context-type="linenumber">168</context>
1059 </context-group> 1000 </context-group>
1060 </trans-unit> 1001 </trans-unit>
1061 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490"> 1002 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490">
1062 <source>Transcoding</source> 1003 <source>Transcoding</source>
1063 <target>Transkodado</target> 1004 <target>Transkodado</target>
1064 <context-group name="null"> 1005 <context-group name="null">
1065 <context context-type="linenumber">176</context> 1006 <context context-type="linenumber">200</context>
1066 </context-group> 1007 </context-group>
1067 </trans-unit> 1008 </trans-unit>
1068 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> 1009 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9">
1069 <source>Transcoding enabled</source> 1010 <source>Transcoding enabled</source>
1070 <target>Transkodado ŝaltita</target> 1011 <target>Transkodado ŝaltita</target>
1071 <context-group name="null"> 1012 <context-group name="null">
1072 <context context-type="linenumber">180</context> 1013 <context context-type="linenumber">204</context>
1073 </context-group> 1014 </context-group>
1074 </trans-unit> 1015 </trans-unit>
1075 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> 1016 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f">
1076 <source>If you disable transcoding, many videos from your users will not work!</source> 1017 <source>If you disable transcoding, many videos from your users will not work!</source>
1077 <target>Se vi malŝaltos transkodadon, multaj filmoj de viaj uzantoj eble ne funkcios!</target> 1018 <target>Se vi malŝaltos transkodadon, multaj filmoj de viaj uzantoj eble ne funkcios!</target>
1078 <context-group name="null"> 1019 <context-group name="null">
1079 <context context-type="linenumber">181</context> 1020 <context context-type="linenumber">205</context>
1080 </context-group> 1021 </context-group>
1081 </trans-unit> 1022 </trans-unit>
1082 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> 1023 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2">
1083 <source>Transcoding threads</source> 1024 <source>Transcoding threads</source>
1084 <target>Fadenoj por transkodado</target> 1025 <target>Fadenoj por transkodado</target>
1085 <context-group name="null"> 1026 <context-group name="null">
1086 <context context-type="linenumber">187</context> 1027 <context context-type="linenumber">211</context>
1087 </context-group> 1028 </context-group>
1088 </trans-unit> 1029 </trans-unit>
1089 <trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500"> 1030 <trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500">
1090 <source>Resolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> enabled</source> 1031 <source>Resolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> enabled</source>
1091 <target>Distingo <x id="INTERPOLATION" equiv-text="{{resolution}}"/> ŝaltita</target> 1032 <target>Distingo <x id="INTERPOLATION" equiv-text="{{resolution}}"/> ŝaltita</target>
1092 <context-group name="null"> 1033 <context-group name="null">
1093 <context context-type="linenumber">203</context> 1034 <context context-type="linenumber">227</context>
1094 </context-group>
1095 </trans-unit>
1096 <trans-unit id="f86acfe567b75b7ea85af6f1cb3efb88085dfb9a">
1097 <source>
1098 Cache
1099
1100 <x id="START_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;my-help&gt;"/><x id="CLOSE_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;/my-help&gt;"/>
1101 </source>
1102 <target>
1103 Kaŝmemoro
1104
1105 <x id="START_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;my-help&gt;"/><x id="CLOSE_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;/my-help&gt;"/>
1106 </target>
1107 <context-group name="null">
1108 <context context-type="linenumber">209</context>
1109 </context-group> 1035 </context-group>
1110 </trans-unit> 1036 </trans-unit>
1111 <trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0"> 1037 <trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0">
1112 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source> 1038 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source>
1113 <target>Iuj dosieroj ne estas federataj (antaŭrigardoj, transskriboj). Ni prenas kaj kaŝmemoras ilin rekte el la fonta nodo.</target> 1039 <target>Iuj dosieroj ne estas federataj (antaŭrigardoj, transskriboj). Ni prenas kaj kaŝmemoras ilin rekte el la fonta nodo.</target>
1114 <context-group name="null"> 1040 <context-group name="null">
1115 <context context-type="linenumber">214</context> 1041 <context context-type="linenumber">238</context>
1116 </context-group> 1042 </context-group>
1117 </trans-unit> 1043 </trans-unit>
1118 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7"> 1044 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7">
1119 <source>Previews cache size</source> 1045 <source>Previews cache size</source>
1120 <target>Grando de antaŭrigarda kaŝmemoro</target> 1046 <target>Grando de antaŭrigarda kaŝmemoro</target>
1121 <context-group name="null"> 1047 <context-group name="null">
1122 <context context-type="linenumber">219</context> 1048 <context context-type="linenumber">243</context>
1123 </context-group> 1049 </context-group>
1124 </trans-unit> 1050 </trans-unit>
1125 <trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607"> 1051 <trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607">
1126 <source>Video captions cache size</source> 1052 <source>Video captions cache size</source>
1127 <target>Grandeco de kaŝmemoro por filmaj transskriboj.</target> 1053 <target>Grandeco de kaŝmemoro por filmaj transskriboj.</target>
1128 <context-group name="null"> 1054 <context-group name="null">
1129 <context context-type="linenumber">230</context> 1055 <context context-type="linenumber">254</context>
1130 </context-group> 1056 </context-group>
1131 </trans-unit> 1057 </trans-unit>
1132 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c"> 1058 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c">
1133 <source>Customizations</source> 1059 <source>Customizations</source>
1134 <target>Adaptoj</target> 1060 <target>Adaptoj</target>
1135 <context-group name="null"> 1061 <context-group name="null">
1136 <context context-type="linenumber">240</context> 1062 <context context-type="linenumber">264</context>
1137 </context-group> 1063 </context-group>
1138 </trans-unit> 1064 </trans-unit>
1139 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> 1065 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c">
1140 <source>JavaScript</source> 1066 <source>JavaScript</source>
1141 <target>Ĝavoskripto</target> 1067 <target>Ĝavoskripto</target>
1142 <context-group name="null"> 1068 <context-group name="null">
1143 <context context-type="linenumber">243</context> 1069 <context context-type="linenumber">267</context>
1144 </context-group> 1070 </context-group>
1145 </trans-unit> 1071 </trans-unit>
1146 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c"> 1072 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c">
1147 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source> 1073 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source>
1148 <target>Skribu rekte Ĝavoskriptan kodon.&lt;br /&gt;Ekzemple: &lt;pre&gt;console.log('mia nodo bonegas');&lt;/pre&gt;</target> 1074 <target>Skribu rekte Ĝavoskriptan kodon.&lt;br /&gt;Ekzemple: &lt;pre&gt;console.log('mia nodo bonegas');&lt;/pre&gt;</target>
1149 <context-group name="null"> 1075 <context-group name="null">
1150 <context context-type="linenumber">246</context> 1076 <context context-type="linenumber">270</context>
1151 </context-group>
1152 </trans-unit>
1153 <trans-unit id="f133b08d6519081bfb8ef51cff4bf2b3af23dde6">
1154 <source>
1155 Write directly CSS code. Example:&lt;br /&gt;
1156 &lt;pre&gt;
1157 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1158 background-color: red;
1159 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1160 &lt;/pre&gt;
1161
1162 Prepend with &lt;em&gt;#custom-css&lt;/em&gt; to override styles. Example:
1163 &lt;pre&gt;
1164 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1165 color: red;
1166 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1167 &lt;/pre&gt;
1168 </source>
1169 <target>
1170 Skribu rekte CSS-kodon. Ekzemple:&lt;br /&gt;
1171 &lt;pre&gt;
1172 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1173 background-color: red;
1174 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1175 &lt;/pre&gt;
1176
1177 Antaŭmetu &lt;em&gt;#custom-css&lt;/em&gt; por transpasi stilojn. Ekzemple:
1178 &lt;pre&gt;
1179 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1180 color: red;
1181 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1182 &lt;/pre&gt;
1183 </target>
1184 <context-group name="null">
1185 <context context-type="linenumber">262</context>
1186 </context-group> 1077 </context-group>
1187 </trans-unit> 1078 </trans-unit>
1188 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> 1079 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab">
1189 <source>Advanced configuration</source> 1080 <source>Advanced configuration</source>
1190 <target>Specialaj agordoj</target> 1081 <target>Specialaj agordoj</target>
1191 <context-group name="null"> 1082 <context-group name="null">
1192 <context context-type="linenumber">174</context> 1083 <context context-type="linenumber">197</context>
1193 </context-group> 1084 </context-group>
1194 </trans-unit> 1085 </trans-unit>
1195 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> 1086 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8">
1196 <source>Update configuration</source> 1087 <source>Update configuration</source>
1197 <target>Efektivigi agordojn</target> 1088 <target>Efektivigi agordojn</target>
1198 <context-group name="null"> 1089 <context-group name="null">
1199 <context context-type="linenumber">289</context> 1090 <context context-type="linenumber">314</context>
1200 </context-group> 1091 </context-group>
1201 </trans-unit> 1092 </trans-unit>
1202 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca"> 1093 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca">
1203 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source> 1094 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source>
1204 <target>Ŝajnas, ke la agordo estas nevalida. Bonvolu serĉi eblajn erarojn en la langetoj.</target> 1095 <target>Ŝajnas, ke la agordo estas nevalida. Bonvolu serĉi eblajn erarojn en la langetoj.</target>
1205 <context-group name="null"> 1096 <context-group name="null">
1206 <context context-type="linenumber">290</context> 1097 <context context-type="linenumber">315</context>
1207 </context-group> 1098 </context-group>
1208 </trans-unit> 1099 </trans-unit>
1209 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c"> 1100 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c">
@@ -1228,28 +1119,6 @@ Marku ĉi tiun markbutonon, konservu la agordon, kaj provu ĝin kun ligilo al fi
1228 <context context-type="linenumber">7</context> 1119 <context context-type="linenumber">7</context>
1229 </context-group> 1120 </context-group>
1230 </trans-unit> 1121 </trans-unit>
1231 <trans-unit id="1c9406213cf05033eda4d3df678217b5eb822315">
1232 <source>
1233 Video abuses
1234 </source>
1235 <target>
1236 Filmaj misuzoj
1237 </target>
1238 <context-group name="null">
1239 <context context-type="linenumber">11</context>
1240 </context-group>
1241 </trans-unit>
1242 <trans-unit id="96ccede058f0022f34230c3adc09e60076b6d037">
1243 <source>
1244 Video blacklist
1245 </source>
1246 <target>
1247 Fortenataj videoj
1248 </target>
1249 <context-group name="null">
1250 <context context-type="linenumber">15</context>
1251 </context-group>
1252 </trans-unit>
1253 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368"> 1122 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368">
1254 <source> 1123 <source>
1255 Jobs 1124 Jobs
@@ -1258,7 +1127,7 @@ Marku ĉi tiun markbutonon, konservu la agordon, kaj provu ĝin kun ligilo al fi
1258 Taskoj 1127 Taskoj
1259 </target> 1128 </target>
1260 <context-group name="null"> 1129 <context-group name="null">
1261 <context context-type="linenumber">19</context> 1130 <context context-type="linenumber">15</context>
1262 </context-group> 1131 </context-group>
1263 </trans-unit> 1132 </trans-unit>
1264 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13"> 1133 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13">
@@ -1269,7 +1138,7 @@ Marku ĉi tiun markbutonon, konservu la agordon, kaj provu ĝin kun ligilo al fi
1269 Agordo 1138 Agordo
1270 </target> 1139 </target>
1271 <context-group name="null"> 1140 <context-group name="null">
1272 <context context-type="linenumber">23</context> 1141 <context context-type="linenumber">19</context>
1273 </context-group> 1142 </context-group>
1274 </trans-unit> 1143 </trans-unit>
1275 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396"> 1144 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396">
@@ -1339,6 +1208,27 @@ Marku ĉi tiun markbutonon, konservu la agordon, kaj provu ĝin kun ligilo al fi
1339 <context context-type="linenumber">2</context> 1208 <context context-type="linenumber">2</context>
1340 </context-group> 1209 </context-group>
1341 </trans-unit> 1210 </trans-unit>
1211 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936">
1212 <source>Following</source>
1213 <target>Abonatoj</target>
1214 <context-group name="null">
1215 <context context-type="linenumber">5</context>
1216 </context-group>
1217 </trans-unit>
1218 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
1219 <source>Follow</source>
1220 <target>Aboni</target>
1221 <context-group name="null">
1222 <context context-type="linenumber">7</context>
1223 </context-group>
1224 </trans-unit>
1225 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
1226 <source>Followers</source>
1227 <target>Abonantoj</target>
1228 <context-group name="null">
1229 <context context-type="linenumber">9</context>
1230 </context-group>
1231 </trans-unit>
1342 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f"> 1232 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f">
1343 <source>Jobs list</source> 1233 <source>Jobs list</source>
1344 <target>Listo de taskoj</target> 1234 <target>Listo de taskoj</target>
@@ -1399,14 +1289,7 @@ Marku ĉi tiun markbutonon, konservu la agordon, kaj provu ĝin kun ligilo al fi
1399 <source>Role</source> 1289 <source>Role</source>
1400 <target>Rolo</target> 1290 <target>Rolo</target>
1401 <context-group name="null"> 1291 <context-group name="null">
1402 <context context-type="linenumber">19</context> 1292 <context context-type="linenumber">20</context>
1403 </context-group>
1404 </trans-unit>
1405 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
1406 <source>Video quota</source>
1407 <target>Datumlimo por filmoj</target>
1408 <context-group name="null">
1409 <context context-type="linenumber">18</context>
1410 </context-group> 1293 </context-group>
1411 </trans-unit> 1294 </trans-unit>
1412 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345"> 1295 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345">
@@ -1422,6 +1305,13 @@ Marku ĉi tiun markbutonon, konservu la agordon, kaj provu ĝin kun ligilo al fi
1422 <context context-type="linenumber">65</context> 1305 <context context-type="linenumber">65</context>
1423 </context-group> 1306 </context-group>
1424 </trans-unit> 1307 </trans-unit>
1308 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
1309 <source>Reason...</source>
1310 <target>Kialo…</target>
1311 <context-group name="null">
1312 <context context-type="linenumber">11</context>
1313 </context-group>
1314 </trans-unit>
1425 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f"> 1315 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f">
1426 <source>Users list</source> 1316 <source>Users list</source>
1427 <target>Listo de uzantoj</target> 1317 <target>Listo de uzantoj</target>
@@ -1433,91 +1323,42 @@ Marku ĉi tiun markbutonon, konservu la agordon, kaj provu ĝin kun ligilo al fi
1433 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source> 1323 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1434 <target>Salutnomo <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target> 1324 <target>Salutnomo <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1435 <context-group name="null"> 1325 <context-group name="null">
1436 <context context-type="linenumber">16</context> 1326 <context context-type="linenumber">17</context>
1437 </context-group>
1438 </trans-unit>
1439 <trans-unit id="0c7e8870481f1287af6a142f538391d8c16c2408">
1440 <source>Video abuses list</source>
1441 <target>Listo de filmaj misuzoj</target>
1442 <context-group name="null">
1443 <context context-type="linenumber">2</context>
1444 </context-group>
1445 </trans-unit>
1446 <trans-unit id="4ba250869daa372b54d24fafc0ea934769ee4076">
1447 <source>Reason</source>
1448 <target>Kialo</target>
1449 <context-group name="null">
1450 <context context-type="linenumber">11</context>
1451 </context-group> 1327 </context-group>
1452 </trans-unit> 1328 </trans-unit>
1453 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2"> 1329 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2">
1454 <source>Reporter</source> 1330 <source>Reporter</source>
1455 <target>Raportinto</target> 1331 <target>Raportinto</target>
1456 <context-group name="null"> 1332 <context-group name="null">
1457 <context context-type="linenumber">12</context> 1333 <context context-type="linenumber">8</context>
1458 </context-group> 1334 </context-group>
1459 </trans-unit> 1335 </trans-unit>
1460 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4"> 1336 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4">
1461 <source>Video</source> 1337 <source>Video</source>
1462 <target>Filmo</target> 1338 <target>Filmo</target>
1463 <context-group name="null"> 1339 <context-group name="null">
1464 <context context-type="linenumber">9</context> 1340 <context context-type="linenumber">14</context>
1465 </context-group> 1341 </context-group>
1466 </trans-unit> 1342 </trans-unit>
1467 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7"> 1343 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7">
1468 <source>Go to the account</source> 1344 <source>Go to the account</source>
1469 <target>Iri al la konto</target> 1345 <target>Iri al la konto</target>
1470 <context-group name="null"> 1346 <context-group name="null">
1471 <context context-type="linenumber">22</context> 1347 <context context-type="linenumber">27</context>
1472 </context-group> 1348 </context-group>
1473 </trans-unit> 1349 </trans-unit>
1474 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5"> 1350 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5">
1475 <source>Go to the video</source> 1351 <source>Go to the video</source>
1476 <target>Iri al la filmo</target> 1352 <target>Iri al la filmo</target>
1477 <context-group name="null"> 1353 <context-group name="null">
1478 <context context-type="linenumber">28</context> 1354 <context context-type="linenumber">33</context>
1479 </context-group> 1355 </context-group>
1480 </trans-unit> 1356 </trans-unit>
1481 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1"> 1357 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1">
1482 <source>Blacklisted videos</source> 1358 <source>Blacklisted videos</source>
1483 <target>Fortenataj videoj</target> 1359 <target>Fortenataj videoj</target>
1484 <context-group name="null"> 1360 <context-group name="null">
1485 <context context-type="linenumber">2</context> 1361 <context context-type="linenumber">7</context>
1486 </context-group>
1487 </trans-unit>
1488 <trans-unit id="7c02d113e9b7884037834cddecf2a32a5538b35b">
1489 <source>Name <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1490 <target>Nomo <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1491 <context-group name="null">
1492 <context context-type="linenumber">11</context>
1493 </context-group>
1494 </trans-unit>
1495 <trans-unit id="cd5ca5da9e2fa21571e9f86a24a5c3b45a3ddc51">
1496 <source>Views <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1497 <target>Rigardoj <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1498 <context-group name="null">
1499 <context context-type="linenumber">13</context>
1500 </context-group>
1501 </trans-unit>
1502 <trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9">
1503 <source>NSFW</source>
1504 <target>Konsterna</target>
1505 <context-group name="null">
1506 <context context-type="linenumber">14</context>
1507 </context-group>
1508 </trans-unit>
1509 <trans-unit id="8c87d9527af7ff2ada84c911516a9e43a352e401">
1510 <source>UUID</source>
1511 <target>Universala uzantonumero</target>
1512 <context-group name="null">
1513 <context context-type="linenumber">15</context>
1514 </context-group>
1515 </trans-unit>
1516 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1517 <source>Unblacklist</source>
1518 <target>Reteni</target>
1519 <context-group name="null">
1520 <context context-type="linenumber">30</context>
1521 </context-group> 1362 </context-group>
1522 </trans-unit> 1363 </trans-unit>
1523 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6"> 1364 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6">
@@ -1527,25 +1368,11 @@ Marku ĉi tiun markbutonon, konservu la agordon, kaj provu ĝin kun ligilo al fi
1527 <context context-type="linenumber">3</context> 1368 <context context-type="linenumber">3</context>
1528 </context-group> 1369 </context-group>
1529 </trans-unit> 1370 </trans-unit>
1530 <trans-unit id="520d68b2c9f7dacaf2a5073716cad9bd328ea7e7">
1531 <source>My video channels</source>
1532 <target>Miaj filmaj kanaloj</target>
1533 <context-group name="null">
1534 <context context-type="linenumber">5</context>
1535 </context-group>
1536 </trans-unit>
1537 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894"> 1371 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894">
1538 <source>My videos</source> 1372 <source>My videos</source>
1539 <target>Miaj filmoj</target> 1373 <target>Miaj filmoj</target>
1540 <context-group name="null"> 1374 <context-group name="null">
1541 <context context-type="linenumber">7</context> 1375 <context context-type="linenumber">14</context>
1542 </context-group>
1543 </trans-unit>
1544 <trans-unit id="0bb0c57c6d12635d26996c124248e748b666e5ad">
1545 <source>My video imports</source>
1546 <target>Miaj filmaj enportoj</target>
1547 <context-group name="null">
1548 <context context-type="linenumber">9</context>
1549 </context-group> 1376 </context-group>
1550 </trans-unit> 1377 </trans-unit>
1551 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48"> 1378 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48">
@@ -1576,6 +1403,13 @@ Marku ĉi tiun markbutonon, konservu la agordon, kaj provu ĝin kun ligilo al fi
1576 <context context-type="linenumber">18</context> 1403 <context context-type="linenumber">18</context>
1577 </context-group> 1404 </context-group>
1578 </trans-unit> 1405 </trans-unit>
1406 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
1407 <source>Submit</source>
1408 <target>Sendi</target>
1409 <context-group name="null">
1410 <context context-type="linenumber">24</context>
1411 </context-group>
1412 </trans-unit>
1579 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79"> 1413 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79">
1580 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 1414 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
1581 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> rigardoj</target> 1415 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> rigardoj</target>
@@ -1583,11 +1417,15 @@ Marku ĉi tiun markbutonon, konservu la agordon, kaj provu ĝin kun ligilo al fi
1583 <context context-type="linenumber">19</context> 1417 <context context-type="linenumber">19</context>
1584 </context-group> 1418 </context-group>
1585 </trans-unit> 1419 </trans-unit>
1586 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7"> 1420 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
1587 <source>Delete</source> 1421 <source>
1588 <target>Forigi</target> 1422 Cancel
1423 </source>
1424 <target>
1425 Nuligi
1426 </target>
1589 <context-group name="null"> 1427 <context-group name="null">
1590 <context context-type="linenumber">15</context> 1428 <context context-type="linenumber">30</context>
1591 </context-group> 1429 </context-group>
1592 </trans-unit> 1430 </trans-unit>
1593 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260"> 1431 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260">
@@ -1601,7 +1439,7 @@ Marku ĉi tiun markbutonon, konservu la agordon, kaj provu ĝin kun ligilo al fi
1601 <source>Go to the channel</source> 1439 <source>Go to the channel</source>
1602 <target>Iri al la kanalo</target> 1440 <target>Iri al la kanalo</target>
1603 <context-group name="null"> 1441 <context-group name="null">
1604 <context context-type="linenumber">15</context> 1442 <context context-type="linenumber">8</context>
1605 </context-group> 1443 </context-group>
1606 </trans-unit> 1444 </trans-unit>
1607 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68"> 1445 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68">
@@ -1624,7 +1462,7 @@ When you will upload a video in this channel, the video support field will be au
1624 <target>Mallonga teksto por sciigi homojn, kiel ili povas subteni vin.&lt;br /&gt;&lt;br /&gt; 1462 <target>Mallonga teksto por sciigi homojn, kiel ili povas subteni vin.&lt;br /&gt;&lt;br /&gt;
1625Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos tiun ĉi tekston.</target> 1463Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos tiun ĉi tekston.</target>
1626 <context-group name="null"> 1464 <context-group name="null">
1627 <context context-type="linenumber">36</context> 1465 <context context-type="linenumber">52</context>
1628 </context-group> 1466 </context-group>
1629 </trans-unit> 1467 </trans-unit>
1630 <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191"> 1468 <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191">
@@ -1634,11 +1472,25 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
1634 <context context-type="linenumber">8</context> 1472 <context context-type="linenumber">8</context>
1635 </context-group> 1473 </context-group>
1636 </trans-unit> 1474 </trans-unit>
1475 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1476 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1477 <target>Kreita de <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1478 <context-group name="null">
1479 <context context-type="linenumber">17</context>
1480 </context-group>
1481 </trans-unit>
1482 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1483 <source>Go the owner account page</source>
1484 <target>Iri al paĝo de posedanto de la konto</target>
1485 <context-group name="null">
1486 <context context-type="linenumber">16</context>
1487 </context-group>
1488 </trans-unit>
1637 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9"> 1489 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9">
1638 <source>Change password</source> 1490 <source>Change password</source>
1639 <target>Ŝanĝi pasvorton</target> 1491 <target>Ŝanĝi pasvorton</target>
1640 <context-group name="null"> 1492 <context-group name="null">
1641 <context context-type="linenumber">19</context> 1493 <context context-type="linenumber">22</context>
1642 </context-group> 1494 </context-group>
1643 </trans-unit> 1495 </trans-unit>
1644 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229"> 1496 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229">
@@ -1715,20 +1567,6 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
1715 <context context-type="linenumber">1</context> 1567 <context context-type="linenumber">1</context>
1716 </context-group> 1568 </context-group>
1717 </trans-unit> 1569 </trans-unit>
1718 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1719 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1720 <target>Kreita de <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1721 <context-group name="null">
1722 <context context-type="linenumber">14</context>
1723 </context-group>
1724 </trans-unit>
1725 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1726 <source>Go the owner account page</source>
1727 <target>Iri al paĝo de posedanto de la konto</target>
1728 <context-group name="null">
1729 <context context-type="linenumber">13</context>
1730 </context-group>
1731 </trans-unit>
1732 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8"> 1570 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8">
1733 <source>Support this channel</source> 1571 <source>Support this channel</source>
1734 <target>Subteni tiun ĉi kanalon</target> 1572 <target>Subteni tiun ĉi kanalon</target>
@@ -1747,7 +1585,7 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
1747 <source>URL</source> 1585 <source>URL</source>
1748 <target>Ligilo</target> 1586 <target>Ligilo</target>
1749 <context-group name="null"> 1587 <context-group name="null">
1750 <context context-type="linenumber">12</context> 1588 <context context-type="linenumber">17</context>
1751 </context-group> 1589 </context-group>
1752 </trans-unit> 1590 </trans-unit>
1753 <trans-unit id="bfe7f34fbd4c3afa5f84a5580e0fae942cad2333"> 1591 <trans-unit id="bfe7f34fbd4c3afa5f84a5580e0fae942cad2333">
@@ -1761,14 +1599,14 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
1761 <source>Channel</source> 1599 <source>Channel</source>
1762 <target>Kanalo</target> 1600 <target>Kanalo</target>
1763 <context-group name="null"> 1601 <context-group name="null">
1764 <context context-type="linenumber">35</context> 1602 <context context-type="linenumber">38</context>
1765 </context-group> 1603 </context-group>
1766 </trans-unit> 1604 </trans-unit>
1767 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427"> 1605 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427">
1768 <source>Privacy</source> 1606 <source>Privacy</source>
1769 <target>Privateco</target> 1607 <target>Privateco</target>
1770 <context-group name="null"> 1608 <context-group name="null">
1771 <context context-type="linenumber">143</context> 1609 <context context-type="linenumber">161</context>
1772 </context-group> 1610 </context-group>
1773 </trans-unit> 1611 </trans-unit>
1774 <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2"> 1612 <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2">
@@ -1786,7 +1624,7 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
1786 <source>Update</source> 1624 <source>Update</source>
1787 <target>Ĝisdatigi</target> 1625 <target>Ĝisdatigi</target>
1788 <context-group name="null"> 1626 <context-group name="null">
1789 <context context-type="linenumber">105</context> 1627 <context context-type="linenumber">92</context>
1790 </context-group> 1628 </context-group>
1791 </trans-unit> 1629 </trans-unit>
1792 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> 1630 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9">
@@ -1860,46 +1698,35 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
1860 <source>Upload a file</source> 1698 <source>Upload a file</source>
1861 <target>Alŝuti dosieron</target> 1699 <target>Alŝuti dosieron</target>
1862 <context-group name="null"> 1700 <context-group name="null">
1863 <context context-type="linenumber">9</context> 1701 <context context-type="linenumber">10</context>
1864 </context-group> 1702 </context-group>
1865 </trans-unit> 1703 </trans-unit>
1866 <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470"> 1704 <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470">
1867 <source>Import with URL</source> 1705 <source>Import with URL</source>
1868 <target>Enporti per ligilo</target> 1706 <target>Enporti per ligilo</target>
1869 <context-group name="null"> 1707 <context-group name="null">
1870 <context context-type="linenumber">13</context> 1708 <context context-type="linenumber">17</context>
1871 </context-group> 1709 </context-group>
1872 </trans-unit> 1710 </trans-unit>
1873 <trans-unit id="752c401d7dcd708944eef60e411187f71d882340"> 1711 <trans-unit id="752c401d7dcd708944eef60e411187f71d882340">
1874 <source>Import with torrent</source> 1712 <source>Import with torrent</source>
1875 <target>Enporti per torento</target> 1713 <target>Enporti per torento</target>
1876 <context-group name="null"> 1714 <context-group name="null">
1877 <context context-type="linenumber">17</context> 1715 <context context-type="linenumber">24</context>
1878 </context-group> 1716 </context-group>
1879 </trans-unit> 1717 </trans-unit>
1880 <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0"> 1718 <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0">
1881 <source>Add caption</source> 1719 <source>Add caption</source>
1882 <target>Aldoni transskribon</target> 1720 <target>Aldoni transskribon</target>
1883 <context-group name="null"> 1721 <context-group name="null">
1884 <context context-type="linenumber">7</context> 1722 <context context-type="linenumber">5</context>
1885 </context-group> 1723 </context-group>
1886 </trans-unit> 1724 </trans-unit>
1887 <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8"> 1725 <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8">
1888 <source>Select the caption file</source> 1726 <source>Select the caption file</source>
1889 <target>Elekti dosieron kun transskribo</target> 1727 <target>Elekti dosieron kun transskribo</target>
1890 <context-group name="null"> 1728 <context-group name="null">
1891 <context context-type="linenumber">25</context> 1729 <context context-type="linenumber">24</context>
1892 </context-group>
1893 </trans-unit>
1894 <trans-unit id="a40a8a9f8359eda00c6a79809e9499100fde3ffd">
1895 <source>
1896 This will replace an existing caption!
1897 </source>
1898 <target>
1899 Ĉi tiu anstataŭos jaman transskribon!
1900 </target>
1901 <context-group name="null">
1902 <context context-type="linenumber">30</context>
1903 </context-group> 1730 </context-group>
1904 </trans-unit> 1731 </trans-unit>
1905 <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c"> 1732 <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c">
@@ -1913,70 +1740,63 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
1913 <source>Title</source> 1740 <source>Title</source>
1914 <target>Titolo</target> 1741 <target>Titolo</target>
1915 <context-group name="null"> 1742 <context-group name="null">
1916 <context context-type="linenumber">7</context> 1743 <context context-type="linenumber">9</context>
1917 </context-group> 1744 </context-group>
1918 </trans-unit> 1745 </trans-unit>
1919 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b"> 1746 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b">
1920 <source>Tags</source> 1747 <source>Tags</source>
1921 <target>Etikedoj</target> 1748 <target>Etikedoj</target>
1922 <context-group name="null"> 1749 <context-group name="null">
1923 <context context-type="linenumber">175</context> 1750 <context context-type="linenumber">193</context>
1924 </context-group>
1925 </trans-unit>
1926 <trans-unit id="935e7146fe6c12169abfda18536c5856935cfd82">
1927 <source>(press Enter to add)</source>
1928 <target>(premu enigan klavon por aldoni)</target>
1929 <context-group name="null">
1930 <context context-type="linenumber">15</context>
1931 </context-group> 1751 </context-group>
1932 </trans-unit> 1752 </trans-unit>
1933 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e"> 1753 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e">
1934 <source>Video descriptions are truncated by default and require manual action to expand them.</source> 1754 <source>Video descriptions are truncated by default and require manual action to expand them.</source>
1935 <target>Priskriboj de filmoj norme ne montriĝas tutaj, kaj necesas ilin igi permane.</target> 1755 <target>Priskriboj de filmoj norme ne montriĝas tutaj, kaj necesas ilin igi permane.</target>
1936 <context-group name="null"> 1756 <context-group name="null">
1937 <context context-type="linenumber">24</context> 1757 <context context-type="linenumber">27</context>
1938 </context-group> 1758 </context-group>
1939 </trans-unit> 1759 </trans-unit>
1940 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> 1760 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5">
1941 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source> 1761 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source>
1942 <target>Plani publikigon (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target> 1762 <target>Plani publikigon (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target>
1943 <context-group name="null"> 1763 <context-group name="null">
1944 <context context-type="linenumber">101</context> 1764 <context context-type="linenumber">104</context>
1945 </context-group> 1765 </context-group>
1946 </trans-unit> 1766 </trans-unit>
1947 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee"> 1767 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee">
1948 <source>This video contains mature or explicit content</source> 1768 <source>This video contains mature or explicit content</source>
1949 <target>Tiu ĉi filmo povas esti konsterna aŭ maltaŭga por neplenaĝaj.</target> 1769 <target>Tiu ĉi filmo povas esti konsterna aŭ maltaŭga por neplenaĝaj.</target>
1950 <context-group name="null"> 1770 <context-group name="null">
1951 <context context-type="linenumber">115</context> 1771 <context context-type="linenumber">118</context>
1952 </context-group> 1772 </context-group>
1953 </trans-unit> 1773 </trans-unit>
1954 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644"> 1774 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644">
1955 <source>Some instances do not list videos containing mature or explicit content by default.</source> 1775 <source>Some instances do not list videos containing mature or explicit content by default.</source>
1956 <target>Iuj nodoj ne listigas filmojn, kiuj estas konsternaj aŭ maltaŭgaj por neplenaĝuloj.</target> 1776 <target>Iuj nodoj ne listigas filmojn, kiuj estas konsternaj aŭ maltaŭgaj por neplenaĝuloj.</target>
1957 <context-group name="null"> 1777 <context-group name="null">
1958 <context context-type="linenumber">116</context> 1778 <context context-type="linenumber">119</context>
1959 </context-group> 1779 </context-group>
1960 </trans-unit> 1780 </trans-unit>
1961 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a"> 1781 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a">
1962 <source>Enable video comments</source> 1782 <source>Enable video comments</source>
1963 <target>Ŝalti komentojn al filmo</target> 1783 <target>Ŝalti komentojn al filmo</target>
1964 <context-group name="null"> 1784 <context-group name="null">
1965 <context context-type="linenumber">121</context> 1785 <context context-type="linenumber">124</context>
1966 </context-group> 1786 </context-group>
1967 </trans-unit> 1787 </trans-unit>
1968 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0"> 1788 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0">
1969 <source>Wait transcoding before publishing the video</source> 1789 <source>Wait transcoding before publishing the video</source>
1970 <target>Atendi transkodadon antaŭ publikigi la filmon</target> 1790 <target>Atendi transkodadon antaŭ publikigi la filmon</target>
1971 <context-group name="null"> 1791 <context-group name="null">
1972 <context context-type="linenumber">126</context> 1792 <context context-type="linenumber">129</context>
1973 </context-group> 1793 </context-group>
1974 </trans-unit> 1794 </trans-unit>
1975 <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63"> 1795 <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63">
1976 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source> 1796 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source>
1977 <target>Se vi decidos ne atendi finon de transkodado antaŭ publikigo, ĝi povus esti neludebla ĝis la transkodo finiĝos.</target> 1797 <target>Se vi decidos ne atendi finon de transkodado antaŭ publikigo, ĝi povus esti neludebla ĝis la transkodo finiĝos.</target>
1978 <context-group name="null"> 1798 <context-group name="null">
1979 <context context-type="linenumber">127</context> 1799 <context context-type="linenumber">130</context>
1980 </context-group> 1800 </context-group>
1981 </trans-unit> 1801 </trans-unit>
1982 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7"> 1802 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7">
@@ -1990,70 +1810,70 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
1990 <source>Add another caption</source> 1810 <source>Add another caption</source>
1991 <target>Aldoni alian transskribon</target> 1811 <target>Aldoni alian transskribon</target>
1992 <context-group name="null"> 1812 <context-group name="null">
1993 <context context-type="linenumber">139</context> 1813 <context context-type="linenumber">145</context>
1994 </context-group> 1814 </context-group>
1995 </trans-unit> 1815 </trans-unit>
1996 <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed"> 1816 <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed">
1997 <source>See the subtitle file</source> 1817 <source>See the subtitle file</source>
1998 <target>Rigardi la dosieron kun subtekstoj</target> 1818 <target>Rigardi la dosieron kun subtekstoj</target>
1999 <context-group name="null"> 1819 <context-group name="null">
2000 <context context-type="linenumber">148</context> 1820 <context context-type="linenumber">154</context>
2001 </context-group> 1821 </context-group>
2002 </trans-unit> 1822 </trans-unit>
2003 <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9"> 1823 <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9">
2004 <source>Cancel create</source> 1824 <source>Cancel create</source>
2005 <target>Nuligi kreon</target> 1825 <target>Nuligi kreon</target>
2006 <context-group name="null"> 1826 <context-group name="null">
2007 <context context-type="linenumber">162</context> 1827 <context context-type="linenumber">168</context>
2008 </context-group> 1828 </context-group>
2009 </trans-unit> 1829 </trans-unit>
2010 <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c"> 1830 <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c">
2011 <source>Cancel deletion</source> 1831 <source>Cancel deletion</source>
2012 <target>Nuligi forigon</target> 1832 <target>Nuligi forigon</target>
2013 <context-group name="null"> 1833 <context-group name="null">
2014 <context context-type="linenumber">170</context> 1834 <context context-type="linenumber">176</context>
2015 </context-group> 1835 </context-group>
2016 </trans-unit> 1836 </trans-unit>
2017 <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93"> 1837 <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93">
2018 <source>Captions</source> 1838 <source>Captions</source>
2019 <target>Transskriboj</target> 1839 <target>Transskriboj</target>
2020 <context-group name="null"> 1840 <context-group name="null">
2021 <context context-type="linenumber">133</context> 1841 <context context-type="linenumber">138</context>
2022 </context-group> 1842 </context-group>
2023 </trans-unit> 1843 </trans-unit>
2024 <trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513"> 1844 <trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513">
2025 <source>Upload thumbnail</source> 1845 <source>Upload thumbnail</source>
2026 <target>Alŝuti miniaturon</target> 1846 <target>Alŝuti miniaturon</target>
2027 <context-group name="null"> 1847 <context-group name="null">
2028 <context context-type="linenumber">186</context> 1848 <context context-type="linenumber">194</context>
2029 </context-group> 1849 </context-group>
2030 </trans-unit> 1850 </trans-unit>
2031 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639"> 1851 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639">
2032 <source>Upload preview</source> 1852 <source>Upload preview</source>
2033 <target>Alŝuti antaŭrigardon</target> 1853 <target>Alŝuti antaŭrigardon</target>
2034 <context-group name="null"> 1854 <context-group name="null">
2035 <context context-type="linenumber">193</context> 1855 <context context-type="linenumber">201</context>
2036 </context-group> 1856 </context-group>
2037 </trans-unit> 1857 </trans-unit>
2038 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604"> 1858 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604">
2039 <source>Support</source> 1859 <source>Support</source>
2040 <target>Subteno</target> 1860 <target>Subteno</target>
2041 <context-group name="null"> 1861 <context-group name="null">
2042 <context context-type="linenumber">71</context> 1862 <context context-type="linenumber">69</context>
2043 </context-group> 1863 </context-group>
2044 </trans-unit> 1864 </trans-unit>
2045 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0"> 1865 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0">
2046 <source>Short text to tell people how they can support you (membership platform...).</source> 1866 <source>Short text to tell people how they can support you (membership platform...).</source>
2047 <target>Mallonga teksto por sciigi homojn, kiel ili povas subteni vin.</target> 1867 <target>Mallonga teksto por sciigi homojn, kiel ili povas subteni vin.</target>
2048 <context-group name="null"> 1868 <context-group name="null">
2049 <context context-type="linenumber">200</context> 1869 <context context-type="linenumber">208</context>
2050 </context-group> 1870 </context-group>
2051 </trans-unit> 1871 </trans-unit>
2052 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1"> 1872 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1">
2053 <source>Advanced settings</source> 1873 <source>Advanced settings</source>
2054 <target>Specialaj agordoj</target> 1874 <target>Specialaj agordoj</target>
2055 <context-group name="null"> 1875 <context-group name="null">
2056 <context context-type="linenumber">182</context> 1876 <context context-type="linenumber">189</context>
2057 </context-group> 1877 </context-group>
2058 </trans-unit> 1878 </trans-unit>
2059 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0"> 1879 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0">
@@ -2071,99 +1891,63 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
2071 <source>Download video</source> 1891 <source>Download video</source>
2072 <target>Elŝuti filmon</target> 1892 <target>Elŝuti filmon</target>
2073 <context-group name="null"> 1893 <context-group name="null">
2074 <context context-type="linenumber">7</context> 1894 <context context-type="linenumber">3</context>
2075 </context-group> 1895 </context-group>
2076 </trans-unit> 1896 </trans-unit>
2077 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c"> 1897 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c">
2078 <source>Direct download</source> 1898 <source>Direct download</source>
2079 <target>Rekta elŝuto</target> 1899 <target>Rekta elŝuto</target>
2080 <context-group name="null"> 1900 <context-group name="null">
2081 <context context-type="linenumber">20</context> 1901 <context context-type="linenumber">17</context>
2082 </context-group> 1902 </context-group>
2083 </trans-unit> 1903 </trans-unit>
2084 <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d"> 1904 <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d">
2085 <source>Torrent (.torrent file)</source> 1905 <source>Torrent (.torrent file)</source>
2086 <target>Torento (dosiero .torrent)</target> 1906 <target>Torento (dosiero .torrent)</target>
2087 <context-group name="null"> 1907 <context-group name="null">
2088 <context context-type="linenumber">25</context> 1908 <context context-type="linenumber">22</context>
2089 </context-group> 1909 </context-group>
2090 </trans-unit> 1910 </trans-unit>
2091 <trans-unit id="2db8d7cf6a3071f4c1519ef2b5e2713d9ff4e87f"> 1911 <trans-unit id="2db8d7cf6a3071f4c1519ef2b5e2713d9ff4e87f">
2092 <source>Torrent (magnet link)</source> 1912 <source>Torrent (magnet link)</source>
2093 <target>Torento (magneta ligilo)</target> 1913 <target>Torento (magneta ligilo)</target>
2094 <context-group name="null"> 1914 <context-group name="null">
2095 <context context-type="linenumber">30</context> 1915 <context context-type="linenumber">27</context>
2096 </context-group> 1916 </context-group>
2097 </trans-unit> 1917 </trans-unit>
2098 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> 1918 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd">
2099 <source>Download</source> 1919 <source>Download</source>
2100 <target>Elŝuto</target> 1920 <target>Elŝuto</target>
2101 <context-group name="null"> 1921 <context-group name="null">
2102 <context context-type="linenumber">87</context> 1922 <context context-type="linenumber">84</context>
2103 </context-group> 1923 </context-group>
2104 </trans-unit> 1924 </trans-unit>
2105 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b"> 1925 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b">
2106 <source>Report video</source> 1926 <source>Report video</source>
2107 <target>Raporti filmon</target> 1927 <target>Raporti filmon</target>
2108 <context-group name="null"> 1928 <context-group name="null">
2109 <context context-type="linenumber">7</context> 1929 <context context-type="linenumber">3</context>
2110 </context-group>
2111 </trans-unit>
2112 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
2113 <source>Reason...</source>
2114 <target>Kialo…</target>
2115 <context-group name="null">
2116 <context context-type="linenumber">14</context>
2117 </context-group>
2118 </trans-unit>
2119 <trans-unit id="0e6b8229bd65f93bc8040d0fb598967f220740c7">
2120 <source>
2121 Cancel
2122 </source>
2123 <target>
2124 Nuligi
2125 </target>
2126 <context-group name="null">
2127 <context context-type="linenumber">22</context>
2128 </context-group>
2129 </trans-unit>
2130 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
2131 <source>Submit</source>
2132 <target>Sendi</target>
2133 <context-group name="null">
2134 <context context-type="linenumber">27</context>
2135 </context-group> 1930 </context-group>
2136 </trans-unit> 1931 </trans-unit>
2137 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9"> 1932 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9">
2138 <source>Share</source> 1933 <source>Share</source>
2139 <target>Kunhavigi</target> 1934 <target>Kunhavigi</target>
2140 <context-group name="null"> 1935 <context-group name="null">
2141 <context context-type="linenumber">76</context> 1936 <context context-type="linenumber">74</context>
2142 </context-group>
2143 </trans-unit>
2144 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
2145 <source>Embed</source>
2146 <target>Enkorpigi</target>
2147 <context-group name="null">
2148 <context context-type="linenumber">24</context>
2149 </context-group>
2150 </trans-unit>
2151 <trans-unit id="239fe0316cfe91aa6e1e7bf1ef19e3b7772131f8">
2152 <source>
2153 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).
2154 </source>
2155 <target>
2156 La ligilo ne estas sekurigita (per HTTPS), do la enkorpigita filmo ne funkcios en retpaĝoj kun HTTPS (ĉar foliumiloj forbaras nesekurajn petojn por retpaĝoj kun HTTPS).
2157 </target>
2158 <context-group name="null">
2159 <context context-type="linenumber">35</context>
2160 </context-group> 1937 </context-group>
2161 </trans-unit> 1938 </trans-unit>
2162 <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f"> 1939 <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f">
2163 <source>QR-Code</source> 1940 <source>QR-Code</source>
2164 <target>Rapidresponda kodo</target> 1941 <target>Rapidresponda kodo</target>
2165 <context-group name="null"> 1942 <context-group name="null">
2166 <context context-type="linenumber">40</context> 1943 <context context-type="linenumber">29</context>
1944 </context-group>
1945 </trans-unit>
1946 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
1947 <source>Embed</source>
1948 <target>Enkorpigi</target>
1949 <context-group name="null">
1950 <context context-type="linenumber">34</context>
2167 </context-group> 1951 </context-group>
2168 </trans-unit> 1952 </trans-unit>
2169 <trans-unit id="7584313e33a66811eb10646627914a01fff0347d"> 1953 <trans-unit id="7584313e33a66811eb10646627914a01fff0347d">
@@ -2188,174 +1972,116 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
2188 <context context-type="linenumber">15</context> 1972 <context context-type="linenumber">15</context>
2189 </context-group> 1973 </context-group>
2190 </trans-unit> 1974 </trans-unit>
2191 <trans-unit id="fbc205ea3d06fa8f65973fa3b490ae172f71c087">
2192 <source>
2193 This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
2194 </source>
2195 <target>
2196 Tiu ĉi filmo publikiĝos je <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
2197 </target>
2198 <context-group name="null">
2199 <context context-type="linenumber">19</context>
2200 </context-group>
2201 </trans-unit>
2202 <trans-unit id="643ab402461b1169eebbe2ed790e12a9a83551aa">
2203 <source>
2204 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views
2205 </source>
2206 <target>
2207 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> rigardoj
2208 </target>
2209 <context-group name="null">
2210 <context context-type="linenumber">30</context>
2211 </context-group>
2212 </trans-unit>
2213 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
2214 <source>Go the channel page</source>
2215 <target>Iri al paĝo de la kanalo</target>
2216 <context-group name="null">
2217 <context context-type="linenumber">35</context>
2218 </context-group>
2219 </trans-unit>
2220 <trans-unit id="ccc07df383b7a32be3e2e105faa5488caf261c1c">
2221 <source>By <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></source>
2222 <target>De <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></target>
2223 <context-group name="null">
2224 <context context-type="linenumber">45</context>
2225 </context-group>
2226 </trans-unit>
2227 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
2228 <source>Go to the account page</source>
2229 <target>Iri al paĝo de la konto</target>
2230 <context-group name="null">
2231 <context context-type="linenumber">44</context>
2232 </context-group>
2233 </trans-unit>
2234 <trans-unit id="57075c778cf28b81272df4eb17da944366c98e51">
2235 <source>You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; and subscribe there. Subscription as a PeerTube user is being worked on in &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</source>
2236 <target>Vi povas aboni tiun ĉi konton per iu ajn fediversa nodo, kiu subtenas protokolon « ActivityPub ». Ekzemple, en « Mastodon » aŭ « Pleroma », vi povas tajpi en serĉujon &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; kaj aboni tie. Abonado kiel uzanto de PeerTube estas prilaborata en &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</target>
2237 <context-group name="null">
2238 <context context-type="linenumber">49</context>
2239 </context-group>
2240 </trans-unit>
2241 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced"> 1975 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced">
2242 <source>Like this video</source> 1976 <source>Like this video</source>
2243 <target>Ŝati ĉi tiun filmon</target> 1977 <target>Ŝati ĉi tiun filmon</target>
2244 <context-group name="null"> 1978 <context-group name="null">
2245 <context context-type="linenumber">59</context> 1979 <context context-type="linenumber">57</context>
2246 </context-group> 1980 </context-group>
2247 </trans-unit> 1981 </trans-unit>
2248 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509"> 1982 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509">
2249 <source>Dislike this video</source> 1983 <source>Dislike this video</source>
2250 <target>Malŝati tiun ĉi filmon</target> 1984 <target>Malŝati tiun ĉi filmon</target>
2251 <context-group name="null"> 1985 <context-group name="null">
2252 <context context-type="linenumber">66</context> 1986 <context context-type="linenumber">64</context>
2253 </context-group> 1987 </context-group>
2254 </trans-unit> 1988 </trans-unit>
2255 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2"> 1989 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2">
2256 <source>Download the video</source> 1990 <source>Download the video</source>
2257 <target>Elŝuti la videon</target> 1991 <target>Elŝuti la videon</target>
2258 <context-group name="null"> 1992 <context-group name="null">
2259 <context context-type="linenumber">86</context> 1993 <context context-type="linenumber">83</context>
2260 </context-group> 1994 </context-group>
2261 </trans-unit> 1995 </trans-unit>
2262 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a"> 1996 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a">
2263 <source>Report</source> 1997 <source>Report</source>
2264 <target>Raporti</target> 1998 <target>Raporti</target>
2265 <context-group name="null"> 1999 <context-group name="null">
2266 <context context-type="linenumber">93</context> 2000 <context context-type="linenumber">88</context>
2267 </context-group> 2001 </context-group>
2268 </trans-unit> 2002 </trans-unit>
2269 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf"> 2003 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf">
2270 <source>Report this video</source> 2004 <source>Report this video</source>
2271 <target>Raporti tiun ĉi videon</target> 2005 <target>Raporti tiun ĉi videon</target>
2272 <context-group name="null"> 2006 <context-group name="null">
2273 <context context-type="linenumber">92</context> 2007 <context context-type="linenumber">87</context>
2008 </context-group>
2009 </trans-unit>
2010 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1">
2011 <source>Update this video</source>
2012 <target>Ĝisdatigi tiun ĉi videon</target>
2013 <context-group name="null">
2014 <context context-type="linenumber">91</context>
2274 </context-group> 2015 </context-group>
2275 </trans-unit> 2016 </trans-unit>
2276 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61"> 2017 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61">
2277 <source>Blacklist</source> 2018 <source>Blacklist</source>
2278 <target>Forteni</target> 2019 <target>Forteni</target>
2279 <context-group name="null"> 2020 <context-group name="null">
2280 <context context-type="linenumber">99</context> 2021 <context context-type="linenumber">96</context>
2281 </context-group> 2022 </context-group>
2282 </trans-unit> 2023 </trans-unit>
2283 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037"> 2024 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037">
2284 <source>Blacklist this video</source> 2025 <source>Blacklist this video</source>
2285 <target>Forteni ĉi tiun filmon</target> 2026 <target>Forteni ĉi tiun filmon</target>
2286 <context-group name="null"> 2027 <context-group name="null">
2287 <context context-type="linenumber">98</context> 2028 <context context-type="linenumber">95</context>
2288 </context-group> 2029 </context-group>
2289 </trans-unit> 2030 </trans-unit>
2290 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1"> 2031 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
2291 <source>Update this video</source> 2032 <source>Unblacklist</source>
2292 <target>Ĝisdatigi tiun ĉi videon</target> 2033 <target>Reteni</target>
2293 <context-group name="null"> 2034 <context-group name="null">
2294 <context context-type="linenumber">104</context> 2035 <context context-type="linenumber">100</context>
2295 </context-group> 2036 </context-group>
2296 </trans-unit> 2037 </trans-unit>
2297 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5"> 2038 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5">
2298 <source>Delete this video</source> 2039 <source>Delete this video</source>
2299 <target>Forigi ĉi tiun videon</target> 2040 <target>Forigi ĉi tiun videon</target>
2300 <context-group name="null"> 2041 <context-group name="null">
2301 <context context-type="linenumber">110</context> 2042 <context context-type="linenumber">103</context>
2302 </context-group>
2303 </trans-unit>
2304 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b">
2305 <source>Show more</source>
2306 <target>Montri pli</target>
2307 <context-group name="null">
2308 <context context-type="linenumber">130</context>
2309 </context-group> 2043 </context-group>
2310 </trans-unit> 2044 </trans-unit>
2311 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903"> 2045 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
2312 <source>Show less</source> 2046 <source>Go the channel page</source>
2313 <target>Montri malpli</target> 2047 <target>Iri al paĝo de la kanalo</target>
2314 <context-group name="null"> 2048 <context-group name="null">
2315 <context context-type="linenumber">136</context> 2049 <context context-type="linenumber">123</context>
2316 </context-group> 2050 </context-group>
2317 </trans-unit> 2051 </trans-unit>
2318 <trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1"> 2052 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
2319 <source> 2053 <source>Go to the account page</source>
2320 Other videos 2054 <target>Iri al paĝo de la konto</target>
2321 </source>
2322 <target>
2323 Aliaj filmoj
2324 </target>
2325 <context-group name="null"> 2055 <context-group name="null">
2326 <context context-type="linenumber">187</context> 2056 <context context-type="linenumber">133</context>
2327 </context-group> 2057 </context-group>
2328 </trans-unit> 2058 </trans-unit>
2329 <trans-unit id="fb779d2b25c4d0ffa7d52c823a240717e8c1fe6c"> 2059 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b">
2330 <source>Friendly Reminder:</source> 2060 <source>Show more</source>
2331 <target>Amika rememorigo:</target> 2061 <target>Montri pli</target>
2332 <context-group name="null"> 2062 <context-group name="null">
2333 <context context-type="linenumber">199</context> 2063 <context context-type="linenumber">148</context>
2334 </context-group> 2064 </context-group>
2335 </trans-unit> 2065 </trans-unit>
2336 <trans-unit id="329900dd14bc4ca33cec3775d25c246e4cde7867"> 2066 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903">
2337 <source> 2067 <source>Show less</source>
2338 The sharing system used by this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. 2068 <target>Montri malpli</target>
2339 </source>
2340 <target>
2341 La kunhaviga sistemo uzata de tiu ĉi filmo implicas, ke iuj teĥnikaj informoj pri via sistemo (ekzemple via publika IP-adreso) povas sendiĝi al viaj samtavolanoj.
2342 </target>
2343 <context-group name="null"> 2069 <context-group name="null">
2344 <context context-type="linenumber">201</context> 2070 <context context-type="linenumber">154</context>
2345 </context-group> 2071 </context-group>
2346 </trans-unit> 2072 </trans-unit>
2347 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e"> 2073 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e">
2348 <source>More information</source> 2074 <source>More information</source>
2349 <target>Pliaj informoj</target> 2075 <target>Pliaj informoj</target>
2350 <context-group name="null"> 2076 <context-group name="null">
2351 <context context-type="linenumber">204</context> 2077 <context context-type="linenumber">214</context>
2352 </context-group> 2078 </context-group>
2353 </trans-unit> 2079 </trans-unit>
2354 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318"> 2080 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318">
2355 <source>Get more information</source> 2081 <source>Get more information</source>
2356 <target>Akiri pliajn informojn</target> 2082 <target>Akiri pliajn informojn</target>
2357 <context-group name="null"> 2083 <context-group name="null">
2358 <context context-type="linenumber">204</context> 2084 <context context-type="linenumber">214</context>
2359 </context-group> 2085 </context-group>
2360 </trans-unit> 2086 </trans-unit>
2361 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f"> 2087 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f">
@@ -2366,7 +2092,7 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
2366 Bone 2092 Bone
2367 </target> 2093 </target>
2368 <context-group name="null"> 2094 <context-group name="null">
2369 <context context-type="linenumber">207</context> 2095 <context context-type="linenumber">217</context>
2370 </context-group> 2096 </context-group>
2371 </trans-unit> 2097 </trans-unit>
2372 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7"> 2098 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7">
@@ -2427,7 +2153,7 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
2427 Afiŝi komenton 2153 Afiŝi komenton
2428 </target> 2154 </target>
2429 <context-group name="null"> 2155 <context-group name="null">
2430 <context context-type="linenumber">17</context> 2156 <context context-type="linenumber">18</context>
2431 </context-group> 2157 </context-group>
2432 </trans-unit> 2158 </trans-unit>
2433 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> 2159 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285">
@@ -2591,23 +2317,9 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
2591 <context context-type="linenumber">1</context> 2317 <context context-type="linenumber">1</context>
2592 </context-group> 2318 </context-group>
2593 </trans-unit> 2319 </trans-unit>
2594 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936"> 2320 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2595 <source>Following</source> 2321 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2596 <target>Abonatoj</target> 2322 <target>Filmo <x id="INTERPOLATION" equiv-text="{{name}}"/> forigita de la fortenlisto.</target>
2597 <context-group name="null">
2598 <context context-type="linenumber">1</context>
2599 </context-group>
2600 </trans-unit>
2601 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
2602 <source>Follow</source>
2603 <target>Aboni</target>
2604 <context-group name="null">
2605 <context context-type="linenumber">1</context>
2606 </context-group>
2607 </trans-unit>
2608 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
2609 <source>Followers</source>
2610 <target>Abonantoj</target>
2611 <context-group name="null"> 2323 <context-group name="null">
2612 <context context-type="linenumber">1</context> 2324 <context context-type="linenumber">1</context>
2613 </context-group> 2325 </context-group>
@@ -2661,27 +2373,6 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
2661 <context context-type="linenumber">1</context> 2373 <context context-type="linenumber">1</context>
2662 </context-group> 2374 </context-group>
2663 </trans-unit> 2375 </trans-unit>
2664 <trans-unit id="4733ad1d7e63960438c0203b9a64f165b5fc84f2">
2665 <source>Do you really want to remove this video from the blacklist ? It will be available again in the videos list.</source>
2666 <target>Ĉu vi certe volas forigi tiun ĉi filmon de la fortenlisto? Ĝi estos denove atingebla per la listo de filmoj.</target>
2667 <context-group name="null">
2668 <context context-type="linenumber">1</context>
2669 </context-group>
2670 </trans-unit>
2671 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2672 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2673 <target>Filmo <x id="INTERPOLATION" equiv-text="{{name}}"/> forigita de la fortenlisto.</target>
2674 <context-group name="null">
2675 <context context-type="linenumber">1</context>
2676 </context-group>
2677 </trans-unit>
2678 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2679 <source>The new password and the confirmed password do not correspond.</source>
2680 <target>La nova pasvorto kun la konfirma ne kongruas.</target>
2681 <context-group name="null">
2682 <context context-type="linenumber">1</context>
2683 </context-group>
2684 </trans-unit>
2685 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc"> 2376 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc">
2686 <source>Password updated.</source> 2377 <source>Password updated.</source>
2687 <target>Pasvorto ĝisdatigita.</target> 2378 <target>Pasvorto ĝisdatigita.</target>
@@ -2843,6 +2534,13 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
2843 <context context-type="linenumber">1</context> 2534 <context context-type="linenumber">1</context>
2844 </context-group> 2535 </context-group>
2845 </trans-unit> 2536 </trans-unit>
2537 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2538 <source>Unable to find user id or verification string.</source>
2539 <target>Ne povas trovi identigilon aŭ kontrolan ĉenon de uzanto</target>
2540 <context-group name="null">
2541 <context context-type="linenumber">1</context>
2542 </context-group>
2543 </trans-unit>
2846 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7"> 2544 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7">
2847 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>. 2545 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>.
2848</source> 2546</source>
@@ -2880,13 +2578,6 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
2880 <context context-type="linenumber">1</context> 2578 <context context-type="linenumber">1</context>
2881 </context-group> 2579 </context-group>
2882 </trans-unit> 2580 </trans-unit>
2883 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2884 <source>Unable to find user id or verification string.</source>
2885 <target>Ne povas trovi identigilon aŭ kontrolan ĉenon de uzanto</target>
2886 <context-group name="null">
2887 <context context-type="linenumber">1</context>
2888 </context-group>
2889 </trans-unit>
2890 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26"> 2581 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26">
2891 <source>Your password has been successfully reset!</source> 2582 <source>Your password has been successfully reset!</source>
2892 <target>Via pasvorto estas sukcese restarigita!</target> 2583 <target>Via pasvorto estas sukcese restarigita!</target>
@@ -3076,13 +2767,6 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
3076 <context context-type="linenumber">1</context> 2767 <context context-type="linenumber">1</context>
3077 </context-group> 2768 </context-group>
3078 </trans-unit> 2769 </trans-unit>
3079 <trans-unit id="ba88636d27c1a6a7e1f75ff57ec182b30b851c2e">
3080 <source>Transcoding threads must be greater than 1.</source>
3081 <target>Transkodadaj fadenoj devas esti pli ol 1.</target>
3082 <context-group name="null">
3083 <context context-type="linenumber">1</context>
3084 </context-group>
3085 </trans-unit>
3086 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149"> 2770 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149">
3087 <source>Username is required.</source> 2771 <source>Username is required.</source>
3088 <target>Necesas salutnomo.</target> 2772 <target>Necesas salutnomo.</target>
@@ -3153,6 +2837,13 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
3153 <context context-type="linenumber">1</context> 2837 <context context-type="linenumber">1</context>
3154 </context-group> 2838 </context-group>
3155 </trans-unit> 2839 </trans-unit>
2840 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2841 <source>The new password and the confirmed password do not correspond.</source>
2842 <target>La nova pasvorto kun la konfirma ne kongruas.</target>
2843 <context-group name="null">
2844 <context context-type="linenumber">1</context>
2845 </context-group>
2846 </trans-unit>
3156 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf"> 2847 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf">
3157 <source>Video quota is required.</source> 2848 <source>Video quota is required.</source>
3158 <target>Necesas datumlimo por filmoj.</target> 2849 <target>Necesas datumlimo por filmoj.</target>
@@ -3720,6 +3411,41 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
3720 <context context-type="linenumber">1</context> 3411 <context context-type="linenumber">1</context>
3721 </context-group> 3412 </context-group>
3722 </trans-unit> 3413 </trans-unit>
3414 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3415 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3416 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3417 <context-group name="null">
3418 <context context-type="linenumber">1</context>
3419 </context-group>
3420 </trans-unit>
3421 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3422 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3423 <target>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</target>
3424 <context-group name="null">
3425 <context context-type="linenumber">1</context>
3426 </context-group>
3427 </trans-unit>
3428 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3429 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3430 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> da filmoj je 1920×1080</target>
3431 <context-group name="null">
3432 <context context-type="linenumber">1</context>
3433 </context-group>
3434 </trans-unit>
3435 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3436 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3437 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> da filmoj je 1280×720</target>
3438 <context-group name="null">
3439 <context context-type="linenumber">1</context>
3440 </context-group>
3441 </trans-unit>
3442 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3443 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3444 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> da filmoj mezkvalitaj</target>
3445 <context-group name="null">
3446 <context context-type="linenumber">1</context>
3447 </context-group>
3448 </trans-unit>
3723 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d"> 3449 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d">
3724 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source> 3450 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source>
3725 <target>antaŭ <x id="INTERPOLATION" equiv-text="{{interval}}"/> jaroj</target> 3451 <target>antaŭ <x id="INTERPOLATION" equiv-text="{{interval}}"/> jaroj</target>
@@ -3874,41 +3600,6 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
3874 <context context-type="linenumber">1</context> 3600 <context context-type="linenumber">1</context>
3875 </context-group> 3601 </context-group>
3876 </trans-unit> 3602 </trans-unit>
3877 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3878 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3879 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3880 <context-group name="null">
3881 <context context-type="linenumber">1</context>
3882 </context-group>
3883 </trans-unit>
3884 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3885 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3886 <target>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</target>
3887 <context-group name="null">
3888 <context context-type="linenumber">1</context>
3889 </context-group>
3890 </trans-unit>
3891 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3892 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3893 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> da filmoj je 1920×1080</target>
3894 <context-group name="null">
3895 <context context-type="linenumber">1</context>
3896 </context-group>
3897 </trans-unit>
3898 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3899 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3900 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> da filmoj je 1280×720</target>
3901 <context-group name="null">
3902 <context context-type="linenumber">1</context>
3903 </context-group>
3904 </trans-unit>
3905 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3906 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3907 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> da filmoj mezkvalitaj</target>
3908 <context-group name="null">
3909 <context context-type="linenumber">1</context>
3910 </context-group>
3911 </trans-unit>
3912 <trans-unit id="0e907e5a96537e464b192f8adce79ce6487cbb1c"> 3603 <trans-unit id="0e907e5a96537e464b192f8adce79ce6487cbb1c">
3913 <source>Your video was uploaded to your account and is private.</source> 3604 <source>Your video was uploaded to your account and is private.</source>
3914 <target>Via filmo alŝutiĝis al via konto kaj estas privata.</target> 3605 <target>Via filmo alŝutiĝis al via konto kaj estas privata.</target>
@@ -3951,13 +3642,6 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
3951 <context context-type="linenumber">1</context> 3642 <context context-type="linenumber">1</context>
3952 </context-group> 3643 </context-group>
3953 </trans-unit> 3644 </trans-unit>
3954 <trans-unit id="d31d39e8ee9b2f20bffb3468ee062eaa5409c59f">
3955 <source>Your video quota is exceeded with this video (video size: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, used: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, quota: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</source>
3956 <target>Via datumlimo por filmoj superfluas kun tiu ĉi filmo (grando: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, uzitaj: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, datumlimo: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</target>
3957 <context-group name="null">
3958 <context context-type="linenumber">1</context>
3959 </context-group>
3960 </trans-unit>
3961 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce"> 3645 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce">
3962 <source>Video published.</source> 3646 <source>Video published.</source>
3963 <target>Filmo publikigita.</target> 3647 <target>Filmo publikigita.</target>
@@ -3993,20 +3677,6 @@ Kiam vi alŝutos filmon al tiu ĉi kanalo, la kampo pri subteno memfare enhavos
3993 <context context-type="linenumber">1</context> 3677 <context context-type="linenumber">1</context>
3994 </context-group> 3678 </context-group>
3995 </trans-unit> 3679 </trans-unit>
3996 <trans-unit id="23b2c2f4dd69e29c3bff00469e259dcb01de5633">
3997 <source>Do you really want to blacklist this video?</source>
3998 <target>Ĉu vi certe volas forteni tiun ĉi filmon?</target>
3999 <context-group name="null">
4000 <context context-type="linenumber">1</context>
4001 </context-group>
4002 </trans-unit>
4003 <trans-unit id="cafd8ec6020e69f241a107b1cb7081bd9e773d4e">
4004 <source>Video <x id="INTERPOLATION" equiv-text="{{videoName}}"/> had been blacklisted.</source>
4005 <target>Filmo « <x id="INTERPOLATION" equiv-text="{{videoName}}"/> » estis fortenita.</target>
4006 <context-group name="null">
4007 <context context-type="linenumber">1</context>
4008 </context-group>
4009 </trans-unit>
4010 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95"> 3680 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95">
4011 <source>Do you really want to delete this video?</source> 3681 <source>Do you really want to delete this video?</source>
4012 <target>Ĉu vi vere volas elŝuti tiun ĉi filmon?</target> 3682 <target>Ĉu vi vere volas elŝuti tiun ĉi filmon?</target>
diff --git a/client/src/locale/target/angular_es_ES.xml b/client/src/locale/target/angular_es_ES.xml
index bd455491a..45600d5c8 100644
--- a/client/src/locale/target/angular_es_ES.xml
+++ b/client/src/locale/target/angular_es_ES.xml
@@ -3,16 +3,6 @@
3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1"> 3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1">
4 <file source-language="en-US" datatype="plaintext" original="" target-language="es-ES"> 4 <file source-language="en-US" datatype="plaintext" original="" target-language="es-ES">
5 <body> 5 <body>
6 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
7 <source>
8 Cancel
9 </source>
10 <target>
11Cancelar</target>
12 <context-group name="null">
13 <context context-type="linenumber">45</context>
14 </context-group>
15 </trans-unit>
16 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46"> 6 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46">
17 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source> 7 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source>
18 <target>(extensioness: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, tamaño máximo: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target> 8 <target>(extensioness: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, tamaño máximo: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target>
@@ -24,14 +14,21 @@ Cancelar</target>
24 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 14 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
25 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visualizaciones</target> 15 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visualizaciones</target>
26 <context-group name="null"> 16 <context-group name="null">
27 <context context-type="linenumber">34</context> 17 <context context-type="linenumber">12</context>
18 </context-group>
19 </trans-unit>
20 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7">
21 <source>Delete</source>
22 <target>Eliminar</target>
23 <context-group name="null">
24 <context context-type="linenumber">15</context>
28 </context-group> 25 </context-group>
29 </trans-unit> 26 </trans-unit>
30 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> 27 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c">
31 <source>Edit</source> 28 <source>Edit</source>
32 <target>Modificar</target> 29 <target>Modificar</target>
33 <context-group name="null"> 30 <context-group name="null">
34 <context context-type="linenumber">3</context> 31 <context context-type="linenumber">5</context>
35 </context-group> 32 </context-group>
36 </trans-unit> 33 </trans-unit>
37 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> 34 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d">
@@ -45,7 +42,7 @@ Cancelar</target>
45 <source>Complete preview</source> 42 <source>Complete preview</source>
46 <target>Vista previa completa</target> 43 <target>Vista previa completa</target>
47 <context-group name="null"> 44 <context-group name="null">
48 <context context-type="linenumber">10</context> 45 <context context-type="linenumber">13</context>
49 </context-group> 46 </context-group>
50 </trans-unit> 47 </trans-unit>
51 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> 48 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f">
@@ -55,6 +52,13 @@ Cancelar</target>
55 <context context-type="linenumber">18</context> 52 <context context-type="linenumber">18</context>
56 </context-group> 53 </context-group>
57 </trans-unit> 54 </trans-unit>
55 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
56 <source>Video quota</source>
57 <target>Cuota de vídeo</target>
58 <context-group name="null">
59 <context context-type="linenumber">19</context>
60 </context-group>
61 </trans-unit>
58 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea"> 62 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea">
59 <source> 63 <source>
60 Login 64 Login
@@ -69,14 +73,14 @@ Iniciar sesión</target>
69 <source>User</source> 73 <source>User</source>
70 <target>Usuario</target> 74 <target>Usuario</target>
71 <context-group name="null"> 75 <context-group name="null">
72 <context context-type="linenumber">11</context> 76 <context context-type="linenumber">13</context>
73 </context-group> 77 </context-group>
74 </trans-unit> 78 </trans-unit>
75 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> 79 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478">
76 <source>Username or email address</source> 80 <source>Username or email address</source>
77 <target>Usuario o correo electrónico</target> 81 <target>Usuario o correo electrónico</target>
78 <context-group name="null"> 82 <context-group name="null">
79 <context context-type="linenumber">13</context> 83 <context context-type="linenumber">15</context>
80 </context-group> 84 </context-group>
81 </trans-unit> 85 </trans-unit>
82 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87"> 86 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87">
@@ -87,7 +91,7 @@ Iniciar sesión</target>
87 o crear una cuenta 91 o crear una cuenta
88 </target> 92 </target>
89 <context-group name="null"> 93 <context-group name="null">
90 <context context-type="linenumber">16</context> 94 <context context-type="linenumber">18</context>
91 </context-group> 95 </context-group>
92 </trans-unit> 96 </trans-unit>
93 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b"> 97 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b">
@@ -98,14 +102,14 @@ Iniciar sesión</target>
98 o crear una cuenta en otro nodo 102 o crear una cuenta en otro nodo
99 </target> 103 </target>
100 <context-group name="null"> 104 <context-group name="null">
101 <context context-type="linenumber">20</context> 105 <context context-type="linenumber">22</context>
102 </context-group> 106 </context-group>
103 </trans-unit> 107 </trans-unit>
104 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3"> 108 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3">
105 <source>User registration is not allowed on this instance, but you can register on many others!</source> 109 <source>User registration is not allowed on this instance, but you can register on many others!</source>
106 <target>El registro de usuarios no está permitido en este nodo, ¡pero puedes registrarte en muchos otros!</target> 110 <target>El registro de usuarios no está permitido en este nodo, ¡pero puedes registrarte en muchos otros!</target>
107 <context-group name="null"> 111 <context-group name="null">
108 <context context-type="linenumber">26</context> 112 <context context-type="linenumber">28</context>
109 </context-group> 113 </context-group>
110 </trans-unit> 114 </trans-unit>
111 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> 115 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407">
@@ -119,35 +123,35 @@ Iniciar sesión</target>
119 <source>I forgot my password</source> 123 <source>I forgot my password</source>
120 <target>Olvidé mi contraseña</target> 124 <target>Olvidé mi contraseña</target>
121 <context-group name="null"> 125 <context-group name="null">
122 <context context-type="linenumber">42</context> 126 <context context-type="linenumber">44</context>
123 </context-group> 127 </context-group>
124 </trans-unit> 128 </trans-unit>
125 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681"> 129 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681">
126 <source>Forgot your password</source> 130 <source>Forgot your password</source>
127 <target>Olvidaste tu contraseña</target> 131 <target>Olvidaste tu contraseña</target>
128 <context-group name="null"> 132 <context-group name="null">
129 <context context-type="linenumber">59</context> 133 <context context-type="linenumber">57</context>
130 </context-group> 134 </context-group>
131 </trans-unit> 135 </trans-unit>
132 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc"> 136 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc">
133 <source>Email</source> 137 <source>Email</source>
134 <target>Correo electrónico </target> 138 <target>Correo electrónico </target>
135 <context-group name="null"> 139 <context-group name="null">
136 <context context-type="linenumber">17</context> 140 <context context-type="linenumber">8</context>
137 </context-group> 141 </context-group>
138 </trans-unit> 142 </trans-unit>
139 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529"> 143 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529">
140 <source>Email address</source> 144 <source>Email address</source>
141 <target>Correo electrónico </target> 145 <target>Correo electrónico </target>
142 <context-group name="null"> 146 <context-group name="null">
143 <context context-type="linenumber">66</context> 147 <context context-type="linenumber">10</context>
144 </context-group> 148 </context-group>
145 </trans-unit> 149 </trans-unit>
146 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55"> 150 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55">
147 <source>Send me an email to reset my password</source> 151 <source>Send me an email to reset my password</source>
148 <target>Enviar un correo electrónico para restablecer mi contraseña</target> 152 <target>Enviar un correo electrónico para restablecer mi contraseña</target>
149 <context-group name="null"> 153 <context-group name="null">
150 <context context-type="linenumber">77</context> 154 <context context-type="linenumber">75</context>
151 </context-group> 155 </context-group>
152 </trans-unit> 156 </trans-unit>
153 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa"> 157 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa">
@@ -191,24 +195,6 @@ Iniciar sesión</target>
191 <context context-type="linenumber">3</context> 195 <context context-type="linenumber">3</context>
192 </context-group> 196 </context-group>
193 </trans-unit> 197 </trans-unit>
194 <trans-unit id="a6807b834e01ce165aa61fad157b0ff4288b6bf1">
195 <source>Initial video quota:</source>
196 <target>Cuota de vídeo inicial:</target>
197 <context-group name="null">
198 <context context-type="linenumber">8</context>
199 </context-group>
200 </trans-unit>
201 <trans-unit id="87b6b2c26215c5e712d3bfe4cc86ba53bc23451c">
202 <source>
203 Unlimited
204 </source>
205 <target>
206 Ilimitada
207 </target>
208 <context-group name="null">
209 <context context-type="linenumber">16</context>
210 </context-group>
211 </trans-unit>
212 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> 198 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48">
213 <source>Username</source> 199 <source>Username</source>
214 <target>Usuario</target> 200 <target>Usuario</target>
@@ -220,14 +206,14 @@ Iniciar sesión</target>
220 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source> 206 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source>
221 <target>He leído y estoy de acuerdo con los &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Términos de uso&lt;/a&gt; de este nodo</target> 207 <target>He leído y estoy de acuerdo con los &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Términos de uso&lt;/a&gt; de este nodo</target>
222 <context-group name="null"> 208 <context-group name="null">
223 <context context-type="linenumber">60</context> 209 <context context-type="linenumber">54</context>
224 </context-group> 210 </context-group>
225 </trans-unit> 211 </trans-unit>
226 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4"> 212 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4">
227 <source>Signup</source> 213 <source>Signup</source>
228 <target>Registro</target> 214 <target>Registro</target>
229 <context-group name="null"> 215 <context-group name="null">
230 <context context-type="linenumber">86</context> 216 <context context-type="linenumber">88</context>
231 </context-group> 217 </context-group>
232 </trans-unit> 218 </trans-unit>
233 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a"> 219 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a">
@@ -270,103 +256,70 @@ Iniciar sesión</target>
270 <source>Change the language</source> 256 <source>Change the language</source>
271 <target>Cambiar el idioma</target> 257 <target>Cambiar el idioma</target>
272 <context-group name="null"> 258 <context-group name="null">
273 <context context-type="linenumber">76</context> 259 <context context-type="linenumber">88</context>
274 </context-group>
275 </trans-unit>
276 <trans-unit id="b8ccc4f1b3f839fca9bd59e072f715fd487d540f">
277 <source>
278 My public profile
279 </source>
280 <target>
281 Mi perfil público
282 </target>
283 <context-group name="null">
284 <context context-type="linenumber">19</context>
285 </context-group>
286 </trans-unit>
287 <trans-unit id="c84b721e9325c9cce20d92f4dbd66898ab5ec947">
288 <source>
289 My account
290 </source>
291 <target>
292 Mi cuenta
293 </target>
294 <context-group name="null">
295 <context context-type="linenumber">23</context>
296 </context-group>
297 </trans-unit>
298 <trans-unit id="ba7378cdaaa60b4fee17a551b232ad3512dac17d">
299 <source>
300 Log out
301 </source>
302 <target>
303 Salir
304 </target>
305 <context-group name="null">
306 <context context-type="linenumber">27</context>
307 </context-group> 260 </context-group>
308 </trans-unit> 261 </trans-unit>
309 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> 262 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9">
310 <source>Login</source> 263 <source>Login</source>
311 <target>Identificarse</target> 264 <target>Identificarse</target>
312 <context-group name="null"> 265 <context-group name="null">
313 <context context-type="linenumber">36</context> 266 <context context-type="linenumber">38</context>
314 </context-group> 267 </context-group>
315 </trans-unit> 268 </trans-unit>
316 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> 269 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87">
317 <source>Create an account</source> 270 <source>Create an account</source>
318 <target>Crear una cuenta</target> 271 <target>Crear una cuenta</target>
319 <context-group name="null"> 272 <context-group name="null">
320 <context context-type="linenumber">37</context> 273 <context context-type="linenumber">39</context>
321 </context-group> 274 </context-group>
322 </trans-unit> 275 </trans-unit>
323 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238"> 276 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238">
324 <source>Videos</source> 277 <source>Videos</source>
325 <target>Vídeos</target> 278 <target>Vídeos</target>
326 <context-group name="null"> 279 <context-group name="null">
327 <context context-type="linenumber">21</context> 280 <context context-type="linenumber">24</context>
328 </context-group> 281 </context-group>
329 </trans-unit> 282 </trans-unit>
330 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> 283 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807">
331 <source>Trending</source> 284 <source>Trending</source>
332 <target>Tendencias</target> 285 <target>Tendencias</target>
333 <context-group name="null"> 286 <context-group name="null">
334 <context context-type="linenumber">45</context> 287 <context context-type="linenumber">57</context>
335 </context-group> 288 </context-group>
336 </trans-unit> 289 </trans-unit>
337 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> 290 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1">
338 <source>Recently added</source> 291 <source>Recently added</source>
339 <target>Añadidos recientemente</target> 292 <target>Añadidos recientemente</target>
340 <context-group name="null"> 293 <context-group name="null">
341 <context context-type="linenumber">50</context> 294 <context context-type="linenumber">62</context>
342 </context-group> 295 </context-group>
343 </trans-unit> 296 </trans-unit>
344 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d"> 297 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d">
345 <source>Local</source> 298 <source>Local</source>
346 <target>Local</target> 299 <target>Local</target>
347 <context-group name="null"> 300 <context-group name="null">
348 <context context-type="linenumber">55</context> 301 <context context-type="linenumber">67</context>
349 </context-group> 302 </context-group>
350 </trans-unit> 303 </trans-unit>
351 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f"> 304 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f">
352 <source>More</source> 305 <source>More</source>
353 <target>Más</target> 306 <target>Más</target>
354 <context-group name="null"> 307 <context-group name="null">
355 <context context-type="linenumber">60</context> 308 <context context-type="linenumber">72</context>
356 </context-group> 309 </context-group>
357 </trans-unit> 310 </trans-unit>
358 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> 311 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919">
359 <source>Administration</source> 312 <source>Administration</source>
360 <target>Administración</target> 313 <target>Administración</target>
361 <context-group name="null"> 314 <context-group name="null">
362 <context context-type="linenumber">64</context> 315 <context context-type="linenumber">76</context>
363 </context-group> 316 </context-group>
364 </trans-unit> 317 </trans-unit>
365 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> 318 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a">
366 <source>About</source> 319 <source>About</source>
367 <target>Acerca de</target> 320 <target>Acerca de</target>
368 <context-group name="null"> 321 <context-group name="null">
369 <context context-type="linenumber">23</context> 322 <context context-type="linenumber">25</context>
370 </context-group> 323 </context-group>
371 </trans-unit> 324 </trans-unit>
372 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> 325 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599">
@@ -429,21 +382,21 @@ Iniciar sesión</target>
429 <source>Category</source> 382 <source>Category</source>
430 <target>Categoría</target> 383 <target>Categoría</target>
431 <context-group name="null"> 384 <context-group name="null">
432 <context context-type="linenumber">148</context> 385 <context context-type="linenumber">166</context>
433 </context-group> 386 </context-group>
434 </trans-unit> 387 </trans-unit>
435 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c"> 388 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c">
436 <source>Licence</source> 389 <source>Licence</source>
437 <target>Licencia</target> 390 <target>Licencia</target>
438 <context-group name="null"> 391 <context-group name="null">
439 <context context-type="linenumber">157</context> 392 <context context-type="linenumber">175</context>
440 </context-group> 393 </context-group>
441 </trans-unit> 394 </trans-unit>
442 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619"> 395 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619">
443 <source>Language</source> 396 <source>Language</source>
444 <target>Idioma</target> 397 <target>Idioma</target>
445 <context-group name="null"> 398 <context-group name="null">
446 <context context-type="linenumber">166</context> 399 <context context-type="linenumber">184</context>
447 </context-group> 400 </context-group>
448 </trans-unit> 401 </trans-unit>
449 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8"> 402 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8">
@@ -478,7 +431,7 @@ Iniciar sesión</target>
478 <source>Instance</source> 431 <source>Instance</source>
479 <target>Nodo</target> 432 <target>Nodo</target>
480 <context-group name="null"> 433 <context-group name="null">
481 <context context-type="linenumber">7</context> 434 <context context-type="linenumber">8</context>
482 </context-group> 435 </context-group>
483 </trans-unit> 436 </trans-unit>
484 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390"> 437 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390">
@@ -503,14 +456,14 @@ Iniciar sesión</target>
503 <source>Description</source> 456 <source>Description</source>
504 <target>Descripción</target> 457 <target>Descripción</target>
505 <context-group name="null"> 458 <context-group name="null">
506 <context context-type="linenumber">23</context> 459 <context context-type="linenumber">26</context>
507 </context-group> 460 </context-group>
508 </trans-unit> 461 </trans-unit>
509 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774"> 462 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774">
510 <source>Terms</source> 463 <source>Terms</source>
511 <target>Términos de uso</target> 464 <target>Términos de uso</target>
512 <context-group name="null"> 465 <context-group name="null">
513 <context context-type="linenumber">43</context> 466 <context context-type="linenumber">44</context>
514 </context-group> 467 </context-group>
515 </trans-unit> 468 </trans-unit>
516 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27"> 469 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27">
@@ -851,7 +804,7 @@ Iniciar sesión</target>
851 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source> 804 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source>
852 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> suscriptores</target> 805 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> suscriptores</target>
853 <context-group name="null"> 806 <context-group name="null">
854 <context context-type="linenumber">11</context> 807 <context context-type="linenumber">14</context>
855 </context-group> 808 </context-group>
856 </trans-unit> 809 </trans-unit>
857 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f"> 810 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f">
@@ -865,49 +818,49 @@ Iniciar sesión</target>
865 <source>Name</source> 818 <source>Name</source>
866 <target>Nombre</target> 819 <target>Nombre</target>
867 <context-group name="null"> 820 <context-group name="null">
868 <context context-type="linenumber">9</context> 821 <context context-type="linenumber">12</context>
869 </context-group> 822 </context-group>
870 </trans-unit> 823 </trans-unit>
871 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b"> 824 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b">
872 <source>Short description</source> 825 <source>Short description</source>
873 <target>Descripción corta</target> 826 <target>Descripción corta</target>
874 <context-group name="null"> 827 <context-group name="null">
875 <context context-type="linenumber">21</context> 828 <context context-type="linenumber">22</context>
876 </context-group> 829 </context-group>
877 </trans-unit> 830 </trans-unit>
878 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003"> 831 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003">
879 <source>Default client route</source> 832 <source>Default client route</source>
880 <target>Routa de cliente por defecto</target> 833 <target>Routa de cliente por defecto</target>
881 <context-group name="null"> 834 <context-group name="null">
882 <context context-type="linenumber">54</context> 835 <context context-type="linenumber">55</context>
883 </context-group> 836 </context-group>
884 </trans-unit> 837 </trans-unit>
885 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948"> 838 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948">
886 <source>Videos Trending</source> 839 <source>Videos Trending</source>
887 <target>Vídeos en Tendencia</target> 840 <target>Vídeos en Tendencia</target>
888 <context-group name="null"> 841 <context-group name="null">
889 <context context-type="linenumber">57</context> 842 <context context-type="linenumber">59</context>
890 </context-group> 843 </context-group>
891 </trans-unit> 844 </trans-unit>
892 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883"> 845 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883">
893 <source>Videos Recently Added</source> 846 <source>Videos Recently Added</source>
894 <target>Vídeos Recientemente Añadidos</target> 847 <target>Vídeos Recientemente Añadidos</target>
895 <context-group name="null"> 848 <context-group name="null">
896 <context context-type="linenumber">58</context> 849 <context context-type="linenumber">60</context>
897 </context-group> 850 </context-group>
898 </trans-unit> 851 </trans-unit>
899 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f"> 852 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f">
900 <source>Local videos</source> 853 <source>Local videos</source>
901 <target>Vídeos locales</target> 854 <target>Vídeos locales</target>
902 <context-group name="null"> 855 <context-group name="null">
903 <context context-type="linenumber">59</context> 856 <context context-type="linenumber">61</context>
904 </context-group> 857 </context-group>
905 </trans-unit> 858 </trans-unit>
906 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9"> 859 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9">
907 <source>Policy on videos containing sensitive content</source> 860 <source>Policy on videos containing sensitive content</source>
908 <target>Política para los vídeos que contengan material sensible</target> 861 <target>Política para los vídeos que contengan material sensible</target>
909 <context-group name="null"> 862 <context-group name="null">
910 <context context-type="linenumber">68</context> 863 <context context-type="linenumber">70</context>
911 </context-group> 864 </context-group>
912 </trans-unit> 865 </trans-unit>
913 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df"> 866 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df">
@@ -942,42 +895,63 @@ Iniciar sesión</target>
942 <source>Signup enabled</source> 895 <source>Signup enabled</source>
943 <target>Registro habilitado</target> 896 <target>Registro habilitado</target>
944 <context-group name="null"> 897 <context-group name="null">
945 <context context-type="linenumber">90</context> 898 <context context-type="linenumber">92</context>
946 </context-group> 899 </context-group>
947 </trans-unit> 900 </trans-unit>
948 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402"> 901 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402">
949 <source>Signup limit</source> 902 <source>Signup limit</source>
950 <target>Límite de registro</target> 903 <target>Límite de registro</target>
951 <context-group name="null"> 904 <context-group name="null">
952 <context context-type="linenumber">94</context> 905 <context context-type="linenumber">101</context>
906 </context-group>
907 </trans-unit>
908 <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36">
909 <source>Import</source>
910 <target>Importar</target>
911 <context-group name="null">
912 <context context-type="linenumber">42</context>
913 </context-group>
914 </trans-unit>
915 <trans-unit id="e9964673c94eb0b4ff8088c84018217c031f31ce">
916 <source>Video import with HTTP enabled</source>
917 <target>Importar video con HTTP activado</target>
918 <context-group name="null">
919 <context context-type="linenumber">115</context>
920 </context-group>
921 </trans-unit>
922 <trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e">
923 <source>Video import with a torrent file or a magnet URI enabled</source>
924 <target>Importar video con un archivo torrent o un enlace magnet activado</target>
925 <context-group name="null">
926 <context context-type="linenumber">120</context>
953 </context-group> 927 </context-group>
954 </trans-unit> 928 </trans-unit>
955 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011"> 929 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011">
956 <source>Administrator</source> 930 <source>Administrator</source>
957 <target>Administrador</target> 931 <target>Administrador</target>
958 <context-group name="null"> 932 <context-group name="null">
959 <context context-type="linenumber">116</context> 933 <context context-type="linenumber">123</context>
960 </context-group> 934 </context-group>
961 </trans-unit> 935 </trans-unit>
962 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> 936 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587">
963 <source>Admin email</source> 937 <source>Admin email</source>
964 <target>Correo del administrador</target> 938 <target>Correo del administrador</target>
965 <context-group name="null"> 939 <context-group name="null">
966 <context context-type="linenumber">119</context> 940 <context context-type="linenumber">126</context>
967 </context-group> 941 </context-group>
968 </trans-unit> 942 </trans-unit>
969 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be"> 943 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be">
970 <source>Users</source> 944 <source>Users</source>
971 <target>Usuarios</target> 945 <target>Usuarios</target>
972 <context-group name="null"> 946 <context-group name="null">
973 <context context-type="linenumber">129</context> 947 <context context-type="linenumber">136</context>
974 </context-group> 948 </context-group>
975 </trans-unit> 949 </trans-unit>
976 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09"> 950 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09">
977 <source>User default video quota</source> 951 <source>User default video quota</source>
978 <target>Cuota de vídeo por defecto del usuario</target> 952 <target>Cuota de vídeo por defecto del usuario</target>
979 <context-group name="null"> 953 <context-group name="null">
980 <context context-type="linenumber">132</context> 954 <context context-type="linenumber">139</context>
981 </context-group> 955 </context-group>
982 </trans-unit> 956 </trans-unit>
983 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5"> 957 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5">
@@ -991,194 +965,133 @@ Iniciar sesión</target>
991 <source>Twitter</source> 965 <source>Twitter</source>
992 <target>Twitter</target> 966 <target>Twitter</target>
993 <context-group name="null"> 967 <context-group name="null">
994 <context context-type="linenumber">148</context> 968 <context context-type="linenumber">170</context>
995 </context-group> 969 </context-group>
996 </trans-unit> 970 </trans-unit>
997 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> 971 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524">
998 <source>Your Twitter username</source> 972 <source>Your Twitter username</source>
999 <target>Tu usuario de Twitter</target> 973 <target>Tu usuario de Twitter</target>
1000 <context-group name="null"> 974 <context-group name="null">
1001 <context context-type="linenumber">151</context> 975 <context context-type="linenumber">173</context>
1002 </context-group> 976 </context-group>
1003 </trans-unit> 977 </trans-unit>
1004 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c"> 978 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c">
1005 <source>Indicates the Twitter account for the website or platform on which the content was published.</source> 979 <source>Indicates the Twitter account for the website or platform on which the content was published.</source>
1006 <target>Indica la cuenta de Twitter del sitio web o de la plataforma en la que el contenido fue publicado</target> 980 <target>Indica la cuenta de Twitter del sitio web o de la plataforma en la que el contenido fue publicado</target>
1007 <context-group name="null"> 981 <context-group name="null">
1008 <context context-type="linenumber">154</context> 982 <context context-type="linenumber">176</context>
1009 </context-group> 983 </context-group>
1010 </trans-unit> 984 </trans-unit>
1011 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605"> 985 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605">
1012 <source>Instance whitelisted by Twitter</source> 986 <source>Instance whitelisted by Twitter</source>
1013 <target>Nodo en lista blanca de Twitter</target> 987 <target>Nodo en lista blanca de Twitter</target>
1014 <context-group name="null"> 988 <context-group name="null">
1015 <context context-type="linenumber">167</context> 989 <context context-type="linenumber">189</context>
1016 </context-group>
1017 </trans-unit>
1018 <trans-unit id="3f008a1a07ca42c6ad258fde1bbd80ed74ada19b">
1019 <source>If your instance is whitelisted by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.&lt;br /&gt;
1020If the instance is not whitelisted, we use an image link card that will redirect on your PeerTube instance.&lt;br /&gt;&lt;br /&gt;
1021Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; to see if you instance is whitelisted.</source>
1022 <target>Si tu nodo está en lista blanca de Twitter, se incrustará un reproductor en el feed de Twitter al compartir un vídeo de PeerTube.&lt;br /&gt;
1023Si el nodo no está en lista blanca, usamos una tarjeta con un enlace que redireccionará a tu nodo de PeerTube.&lt;br /&gt;&lt;br /&gt;
1024Marca este recuadro, guarda la configuración y haz una prueba con una URL de un vídeo de tu nodo (https://example.com/videos/watch/blabla) en &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; para ver si tu nodo está en lista blanca.</target>
1025 <context-group name="null">
1026 <context context-type="linenumber">168</context>
1027 </context-group> 990 </context-group>
1028 </trans-unit> 991 </trans-unit>
1029 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> 992 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5">
1030 <source>Services</source> 993 <source>Services</source>
1031 <target>Servicios</target> 994 <target>Servicios</target>
1032 <context-group name="null"> 995 <context-group name="null">
1033 <context context-type="linenumber">146</context> 996 <context context-type="linenumber">168</context>
1034 </context-group> 997 </context-group>
1035 </trans-unit> 998 </trans-unit>
1036 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490"> 999 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490">
1037 <source>Transcoding</source> 1000 <source>Transcoding</source>
1038 <target>Transcodificar</target> 1001 <target>Transcodificar</target>
1039 <context-group name="null"> 1002 <context-group name="null">
1040 <context context-type="linenumber">176</context> 1003 <context context-type="linenumber">200</context>
1041 </context-group> 1004 </context-group>
1042 </trans-unit> 1005 </trans-unit>
1043 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> 1006 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9">
1044 <source>Transcoding enabled</source> 1007 <source>Transcoding enabled</source>
1045 <target>Transcodificación activada</target> 1008 <target>Transcodificación activada</target>
1046 <context-group name="null"> 1009 <context-group name="null">
1047 <context context-type="linenumber">180</context> 1010 <context context-type="linenumber">204</context>
1048 </context-group> 1011 </context-group>
1049 </trans-unit> 1012 </trans-unit>
1050 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> 1013 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f">
1051 <source>If you disable transcoding, many videos from your users will not work!</source> 1014 <source>If you disable transcoding, many videos from your users will not work!</source>
1052 <target>¡Si desactivas la transcodificación, muchos vídeos de tus usuarios no funcionarán!</target> 1015 <target>¡Si desactivas la transcodificación, muchos vídeos de tus usuarios no funcionarán!</target>
1053 <context-group name="null"> 1016 <context-group name="null">
1054 <context context-type="linenumber">181</context> 1017 <context context-type="linenumber">205</context>
1055 </context-group> 1018 </context-group>
1056 </trans-unit> 1019 </trans-unit>
1057 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> 1020 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2">
1058 <source>Transcoding threads</source> 1021 <source>Transcoding threads</source>
1059 <target>Hilos de transcodificaciones</target> 1022 <target>Hilos de transcodificaciones</target>
1060 <context-group name="null"> 1023 <context-group name="null">
1061 <context context-type="linenumber">187</context> 1024 <context context-type="linenumber">211</context>
1062 </context-group> 1025 </context-group>
1063 </trans-unit> 1026 </trans-unit>
1064 <trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500"> 1027 <trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500">
1065 <source>Resolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> enabled</source> 1028 <source>Resolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> enabled</source>
1066 <target>Resolución <x id="INTERPOLATION" equiv-text="{{resolution}}"/> activada</target> 1029 <target>Resolución <x id="INTERPOLATION" equiv-text="{{resolution}}"/> activada</target>
1067 <context-group name="null"> 1030 <context-group name="null">
1068 <context context-type="linenumber">203</context> 1031 <context context-type="linenumber">227</context>
1069 </context-group>
1070 </trans-unit>
1071 <trans-unit id="f86acfe567b75b7ea85af6f1cb3efb88085dfb9a">
1072 <source>
1073 Cache
1074
1075 <x id="START_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;my-help&gt;"/><x id="CLOSE_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;/my-help&gt;"/>
1076 </source>
1077 <target>
1078 Caché
1079
1080 <x id="START_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;my-help&gt;"/><x id="CLOSE_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;/my-help&gt;"/>
1081 </target>
1082 <context-group name="null">
1083 <context context-type="linenumber">209</context>
1084 </context-group> 1032 </context-group>
1085 </trans-unit> 1033 </trans-unit>
1086 <trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0"> 1034 <trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0">
1087 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source> 1035 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source>
1088 <target>Algunos archivos (previsualizaciones, subtítulos) no están federados. Los obtenemos directamente del nodo de origen y las ponemos en caché.</target> 1036 <target>Algunos archivos (previsualizaciones, subtítulos) no están federados. Los obtenemos directamente del nodo de origen y las ponemos en caché.</target>
1089 <context-group name="null"> 1037 <context-group name="null">
1090 <context context-type="linenumber">214</context> 1038 <context context-type="linenumber">238</context>
1091 </context-group> 1039 </context-group>
1092 </trans-unit> 1040 </trans-unit>
1093 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7"> 1041 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7">
1094 <source>Previews cache size</source> 1042 <source>Previews cache size</source>
1095 <target>Tamaño de caché de las previsualizaciones</target> 1043 <target>Tamaño de caché de las previsualizaciones</target>
1096 <context-group name="null"> 1044 <context-group name="null">
1097 <context context-type="linenumber">219</context> 1045 <context context-type="linenumber">243</context>
1098 </context-group> 1046 </context-group>
1099 </trans-unit> 1047 </trans-unit>
1100 <trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607"> 1048 <trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607">
1101 <source>Video captions cache size</source> 1049 <source>Video captions cache size</source>
1102 <target>Tamaño de caché de los subtítulos</target> 1050 <target>Tamaño de caché de los subtítulos</target>
1103 <context-group name="null"> 1051 <context-group name="null">
1104 <context context-type="linenumber">230</context> 1052 <context context-type="linenumber">254</context>
1105 </context-group> 1053 </context-group>
1106 </trans-unit> 1054 </trans-unit>
1107 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c"> 1055 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c">
1108 <source>Customizations</source> 1056 <source>Customizations</source>
1109 <target>Personalizaciones</target> 1057 <target>Personalizaciones</target>
1110 <context-group name="null"> 1058 <context-group name="null">
1111 <context context-type="linenumber">240</context> 1059 <context context-type="linenumber">264</context>
1112 </context-group> 1060 </context-group>
1113 </trans-unit> 1061 </trans-unit>
1114 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> 1062 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c">
1115 <source>JavaScript</source> 1063 <source>JavaScript</source>
1116 <target>JavaScript</target> 1064 <target>JavaScript</target>
1117 <context-group name="null"> 1065 <context-group name="null">
1118 <context context-type="linenumber">243</context> 1066 <context context-type="linenumber">267</context>
1119 </context-group> 1067 </context-group>
1120 </trans-unit> 1068 </trans-unit>
1121 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c"> 1069 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c">
1122 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source> 1070 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source>
1123 <target>Escribir código Javascript directamente.&lt;br /&gt;Ejemplo: &lt;pre&gt;console.log('mi nodo es maravilloso');&lt;/pre&gt;</target> 1071 <target>Escribir código Javascript directamente.&lt;br /&gt;Ejemplo: &lt;pre&gt;console.log('mi nodo es maravilloso');&lt;/pre&gt;</target>
1124 <context-group name="null"> 1072 <context-group name="null">
1125 <context context-type="linenumber">246</context> 1073 <context context-type="linenumber">270</context>
1126 </context-group>
1127 </trans-unit>
1128 <trans-unit id="f133b08d6519081bfb8ef51cff4bf2b3af23dde6">
1129 <source>
1130 Write directly CSS code. Example:&lt;br /&gt;
1131 &lt;pre&gt;
1132 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1133 background-color: red;
1134 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1135 &lt;/pre&gt;
1136
1137 Prepend with &lt;em&gt;#custom-css&lt;/em&gt; to override styles. Example:
1138 &lt;pre&gt;
1139 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1140 color: red;
1141 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1142 &lt;/pre&gt;
1143 </source>
1144 <target>
1145 Escribir código CSS directamente. Ejemplo:&lt;br /&gt;
1146 &lt;pre&gt;
1147 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1148 background-color: red;
1149 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1150 &lt;/pre&gt;
1151
1152 Comenzar con &lt;em&gt;#custom-css&lt;/em&gt; para anular estilos. Ejemplo:
1153 &lt;pre&gt;
1154 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1155 color: red;
1156 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1157 &lt;/pre&gt;
1158 </target>
1159 <context-group name="null">
1160 <context context-type="linenumber">262</context>
1161 </context-group> 1074 </context-group>
1162 </trans-unit> 1075 </trans-unit>
1163 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> 1076 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab">
1164 <source>Advanced configuration</source> 1077 <source>Advanced configuration</source>
1165 <target>Configuración avanzada</target> 1078 <target>Configuración avanzada</target>
1166 <context-group name="null"> 1079 <context-group name="null">
1167 <context context-type="linenumber">174</context> 1080 <context context-type="linenumber">197</context>
1168 </context-group> 1081 </context-group>
1169 </trans-unit> 1082 </trans-unit>
1170 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> 1083 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8">
1171 <source>Update configuration</source> 1084 <source>Update configuration</source>
1172 <target>Actualizar configuración</target> 1085 <target>Actualizar configuración</target>
1173 <context-group name="null"> 1086 <context-group name="null">
1174 <context context-type="linenumber">289</context> 1087 <context context-type="linenumber">314</context>
1175 </context-group> 1088 </context-group>
1176 </trans-unit> 1089 </trans-unit>
1177 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca"> 1090 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca">
1178 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source> 1091 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source>
1179 <target>Parece que la configuración no es válida. Por favor, busque errores potenciales en las diferentes pestañas.</target> 1092 <target>Parece que la configuración no es válida. Por favor, busque errores potenciales en las diferentes pestañas.</target>
1180 <context-group name="null"> 1093 <context-group name="null">
1181 <context context-type="linenumber">290</context> 1094 <context context-type="linenumber">315</context>
1182 </context-group> 1095 </context-group>
1183 </trans-unit> 1096 </trans-unit>
1184 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c"> 1097 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c">
@@ -1203,28 +1116,6 @@ Marca este recuadro, guarda la configuración y haz una prueba con una URL de un
1203 <context context-type="linenumber">7</context> 1116 <context context-type="linenumber">7</context>
1204 </context-group> 1117 </context-group>
1205 </trans-unit> 1118 </trans-unit>
1206 <trans-unit id="1c9406213cf05033eda4d3df678217b5eb822315">
1207 <source>
1208 Video abuses
1209 </source>
1210 <target>
1211 Abusos de vídeo
1212 </target>
1213 <context-group name="null">
1214 <context context-type="linenumber">11</context>
1215 </context-group>
1216 </trans-unit>
1217 <trans-unit id="96ccede058f0022f34230c3adc09e60076b6d037">
1218 <source>
1219 Video blacklist
1220 </source>
1221 <target>
1222 Lista negra de vídeo
1223 </target>
1224 <context-group name="null">
1225 <context context-type="linenumber">15</context>
1226 </context-group>
1227 </trans-unit>
1228 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368"> 1119 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368">
1229 <source> 1120 <source>
1230 Jobs 1121 Jobs
@@ -1233,7 +1124,7 @@ Marca este recuadro, guarda la configuración y haz una prueba con una URL de un
1233 Tareas 1124 Tareas
1234 </target> 1125 </target>
1235 <context-group name="null"> 1126 <context-group name="null">
1236 <context context-type="linenumber">19</context> 1127 <context context-type="linenumber">15</context>
1237 </context-group> 1128 </context-group>
1238 </trans-unit> 1129 </trans-unit>
1239 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13"> 1130 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13">
@@ -1244,7 +1135,7 @@ Marca este recuadro, guarda la configuración y haz una prueba con una URL de un
1244 Configuración 1135 Configuración
1245 </target> 1136 </target>
1246 <context-group name="null"> 1137 <context-group name="null">
1247 <context context-type="linenumber">23</context> 1138 <context context-type="linenumber">19</context>
1248 </context-group> 1139 </context-group>
1249 </trans-unit> 1140 </trans-unit>
1250 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396"> 1141 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396">
@@ -1314,6 +1205,27 @@ Marca este recuadro, guarda la configuración y haz una prueba con una URL de un
1314 <context context-type="linenumber">2</context> 1205 <context context-type="linenumber">2</context>
1315 </context-group> 1206 </context-group>
1316 </trans-unit> 1207 </trans-unit>
1208 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936">
1209 <source>Following</source>
1210 <target>Siguiendo</target>
1211 <context-group name="null">
1212 <context context-type="linenumber">5</context>
1213 </context-group>
1214 </trans-unit>
1215 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
1216 <source>Follow</source>
1217 <target>Seguir</target>
1218 <context-group name="null">
1219 <context context-type="linenumber">7</context>
1220 </context-group>
1221 </trans-unit>
1222 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
1223 <source>Followers</source>
1224 <target>Seguidores</target>
1225 <context-group name="null">
1226 <context context-type="linenumber">9</context>
1227 </context-group>
1228 </trans-unit>
1317 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f"> 1229 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f">
1318 <source>Jobs list</source> 1230 <source>Jobs list</source>
1319 <target>Lista de tareas</target> 1231 <target>Lista de tareas</target>
@@ -1374,14 +1286,7 @@ Marca este recuadro, guarda la configuración y haz una prueba con una URL de un
1374 <source>Role</source> 1286 <source>Role</source>
1375 <target>Rol</target> 1287 <target>Rol</target>
1376 <context-group name="null"> 1288 <context-group name="null">
1377 <context context-type="linenumber">19</context> 1289 <context context-type="linenumber">20</context>
1378 </context-group>
1379 </trans-unit>
1380 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
1381 <source>Video quota</source>
1382 <target>Cuota de vídeo</target>
1383 <context-group name="null">
1384 <context context-type="linenumber">18</context>
1385 </context-group> 1290 </context-group>
1386 </trans-unit> 1291 </trans-unit>
1387 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345"> 1292 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345">
@@ -1397,6 +1302,13 @@ Marca este recuadro, guarda la configuración y haz una prueba con una URL de un
1397 <context context-type="linenumber">65</context> 1302 <context context-type="linenumber">65</context>
1398 </context-group> 1303 </context-group>
1399 </trans-unit> 1304 </trans-unit>
1305 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
1306 <source>Reason...</source>
1307 <target>Motivo...</target>
1308 <context-group name="null">
1309 <context context-type="linenumber">11</context>
1310 </context-group>
1311 </trans-unit>
1400 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f"> 1312 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f">
1401 <source>Users list</source> 1313 <source>Users list</source>
1402 <target>Lista de usuarios</target> 1314 <target>Lista de usuarios</target>
@@ -1408,91 +1320,42 @@ Marca este recuadro, guarda la configuración y haz una prueba con una URL de un
1408 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source> 1320 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1409 <target>Nombre de usuario <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target> 1321 <target>Nombre de usuario <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1410 <context-group name="null"> 1322 <context-group name="null">
1411 <context context-type="linenumber">16</context> 1323 <context context-type="linenumber">17</context>
1412 </context-group>
1413 </trans-unit>
1414 <trans-unit id="0c7e8870481f1287af6a142f538391d8c16c2408">
1415 <source>Video abuses list</source>
1416 <target>Lista de abusos de vídeo</target>
1417 <context-group name="null">
1418 <context context-type="linenumber">2</context>
1419 </context-group>
1420 </trans-unit>
1421 <trans-unit id="4ba250869daa372b54d24fafc0ea934769ee4076">
1422 <source>Reason</source>
1423 <target>Motivo</target>
1424 <context-group name="null">
1425 <context context-type="linenumber">11</context>
1426 </context-group> 1324 </context-group>
1427 </trans-unit> 1325 </trans-unit>
1428 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2"> 1326 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2">
1429 <source>Reporter</source> 1327 <source>Reporter</source>
1430 <target>Reportador</target> 1328 <target>Reportador</target>
1431 <context-group name="null"> 1329 <context-group name="null">
1432 <context context-type="linenumber">12</context> 1330 <context context-type="linenumber">8</context>
1433 </context-group> 1331 </context-group>
1434 </trans-unit> 1332 </trans-unit>
1435 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4"> 1333 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4">
1436 <source>Video</source> 1334 <source>Video</source>
1437 <target>Vídeo</target> 1335 <target>Vídeo</target>
1438 <context-group name="null"> 1336 <context-group name="null">
1439 <context context-type="linenumber">9</context> 1337 <context context-type="linenumber">14</context>
1440 </context-group> 1338 </context-group>
1441 </trans-unit> 1339 </trans-unit>
1442 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7"> 1340 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7">
1443 <source>Go to the account</source> 1341 <source>Go to the account</source>
1444 <target>Ir a la cuenta</target> 1342 <target>Ir a la cuenta</target>
1445 <context-group name="null"> 1343 <context-group name="null">
1446 <context context-type="linenumber">22</context> 1344 <context context-type="linenumber">27</context>
1447 </context-group> 1345 </context-group>
1448 </trans-unit> 1346 </trans-unit>
1449 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5"> 1347 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5">
1450 <source>Go to the video</source> 1348 <source>Go to the video</source>
1451 <target>Ir al vídeo</target> 1349 <target>Ir al vídeo</target>
1452 <context-group name="null"> 1350 <context-group name="null">
1453 <context context-type="linenumber">28</context> 1351 <context context-type="linenumber">33</context>
1454 </context-group> 1352 </context-group>
1455 </trans-unit> 1353 </trans-unit>
1456 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1"> 1354 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1">
1457 <source>Blacklisted videos</source> 1355 <source>Blacklisted videos</source>
1458 <target>Vídeos en lista negra</target> 1356 <target>Vídeos en lista negra</target>
1459 <context-group name="null"> 1357 <context-group name="null">
1460 <context context-type="linenumber">2</context> 1358 <context context-type="linenumber">7</context>
1461 </context-group>
1462 </trans-unit>
1463 <trans-unit id="7c02d113e9b7884037834cddecf2a32a5538b35b">
1464 <source>Name <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1465 <target>Nombre <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1466 <context-group name="null">
1467 <context context-type="linenumber">11</context>
1468 </context-group>
1469 </trans-unit>
1470 <trans-unit id="cd5ca5da9e2fa21571e9f86a24a5c3b45a3ddc51">
1471 <source>Views <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1472 <target>Visualizaciones <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1473 <context-group name="null">
1474 <context context-type="linenumber">13</context>
1475 </context-group>
1476 </trans-unit>
1477 <trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9">
1478 <source>NSFW</source>
1479 <target>NSFW</target>
1480 <context-group name="null">
1481 <context context-type="linenumber">14</context>
1482 </context-group>
1483 </trans-unit>
1484 <trans-unit id="8c87d9527af7ff2ada84c911516a9e43a352e401">
1485 <source>UUID</source>
1486 <target>UUID</target>
1487 <context-group name="null">
1488 <context context-type="linenumber">15</context>
1489 </context-group>
1490 </trans-unit>
1491 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1492 <source>Unblacklist</source>
1493 <target>Sacar de lista negra</target>
1494 <context-group name="null">
1495 <context context-type="linenumber">30</context>
1496 </context-group> 1359 </context-group>
1497 </trans-unit> 1360 </trans-unit>
1498 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6"> 1361 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6">
@@ -1502,18 +1365,11 @@ Marca este recuadro, guarda la configuración y haz una prueba con una URL de un
1502 <context context-type="linenumber">3</context> 1365 <context context-type="linenumber">3</context>
1503 </context-group> 1366 </context-group>
1504 </trans-unit> 1367 </trans-unit>
1505 <trans-unit id="520d68b2c9f7dacaf2a5073716cad9bd328ea7e7">
1506 <source>My video channels</source>
1507 <target>Mis canales de vídeo</target>
1508 <context-group name="null">
1509 <context context-type="linenumber">5</context>
1510 </context-group>
1511 </trans-unit>
1512 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894"> 1368 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894">
1513 <source>My videos</source> 1369 <source>My videos</source>
1514 <target>Mis vídeos</target> 1370 <target>Mis vídeos</target>
1515 <context-group name="null"> 1371 <context-group name="null">
1516 <context context-type="linenumber">7</context> 1372 <context context-type="linenumber">14</context>
1517 </context-group> 1373 </context-group>
1518 </trans-unit> 1374 </trans-unit>
1519 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48"> 1375 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48">
@@ -1537,6 +1393,20 @@ Marca este recuadro, guarda la configuración y haz una prueba con una URL de un
1537 <context context-type="linenumber">15</context> 1393 <context context-type="linenumber">15</context>
1538 </context-group> 1394 </context-group>
1539 </trans-unit> 1395 </trans-unit>
1396 <trans-unit id="c74e3202d080780c6415d0e9209c1c859438b735">
1397 <source>Danger zone</source>
1398 <target>Zona peligrosa</target>
1399 <context-group name="null">
1400 <context context-type="linenumber">18</context>
1401 </context-group>
1402 </trans-unit>
1403 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
1404 <source>Submit</source>
1405 <target>Enviar</target>
1406 <context-group name="null">
1407 <context context-type="linenumber">24</context>
1408 </context-group>
1409 </trans-unit>
1540 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79"> 1410 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79">
1541 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 1411 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
1542 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visualizaciones</target> 1412 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visualizaciones</target>
@@ -1544,11 +1414,14 @@ Marca este recuadro, guarda la configuración y haz una prueba con una URL de un
1544 <context context-type="linenumber">19</context> 1414 <context context-type="linenumber">19</context>
1545 </context-group> 1415 </context-group>
1546 </trans-unit> 1416 </trans-unit>
1547 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7"> 1417 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
1548 <source>Delete</source> 1418 <source>
1549 <target>Eliminar</target> 1419 Cancel
1420 </source>
1421 <target>
1422Cancelar</target>
1550 <context-group name="null"> 1423 <context-group name="null">
1551 <context context-type="linenumber">15</context> 1424 <context context-type="linenumber">30</context>
1552 </context-group> 1425 </context-group>
1553 </trans-unit> 1426 </trans-unit>
1554 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260"> 1427 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260">
@@ -1562,7 +1435,7 @@ Marca este recuadro, guarda la configuración y haz una prueba con una URL de un
1562 <source>Go to the channel</source> 1435 <source>Go to the channel</source>
1563 <target>Ir al canal</target> 1436 <target>Ir al canal</target>
1564 <context-group name="null"> 1437 <context-group name="null">
1565 <context context-type="linenumber">15</context> 1438 <context context-type="linenumber">8</context>
1566 </context-group> 1439 </context-group>
1567 </trans-unit> 1440 </trans-unit>
1568 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68"> 1441 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68">
@@ -1585,14 +1458,34 @@ When you will upload a video in this channel, the video support field will be au
1585 <target>Texto corto para decirle a la gente cómo pueden dar soporte a tu canal (plataforma de miembros...).&lt;br /&gt;&lt;br /&gt; 1458 <target>Texto corto para decirle a la gente cómo pueden dar soporte a tu canal (plataforma de miembros...).&lt;br /&gt;&lt;br /&gt;
1586Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenará automáticamente con este texto.</target> 1459Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenará automáticamente con este texto.</target>
1587 <context-group name="null"> 1460 <context-group name="null">
1588 <context context-type="linenumber">36</context> 1461 <context context-type="linenumber">52</context>
1462 </context-group>
1463 </trans-unit>
1464 <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191">
1465 <source>Target</source>
1466 <context-group name="null">
1467 <context context-type="linenumber">8</context>
1468 </context-group>
1469 </trans-unit>
1470 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1471 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1472 <target>Creado por <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1473 <context-group name="null">
1474 <context context-type="linenumber">17</context>
1475 </context-group>
1476 </trans-unit>
1477 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1478 <source>Go the owner account page</source>
1479 <target>Ir a la cuenta del propietario</target>
1480 <context-group name="null">
1481 <context context-type="linenumber">16</context>
1589 </context-group> 1482 </context-group>
1590 </trans-unit> 1483 </trans-unit>
1591 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9"> 1484 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9">
1592 <source>Change password</source> 1485 <source>Change password</source>
1593 <target>Cambiar contraseña</target> 1486 <target>Cambiar contraseña</target>
1594 <context-group name="null"> 1487 <context-group name="null">
1595 <context context-type="linenumber">19</context> 1488 <context context-type="linenumber">22</context>
1596 </context-group> 1489 </context-group>
1597 </trans-unit> 1490 </trans-unit>
1598 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229"> 1491 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229">
@@ -1669,20 +1562,6 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
1669 <context context-type="linenumber">1</context> 1562 <context context-type="linenumber">1</context>
1670 </context-group> 1563 </context-group>
1671 </trans-unit> 1564 </trans-unit>
1672 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1673 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1674 <target>Creado por <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1675 <context-group name="null">
1676 <context context-type="linenumber">14</context>
1677 </context-group>
1678 </trans-unit>
1679 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1680 <source>Go the owner account page</source>
1681 <target>Ir a la cuenta del propietario</target>
1682 <context-group name="null">
1683 <context context-type="linenumber">13</context>
1684 </context-group>
1685 </trans-unit>
1686 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8"> 1565 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8">
1687 <source>Support this channel</source> 1566 <source>Support this channel</source>
1688 <target>Apoyar este canal</target> 1567 <target>Apoyar este canal</target>
@@ -1701,28 +1580,46 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
1701 <source>URL</source> 1580 <source>URL</source>
1702 <target>URL</target> 1581 <target>URL</target>
1703 <context-group name="null"> 1582 <context-group name="null">
1704 <context context-type="linenumber">12</context> 1583 <context context-type="linenumber">17</context>
1584 </context-group>
1585 </trans-unit>
1586 <trans-unit id="bfe7f34fbd4c3afa5f84a5580e0fae942cad2333">
1587 <source>You can import any URL &lt;a href='https://rg3.github.io/youtube-dl/supportedsites.html' target='_blank' rel='noopener noreferrer'&gt;supported by youtube-dl&lt;/a&gt; or URL that points to a raw MP4 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>
1588 <target>Puedes importar cualquier URL &lt;a href='https://rg3.github.io/youtube-dl/supportedsites.html' target='_blank' rel='noopener noreferrer'&gt;soportada por youtube-dl&lt;/a&gt; o una URL que apunta a un archivo MP4. Debes asegurarte de que tienes los derechos de difusión del contenido al que apunta, en caso contrario puedes causar perjuicios legales a ti y a tu instancia.</target>
1589 <context-group name="null">
1590 <context context-type="linenumber">9</context>
1705 </context-group> 1591 </context-group>
1706 </trans-unit> 1592 </trans-unit>
1707 <trans-unit id="0cc554f4d7bb6a87515d2d95438e183b50702071"> 1593 <trans-unit id="0cc554f4d7bb6a87515d2d95438e183b50702071">
1708 <source>Channel</source> 1594 <source>Channel</source>
1709 <target>Canal</target> 1595 <target>Canal</target>
1710 <context-group name="null"> 1596 <context-group name="null">
1711 <context context-type="linenumber">35</context> 1597 <context context-type="linenumber">38</context>
1712 </context-group> 1598 </context-group>
1713 </trans-unit> 1599 </trans-unit>
1714 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427"> 1600 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427">
1715 <source>Privacy</source> 1601 <source>Privacy</source>
1716 <target>Privacidad</target> 1602 <target>Privacidad</target>
1717 <context-group name="null"> 1603 <context-group name="null">
1718 <context context-type="linenumber">143</context> 1604 <context context-type="linenumber">161</context>
1605 </context-group>
1606 </trans-unit>
1607 <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2">
1608 <source>
1609 Congratulations, the video behind <x id="INTERPOLATION" equiv-text="{{ targetUrl }}"/> will be imported! You can already add information about this video.
1610</source>
1611 <target>
1612 Enhorabuena, el vídeo en <x id="INTERPOLATION" equiv-text="{{ targetUrl }}"/> sera importado! Ya puedes añadir información sobre este vídeo.
1613</target>
1614 <context-group name="null">
1615 <context context-type="linenumber">40</context>
1719 </context-group> 1616 </context-group>
1720 </trans-unit> 1617 </trans-unit>
1721 <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb"> 1618 <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb">
1722 <source>Update</source> 1619 <source>Update</source>
1723 <target>Actualizar</target> 1620 <target>Actualizar</target>
1724 <context-group name="null"> 1621 <context-group name="null">
1725 <context context-type="linenumber">105</context> 1622 <context context-type="linenumber">92</context>
1726 </context-group> 1623 </context-group>
1727 </trans-unit> 1624 </trans-unit>
1728 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> 1625 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9">
@@ -1746,29 +1643,83 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
1746 <context context-type="linenumber">55</context> 1643 <context context-type="linenumber">55</context>
1747 </context-group> 1644 </context-group>
1748 </trans-unit> 1645 </trans-unit>
1646 <trans-unit id="2fcbf437e001f47974d45bd03a19e0d9245fdb3b">
1647 <source>Select the torrent to import</source>
1648 <target>Seleccionar el torrent a importar</target>
1649 <context-group name="null">
1650 <context context-type="linenumber">6</context>
1651 </context-group>
1652 </trans-unit>
1653 <trans-unit id="0d6558176587662e9bb3b79cca57d42591cf82f9">
1654 <source>Paste magnet URI</source>
1655 <context-group name="null">
1656 <context context-type="linenumber">14</context>
1657 </context-group>
1658 </trans-unit>
1659 <trans-unit id="1ce18c12c809a738f05f2290f46df0677f27ed70">
1660 <source>You can import any torrent file that points to a mp4 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>
1661 <context-group name="null">
1662 <context context-type="linenumber">17</context>
1663 </context-group>
1664 </trans-unit>
1665 <trans-unit id="7cb3731472edd9edf6a6d036498c2c8388157266">
1666 <source>
1667 Congratulations, the video will be imported with BitTorrent! You can already add information about this video.
1668</source>
1669 <target>
1670Enhorabuena, el vídeo sera importado con BitTorrent! Ya puedes añadir información sobre este vídeo.
1671</target>
1672 <context-group name="null">
1673 <context context-type="linenumber">48</context>
1674 </context-group>
1675 </trans-unit>
1676 <trans-unit id="0b60d939cf0f1af9fe513f31164d198abf671860">
1677 <source>Import <x id="INTERPOLATION" equiv-text="{{ videoName }}"/></source>
1678 <target>Importar <x id="INTERPOLATION" equiv-text="{{ videoName }}"/></target>
1679 <context-group name="null">
1680 <context context-type="linenumber">3</context>
1681 </context-group>
1682 </trans-unit>
1683 <trans-unit id="e9cfe8bd050660077212af5c02f5be24821f28d5">
1684 <source>Upload <x id="INTERPOLATION" equiv-text="{{ videoName }}"/></source>
1685 <target>Subir <x id="INTERPOLATION" equiv-text="{{ videoName }}"/></target>
1686 <context-group name="null">
1687 <context context-type="linenumber">4</context>
1688 </context-group>
1689 </trans-unit>
1690 <trans-unit id="4faf57baebf0fb754a91af0c39521a30cbb1def3">
1691 <source>Upload a file</source>
1692 <target>Subir un archivo</target>
1693 <context-group name="null">
1694 <context context-type="linenumber">10</context>
1695 </context-group>
1696 </trans-unit>
1697 <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470">
1698 <source>Import with URL</source>
1699 <target>Importar con URL</target>
1700 <context-group name="null">
1701 <context context-type="linenumber">17</context>
1702 </context-group>
1703 </trans-unit>
1704 <trans-unit id="752c401d7dcd708944eef60e411187f71d882340">
1705 <source>Import with torrent</source>
1706 <target>Importar con torrent</target>
1707 <context-group name="null">
1708 <context context-type="linenumber">24</context>
1709 </context-group>
1710 </trans-unit>
1749 <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0"> 1711 <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0">
1750 <source>Add caption</source> 1712 <source>Add caption</source>
1751 <target>Añadir subtítulo</target> 1713 <target>Añadir subtítulo</target>
1752 <context-group name="null"> 1714 <context-group name="null">
1753 <context context-type="linenumber">7</context> 1715 <context context-type="linenumber">5</context>
1754 </context-group> 1716 </context-group>
1755 </trans-unit> 1717 </trans-unit>
1756 <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8"> 1718 <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8">
1757 <source>Select the caption file</source> 1719 <source>Select the caption file</source>
1758 <target>Elige el archivo de subtítulo</target> 1720 <target>Elige el archivo de subtítulo</target>
1759 <context-group name="null"> 1721 <context-group name="null">
1760 <context context-type="linenumber">25</context> 1722 <context context-type="linenumber">24</context>
1761 </context-group>
1762 </trans-unit>
1763 <trans-unit id="a40a8a9f8359eda00c6a79809e9499100fde3ffd">
1764 <source>
1765 This will replace an existing caption!
1766 </source>
1767 <target>
1768 ¡Esto sustituirá un subtítulo existente!
1769 </target>
1770 <context-group name="null">
1771 <context context-type="linenumber">30</context>
1772 </context-group> 1723 </context-group>
1773 </trans-unit> 1724 </trans-unit>
1774 <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c"> 1725 <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c">
@@ -1782,70 +1733,63 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
1782 <source>Title</source> 1733 <source>Title</source>
1783 <target>Título</target> 1734 <target>Título</target>
1784 <context-group name="null"> 1735 <context-group name="null">
1785 <context context-type="linenumber">7</context> 1736 <context context-type="linenumber">9</context>
1786 </context-group> 1737 </context-group>
1787 </trans-unit> 1738 </trans-unit>
1788 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b"> 1739 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b">
1789 <source>Tags</source> 1740 <source>Tags</source>
1790 <target>Etiquetas</target> 1741 <target>Etiquetas</target>
1791 <context-group name="null"> 1742 <context-group name="null">
1792 <context context-type="linenumber">175</context> 1743 <context context-type="linenumber">193</context>
1793 </context-group>
1794 </trans-unit>
1795 <trans-unit id="935e7146fe6c12169abfda18536c5856935cfd82">
1796 <source>(press Enter to add)</source>
1797 <target>(presiona Entrar para añadir)</target>
1798 <context-group name="null">
1799 <context context-type="linenumber">15</context>
1800 </context-group> 1744 </context-group>
1801 </trans-unit> 1745 </trans-unit>
1802 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e"> 1746 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e">
1803 <source>Video descriptions are truncated by default and require manual action to expand them.</source> 1747 <source>Video descriptions are truncated by default and require manual action to expand them.</source>
1804 <target>Las descripciones de vídeo se muestran truncadas por defecto y requieren de acción manual para expandirlas.</target> 1748 <target>Las descripciones de vídeo se muestran truncadas por defecto y requieren de acción manual para expandirlas.</target>
1805 <context-group name="null"> 1749 <context-group name="null">
1806 <context context-type="linenumber">24</context> 1750 <context context-type="linenumber">27</context>
1807 </context-group> 1751 </context-group>
1808 </trans-unit> 1752 </trans-unit>
1809 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> 1753 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5">
1810 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source> 1754 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source>
1811 <target>Programar publicación (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target> 1755 <target>Programar publicación (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target>
1812 <context-group name="null"> 1756 <context-group name="null">
1813 <context context-type="linenumber">101</context> 1757 <context context-type="linenumber">104</context>
1814 </context-group> 1758 </context-group>
1815 </trans-unit> 1759 </trans-unit>
1816 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee"> 1760 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee">
1817 <source>This video contains mature or explicit content</source> 1761 <source>This video contains mature or explicit content</source>
1818 <target>Este vídeo contiene material para adultos o explícito</target> 1762 <target>Este vídeo contiene material para adultos o explícito</target>
1819 <context-group name="null"> 1763 <context-group name="null">
1820 <context context-type="linenumber">115</context> 1764 <context context-type="linenumber">118</context>
1821 </context-group> 1765 </context-group>
1822 </trans-unit> 1766 </trans-unit>
1823 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644"> 1767 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644">
1824 <source>Some instances do not list videos containing mature or explicit content by default.</source> 1768 <source>Some instances do not list videos containing mature or explicit content by default.</source>
1825 <target>Algunos nodos no listan vídeos que contengan material para adultos o explícito por defecto.</target> 1769 <target>Algunos nodos no listan vídeos que contengan material para adultos o explícito por defecto.</target>
1826 <context-group name="null"> 1770 <context-group name="null">
1827 <context context-type="linenumber">116</context> 1771 <context context-type="linenumber">119</context>
1828 </context-group> 1772 </context-group>
1829 </trans-unit> 1773 </trans-unit>
1830 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a"> 1774 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a">
1831 <source>Enable video comments</source> 1775 <source>Enable video comments</source>
1832 <target>Permitir comentarios del vídeo</target> 1776 <target>Permitir comentarios del vídeo</target>
1833 <context-group name="null"> 1777 <context-group name="null">
1834 <context context-type="linenumber">121</context> 1778 <context context-type="linenumber">124</context>
1835 </context-group> 1779 </context-group>
1836 </trans-unit> 1780 </trans-unit>
1837 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0"> 1781 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0">
1838 <source>Wait transcoding before publishing the video</source> 1782 <source>Wait transcoding before publishing the video</source>
1839 <target>Esperar transcodificación antes de publicar el vídeo</target> 1783 <target>Esperar transcodificación antes de publicar el vídeo</target>
1840 <context-group name="null"> 1784 <context-group name="null">
1841 <context context-type="linenumber">126</context> 1785 <context context-type="linenumber">129</context>
1842 </context-group> 1786 </context-group>
1843 </trans-unit> 1787 </trans-unit>
1844 <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63"> 1788 <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63">
1845 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source> 1789 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source>
1846 <target>Si decides no esperar a la transcodificación antes de publicar el vídeo, quizás no se pueda reproducir hasta que finalice la transcodificación.</target> 1790 <target>Si decides no esperar a la transcodificación antes de publicar el vídeo, quizás no se pueda reproducir hasta que finalice la transcodificación.</target>
1847 <context-group name="null"> 1791 <context-group name="null">
1848 <context context-type="linenumber">127</context> 1792 <context context-type="linenumber">130</context>
1849 </context-group> 1793 </context-group>
1850 </trans-unit> 1794 </trans-unit>
1851 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7"> 1795 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7">
@@ -1859,70 +1803,70 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
1859 <source>Add another caption</source> 1803 <source>Add another caption</source>
1860 <target>Añadir otro subtítulo</target> 1804 <target>Añadir otro subtítulo</target>
1861 <context-group name="null"> 1805 <context-group name="null">
1862 <context context-type="linenumber">139</context> 1806 <context context-type="linenumber">145</context>
1863 </context-group> 1807 </context-group>
1864 </trans-unit> 1808 </trans-unit>
1865 <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed"> 1809 <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed">
1866 <source>See the subtitle file</source> 1810 <source>See the subtitle file</source>
1867 <target>Ver el archivo de subtítulo</target> 1811 <target>Ver el archivo de subtítulo</target>
1868 <context-group name="null"> 1812 <context-group name="null">
1869 <context context-type="linenumber">148</context> 1813 <context context-type="linenumber">154</context>
1870 </context-group> 1814 </context-group>
1871 </trans-unit> 1815 </trans-unit>
1872 <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9"> 1816 <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9">
1873 <source>Cancel create</source> 1817 <source>Cancel create</source>
1874 <target>Cancelar creación</target> 1818 <target>Cancelar creación</target>
1875 <context-group name="null"> 1819 <context-group name="null">
1876 <context context-type="linenumber">162</context> 1820 <context context-type="linenumber">168</context>
1877 </context-group> 1821 </context-group>
1878 </trans-unit> 1822 </trans-unit>
1879 <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c"> 1823 <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c">
1880 <source>Cancel deletion</source> 1824 <source>Cancel deletion</source>
1881 <target>Cancelar borrado</target> 1825 <target>Cancelar borrado</target>
1882 <context-group name="null"> 1826 <context-group name="null">
1883 <context context-type="linenumber">170</context> 1827 <context context-type="linenumber">176</context>
1884 </context-group> 1828 </context-group>
1885 </trans-unit> 1829 </trans-unit>
1886 <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93"> 1830 <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93">
1887 <source>Captions</source> 1831 <source>Captions</source>
1888 <target>Subtítulos</target> 1832 <target>Subtítulos</target>
1889 <context-group name="null"> 1833 <context-group name="null">
1890 <context context-type="linenumber">133</context> 1834 <context context-type="linenumber">138</context>
1891 </context-group> 1835 </context-group>
1892 </trans-unit> 1836 </trans-unit>
1893 <trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513"> 1837 <trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513">
1894 <source>Upload thumbnail</source> 1838 <source>Upload thumbnail</source>
1895 <target>Subir miniatura</target> 1839 <target>Subir miniatura</target>
1896 <context-group name="null"> 1840 <context-group name="null">
1897 <context context-type="linenumber">186</context> 1841 <context context-type="linenumber">194</context>
1898 </context-group> 1842 </context-group>
1899 </trans-unit> 1843 </trans-unit>
1900 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639"> 1844 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639">
1901 <source>Upload preview</source> 1845 <source>Upload preview</source>
1902 <target>Subir previsualización</target> 1846 <target>Subir previsualización</target>
1903 <context-group name="null"> 1847 <context-group name="null">
1904 <context context-type="linenumber">193</context> 1848 <context context-type="linenumber">201</context>
1905 </context-group> 1849 </context-group>
1906 </trans-unit> 1850 </trans-unit>
1907 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604"> 1851 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604">
1908 <source>Support</source> 1852 <source>Support</source>
1909 <target>Apoyar</target> 1853 <target>Apoyar</target>
1910 <context-group name="null"> 1854 <context-group name="null">
1911 <context context-type="linenumber">71</context> 1855 <context context-type="linenumber">69</context>
1912 </context-group> 1856 </context-group>
1913 </trans-unit> 1857 </trans-unit>
1914 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0"> 1858 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0">
1915 <source>Short text to tell people how they can support you (membership platform...).</source> 1859 <source>Short text to tell people how they can support you (membership platform...).</source>
1916 <target>Breve texto para explicar a la gente cómo pueden apoyarte (plataforma de miembros...).</target> 1860 <target>Breve texto para explicar a la gente cómo pueden apoyarte (plataforma de miembros...).</target>
1917 <context-group name="null"> 1861 <context-group name="null">
1918 <context context-type="linenumber">200</context> 1862 <context context-type="linenumber">208</context>
1919 </context-group> 1863 </context-group>
1920 </trans-unit> 1864 </trans-unit>
1921 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1"> 1865 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1">
1922 <source>Advanced settings</source> 1866 <source>Advanced settings</source>
1923 <target>Ajustes avanzados</target> 1867 <target>Ajustes avanzados</target>
1924 <context-group name="null"> 1868 <context-group name="null">
1925 <context context-type="linenumber">182</context> 1869 <context context-type="linenumber">189</context>
1926 </context-group> 1870 </context-group>
1927 </trans-unit> 1871 </trans-unit>
1928 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0"> 1872 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0">
@@ -1940,99 +1884,71 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
1940 <source>Download video</source> 1884 <source>Download video</source>
1941 <target>Descargar vídeo</target> 1885 <target>Descargar vídeo</target>
1942 <context-group name="null"> 1886 <context-group name="null">
1943 <context context-type="linenumber">7</context> 1887 <context context-type="linenumber">3</context>
1944 </context-group> 1888 </context-group>
1945 </trans-unit> 1889 </trans-unit>
1946 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c"> 1890 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c">
1947 <source>Direct download</source> 1891 <source>Direct download</source>
1948 <target>Descarga directa</target> 1892 <target>Descarga directa</target>
1949 <context-group name="null"> 1893 <context-group name="null">
1950 <context context-type="linenumber">20</context> 1894 <context context-type="linenumber">17</context>
1951 </context-group> 1895 </context-group>
1952 </trans-unit> 1896 </trans-unit>
1953 <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d"> 1897 <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d">
1954 <source>Torrent (.torrent file)</source> 1898 <source>Torrent (.torrent file)</source>
1955 <target>Torrent (archivo .torrent)</target> 1899 <target>Torrent (archivo .torrent)</target>
1956 <context-group name="null"> 1900 <context-group name="null">
1957 <context context-type="linenumber">25</context> 1901 <context context-type="linenumber">22</context>
1958 </context-group> 1902 </context-group>
1959 </trans-unit> 1903 </trans-unit>
1960 <trans-unit id="2db8d7cf6a3071f4c1519ef2b5e2713d9ff4e87f"> 1904 <trans-unit id="2db8d7cf6a3071f4c1519ef2b5e2713d9ff4e87f">
1961 <source>Torrent (magnet link)</source> 1905 <source>Torrent (magnet link)</source>
1962 <target>Torrent (enlace magnético)</target> 1906 <target>Torrent (enlace magnético)</target>
1963 <context-group name="null"> 1907 <context-group name="null">
1964 <context context-type="linenumber">30</context> 1908 <context context-type="linenumber">27</context>
1965 </context-group> 1909 </context-group>
1966 </trans-unit> 1910 </trans-unit>
1967 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> 1911 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd">
1968 <source>Download</source> 1912 <source>Download</source>
1969 <target>Descargar</target> 1913 <target>Descargar</target>
1970 <context-group name="null"> 1914 <context-group name="null">
1971 <context context-type="linenumber">87</context> 1915 <context context-type="linenumber">84</context>
1972 </context-group> 1916 </context-group>
1973 </trans-unit> 1917 </trans-unit>
1974 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b"> 1918 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b">
1975 <source>Report video</source> 1919 <source>Report video</source>
1976 <target>Reportar vídeo</target> 1920 <target>Reportar vídeo</target>
1977 <context-group name="null"> 1921 <context-group name="null">
1978 <context context-type="linenumber">7</context> 1922 <context context-type="linenumber">3</context>
1979 </context-group>
1980 </trans-unit>
1981 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
1982 <source>Reason...</source>
1983 <target>Motivo...</target>
1984 <context-group name="null">
1985 <context context-type="linenumber">14</context>
1986 </context-group>
1987 </trans-unit>
1988 <trans-unit id="0e6b8229bd65f93bc8040d0fb598967f220740c7">
1989 <source>
1990 Cancel
1991 </source>
1992 <target>
1993 Cancelar
1994 </target>
1995 <context-group name="null">
1996 <context context-type="linenumber">22</context>
1997 </context-group>
1998 </trans-unit>
1999 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
2000 <source>Submit</source>
2001 <target>Enviar</target>
2002 <context-group name="null">
2003 <context context-type="linenumber">27</context>
2004 </context-group> 1923 </context-group>
2005 </trans-unit> 1924 </trans-unit>
2006 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9"> 1925 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9">
2007 <source>Share</source> 1926 <source>Share</source>
2008 <target>Compartir</target> 1927 <target>Compartir</target>
2009 <context-group name="null"> 1928 <context-group name="null">
2010 <context context-type="linenumber">76</context> 1929 <context context-type="linenumber">74</context>
1930 </context-group>
1931 </trans-unit>
1932 <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f">
1933 <source>QR-Code</source>
1934 <target>Código QR</target>
1935 <context-group name="null">
1936 <context context-type="linenumber">29</context>
2011 </context-group> 1937 </context-group>
2012 </trans-unit> 1938 </trans-unit>
2013 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c"> 1939 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
2014 <source>Embed</source> 1940 <source>Embed</source>
2015 <target>Incrustar</target> 1941 <target>Incrustar</target>
2016 <context-group name="null"> 1942 <context-group name="null">
2017 <context context-type="linenumber">24</context> 1943 <context context-type="linenumber">34</context>
2018 </context-group> 1944 </context-group>
2019 </trans-unit> 1945 </trans-unit>
2020 <trans-unit id="239fe0316cfe91aa6e1e7bf1ef19e3b7772131f8"> 1946 <trans-unit id="7584313e33a66811eb10646627914a01fff0347d">
2021 <source> 1947 <source>
2022 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). 1948 The video is being imported, it will be available when the import is finished.
2023 </source> 1949 </source>
2024 <target>
2025 La url no está securizada (no es HTTPS), así que el vídeo incrustado no funcionará en sitios web HTTPS (los navegadores web bloquean peticiones HTTP no seguras en sitios web con HTTPS).
2026 </target>
2027 <context-group name="null">
2028 <context context-type="linenumber">35</context>
2029 </context-group>
2030 </trans-unit>
2031 <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f">
2032 <source>QR-Code</source>
2033 <target>Código QR</target>
2034 <context-group name="null"> 1950 <context-group name="null">
2035 <context context-type="linenumber">40</context> 1951 <context context-type="linenumber">11</context>
2036 </context-group> 1952 </context-group>
2037 </trans-unit> 1953 </trans-unit>
2038 <trans-unit id="9ed65ae88f6c982bc44d6fed2796e55f47dbf304"> 1954 <trans-unit id="9ed65ae88f6c982bc44d6fed2796e55f47dbf304">
@@ -2046,174 +1962,116 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
2046 <context context-type="linenumber">15</context> 1962 <context context-type="linenumber">15</context>
2047 </context-group> 1963 </context-group>
2048 </trans-unit> 1964 </trans-unit>
2049 <trans-unit id="fbc205ea3d06fa8f65973fa3b490ae172f71c087">
2050 <source>
2051 This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
2052 </source>
2053 <target>
2054 Este vídeo será publicado el <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
2055 </target>
2056 <context-group name="null">
2057 <context context-type="linenumber">19</context>
2058 </context-group>
2059 </trans-unit>
2060 <trans-unit id="643ab402461b1169eebbe2ed790e12a9a83551aa">
2061 <source>
2062 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views
2063 </source>
2064 <target>
2065 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visualizaciones
2066 </target>
2067 <context-group name="null">
2068 <context context-type="linenumber">30</context>
2069 </context-group>
2070 </trans-unit>
2071 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
2072 <source>Go the channel page</source>
2073 <target>Ir a la página del canal</target>
2074 <context-group name="null">
2075 <context context-type="linenumber">35</context>
2076 </context-group>
2077 </trans-unit>
2078 <trans-unit id="ccc07df383b7a32be3e2e105faa5488caf261c1c">
2079 <source>By <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></source>
2080 <target>Por <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></target>
2081 <context-group name="null">
2082 <context context-type="linenumber">45</context>
2083 </context-group>
2084 </trans-unit>
2085 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
2086 <source>Go to the account page</source>
2087 <target>Ir a la página de la cuenta</target>
2088 <context-group name="null">
2089 <context context-type="linenumber">44</context>
2090 </context-group>
2091 </trans-unit>
2092 <trans-unit id="57075c778cf28b81272df4eb17da944366c98e51">
2093 <source>You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; and subscribe there. Subscription as a PeerTube user is being worked on in &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</source>
2094 <target>Puedes suscribirte a esta cuenta a través de cualquier nodo compatible con Activity Pub del fediverso. Por ejemplo, con Mastodon o Pleroma puedes escribir en la caja de búsqueda &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; y suscribirte aquí. Estamos trabajando en la suscripción como usuario de PeerTube en &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</target>
2095 <context-group name="null">
2096 <context context-type="linenumber">49</context>
2097 </context-group>
2098 </trans-unit>
2099 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced"> 1965 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced">
2100 <source>Like this video</source> 1966 <source>Like this video</source>
2101 <target>Me gusta este vídeo</target> 1967 <target>Me gusta este vídeo</target>
2102 <context-group name="null"> 1968 <context-group name="null">
2103 <context context-type="linenumber">59</context> 1969 <context context-type="linenumber">57</context>
2104 </context-group> 1970 </context-group>
2105 </trans-unit> 1971 </trans-unit>
2106 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509"> 1972 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509">
2107 <source>Dislike this video</source> 1973 <source>Dislike this video</source>
2108 <target>No me gusta este vídeo</target> 1974 <target>No me gusta este vídeo</target>
2109 <context-group name="null"> 1975 <context-group name="null">
2110 <context context-type="linenumber">66</context> 1976 <context context-type="linenumber">64</context>
2111 </context-group> 1977 </context-group>
2112 </trans-unit> 1978 </trans-unit>
2113 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2"> 1979 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2">
2114 <source>Download the video</source> 1980 <source>Download the video</source>
2115 <target>Descargar el vídeo</target> 1981 <target>Descargar el vídeo</target>
2116 <context-group name="null"> 1982 <context-group name="null">
2117 <context context-type="linenumber">86</context> 1983 <context context-type="linenumber">83</context>
2118 </context-group> 1984 </context-group>
2119 </trans-unit> 1985 </trans-unit>
2120 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a"> 1986 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a">
2121 <source>Report</source> 1987 <source>Report</source>
2122 <target>Reportar</target> 1988 <target>Reportar</target>
2123 <context-group name="null"> 1989 <context-group name="null">
2124 <context context-type="linenumber">93</context> 1990 <context context-type="linenumber">88</context>
2125 </context-group> 1991 </context-group>
2126 </trans-unit> 1992 </trans-unit>
2127 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf"> 1993 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf">
2128 <source>Report this video</source> 1994 <source>Report this video</source>
2129 <target>Reportar este vídeo</target> 1995 <target>Reportar este vídeo</target>
2130 <context-group name="null"> 1996 <context-group name="null">
2131 <context context-type="linenumber">92</context> 1997 <context context-type="linenumber">87</context>
1998 </context-group>
1999 </trans-unit>
2000 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1">
2001 <source>Update this video</source>
2002 <target>Actualizar este vídeo</target>
2003 <context-group name="null">
2004 <context context-type="linenumber">91</context>
2132 </context-group> 2005 </context-group>
2133 </trans-unit> 2006 </trans-unit>
2134 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61"> 2007 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61">
2135 <source>Blacklist</source> 2008 <source>Blacklist</source>
2136 <target>Lista negra</target> 2009 <target>Lista negra</target>
2137 <context-group name="null"> 2010 <context-group name="null">
2138 <context context-type="linenumber">99</context> 2011 <context context-type="linenumber">96</context>
2139 </context-group> 2012 </context-group>
2140 </trans-unit> 2013 </trans-unit>
2141 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037"> 2014 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037">
2142 <source>Blacklist this video</source> 2015 <source>Blacklist this video</source>
2143 <target>Poner este vídeo en lista negra</target> 2016 <target>Poner este vídeo en lista negra</target>
2144 <context-group name="null"> 2017 <context-group name="null">
2145 <context context-type="linenumber">98</context> 2018 <context context-type="linenumber">95</context>
2146 </context-group> 2019 </context-group>
2147 </trans-unit> 2020 </trans-unit>
2148 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1"> 2021 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
2149 <source>Update this video</source> 2022 <source>Unblacklist</source>
2150 <target>Actualizar este vídeo</target> 2023 <target>Sacar de lista negra</target>
2151 <context-group name="null"> 2024 <context-group name="null">
2152 <context context-type="linenumber">104</context> 2025 <context context-type="linenumber">100</context>
2153 </context-group> 2026 </context-group>
2154 </trans-unit> 2027 </trans-unit>
2155 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5"> 2028 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5">
2156 <source>Delete this video</source> 2029 <source>Delete this video</source>
2157 <target>Eliminar este vídeo</target> 2030 <target>Eliminar este vídeo</target>
2158 <context-group name="null"> 2031 <context-group name="null">
2159 <context context-type="linenumber">110</context> 2032 <context context-type="linenumber">103</context>
2160 </context-group> 2033 </context-group>
2161 </trans-unit> 2034 </trans-unit>
2162 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b"> 2035 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
2163 <source>Show more</source> 2036 <source>Go the channel page</source>
2164 <target>Mostrar más</target> 2037 <target>Ir a la página del canal</target>
2165 <context-group name="null">
2166 <context context-type="linenumber">130</context>
2167 </context-group>
2168 </trans-unit>
2169 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903">
2170 <source>Show less</source>
2171 <target>Mostrar menos</target>
2172 <context-group name="null"> 2038 <context-group name="null">
2173 <context context-type="linenumber">136</context> 2039 <context context-type="linenumber">123</context>
2174 </context-group> 2040 </context-group>
2175 </trans-unit> 2041 </trans-unit>
2176 <trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1"> 2042 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
2177 <source> 2043 <source>Go to the account page</source>
2178 Other videos 2044 <target>Ir a la página de la cuenta</target>
2179 </source>
2180 <target>
2181 Otros vídeos
2182 </target>
2183 <context-group name="null"> 2045 <context-group name="null">
2184 <context context-type="linenumber">187</context> 2046 <context context-type="linenumber">133</context>
2185 </context-group> 2047 </context-group>
2186 </trans-unit> 2048 </trans-unit>
2187 <trans-unit id="fb779d2b25c4d0ffa7d52c823a240717e8c1fe6c"> 2049 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b">
2188 <source>Friendly Reminder:</source> 2050 <source>Show more</source>
2189 <target>Recordatorio amistoso:</target> 2051 <target>Mostrar más</target>
2190 <context-group name="null"> 2052 <context-group name="null">
2191 <context context-type="linenumber">199</context> 2053 <context context-type="linenumber">148</context>
2192 </context-group> 2054 </context-group>
2193 </trans-unit> 2055 </trans-unit>
2194 <trans-unit id="329900dd14bc4ca33cec3775d25c246e4cde7867"> 2056 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903">
2195 <source> 2057 <source>Show less</source>
2196 The sharing system used by this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. 2058 <target>Mostrar menos</target>
2197 </source>
2198 <target>
2199 El sistema de compartir utilizado por este vídeo implica que alguna información técnica acerca de tu sistema (como la dirección IP pública) puede ser enviada al resto de pares.
2200 </target>
2201 <context-group name="null"> 2059 <context-group name="null">
2202 <context context-type="linenumber">201</context> 2060 <context context-type="linenumber">154</context>
2203 </context-group> 2061 </context-group>
2204 </trans-unit> 2062 </trans-unit>
2205 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e"> 2063 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e">
2206 <source>More information</source> 2064 <source>More information</source>
2207 <target>Más información</target> 2065 <target>Más información</target>
2208 <context-group name="null"> 2066 <context-group name="null">
2209 <context context-type="linenumber">204</context> 2067 <context context-type="linenumber">214</context>
2210 </context-group> 2068 </context-group>
2211 </trans-unit> 2069 </trans-unit>
2212 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318"> 2070 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318">
2213 <source>Get more information</source> 2071 <source>Get more information</source>
2214 <target>Ver más información</target> 2072 <target>Ver más información</target>
2215 <context-group name="null"> 2073 <context-group name="null">
2216 <context context-type="linenumber">204</context> 2074 <context context-type="linenumber">214</context>
2217 </context-group> 2075 </context-group>
2218 </trans-unit> 2076 </trans-unit>
2219 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f"> 2077 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f">
@@ -2224,7 +2082,7 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
2224 De acuerdo 2082 De acuerdo
2225 </target> 2083 </target>
2226 <context-group name="null"> 2084 <context-group name="null">
2227 <context context-type="linenumber">207</context> 2085 <context context-type="linenumber">217</context>
2228 </context-group> 2086 </context-group>
2229 </trans-unit> 2087 </trans-unit>
2230 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7"> 2088 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7">
@@ -2285,7 +2143,7 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
2285 Publicar comentario 2143 Publicar comentario
2286 </target> 2144 </target>
2287 <context-group name="null"> 2145 <context-group name="null">
2288 <context context-type="linenumber">17</context> 2146 <context context-type="linenumber">18</context>
2289 </context-group> 2147 </context-group>
2290 </trans-unit> 2148 </trans-unit>
2291 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> 2149 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285">
@@ -2449,23 +2307,9 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
2449 <context context-type="linenumber">1</context> 2307 <context context-type="linenumber">1</context>
2450 </context-group> 2308 </context-group>
2451 </trans-unit> 2309 </trans-unit>
2452 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936"> 2310 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2453 <source>Following</source> 2311 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2454 <target>Siguiendo</target> 2312 <target>Vídeo <x id="INTERPOLATION" equiv-text="{{name}}"/> eliminado de la lista negra.</target>
2455 <context-group name="null">
2456 <context context-type="linenumber">1</context>
2457 </context-group>
2458 </trans-unit>
2459 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
2460 <source>Follow</source>
2461 <target>Seguir</target>
2462 <context-group name="null">
2463 <context context-type="linenumber">1</context>
2464 </context-group>
2465 </trans-unit>
2466 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
2467 <source>Followers</source>
2468 <target>Seguidores</target>
2469 <context-group name="null"> 2313 <context-group name="null">
2470 <context context-type="linenumber">1</context> 2314 <context context-type="linenumber">1</context>
2471 </context-group> 2315 </context-group>
@@ -2519,30 +2363,44 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
2519 <context context-type="linenumber">1</context> 2363 <context context-type="linenumber">1</context>
2520 </context-group> 2364 </context-group>
2521 </trans-unit> 2365 </trans-unit>
2522 <trans-unit id="4733ad1d7e63960438c0203b9a64f165b5fc84f2"> 2366 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc">
2523 <source>Do you really want to remove this video from the blacklist ? It will be available again in the videos list.</source> 2367 <source>Password updated.</source>
2524 <target>¿De verdad quieres eliminar este vídeo de la lista negra? Estará de nuevo disponible en la lista de vídeos.</target> 2368 <target>Contraseña actualizada.</target>
2525 <context-group name="null"> 2369 <context-group name="null">
2526 <context context-type="linenumber">1</context> 2370 <context context-type="linenumber">1</context>
2527 </context-group> 2371 </context-group>
2528 </trans-unit> 2372 </trans-unit>
2529 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f"> 2373 <trans-unit id="ca8e8cf0f1686604db3b6a2ebadab7f7b426a047">
2530 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source> 2374 <source>Are you sure you want to delete your account? This will delete all you data, including channels, videos etc.</source>
2531 <target>Vídeo <x id="INTERPOLATION" equiv-text="{{name}}"/> eliminado de la lista negra.</target> 2375 <target>Estás seguro de querer eliminar tu cuenta? Todos tus datos serán eliminados, incluyendo canales, vídeos, etc.</target>
2532 <context-group name="null"> 2376 <context-group name="null">
2533 <context context-type="linenumber">1</context> 2377 <context context-type="linenumber">1</context>
2534 </context-group> 2378 </context-group>
2535 </trans-unit> 2379 </trans-unit>
2536 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732"> 2380 <trans-unit id="e7d5b2de566e4c807c285daf8d8a78b5f7f33311">
2537 <source>The new password and the confirmed password do not correspond.</source> 2381 <source>Type your username to confirm</source>
2538 <target>La nueva contraseña y la contraseña de confirmación no corresponden.</target> 2382 <target>Escribe tu nombre de usuario para confirmar</target>
2539 <context-group name="null"> 2383 <context-group name="null">
2540 <context context-type="linenumber">1</context> 2384 <context context-type="linenumber">1</context>
2541 </context-group> 2385 </context-group>
2542 </trans-unit> 2386 </trans-unit>
2543 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc"> 2387 <trans-unit id="9a2f889dde4574a6883c853d1034e75891b28c45">
2544 <source>Password updated.</source> 2388 <source>Delete your account</source>
2545 <target>Contraseña actualizada.</target> 2389 <target>Eliminar tu cuenta</target>
2390 <context-group name="null">
2391 <context context-type="linenumber">1</context>
2392 </context-group>
2393 </trans-unit>
2394 <trans-unit id="d8a8a7f7160939fb55e82bc01fe9f876f5f2e065">
2395 <source>Delete my account</source>
2396 <target>Eliminar mi cuenta</target>
2397 <context-group name="null">
2398 <context context-type="linenumber">1</context>
2399 </context-group>
2400 </trans-unit>
2401 <trans-unit id="8eb8b1a728159f43c31abf76c28ef3ff6c230af7">
2402 <source>Your account is deleted.</source>
2403 <target>Tu cuenta ha sido eliminada.</target>
2546 <context-group name="null"> 2404 <context-group name="null">
2547 <context context-type="linenumber">1</context> 2405 <context context-type="linenumber">1</context>
2548 </context-group> 2406 </context-group>
@@ -2666,6 +2524,20 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
2666 <context context-type="linenumber">1</context> 2524 <context context-type="linenumber">1</context>
2667 </context-group> 2525 </context-group>
2668 </trans-unit> 2526 </trans-unit>
2527 <trans-unit id="289fe8342e8b7df689c75026a24a60fd7f5e9392">
2528 <source>To import</source>
2529 <target>Importar</target>
2530 <context-group name="null">
2531 <context context-type="linenumber">1</context>
2532 </context-group>
2533 </trans-unit>
2534 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2535 <source>Unable to find user id or verification string.</source>
2536 <target>No se pudo encontrar el id de usuario o la cadena de verificación.</target>
2537 <context-group name="null">
2538 <context context-type="linenumber">1</context>
2539 </context-group>
2540 </trans-unit>
2669 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7"> 2541 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7">
2670 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>. 2542 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>.
2671</source> 2543</source>
@@ -2703,13 +2575,6 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
2703 <context context-type="linenumber">1</context> 2575 <context context-type="linenumber">1</context>
2704 </context-group> 2576 </context-group>
2705 </trans-unit> 2577 </trans-unit>
2706 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2707 <source>Unable to find user id or verification string.</source>
2708 <target>No se pudo encontrar el id de usuario o la cadena de verificación.</target>
2709 <context-group name="null">
2710 <context context-type="linenumber">1</context>
2711 </context-group>
2712 </trans-unit>
2713 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26"> 2578 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26">
2714 <source>Your password has been successfully reset!</source> 2579 <source>Your password has been successfully reset!</source>
2715 <target>¡Tu contraseña ha sido restablecida con éxito!</target> 2580 <target>¡Tu contraseña ha sido restablecida con éxito!</target>
@@ -2899,13 +2764,6 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
2899 <context context-type="linenumber">1</context> 2764 <context context-type="linenumber">1</context>
2900 </context-group> 2765 </context-group>
2901 </trans-unit> 2766 </trans-unit>
2902 <trans-unit id="ba88636d27c1a6a7e1f75ff57ec182b30b851c2e">
2903 <source>Transcoding threads must be greater than 1.</source>
2904 <target>Los hilos de transcodificación deben ser mayores que 1.</target>
2905 <context-group name="null">
2906 <context context-type="linenumber">1</context>
2907 </context-group>
2908 </trans-unit>
2909 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149"> 2767 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149">
2910 <source>Username is required.</source> 2768 <source>Username is required.</source>
2911 <target>Se requiere un nombre de usuario.</target> 2769 <target>Se requiere un nombre de usuario.</target>
@@ -2976,6 +2834,13 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
2976 <context context-type="linenumber">1</context> 2834 <context context-type="linenumber">1</context>
2977 </context-group> 2835 </context-group>
2978 </trans-unit> 2836 </trans-unit>
2837 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2838 <source>The new password and the confirmed password do not correspond.</source>
2839 <target>La nueva contraseña y la contraseña de confirmación no corresponden.</target>
2840 <context-group name="null">
2841 <context context-type="linenumber">1</context>
2842 </context-group>
2843 </trans-unit>
2979 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf"> 2844 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf">
2980 <source>Video quota is required.</source> 2845 <source>Video quota is required.</source>
2981 <target>Se requiere una cuota de vídeo.</target> 2846 <target>Se requiere una cuota de vídeo.</target>
@@ -3543,6 +3408,41 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
3543 <context context-type="linenumber">1</context> 3408 <context context-type="linenumber">1</context>
3544 </context-group> 3409 </context-group>
3545 </trans-unit> 3410 </trans-unit>
3411 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3412 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3413 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3414 <context-group name="null">
3415 <context context-type="linenumber">1</context>
3416 </context-group>
3417 </trans-unit>
3418 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3419 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3420 <target>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</target>
3421 <context-group name="null">
3422 <context context-type="linenumber">1</context>
3423 </context-group>
3424 </trans-unit>
3425 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3426 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3427 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vídeos full HD</target>
3428 <context-group name="null">
3429 <context context-type="linenumber">1</context>
3430 </context-group>
3431 </trans-unit>
3432 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3433 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3434 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vídeos HD</target>
3435 <context-group name="null">
3436 <context context-type="linenumber">1</context>
3437 </context-group>
3438 </trans-unit>
3439 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3440 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3441 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vídeos de calidad media</target>
3442 <context-group name="null">
3443 <context context-type="linenumber">1</context>
3444 </context-group>
3445 </trans-unit>
3546 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d"> 3446 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d">
3547 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source> 3447 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source>
3548 <target>hace <x id="INTERPOLATION" equiv-text="{{interval}}"/> años</target> 3448 <target>hace <x id="INTERPOLATION" equiv-text="{{interval}}"/> años</target>
@@ -3697,37 +3597,16 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
3697 <context context-type="linenumber">1</context> 3597 <context context-type="linenumber">1</context>
3698 </context-group> 3598 </context-group>
3699 </trans-unit> 3599 </trans-unit>
3700 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba"> 3600 <trans-unit id="320c9c3482a0ebe46da42ce9e0cbdc5ba26ea8bb">
3701 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source> 3601 <source>Video to import updated.</source>
3702 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target> 3602 <target>Video to import updated.</target>
3703 <context-group name="null">
3704 <context context-type="linenumber">1</context>
3705 </context-group>
3706 </trans-unit>
3707 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3708 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3709 <target>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</target>
3710 <context-group name="null">
3711 <context context-type="linenumber">1</context>
3712 </context-group>
3713 </trans-unit>
3714 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3715 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3716 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vídeos full HD</target>
3717 <context-group name="null">
3718 <context context-type="linenumber">1</context>
3719 </context-group>
3720 </trans-unit>
3721 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3722 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3723 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vídeos HD</target>
3724 <context-group name="null"> 3603 <context-group name="null">
3725 <context context-type="linenumber">1</context> 3604 <context context-type="linenumber">1</context>
3726 </context-group> 3605 </context-group>
3727 </trans-unit> 3606 </trans-unit>
3728 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5"> 3607 <trans-unit id="0e907e5a96537e464b192f8adce79ce6487cbb1c">
3729 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source> 3608 <source>Your video was uploaded to your account and is private.</source>
3730 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vídeos de calidad media</target> 3609 <target>Tu vídeo ha sido subida a tu cuenta y es privado.</target>
3731 <context-group name="null"> 3610 <context-group name="null">
3732 <context context-type="linenumber">1</context> 3611 <context context-type="linenumber">1</context>
3733 </context-group> 3612 </context-group>
@@ -3767,13 +3646,6 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
3767 <context context-type="linenumber">1</context> 3646 <context context-type="linenumber">1</context>
3768 </context-group> 3647 </context-group>
3769 </trans-unit> 3648 </trans-unit>
3770 <trans-unit id="d31d39e8ee9b2f20bffb3468ee062eaa5409c59f">
3771 <source>Your video quota is exceeded with this video (video size: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, used: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, quota: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</source>
3772 <target>Tu cuota de vídeo se supera con este vídeo (video size: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, used: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, cuota: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</target>
3773 <context-group name="null">
3774 <context context-type="linenumber">1</context>
3775 </context-group>
3776 </trans-unit>
3777 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce"> 3649 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce">
3778 <source>Video published.</source> 3650 <source>Video published.</source>
3779 <target>Vídeo publicado.</target> 3651 <target>Vídeo publicado.</target>
@@ -3809,20 +3681,6 @@ Cuando subas un vídeo a este canal, el campo de soporte del vídeo se rellenar
3809 <context context-type="linenumber">1</context> 3681 <context context-type="linenumber">1</context>
3810 </context-group> 3682 </context-group>
3811 </trans-unit> 3683 </trans-unit>
3812 <trans-unit id="23b2c2f4dd69e29c3bff00469e259dcb01de5633">
3813 <source>Do you really want to blacklist this video?</source>
3814 <target>¿De verdad quieres meter este vídeo en la lista negra?</target>
3815 <context-group name="null">
3816 <context context-type="linenumber">1</context>
3817 </context-group>
3818 </trans-unit>
3819 <trans-unit id="cafd8ec6020e69f241a107b1cb7081bd9e773d4e">
3820 <source>Video <x id="INTERPOLATION" equiv-text="{{videoName}}"/> had been blacklisted.</source>
3821 <target>El vídeo <x id="INTERPOLATION" equiv-text="{{videoName}}"/> estaba en la lista negra.</target>
3822 <context-group name="null">
3823 <context context-type="linenumber">1</context>
3824 </context-group>
3825 </trans-unit>
3826 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95"> 3684 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95">
3827 <source>Do you really want to delete this video?</source> 3685 <source>Do you really want to delete this video?</source>
3828 <target>¿De verdad quieres eliminar este vídeo?</target> 3686 <target>¿De verdad quieres eliminar este vídeo?</target>
diff --git a/client/src/locale/target/angular_eu_ES.xml b/client/src/locale/target/angular_eu_ES.xml
index b780b65d6..86648637c 100644
--- a/client/src/locale/target/angular_eu_ES.xml
+++ b/client/src/locale/target/angular_eu_ES.xml
@@ -3,17 +3,6 @@
3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1"> 3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1">
4 <file source-language="en-US" datatype="plaintext" original="" target-language="eu-ES"> 4 <file source-language="en-US" datatype="plaintext" original="" target-language="eu-ES">
5 <body> 5 <body>
6 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
7 <source>
8 Cancel
9 </source>
10 <target>
11 Utzi
12 </target>
13 <context-group name="null">
14 <context context-type="linenumber">45</context>
15 </context-group>
16 </trans-unit>
17 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46"> 6 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46">
18 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source> 7 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source>
19 <target>(luzapenak: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, tamaina maximoa: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target> 8 <target>(luzapenak: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, tamaina maximoa: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target>
@@ -25,14 +14,21 @@
25 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 14 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
26 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> ikustaldi</target> 15 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> ikustaldi</target>
27 <context-group name="null"> 16 <context-group name="null">
28 <context context-type="linenumber">34</context> 17 <context context-type="linenumber">12</context>
18 </context-group>
19 </trans-unit>
20 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7">
21 <source>Delete</source>
22 <target>Ezabatu</target>
23 <context-group name="null">
24 <context context-type="linenumber">15</context>
29 </context-group> 25 </context-group>
30 </trans-unit> 26 </trans-unit>
31 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> 27 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c">
32 <source>Edit</source> 28 <source>Edit</source>
33 <target>Editatu</target> 29 <target>Editatu</target>
34 <context-group name="null"> 30 <context-group name="null">
35 <context context-type="linenumber">3</context> 31 <context context-type="linenumber">5</context>
36 </context-group> 32 </context-group>
37 </trans-unit> 33 </trans-unit>
38 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> 34 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d">
@@ -46,7 +42,7 @@
46 <source>Complete preview</source> 42 <source>Complete preview</source>
47 <target>Aurrebista osoa</target> 43 <target>Aurrebista osoa</target>
48 <context-group name="null"> 44 <context-group name="null">
49 <context context-type="linenumber">10</context> 45 <context context-type="linenumber">13</context>
50 </context-group> 46 </context-group>
51 </trans-unit> 47 </trans-unit>
52 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> 48 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f">
@@ -56,6 +52,13 @@
56 <context context-type="linenumber">18</context> 52 <context context-type="linenumber">18</context>
57 </context-group> 53 </context-group>
58 </trans-unit> 54 </trans-unit>
55 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
56 <source>Video quota</source>
57 <target>Bideo-kuota</target>
58 <context-group name="null">
59 <context context-type="linenumber">19</context>
60 </context-group>
61 </trans-unit>
59 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea"> 62 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea">
60 <source> 63 <source>
61 Login 64 Login
@@ -71,14 +74,14 @@
71 <source>User</source> 74 <source>User</source>
72 <target>Erabiltzailea</target> 75 <target>Erabiltzailea</target>
73 <context-group name="null"> 76 <context-group name="null">
74 <context context-type="linenumber">11</context> 77 <context context-type="linenumber">13</context>
75 </context-group> 78 </context-group>
76 </trans-unit> 79 </trans-unit>
77 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> 80 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478">
78 <source>Username or email address</source> 81 <source>Username or email address</source>
79 <target>Erabiltzaile-izena edo e-mail helbidea</target> 82 <target>Erabiltzaile-izena edo e-mail helbidea</target>
80 <context-group name="null"> 83 <context-group name="null">
81 <context context-type="linenumber">13</context> 84 <context context-type="linenumber">15</context>
82 </context-group> 85 </context-group>
83 </trans-unit> 86 </trans-unit>
84 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87"> 87 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87">
@@ -89,7 +92,7 @@
89 edo sortu kontu bat 92 edo sortu kontu bat
90 </target> 93 </target>
91 <context-group name="null"> 94 <context-group name="null">
92 <context context-type="linenumber">16</context> 95 <context context-type="linenumber">18</context>
93 </context-group> 96 </context-group>
94 </trans-unit> 97 </trans-unit>
95 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b"> 98 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b">
@@ -100,14 +103,14 @@
100 edo sortu kontu bat beste instantzia batean 103 edo sortu kontu bat beste instantzia batean
101 </target> 104 </target>
102 <context-group name="null"> 105 <context-group name="null">
103 <context context-type="linenumber">20</context> 106 <context context-type="linenumber">22</context>
104 </context-group> 107 </context-group>
105 </trans-unit> 108 </trans-unit>
106 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3"> 109 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3">
107 <source>User registration is not allowed on this instance, but you can register on many others!</source> 110 <source>User registration is not allowed on this instance, but you can register on many others!</source>
108 <target>Erabiltzaile berriek izena ematea ez da onartzen instantzia honetan, baina beste askotan eman dezakezu izena!</target> 111 <target>Erabiltzaile berriek izena ematea ez da onartzen instantzia honetan, baina beste askotan eman dezakezu izena!</target>
109 <context-group name="null"> 112 <context-group name="null">
110 <context context-type="linenumber">26</context> 113 <context context-type="linenumber">28</context>
111 </context-group> 114 </context-group>
112 </trans-unit> 115 </trans-unit>
113 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> 116 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407">
@@ -121,35 +124,35 @@
121 <source>I forgot my password</source> 124 <source>I forgot my password</source>
122 <target>Pasahitza ahaztu dut</target> 125 <target>Pasahitza ahaztu dut</target>
123 <context-group name="null"> 126 <context-group name="null">
124 <context context-type="linenumber">42</context> 127 <context context-type="linenumber">44</context>
125 </context-group> 128 </context-group>
126 </trans-unit> 129 </trans-unit>
127 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681"> 130 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681">
128 <source>Forgot your password</source> 131 <source>Forgot your password</source>
129 <target>Pasahitza ahaztu duzu</target> 132 <target>Pasahitza ahaztu duzu</target>
130 <context-group name="null"> 133 <context-group name="null">
131 <context context-type="linenumber">59</context> 134 <context context-type="linenumber">57</context>
132 </context-group> 135 </context-group>
133 </trans-unit> 136 </trans-unit>
134 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc"> 137 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc">
135 <source>Email</source> 138 <source>Email</source>
136 <target>E-mail</target> 139 <target>E-mail</target>
137 <context-group name="null"> 140 <context-group name="null">
138 <context context-type="linenumber">17</context> 141 <context context-type="linenumber">8</context>
139 </context-group> 142 </context-group>
140 </trans-unit> 143 </trans-unit>
141 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529"> 144 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529">
142 <source>Email address</source> 145 <source>Email address</source>
143 <target>E-mail helbidea</target> 146 <target>E-mail helbidea</target>
144 <context-group name="null"> 147 <context-group name="null">
145 <context context-type="linenumber">66</context> 148 <context context-type="linenumber">10</context>
146 </context-group> 149 </context-group>
147 </trans-unit> 150 </trans-unit>
148 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55"> 151 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55">
149 <source>Send me an email to reset my password</source> 152 <source>Send me an email to reset my password</source>
150 <target>Bidali e-mail bat nire pasahitza berrezartzeko</target> 153 <target>Bidali e-mail bat nire pasahitza berrezartzeko</target>
151 <context-group name="null"> 154 <context-group name="null">
152 <context context-type="linenumber">77</context> 155 <context context-type="linenumber">75</context>
153 </context-group> 156 </context-group>
154 </trans-unit> 157 </trans-unit>
155 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa"> 158 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa">
@@ -195,24 +198,6 @@
195 <context context-type="linenumber">3</context> 198 <context context-type="linenumber">3</context>
196 </context-group> 199 </context-group>
197 </trans-unit> 200 </trans-unit>
198 <trans-unit id="a6807b834e01ce165aa61fad157b0ff4288b6bf1">
199 <source>Initial video quota:</source>
200 <target>Hasierako bideo-kuota:</target>
201 <context-group name="null">
202 <context context-type="linenumber">8</context>
203 </context-group>
204 </trans-unit>
205 <trans-unit id="87b6b2c26215c5e712d3bfe4cc86ba53bc23451c">
206 <source>
207 Unlimited
208 </source>
209 <target>
210 Mugagabea
211 </target>
212 <context-group name="null">
213 <context context-type="linenumber">16</context>
214 </context-group>
215 </trans-unit>
216 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> 201 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48">
217 <source>Username</source> 202 <source>Username</source>
218 <target>Erabiltzaile izena</target> 203 <target>Erabiltzaile izena</target>
@@ -224,14 +209,14 @@
224 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source> 209 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source>
225 <target>Instantzia honetako &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Baldintzak&lt;/a&gt; irakurri ditut eta ados nago</target> 210 <target>Instantzia honetako &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Baldintzak&lt;/a&gt; irakurri ditut eta ados nago</target>
226 <context-group name="null"> 211 <context-group name="null">
227 <context context-type="linenumber">60</context> 212 <context context-type="linenumber">54</context>
228 </context-group> 213 </context-group>
229 </trans-unit> 214 </trans-unit>
230 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4"> 215 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4">
231 <source>Signup</source> 216 <source>Signup</source>
232 <target>Eman izena</target> 217 <target>Eman izena</target>
233 <context-group name="null"> 218 <context-group name="null">
234 <context context-type="linenumber">86</context> 219 <context context-type="linenumber">88</context>
235 </context-group> 220 </context-group>
236 </trans-unit> 221 </trans-unit>
237 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a"> 222 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a">
@@ -274,103 +259,70 @@
274 <source>Change the language</source> 259 <source>Change the language</source>
275 <target>Aldatu hizkuntza</target> 260 <target>Aldatu hizkuntza</target>
276 <context-group name="null"> 261 <context-group name="null">
277 <context context-type="linenumber">76</context> 262 <context context-type="linenumber">88</context>
278 </context-group>
279 </trans-unit>
280 <trans-unit id="b8ccc4f1b3f839fca9bd59e072f715fd487d540f">
281 <source>
282 My public profile
283 </source>
284 <target>
285 Nire profil publikoa
286 </target>
287 <context-group name="null">
288 <context context-type="linenumber">19</context>
289 </context-group>
290 </trans-unit>
291 <trans-unit id="c84b721e9325c9cce20d92f4dbd66898ab5ec947">
292 <source>
293 My account
294 </source>
295 <target>
296 Nire kontua
297 </target>
298 <context-group name="null">
299 <context context-type="linenumber">23</context>
300 </context-group>
301 </trans-unit>
302 <trans-unit id="ba7378cdaaa60b4fee17a551b232ad3512dac17d">
303 <source>
304 Log out
305 </source>
306 <target>
307 Amaitu saioa
308 </target>
309 <context-group name="null">
310 <context context-type="linenumber">27</context>
311 </context-group> 263 </context-group>
312 </trans-unit> 264 </trans-unit>
313 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> 265 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9">
314 <source>Login</source> 266 <source>Login</source>
315 <target>Hasi saioa</target> 267 <target>Hasi saioa</target>
316 <context-group name="null"> 268 <context-group name="null">
317 <context context-type="linenumber">36</context> 269 <context context-type="linenumber">38</context>
318 </context-group> 270 </context-group>
319 </trans-unit> 271 </trans-unit>
320 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> 272 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87">
321 <source>Create an account</source> 273 <source>Create an account</source>
322 <target>Sortu kontu bat</target> 274 <target>Sortu kontu bat</target>
323 <context-group name="null"> 275 <context-group name="null">
324 <context context-type="linenumber">37</context> 276 <context context-type="linenumber">39</context>
325 </context-group> 277 </context-group>
326 </trans-unit> 278 </trans-unit>
327 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238"> 279 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238">
328 <source>Videos</source> 280 <source>Videos</source>
329 <target>Bideoak</target> 281 <target>Bideoak</target>
330 <context-group name="null"> 282 <context-group name="null">
331 <context context-type="linenumber">21</context> 283 <context context-type="linenumber">24</context>
332 </context-group> 284 </context-group>
333 </trans-unit> 285 </trans-unit>
334 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> 286 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807">
335 <source>Trending</source> 287 <source>Trending</source>
336 <target>Joerak</target> 288 <target>Joerak</target>
337 <context-group name="null"> 289 <context-group name="null">
338 <context context-type="linenumber">45</context> 290 <context context-type="linenumber">57</context>
339 </context-group> 291 </context-group>
340 </trans-unit> 292 </trans-unit>
341 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> 293 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1">
342 <source>Recently added</source> 294 <source>Recently added</source>
343 <target>Gehitutako azkenak</target> 295 <target>Gehitutako azkenak</target>
344 <context-group name="null"> 296 <context-group name="null">
345 <context context-type="linenumber">50</context> 297 <context context-type="linenumber">62</context>
346 </context-group> 298 </context-group>
347 </trans-unit> 299 </trans-unit>
348 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d"> 300 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d">
349 <source>Local</source> 301 <source>Local</source>
350 <target>Tokikoa</target> 302 <target>Tokikoa</target>
351 <context-group name="null"> 303 <context-group name="null">
352 <context context-type="linenumber">55</context> 304 <context context-type="linenumber">67</context>
353 </context-group> 305 </context-group>
354 </trans-unit> 306 </trans-unit>
355 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f"> 307 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f">
356 <source>More</source> 308 <source>More</source>
357 <target>Gehiago</target> 309 <target>Gehiago</target>
358 <context-group name="null"> 310 <context-group name="null">
359 <context context-type="linenumber">60</context> 311 <context context-type="linenumber">72</context>
360 </context-group> 312 </context-group>
361 </trans-unit> 313 </trans-unit>
362 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> 314 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919">
363 <source>Administration</source> 315 <source>Administration</source>
364 <target>Administrazioa</target> 316 <target>Administrazioa</target>
365 <context-group name="null"> 317 <context-group name="null">
366 <context context-type="linenumber">64</context> 318 <context context-type="linenumber">76</context>
367 </context-group> 319 </context-group>
368 </trans-unit> 320 </trans-unit>
369 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> 321 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a">
370 <source>About</source> 322 <source>About</source>
371 <target>Honi buruz</target> 323 <target>Honi buruz</target>
372 <context-group name="null"> 324 <context-group name="null">
373 <context context-type="linenumber">23</context> 325 <context context-type="linenumber">25</context>
374 </context-group> 326 </context-group>
375 </trans-unit> 327 </trans-unit>
376 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> 328 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599">
@@ -433,21 +385,21 @@
433 <source>Category</source> 385 <source>Category</source>
434 <target>Kategoria</target> 386 <target>Kategoria</target>
435 <context-group name="null"> 387 <context-group name="null">
436 <context context-type="linenumber">148</context> 388 <context context-type="linenumber">166</context>
437 </context-group> 389 </context-group>
438 </trans-unit> 390 </trans-unit>
439 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c"> 391 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c">
440 <source>Licence</source> 392 <source>Licence</source>
441 <target>Lizentzia</target> 393 <target>Lizentzia</target>
442 <context-group name="null"> 394 <context-group name="null">
443 <context context-type="linenumber">157</context> 395 <context context-type="linenumber">175</context>
444 </context-group> 396 </context-group>
445 </trans-unit> 397 </trans-unit>
446 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619"> 398 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619">
447 <source>Language</source> 399 <source>Language</source>
448 <target>Hizkuntza</target> 400 <target>Hizkuntza</target>
449 <context-group name="null"> 401 <context-group name="null">
450 <context context-type="linenumber">166</context> 402 <context context-type="linenumber">184</context>
451 </context-group> 403 </context-group>
452 </trans-unit> 404 </trans-unit>
453 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8"> 405 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8">
@@ -482,7 +434,7 @@
482 <source>Instance</source> 434 <source>Instance</source>
483 <target>Instantzia</target> 435 <target>Instantzia</target>
484 <context-group name="null"> 436 <context-group name="null">
485 <context context-type="linenumber">7</context> 437 <context context-type="linenumber">8</context>
486 </context-group> 438 </context-group>
487 </trans-unit> 439 </trans-unit>
488 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390"> 440 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390">
@@ -507,14 +459,14 @@
507 <source>Description</source> 459 <source>Description</source>
508 <target>Deskripzioa</target> 460 <target>Deskripzioa</target>
509 <context-group name="null"> 461 <context-group name="null">
510 <context context-type="linenumber">23</context> 462 <context context-type="linenumber">26</context>
511 </context-group> 463 </context-group>
512 </trans-unit> 464 </trans-unit>
513 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774"> 465 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774">
514 <source>Terms</source> 466 <source>Terms</source>
515 <target>Baldintzak</target> 467 <target>Baldintzak</target>
516 <context-group name="null"> 468 <context-group name="null">
517 <context context-type="linenumber">43</context> 469 <context context-type="linenumber">44</context>
518 </context-group> 470 </context-group>
519 </trans-unit> 471 </trans-unit>
520 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27"> 472 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27">
@@ -851,7 +803,7 @@ Erabiltzaile berriek izena ematea ez da onartzen orain.</target>
851 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source> 803 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source>
852 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> harpidedun</target> 804 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> harpidedun</target>
853 <context-group name="null"> 805 <context-group name="null">
854 <context context-type="linenumber">11</context> 806 <context context-type="linenumber">14</context>
855 </context-group> 807 </context-group>
856 </trans-unit> 808 </trans-unit>
857 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f"> 809 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f">
@@ -865,49 +817,49 @@ Erabiltzaile berriek izena ematea ez da onartzen orain.</target>
865 <source>Name</source> 817 <source>Name</source>
866 <target>Izena</target> 818 <target>Izena</target>
867 <context-group name="null"> 819 <context-group name="null">
868 <context context-type="linenumber">9</context> 820 <context context-type="linenumber">12</context>
869 </context-group> 821 </context-group>
870 </trans-unit> 822 </trans-unit>
871 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b"> 823 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b">
872 <source>Short description</source> 824 <source>Short description</source>
873 <target>Deskripzio laburra</target> 825 <target>Deskripzio laburra</target>
874 <context-group name="null"> 826 <context-group name="null">
875 <context context-type="linenumber">21</context> 827 <context context-type="linenumber">22</context>
876 </context-group> 828 </context-group>
877 </trans-unit> 829 </trans-unit>
878 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003"> 830 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003">
879 <source>Default client route</source> 831 <source>Default client route</source>
880 <target>Lehenetsitako bezeroaren ibilbidea</target> 832 <target>Lehenetsitako bezeroaren ibilbidea</target>
881 <context-group name="null"> 833 <context-group name="null">
882 <context context-type="linenumber">54</context> 834 <context context-type="linenumber">55</context>
883 </context-group> 835 </context-group>
884 </trans-unit> 836 </trans-unit>
885 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948"> 837 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948">
886 <source>Videos Trending</source> 838 <source>Videos Trending</source>
887 <target>Joera diren bideoak</target> 839 <target>Joera diren bideoak</target>
888 <context-group name="null"> 840 <context-group name="null">
889 <context context-type="linenumber">57</context> 841 <context context-type="linenumber">59</context>
890 </context-group> 842 </context-group>
891 </trans-unit> 843 </trans-unit>
892 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883"> 844 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883">
893 <source>Videos Recently Added</source> 845 <source>Videos Recently Added</source>
894 <target>Azkenaldian gehitutako bidoeak</target> 846 <target>Azkenaldian gehitutako bidoeak</target>
895 <context-group name="null"> 847 <context-group name="null">
896 <context context-type="linenumber">58</context> 848 <context context-type="linenumber">60</context>
897 </context-group> 849 </context-group>
898 </trans-unit> 850 </trans-unit>
899 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f"> 851 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f">
900 <source>Local videos</source> 852 <source>Local videos</source>
901 <target>Tokiko bideoak</target> 853 <target>Tokiko bideoak</target>
902 <context-group name="null"> 854 <context-group name="null">
903 <context context-type="linenumber">59</context> 855 <context context-type="linenumber">61</context>
904 </context-group> 856 </context-group>
905 </trans-unit> 857 </trans-unit>
906 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9"> 858 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9">
907 <source>Policy on videos containing sensitive content</source> 859 <source>Policy on videos containing sensitive content</source>
908 <target>Eduki hunkigarria duten bideoen politika</target> 860 <target>Eduki hunkigarria duten bideoen politika</target>
909 <context-group name="null"> 861 <context-group name="null">
910 <context context-type="linenumber">68</context> 862 <context context-type="linenumber">70</context>
911 </context-group> 863 </context-group>
912 </trans-unit> 864 </trans-unit>
913 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df"> 865 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df">
@@ -942,14 +894,14 @@ Erabiltzaile berriek izena ematea ez da onartzen orain.</target>
942 <source>Signup enabled</source> 894 <source>Signup enabled</source>
943 <target>Izena ematea gaituta</target> 895 <target>Izena ematea gaituta</target>
944 <context-group name="null"> 896 <context-group name="null">
945 <context context-type="linenumber">90</context> 897 <context context-type="linenumber">92</context>
946 </context-group> 898 </context-group>
947 </trans-unit> 899 </trans-unit>
948 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402"> 900 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402">
949 <source>Signup limit</source> 901 <source>Signup limit</source>
950 <target>Izena emateko muga</target> 902 <target>Izena emateko muga</target>
951 <context-group name="null"> 903 <context-group name="null">
952 <context context-type="linenumber">94</context> 904 <context context-type="linenumber">101</context>
953 </context-group> 905 </context-group>
954 </trans-unit> 906 </trans-unit>
955 <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36"> 907 <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36">
@@ -963,42 +915,42 @@ Erabiltzaile berriek izena ematea ez da onartzen orain.</target>
963 <source>Video import with HTTP enabled</source> 915 <source>Video import with HTTP enabled</source>
964 <target>Bideoa HTTP bidez inportatzea gaituta</target> 916 <target>Bideoa HTTP bidez inportatzea gaituta</target>
965 <context-group name="null"> 917 <context-group name="null">
966 <context context-type="linenumber">108</context> 918 <context context-type="linenumber">115</context>
967 </context-group> 919 </context-group>
968 </trans-unit> 920 </trans-unit>
969 <trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e"> 921 <trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e">
970 <source>Video import with a torrent file or a magnet URI enabled</source> 922 <source>Video import with a torrent file or a magnet URI enabled</source>
971 <target>Bideoa torrent fitxategia edo magnet URL bidez inportatzea gaituta</target> 923 <target>Bideoa torrent fitxategia edo magnet URL bidez inportatzea gaituta</target>
972 <context-group name="null"> 924 <context-group name="null">
973 <context context-type="linenumber">113</context> 925 <context context-type="linenumber">120</context>
974 </context-group> 926 </context-group>
975 </trans-unit> 927 </trans-unit>
976 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011"> 928 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011">
977 <source>Administrator</source> 929 <source>Administrator</source>
978 <target>Administratzailea</target> 930 <target>Administratzailea</target>
979 <context-group name="null"> 931 <context-group name="null">
980 <context context-type="linenumber">116</context> 932 <context context-type="linenumber">123</context>
981 </context-group> 933 </context-group>
982 </trans-unit> 934 </trans-unit>
983 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> 935 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587">
984 <source>Admin email</source> 936 <source>Admin email</source>
985 <target>Administratzailearen e-maila</target> 937 <target>Administratzailearen e-maila</target>
986 <context-group name="null"> 938 <context-group name="null">
987 <context context-type="linenumber">119</context> 939 <context context-type="linenumber">126</context>
988 </context-group> 940 </context-group>
989 </trans-unit> 941 </trans-unit>
990 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be"> 942 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be">
991 <source>Users</source> 943 <source>Users</source>
992 <target>Erabiltzaileak</target> 944 <target>Erabiltzaileak</target>
993 <context-group name="null"> 945 <context-group name="null">
994 <context context-type="linenumber">129</context> 946 <context context-type="linenumber">136</context>
995 </context-group> 947 </context-group>
996 </trans-unit> 948 </trans-unit>
997 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09"> 949 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09">
998 <source>User default video quota</source> 950 <source>User default video quota</source>
999 <target>Erabiltzailearen lehenetsitako bideo-kuota</target> 951 <target>Erabiltzailearen lehenetsitako bideo-kuota</target>
1000 <context-group name="null"> 952 <context-group name="null">
1001 <context context-type="linenumber">132</context> 953 <context context-type="linenumber">139</context>
1002 </context-group> 954 </context-group>
1003 </trans-unit> 955 </trans-unit>
1004 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5"> 956 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5">
@@ -1012,194 +964,133 @@ Erabiltzaile berriek izena ematea ez da onartzen orain.</target>
1012 <source>Twitter</source> 964 <source>Twitter</source>
1013 <target>Twitter</target> 965 <target>Twitter</target>
1014 <context-group name="null"> 966 <context-group name="null">
1015 <context context-type="linenumber">148</context> 967 <context context-type="linenumber">170</context>
1016 </context-group> 968 </context-group>
1017 </trans-unit> 969 </trans-unit>
1018 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> 970 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524">
1019 <source>Your Twitter username</source> 971 <source>Your Twitter username</source>
1020 <target>Zure Twitter erabiltzaile-izena</target> 972 <target>Zure Twitter erabiltzaile-izena</target>
1021 <context-group name="null"> 973 <context-group name="null">
1022 <context context-type="linenumber">151</context> 974 <context context-type="linenumber">173</context>
1023 </context-group> 975 </context-group>
1024 </trans-unit> 976 </trans-unit>
1025 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c"> 977 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c">
1026 <source>Indicates the Twitter account for the website or platform on which the content was published.</source> 978 <source>Indicates the Twitter account for the website or platform on which the content was published.</source>
1027 <target>Edukia argitaratuko den webgune edo plataformarentzat Twitter kontua adierazten du.</target> 979 <target>Edukia argitaratuko den webgune edo plataformarentzat Twitter kontua adierazten du.</target>
1028 <context-group name="null"> 980 <context-group name="null">
1029 <context context-type="linenumber">154</context> 981 <context context-type="linenumber">176</context>
1030 </context-group> 982 </context-group>
1031 </trans-unit> 983 </trans-unit>
1032 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605"> 984 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605">
1033 <source>Instance whitelisted by Twitter</source> 985 <source>Instance whitelisted by Twitter</source>
1034 <target>Twitter-ek onartutako instantzia</target> 986 <target>Twitter-ek onartutako instantzia</target>
1035 <context-group name="null"> 987 <context-group name="null">
1036 <context context-type="linenumber">167</context> 988 <context context-type="linenumber">189</context>
1037 </context-group>
1038 </trans-unit>
1039 <trans-unit id="3f008a1a07ca42c6ad258fde1bbd80ed74ada19b">
1040 <source>If your instance is whitelisted by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.&lt;br /&gt;
1041If the instance is not whitelisted, we use an image link card that will redirect on your PeerTube instance.&lt;br /&gt;&lt;br /&gt;
1042Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; to see if you instance is whitelisted.</source>
1043 <target>Twitter-ek zure instantzia onartzen badu, bideo erreproduzigailu bat txertatuko da Twitter jarioan PeerTube bideo bat partekatzen denean.&lt;br/&gt;
1044Zure instantzia onartuta ez badago, zure PeerTube instantziara daraman irudi bat duen txartel bat estekatuko da.&lt;br/&gt;&lt;br/&gt;
1045Markatu kutxa hau, gorde konfigurazioa eta probatu zure instantziako bideo URL batekin (https://adibidea.eus/videos/watch/denadelakoa) &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; helbidean zure instantzia onartuta dagoen ikusteko.</target>
1046 <context-group name="null">
1047 <context context-type="linenumber">168</context>
1048 </context-group> 989 </context-group>
1049 </trans-unit> 990 </trans-unit>
1050 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> 991 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5">
1051 <source>Services</source> 992 <source>Services</source>
1052 <target>Zerbitzuak</target> 993 <target>Zerbitzuak</target>
1053 <context-group name="null"> 994 <context-group name="null">
1054 <context context-type="linenumber">146</context> 995 <context context-type="linenumber">168</context>
1055 </context-group> 996 </context-group>
1056 </trans-unit> 997 </trans-unit>
1057 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490"> 998 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490">
1058 <source>Transcoding</source> 999 <source>Transcoding</source>
1059 <target>Transkodeketa</target> 1000 <target>Transkodeketa</target>
1060 <context-group name="null"> 1001 <context-group name="null">
1061 <context context-type="linenumber">176</context> 1002 <context context-type="linenumber">200</context>
1062 </context-group> 1003 </context-group>
1063 </trans-unit> 1004 </trans-unit>
1064 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> 1005 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9">
1065 <source>Transcoding enabled</source> 1006 <source>Transcoding enabled</source>
1066 <target>Transkodeketa gaituta</target> 1007 <target>Transkodeketa gaituta</target>
1067 <context-group name="null"> 1008 <context-group name="null">
1068 <context context-type="linenumber">180</context> 1009 <context context-type="linenumber">204</context>
1069 </context-group> 1010 </context-group>
1070 </trans-unit> 1011 </trans-unit>
1071 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> 1012 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f">
1072 <source>If you disable transcoding, many videos from your users will not work!</source> 1013 <source>If you disable transcoding, many videos from your users will not work!</source>
1073 <target>Transkodeketa desgaitzen baduzu, erabiltzaileen bideo askok ez dute funtzionatuko!</target> 1014 <target>Transkodeketa desgaitzen baduzu, erabiltzaileen bideo askok ez dute funtzionatuko!</target>
1074 <context-group name="null"> 1015 <context-group name="null">
1075 <context context-type="linenumber">181</context> 1016 <context context-type="linenumber">205</context>
1076 </context-group> 1017 </context-group>
1077 </trans-unit> 1018 </trans-unit>
1078 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> 1019 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2">
1079 <source>Transcoding threads</source> 1020 <source>Transcoding threads</source>
1080 <target>Transkodetze hariak</target> 1021 <target>Transkodetze hariak</target>
1081 <context-group name="null"> 1022 <context-group name="null">
1082 <context context-type="linenumber">187</context> 1023 <context context-type="linenumber">211</context>
1083 </context-group> 1024 </context-group>
1084 </trans-unit> 1025 </trans-unit>
1085 <trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500"> 1026 <trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500">
1086 <source>Resolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> enabled</source> 1027 <source>Resolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> enabled</source>
1087 <target><x id="INTERPOLATION" equiv-text="{{resolution}}"/> bereizmena gaituta</target> 1028 <target><x id="INTERPOLATION" equiv-text="{{resolution}}"/> bereizmena gaituta</target>
1088 <context-group name="null"> 1029 <context-group name="null">
1089 <context context-type="linenumber">203</context> 1030 <context context-type="linenumber">227</context>
1090 </context-group>
1091 </trans-unit>
1092 <trans-unit id="f86acfe567b75b7ea85af6f1cb3efb88085dfb9a">
1093 <source>
1094 Cache
1095
1096 <x id="START_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;my-help&gt;"/><x id="CLOSE_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;/my-help&gt;"/>
1097 </source>
1098 <target>
1099 Cachea
1100
1101 <x id="START_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;my-help&gt;"/><x id="CLOSE_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;/my-help&gt;"/>
1102 </target>
1103 <context-group name="null">
1104 <context context-type="linenumber">209</context>
1105 </context-group> 1031 </context-group>
1106 </trans-unit> 1032 </trans-unit>
1107 <trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0"> 1033 <trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0">
1108 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source> 1034 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source>
1109 <target>Fitxategi batzuk ez dira federatzen (aurrebistak, azpitituluak). Zuzenean jatorrizko instantziatik jasotzen ditugu eta cachean gorde.</target> 1035 <target>Fitxategi batzuk ez dira federatzen (aurrebistak, azpitituluak). Zuzenean jatorrizko instantziatik jasotzen ditugu eta cachean gorde.</target>
1110 <context-group name="null"> 1036 <context-group name="null">
1111 <context context-type="linenumber">214</context> 1037 <context context-type="linenumber">238</context>
1112 </context-group> 1038 </context-group>
1113 </trans-unit> 1039 </trans-unit>
1114 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7"> 1040 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7">
1115 <source>Previews cache size</source> 1041 <source>Previews cache size</source>
1116 <target>Aurrebisten cachearen tamaina</target> 1042 <target>Aurrebisten cachearen tamaina</target>
1117 <context-group name="null"> 1043 <context-group name="null">
1118 <context context-type="linenumber">219</context> 1044 <context context-type="linenumber">243</context>
1119 </context-group> 1045 </context-group>
1120 </trans-unit> 1046 </trans-unit>
1121 <trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607"> 1047 <trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607">
1122 <source>Video captions cache size</source> 1048 <source>Video captions cache size</source>
1123 <target>Bideoaren azpitituluen cachearen tamaina</target> 1049 <target>Bideoaren azpitituluen cachearen tamaina</target>
1124 <context-group name="null"> 1050 <context-group name="null">
1125 <context context-type="linenumber">230</context> 1051 <context context-type="linenumber">254</context>
1126 </context-group> 1052 </context-group>
1127 </trans-unit> 1053 </trans-unit>
1128 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c"> 1054 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c">
1129 <source>Customizations</source> 1055 <source>Customizations</source>
1130 <target>Pertsonalizazioak</target> 1056 <target>Pertsonalizazioak</target>
1131 <context-group name="null"> 1057 <context-group name="null">
1132 <context context-type="linenumber">240</context> 1058 <context context-type="linenumber">264</context>
1133 </context-group> 1059 </context-group>
1134 </trans-unit> 1060 </trans-unit>
1135 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> 1061 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c">
1136 <source>JavaScript</source> 1062 <source>JavaScript</source>
1137 <target>JavaScript</target> 1063 <target>JavaScript</target>
1138 <context-group name="null"> 1064 <context-group name="null">
1139 <context context-type="linenumber">243</context> 1065 <context context-type="linenumber">267</context>
1140 </context-group> 1066 </context-group>
1141 </trans-unit> 1067 </trans-unit>
1142 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c"> 1068 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c">
1143 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source> 1069 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source>
1144 <target>IdatziJavaScript kodea zuzenean.&lt;br /&gt;Adibidez: &lt;pre&gt;console.log('nire instantzia zoragarria da');&lt;/pre&gt;</target> 1070 <target>IdatziJavaScript kodea zuzenean.&lt;br /&gt;Adibidez: &lt;pre&gt;console.log('nire instantzia zoragarria da');&lt;/pre&gt;</target>
1145 <context-group name="null"> 1071 <context-group name="null">
1146 <context context-type="linenumber">246</context> 1072 <context context-type="linenumber">270</context>
1147 </context-group>
1148 </trans-unit>
1149 <trans-unit id="f133b08d6519081bfb8ef51cff4bf2b3af23dde6">
1150 <source>
1151 Write directly CSS code. Example:&lt;br /&gt;
1152 &lt;pre&gt;
1153 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1154 background-color: red;
1155 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1156 &lt;/pre&gt;
1157
1158 Prepend with &lt;em&gt;#custom-css&lt;/em&gt; to override styles. Example:
1159 &lt;pre&gt;
1160 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1161 color: red;
1162 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1163 &lt;/pre&gt;
1164 </source>
1165 <target>
1166 Idatzi CSS kodea zuzenean. Adibidez:&lt;br /&gt;
1167 &lt;pre&gt;
1168 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1169 background-color: red;
1170 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1171 &lt;/pre&gt;
1172
1173 Jarri aurretik &lt;em&gt;#custom-css&lt;/em&gt; estiloak gainidazteko. Adibidez:
1174 &lt;pre&gt;
1175 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1176 color: red;
1177 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1178 &lt;/pre&gt;
1179 </target>
1180 <context-group name="null">
1181 <context context-type="linenumber">262</context>
1182 </context-group> 1073 </context-group>
1183 </trans-unit> 1074 </trans-unit>
1184 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> 1075 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab">
1185 <source>Advanced configuration</source> 1076 <source>Advanced configuration</source>
1186 <target>Konfigurazio aurreratua</target> 1077 <target>Konfigurazio aurreratua</target>
1187 <context-group name="null"> 1078 <context-group name="null">
1188 <context context-type="linenumber">174</context> 1079 <context context-type="linenumber">197</context>
1189 </context-group> 1080 </context-group>
1190 </trans-unit> 1081 </trans-unit>
1191 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> 1082 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8">
1192 <source>Update configuration</source> 1083 <source>Update configuration</source>
1193 <target>Eguneratu konfigurazioa</target> 1084 <target>Eguneratu konfigurazioa</target>
1194 <context-group name="null"> 1085 <context-group name="null">
1195 <context context-type="linenumber">289</context> 1086 <context context-type="linenumber">314</context>
1196 </context-group> 1087 </context-group>
1197 </trans-unit> 1088 </trans-unit>
1198 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca"> 1089 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca">
1199 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source> 1090 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source>
1200 <target>Konfigurazioa baliogabea dela dirudi. Bilatu zer egon daitekeen gaizki fitxa desberdinetan begiratuz.</target> 1091 <target>Konfigurazioa baliogabea dela dirudi. Bilatu zer egon daitekeen gaizki fitxa desberdinetan begiratuz.</target>
1201 <context-group name="null"> 1092 <context-group name="null">
1202 <context context-type="linenumber">290</context> 1093 <context context-type="linenumber">315</context>
1203 </context-group> 1094 </context-group>
1204 </trans-unit> 1095 </trans-unit>
1205 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c"> 1096 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c">
@@ -1224,28 +1115,6 @@ Markatu kutxa hau, gorde konfigurazioa eta probatu zure instantziako bideo URL b
1224 <context context-type="linenumber">7</context> 1115 <context context-type="linenumber">7</context>
1225 </context-group> 1116 </context-group>
1226 </trans-unit> 1117 </trans-unit>
1227 <trans-unit id="1c9406213cf05033eda4d3df678217b5eb822315">
1228 <source>
1229 Video abuses
1230 </source>
1231 <target>
1232 Bideo gehiegikeriak
1233 </target>
1234 <context-group name="null">
1235 <context context-type="linenumber">11</context>
1236 </context-group>
1237 </trans-unit>
1238 <trans-unit id="96ccede058f0022f34230c3adc09e60076b6d037">
1239 <source>
1240 Video blacklist
1241 </source>
1242 <target>
1243 Bideoen zerrenda beltza
1244 </target>
1245 <context-group name="null">
1246 <context context-type="linenumber">15</context>
1247 </context-group>
1248 </trans-unit>
1249 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368"> 1118 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368">
1250 <source> 1119 <source>
1251 Jobs 1120 Jobs
@@ -1254,7 +1123,7 @@ Markatu kutxa hau, gorde konfigurazioa eta probatu zure instantziako bideo URL b
1254 Lanak 1123 Lanak
1255 </target> 1124 </target>
1256 <context-group name="null"> 1125 <context-group name="null">
1257 <context context-type="linenumber">19</context> 1126 <context context-type="linenumber">15</context>
1258 </context-group> 1127 </context-group>
1259 </trans-unit> 1128 </trans-unit>
1260 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13"> 1129 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13">
@@ -1265,7 +1134,7 @@ Markatu kutxa hau, gorde konfigurazioa eta probatu zure instantziako bideo URL b
1265 Konfigurazioa 1134 Konfigurazioa
1266 </target> 1135 </target>
1267 <context-group name="null"> 1136 <context-group name="null">
1268 <context context-type="linenumber">23</context> 1137 <context context-type="linenumber">19</context>
1269 </context-group> 1138 </context-group>
1270 </trans-unit> 1139 </trans-unit>
1271 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396"> 1140 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396">
@@ -1335,6 +1204,27 @@ Markatu kutxa hau, gorde konfigurazioa eta probatu zure instantziako bideo URL b
1335 <context context-type="linenumber">2</context> 1204 <context context-type="linenumber">2</context>
1336 </context-group> 1205 </context-group>
1337 </trans-unit> 1206 </trans-unit>
1207 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936">
1208 <source>Following</source>
1209 <target>Jarraitzen</target>
1210 <context-group name="null">
1211 <context context-type="linenumber">5</context>
1212 </context-group>
1213 </trans-unit>
1214 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
1215 <source>Follow</source>
1216 <target>Jarraitu</target>
1217 <context-group name="null">
1218 <context context-type="linenumber">7</context>
1219 </context-group>
1220 </trans-unit>
1221 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
1222 <source>Followers</source>
1223 <target>Jarraitzaileak</target>
1224 <context-group name="null">
1225 <context context-type="linenumber">9</context>
1226 </context-group>
1227 </trans-unit>
1338 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f"> 1228 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f">
1339 <source>Jobs list</source> 1229 <source>Jobs list</source>
1340 <target>Lanen zerrenda</target> 1230 <target>Lanen zerrenda</target>
@@ -1395,14 +1285,7 @@ Markatu kutxa hau, gorde konfigurazioa eta probatu zure instantziako bideo URL b
1395 <source>Role</source> 1285 <source>Role</source>
1396 <target>Rola</target> 1286 <target>Rola</target>
1397 <context-group name="null"> 1287 <context-group name="null">
1398 <context context-type="linenumber">19</context> 1288 <context context-type="linenumber">20</context>
1399 </context-group>
1400 </trans-unit>
1401 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
1402 <source>Video quota</source>
1403 <target>Bideo-kuota</target>
1404 <context-group name="null">
1405 <context context-type="linenumber">18</context>
1406 </context-group> 1289 </context-group>
1407 </trans-unit> 1290 </trans-unit>
1408 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345"> 1291 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345">
@@ -1418,6 +1301,13 @@ Markatu kutxa hau, gorde konfigurazioa eta probatu zure instantziako bideo URL b
1418 <context context-type="linenumber">65</context> 1301 <context context-type="linenumber">65</context>
1419 </context-group> 1302 </context-group>
1420 </trans-unit> 1303 </trans-unit>
1304 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
1305 <source>Reason...</source>
1306 <target>Arrazoia...</target>
1307 <context-group name="null">
1308 <context context-type="linenumber">11</context>
1309 </context-group>
1310 </trans-unit>
1421 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f"> 1311 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f">
1422 <source>Users list</source> 1312 <source>Users list</source>
1423 <target>Erabiltzaileen zerrenda</target> 1313 <target>Erabiltzaileen zerrenda</target>
@@ -1429,91 +1319,42 @@ Markatu kutxa hau, gorde konfigurazioa eta probatu zure instantziako bideo URL b
1429 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source> 1319 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1430 <target>Erabiltzaile-izena <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target> 1320 <target>Erabiltzaile-izena <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1431 <context-group name="null"> 1321 <context-group name="null">
1432 <context context-type="linenumber">16</context> 1322 <context context-type="linenumber">17</context>
1433 </context-group>
1434 </trans-unit>
1435 <trans-unit id="0c7e8870481f1287af6a142f538391d8c16c2408">
1436 <source>Video abuses list</source>
1437 <target>Bideo gehiegikerien zerrenda</target>
1438 <context-group name="null">
1439 <context context-type="linenumber">2</context>
1440 </context-group>
1441 </trans-unit>
1442 <trans-unit id="4ba250869daa372b54d24fafc0ea934769ee4076">
1443 <source>Reason</source>
1444 <target>Arrazoia</target>
1445 <context-group name="null">
1446 <context context-type="linenumber">11</context>
1447 </context-group> 1323 </context-group>
1448 </trans-unit> 1324 </trans-unit>
1449 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2"> 1325 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2">
1450 <source>Reporter</source> 1326 <source>Reporter</source>
1451 <target>Salatzailea</target> 1327 <target>Salatzailea</target>
1452 <context-group name="null"> 1328 <context-group name="null">
1453 <context context-type="linenumber">12</context> 1329 <context context-type="linenumber">8</context>
1454 </context-group> 1330 </context-group>
1455 </trans-unit> 1331 </trans-unit>
1456 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4"> 1332 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4">
1457 <source>Video</source> 1333 <source>Video</source>
1458 <target>Bideoa</target> 1334 <target>Bideoa</target>
1459 <context-group name="null"> 1335 <context-group name="null">
1460 <context context-type="linenumber">9</context> 1336 <context context-type="linenumber">14</context>
1461 </context-group> 1337 </context-group>
1462 </trans-unit> 1338 </trans-unit>
1463 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7"> 1339 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7">
1464 <source>Go to the account</source> 1340 <source>Go to the account</source>
1465 <target>Joan kontura</target> 1341 <target>Joan kontura</target>
1466 <context-group name="null"> 1342 <context-group name="null">
1467 <context context-type="linenumber">22</context> 1343 <context context-type="linenumber">27</context>
1468 </context-group> 1344 </context-group>
1469 </trans-unit> 1345 </trans-unit>
1470 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5"> 1346 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5">
1471 <source>Go to the video</source> 1347 <source>Go to the video</source>
1472 <target>Joan bideora</target> 1348 <target>Joan bideora</target>
1473 <context-group name="null"> 1349 <context-group name="null">
1474 <context context-type="linenumber">28</context> 1350 <context context-type="linenumber">33</context>
1475 </context-group> 1351 </context-group>
1476 </trans-unit> 1352 </trans-unit>
1477 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1"> 1353 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1">
1478 <source>Blacklisted videos</source> 1354 <source>Blacklisted videos</source>
1479 <target>Zerrenda beltzeko bideoak</target> 1355 <target>Zerrenda beltzeko bideoak</target>
1480 <context-group name="null"> 1356 <context-group name="null">
1481 <context context-type="linenumber">2</context> 1357 <context context-type="linenumber">7</context>
1482 </context-group>
1483 </trans-unit>
1484 <trans-unit id="7c02d113e9b7884037834cddecf2a32a5538b35b">
1485 <source>Name <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1486 <target>Izena <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1487 <context-group name="null">
1488 <context context-type="linenumber">11</context>
1489 </context-group>
1490 </trans-unit>
1491 <trans-unit id="cd5ca5da9e2fa21571e9f86a24a5c3b45a3ddc51">
1492 <source>Views <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1493 <target>Ikustaldiak <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1494 <context-group name="null">
1495 <context context-type="linenumber">13</context>
1496 </context-group>
1497 </trans-unit>
1498 <trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9">
1499 <source>NSFW</source>
1500 <target>Lanerako desegokia</target>
1501 <context-group name="null">
1502 <context context-type="linenumber">14</context>
1503 </context-group>
1504 </trans-unit>
1505 <trans-unit id="8c87d9527af7ff2ada84c911516a9e43a352e401">
1506 <source>UUID</source>
1507 <target>UUID</target>
1508 <context-group name="null">
1509 <context context-type="linenumber">15</context>
1510 </context-group>
1511 </trans-unit>
1512 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1513 <source>Unblacklist</source>
1514 <target>Atera zerrenda beltzetik</target>
1515 <context-group name="null">
1516 <context context-type="linenumber">30</context>
1517 </context-group> 1358 </context-group>
1518 </trans-unit> 1359 </trans-unit>
1519 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6"> 1360 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6">
@@ -1523,25 +1364,11 @@ Markatu kutxa hau, gorde konfigurazioa eta probatu zure instantziako bideo URL b
1523 <context context-type="linenumber">3</context> 1364 <context context-type="linenumber">3</context>
1524 </context-group> 1365 </context-group>
1525 </trans-unit> 1366 </trans-unit>
1526 <trans-unit id="520d68b2c9f7dacaf2a5073716cad9bd328ea7e7">
1527 <source>My video channels</source>
1528 <target>Nire bideo kanalak</target>
1529 <context-group name="null">
1530 <context context-type="linenumber">5</context>
1531 </context-group>
1532 </trans-unit>
1533 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894"> 1367 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894">
1534 <source>My videos</source> 1368 <source>My videos</source>
1535 <target>Nire bideoak</target> 1369 <target>Nire bideoak</target>
1536 <context-group name="null"> 1370 <context-group name="null">
1537 <context context-type="linenumber">7</context> 1371 <context context-type="linenumber">14</context>
1538 </context-group>
1539 </trans-unit>
1540 <trans-unit id="0bb0c57c6d12635d26996c124248e748b666e5ad">
1541 <source>My video imports</source>
1542 <target>Nire bideo inportazioak</target>
1543 <context-group name="null">
1544 <context context-type="linenumber">9</context>
1545 </context-group> 1372 </context-group>
1546 </trans-unit> 1373 </trans-unit>
1547 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48"> 1374 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48">
@@ -1572,6 +1399,13 @@ Markatu kutxa hau, gorde konfigurazioa eta probatu zure instantziako bideo URL b
1572 <context context-type="linenumber">18</context> 1399 <context context-type="linenumber">18</context>
1573 </context-group> 1400 </context-group>
1574 </trans-unit> 1401 </trans-unit>
1402 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
1403 <source>Submit</source>
1404 <target>Bidali</target>
1405 <context-group name="null">
1406 <context context-type="linenumber">24</context>
1407 </context-group>
1408 </trans-unit>
1575 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79"> 1409 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79">
1576 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 1410 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
1577 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> ikustaldi</target> 1411 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> ikustaldi</target>
@@ -1579,11 +1413,15 @@ Markatu kutxa hau, gorde konfigurazioa eta probatu zure instantziako bideo URL b
1579 <context context-type="linenumber">19</context> 1413 <context context-type="linenumber">19</context>
1580 </context-group> 1414 </context-group>
1581 </trans-unit> 1415 </trans-unit>
1582 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7"> 1416 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
1583 <source>Delete</source> 1417 <source>
1584 <target>Ezabatu</target> 1418 Cancel
1419 </source>
1420 <target>
1421 Utzi
1422 </target>
1585 <context-group name="null"> 1423 <context-group name="null">
1586 <context context-type="linenumber">15</context> 1424 <context context-type="linenumber">30</context>
1587 </context-group> 1425 </context-group>
1588 </trans-unit> 1426 </trans-unit>
1589 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260"> 1427 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260">
@@ -1597,7 +1435,7 @@ Markatu kutxa hau, gorde konfigurazioa eta probatu zure instantziako bideo URL b
1597 <source>Go to the channel</source> 1435 <source>Go to the channel</source>
1598 <target>Joan kanalera</target> 1436 <target>Joan kanalera</target>
1599 <context-group name="null"> 1437 <context-group name="null">
1600 <context context-type="linenumber">15</context> 1438 <context context-type="linenumber">8</context>
1601 </context-group> 1439 </context-group>
1602 </trans-unit> 1440 </trans-unit>
1603 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68"> 1441 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68">
@@ -1620,7 +1458,7 @@ When you will upload a video in this channel, the video support field will be au
1620 <target>Jendeari zure kanala babestu dezaketela azaltzeko testu labur bat (kidetza plataforma...). &lt;br /&gt;&lt;br /&gt; 1458 <target>Jendeari zure kanala babestu dezaketela azaltzeko testu labur bat (kidetza plataforma...). &lt;br /&gt;&lt;br /&gt;
1621Kanal honetara bideo bat igotzen duzunean, bideoa babesteko eremua testu honekin beteko da.</target> 1459Kanal honetara bideo bat igotzen duzunean, bideoa babesteko eremua testu honekin beteko da.</target>
1622 <context-group name="null"> 1460 <context-group name="null">
1623 <context context-type="linenumber">36</context> 1461 <context context-type="linenumber">52</context>
1624 </context-group> 1462 </context-group>
1625 </trans-unit> 1463 </trans-unit>
1626 <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191"> 1464 <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191">
@@ -1630,11 +1468,25 @@ Kanal honetara bideo bat igotzen duzunean, bideoa babesteko eremua testu honekin
1630 <context context-type="linenumber">8</context> 1468 <context context-type="linenumber">8</context>
1631 </context-group> 1469 </context-group>
1632 </trans-unit> 1470 </trans-unit>
1471 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1472 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1473 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/>(e)k sortuta</target>
1474 <context-group name="null">
1475 <context context-type="linenumber">17</context>
1476 </context-group>
1477 </trans-unit>
1478 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1479 <source>Go the owner account page</source>
1480 <target>Joan jabearen kontuaren orrira</target>
1481 <context-group name="null">
1482 <context context-type="linenumber">16</context>
1483 </context-group>
1484 </trans-unit>
1633 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9"> 1485 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9">
1634 <source>Change password</source> 1486 <source>Change password</source>
1635 <target>Aldatu pasahitza</target> 1487 <target>Aldatu pasahitza</target>
1636 <context-group name="null"> 1488 <context-group name="null">
1637 <context context-type="linenumber">19</context> 1489 <context context-type="linenumber">22</context>
1638 </context-group> 1490 </context-group>
1639 </trans-unit> 1491 </trans-unit>
1640 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229"> 1492 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229">
@@ -1711,20 +1563,6 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
1711 <context context-type="linenumber">1</context> 1563 <context context-type="linenumber">1</context>
1712 </context-group> 1564 </context-group>
1713 </trans-unit> 1565 </trans-unit>
1714 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1715 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1716 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/>(e)k sortuta</target>
1717 <context-group name="null">
1718 <context context-type="linenumber">14</context>
1719 </context-group>
1720 </trans-unit>
1721 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1722 <source>Go the owner account page</source>
1723 <target>Joan jabearen kontuaren orrira</target>
1724 <context-group name="null">
1725 <context context-type="linenumber">13</context>
1726 </context-group>
1727 </trans-unit>
1728 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8"> 1566 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8">
1729 <source>Support this channel</source> 1567 <source>Support this channel</source>
1730 <target>Babestu kanal hau</target> 1568 <target>Babestu kanal hau</target>
@@ -1743,7 +1581,7 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
1743 <source>URL</source> 1581 <source>URL</source>
1744 <target>URL-a</target> 1582 <target>URL-a</target>
1745 <context-group name="null"> 1583 <context-group name="null">
1746 <context context-type="linenumber">12</context> 1584 <context context-type="linenumber">17</context>
1747 </context-group> 1585 </context-group>
1748 </trans-unit> 1586 </trans-unit>
1749 <trans-unit id="bfe7f34fbd4c3afa5f84a5580e0fae942cad2333"> 1587 <trans-unit id="bfe7f34fbd4c3afa5f84a5580e0fae942cad2333">
@@ -1757,14 +1595,14 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
1757 <source>Channel</source> 1595 <source>Channel</source>
1758 <target>Kanala</target> 1596 <target>Kanala</target>
1759 <context-group name="null"> 1597 <context-group name="null">
1760 <context context-type="linenumber">35</context> 1598 <context context-type="linenumber">38</context>
1761 </context-group> 1599 </context-group>
1762 </trans-unit> 1600 </trans-unit>
1763 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427"> 1601 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427">
1764 <source>Privacy</source> 1602 <source>Privacy</source>
1765 <target>Pribatutasuna</target> 1603 <target>Pribatutasuna</target>
1766 <context-group name="null"> 1604 <context-group name="null">
1767 <context context-type="linenumber">143</context> 1605 <context context-type="linenumber">161</context>
1768 </context-group> 1606 </context-group>
1769 </trans-unit> 1607 </trans-unit>
1770 <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2"> 1608 <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2">
@@ -1782,7 +1620,7 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
1782 <source>Update</source> 1620 <source>Update</source>
1783 <target>Eguneratu</target> 1621 <target>Eguneratu</target>
1784 <context-group name="null"> 1622 <context-group name="null">
1785 <context context-type="linenumber">105</context> 1623 <context context-type="linenumber">92</context>
1786 </context-group> 1624 </context-group>
1787 </trans-unit> 1625 </trans-unit>
1788 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> 1626 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9">
@@ -1856,46 +1694,35 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
1856 <source>Upload a file</source> 1694 <source>Upload a file</source>
1857 <target>Igo fitxategi bat</target> 1695 <target>Igo fitxategi bat</target>
1858 <context-group name="null"> 1696 <context-group name="null">
1859 <context context-type="linenumber">9</context> 1697 <context context-type="linenumber">10</context>
1860 </context-group> 1698 </context-group>
1861 </trans-unit> 1699 </trans-unit>
1862 <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470"> 1700 <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470">
1863 <source>Import with URL</source> 1701 <source>Import with URL</source>
1864 <target>Inportatu URLa erabilita</target> 1702 <target>Inportatu URLa erabilita</target>
1865 <context-group name="null"> 1703 <context-group name="null">
1866 <context context-type="linenumber">13</context> 1704 <context context-type="linenumber">17</context>
1867 </context-group> 1705 </context-group>
1868 </trans-unit> 1706 </trans-unit>
1869 <trans-unit id="752c401d7dcd708944eef60e411187f71d882340"> 1707 <trans-unit id="752c401d7dcd708944eef60e411187f71d882340">
1870 <source>Import with torrent</source> 1708 <source>Import with torrent</source>
1871 <target>Inportatu torrenta erabilita</target> 1709 <target>Inportatu torrenta erabilita</target>
1872 <context-group name="null"> 1710 <context-group name="null">
1873 <context context-type="linenumber">17</context> 1711 <context context-type="linenumber">24</context>
1874 </context-group> 1712 </context-group>
1875 </trans-unit> 1713 </trans-unit>
1876 <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0"> 1714 <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0">
1877 <source>Add caption</source> 1715 <source>Add caption</source>
1878 <target>Gehitu azpitituluak</target> 1716 <target>Gehitu azpitituluak</target>
1879 <context-group name="null"> 1717 <context-group name="null">
1880 <context context-type="linenumber">7</context> 1718 <context context-type="linenumber">5</context>
1881 </context-group> 1719 </context-group>
1882 </trans-unit> 1720 </trans-unit>
1883 <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8"> 1721 <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8">
1884 <source>Select the caption file</source> 1722 <source>Select the caption file</source>
1885 <target>Hautatu azpitituluen fitxategia</target> 1723 <target>Hautatu azpitituluen fitxategia</target>
1886 <context-group name="null"> 1724 <context-group name="null">
1887 <context context-type="linenumber">25</context> 1725 <context context-type="linenumber">24</context>
1888 </context-group>
1889 </trans-unit>
1890 <trans-unit id="a40a8a9f8359eda00c6a79809e9499100fde3ffd">
1891 <source>
1892 This will replace an existing caption!
1893 </source>
1894 <target>
1895 Honek aurretik dagoen azpititulua ordeztuko du!
1896 </target>
1897 <context-group name="null">
1898 <context context-type="linenumber">30</context>
1899 </context-group> 1726 </context-group>
1900 </trans-unit> 1727 </trans-unit>
1901 <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c"> 1728 <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c">
@@ -1909,70 +1736,63 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
1909 <source>Title</source> 1736 <source>Title</source>
1910 <target>Izenburua</target> 1737 <target>Izenburua</target>
1911 <context-group name="null"> 1738 <context-group name="null">
1912 <context context-type="linenumber">7</context> 1739 <context context-type="linenumber">9</context>
1913 </context-group> 1740 </context-group>
1914 </trans-unit> 1741 </trans-unit>
1915 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b"> 1742 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b">
1916 <source>Tags</source> 1743 <source>Tags</source>
1917 <target>Etiketak</target> 1744 <target>Etiketak</target>
1918 <context-group name="null"> 1745 <context-group name="null">
1919 <context context-type="linenumber">175</context> 1746 <context context-type="linenumber">193</context>
1920 </context-group>
1921 </trans-unit>
1922 <trans-unit id="935e7146fe6c12169abfda18536c5856935cfd82">
1923 <source>(press Enter to add)</source>
1924 <target>(sakatu Enter gehitzeko)</target>
1925 <context-group name="null">
1926 <context context-type="linenumber">15</context>
1927 </context-group> 1747 </context-group>
1928 </trans-unit> 1748 </trans-unit>
1929 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e"> 1749 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e">
1930 <source>Video descriptions are truncated by default and require manual action to expand them.</source> 1750 <source>Video descriptions are truncated by default and require manual action to expand them.</source>
1931 <target>Lehenetsita bideoen deskripzioak mozten dira eta eskuz hedatu behar dira.</target> 1751 <target>Lehenetsita bideoen deskripzioak mozten dira eta eskuz hedatu behar dira.</target>
1932 <context-group name="null"> 1752 <context-group name="null">
1933 <context context-type="linenumber">24</context> 1753 <context context-type="linenumber">27</context>
1934 </context-group> 1754 </context-group>
1935 </trans-unit> 1755 </trans-unit>
1936 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> 1756 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5">
1937 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source> 1757 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source>
1938 <target>Programatutako argitaratzea (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target> 1758 <target>Programatutako argitaratzea (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target>
1939 <context-group name="null"> 1759 <context-group name="null">
1940 <context context-type="linenumber">101</context> 1760 <context context-type="linenumber">104</context>
1941 </context-group> 1761 </context-group>
1942 </trans-unit> 1762 </trans-unit>
1943 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee"> 1763 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee">
1944 <source>This video contains mature or explicit content</source> 1764 <source>This video contains mature or explicit content</source>
1945 <target>Bideo honek helduentzako edo hunkigarria den edukia du</target> 1765 <target>Bideo honek helduentzako edo hunkigarria den edukia du</target>
1946 <context-group name="null"> 1766 <context-group name="null">
1947 <context context-type="linenumber">115</context> 1767 <context context-type="linenumber">118</context>
1948 </context-group> 1768 </context-group>
1949 </trans-unit> 1769 </trans-unit>
1950 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644"> 1770 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644">
1951 <source>Some instances do not list videos containing mature or explicit content by default.</source> 1771 <source>Some instances do not list videos containing mature or explicit content by default.</source>
1952 <target>Instantzia batzuk ez dute lehenetsita helduentzako edo hunkigarria den edukia zerrendatzen.</target> 1772 <target>Instantzia batzuk ez dute lehenetsita helduentzako edo hunkigarria den edukia zerrendatzen.</target>
1953 <context-group name="null"> 1773 <context-group name="null">
1954 <context context-type="linenumber">116</context> 1774 <context context-type="linenumber">119</context>
1955 </context-group> 1775 </context-group>
1956 </trans-unit> 1776 </trans-unit>
1957 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a"> 1777 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a">
1958 <source>Enable video comments</source> 1778 <source>Enable video comments</source>
1959 <target>Gaitu bideoaren iruzkinak</target> 1779 <target>Gaitu bideoaren iruzkinak</target>
1960 <context-group name="null"> 1780 <context-group name="null">
1961 <context context-type="linenumber">121</context> 1781 <context context-type="linenumber">124</context>
1962 </context-group> 1782 </context-group>
1963 </trans-unit> 1783 </trans-unit>
1964 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0"> 1784 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0">
1965 <source>Wait transcoding before publishing the video</source> 1785 <source>Wait transcoding before publishing the video</source>
1966 <target>Itxaron transkodetzeari bideoa argitaratu aurretik</target> 1786 <target>Itxaron transkodetzeari bideoa argitaratu aurretik</target>
1967 <context-group name="null"> 1787 <context-group name="null">
1968 <context context-type="linenumber">126</context> 1788 <context context-type="linenumber">129</context>
1969 </context-group> 1789 </context-group>
1970 </trans-unit> 1790 </trans-unit>
1971 <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63"> 1791 <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63">
1972 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source> 1792 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source>
1973 <target>Bideoa argitaratu aurretik ez baduzu transkodetzea bukatu arte itxaroten, bideoa transkodetzea bukatu arte ezin ikustea gerta daiteke.</target> 1793 <target>Bideoa argitaratu aurretik ez baduzu transkodetzea bukatu arte itxaroten, bideoa transkodetzea bukatu arte ezin ikustea gerta daiteke.</target>
1974 <context-group name="null"> 1794 <context-group name="null">
1975 <context context-type="linenumber">127</context> 1795 <context context-type="linenumber">130</context>
1976 </context-group> 1796 </context-group>
1977 </trans-unit> 1797 </trans-unit>
1978 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7"> 1798 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7">
@@ -1986,70 +1806,70 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
1986 <source>Add another caption</source> 1806 <source>Add another caption</source>
1987 <target>Gehitu beste azpititulu bat</target> 1807 <target>Gehitu beste azpititulu bat</target>
1988 <context-group name="null"> 1808 <context-group name="null">
1989 <context context-type="linenumber">139</context> 1809 <context context-type="linenumber">145</context>
1990 </context-group> 1810 </context-group>
1991 </trans-unit> 1811 </trans-unit>
1992 <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed"> 1812 <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed">
1993 <source>See the subtitle file</source> 1813 <source>See the subtitle file</source>
1994 <target>Ikusi azpitituluen fitxategia</target> 1814 <target>Ikusi azpitituluen fitxategia</target>
1995 <context-group name="null"> 1815 <context-group name="null">
1996 <context context-type="linenumber">148</context> 1816 <context context-type="linenumber">154</context>
1997 </context-group> 1817 </context-group>
1998 </trans-unit> 1818 </trans-unit>
1999 <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9"> 1819 <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9">
2000 <source>Cancel create</source> 1820 <source>Cancel create</source>
2001 <target>Ezeztatu sorkuntza</target> 1821 <target>Ezeztatu sorkuntza</target>
2002 <context-group name="null"> 1822 <context-group name="null">
2003 <context context-type="linenumber">162</context> 1823 <context context-type="linenumber">168</context>
2004 </context-group> 1824 </context-group>
2005 </trans-unit> 1825 </trans-unit>
2006 <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c"> 1826 <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c">
2007 <source>Cancel deletion</source> 1827 <source>Cancel deletion</source>
2008 <target>Ezeztatu ezabaketa</target> 1828 <target>Ezeztatu ezabaketa</target>
2009 <context-group name="null"> 1829 <context-group name="null">
2010 <context context-type="linenumber">170</context> 1830 <context context-type="linenumber">176</context>
2011 </context-group> 1831 </context-group>
2012 </trans-unit> 1832 </trans-unit>
2013 <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93"> 1833 <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93">
2014 <source>Captions</source> 1834 <source>Captions</source>
2015 <target>Azpitituluak</target> 1835 <target>Azpitituluak</target>
2016 <context-group name="null"> 1836 <context-group name="null">
2017 <context context-type="linenumber">133</context> 1837 <context context-type="linenumber">138</context>
2018 </context-group> 1838 </context-group>
2019 </trans-unit> 1839 </trans-unit>
2020 <trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513"> 1840 <trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513">
2021 <source>Upload thumbnail</source> 1841 <source>Upload thumbnail</source>
2022 <target>Igo irudia</target> 1842 <target>Igo irudia</target>
2023 <context-group name="null"> 1843 <context-group name="null">
2024 <context context-type="linenumber">186</context> 1844 <context context-type="linenumber">194</context>
2025 </context-group> 1845 </context-group>
2026 </trans-unit> 1846 </trans-unit>
2027 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639"> 1847 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639">
2028 <source>Upload preview</source> 1848 <source>Upload preview</source>
2029 <target>Igo aurrebista</target> 1849 <target>Igo aurrebista</target>
2030 <context-group name="null"> 1850 <context-group name="null">
2031 <context context-type="linenumber">193</context> 1851 <context context-type="linenumber">201</context>
2032 </context-group> 1852 </context-group>
2033 </trans-unit> 1853 </trans-unit>
2034 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604"> 1854 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604">
2035 <source>Support</source> 1855 <source>Support</source>
2036 <target>Babestu</target> 1856 <target>Babestu</target>
2037 <context-group name="null"> 1857 <context-group name="null">
2038 <context context-type="linenumber">71</context> 1858 <context context-type="linenumber">69</context>
2039 </context-group> 1859 </context-group>
2040 </trans-unit> 1860 </trans-unit>
2041 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0"> 1861 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0">
2042 <source>Short text to tell people how they can support you (membership platform...).</source> 1862 <source>Short text to tell people how they can support you (membership platform...).</source>
2043 <target>Jendeari zu nola babestu azaltzeko testu labur bat (kidetza plataforma...).</target> 1863 <target>Jendeari zu nola babestu azaltzeko testu labur bat (kidetza plataforma...).</target>
2044 <context-group name="null"> 1864 <context-group name="null">
2045 <context context-type="linenumber">200</context> 1865 <context context-type="linenumber">208</context>
2046 </context-group> 1866 </context-group>
2047 </trans-unit> 1867 </trans-unit>
2048 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1"> 1868 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1">
2049 <source>Advanced settings</source> 1869 <source>Advanced settings</source>
2050 <target>Ezarpen aurreratuak</target> 1870 <target>Ezarpen aurreratuak</target>
2051 <context-group name="null"> 1871 <context-group name="null">
2052 <context context-type="linenumber">182</context> 1872 <context context-type="linenumber">189</context>
2053 </context-group> 1873 </context-group>
2054 </trans-unit> 1874 </trans-unit>
2055 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0"> 1875 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0">
@@ -2067,99 +1887,63 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
2067 <source>Download video</source> 1887 <source>Download video</source>
2068 <target>Deskargatu bideoa</target> 1888 <target>Deskargatu bideoa</target>
2069 <context-group name="null"> 1889 <context-group name="null">
2070 <context context-type="linenumber">7</context> 1890 <context context-type="linenumber">3</context>
2071 </context-group> 1891 </context-group>
2072 </trans-unit> 1892 </trans-unit>
2073 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c"> 1893 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c">
2074 <source>Direct download</source> 1894 <source>Direct download</source>
2075 <target>Deskarga zuzena</target> 1895 <target>Deskarga zuzena</target>
2076 <context-group name="null"> 1896 <context-group name="null">
2077 <context context-type="linenumber">20</context> 1897 <context context-type="linenumber">17</context>
2078 </context-group> 1898 </context-group>
2079 </trans-unit> 1899 </trans-unit>
2080 <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d"> 1900 <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d">
2081 <source>Torrent (.torrent file)</source> 1901 <source>Torrent (.torrent file)</source>
2082 <target>Torrent (.torrent fitxategia)</target> 1902 <target>Torrent (.torrent fitxategia)</target>
2083 <context-group name="null"> 1903 <context-group name="null">
2084 <context context-type="linenumber">25</context> 1904 <context context-type="linenumber">22</context>
2085 </context-group> 1905 </context-group>
2086 </trans-unit> 1906 </trans-unit>
2087 <trans-unit id="2db8d7cf6a3071f4c1519ef2b5e2713d9ff4e87f"> 1907 <trans-unit id="2db8d7cf6a3071f4c1519ef2b5e2713d9ff4e87f">
2088 <source>Torrent (magnet link)</source> 1908 <source>Torrent (magnet link)</source>
2089 <target>Torrent (magnet esteka)</target> 1909 <target>Torrent (magnet esteka)</target>
2090 <context-group name="null"> 1910 <context-group name="null">
2091 <context context-type="linenumber">30</context> 1911 <context context-type="linenumber">27</context>
2092 </context-group> 1912 </context-group>
2093 </trans-unit> 1913 </trans-unit>
2094 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> 1914 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd">
2095 <source>Download</source> 1915 <source>Download</source>
2096 <target>Deskargatu</target> 1916 <target>Deskargatu</target>
2097 <context-group name="null"> 1917 <context-group name="null">
2098 <context context-type="linenumber">87</context> 1918 <context context-type="linenumber">84</context>
2099 </context-group> 1919 </context-group>
2100 </trans-unit> 1920 </trans-unit>
2101 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b"> 1921 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b">
2102 <source>Report video</source> 1922 <source>Report video</source>
2103 <target>Salatu bideoa</target> 1923 <target>Salatu bideoa</target>
2104 <context-group name="null"> 1924 <context-group name="null">
2105 <context context-type="linenumber">7</context> 1925 <context context-type="linenumber">3</context>
2106 </context-group>
2107 </trans-unit>
2108 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
2109 <source>Reason...</source>
2110 <target>Arrazoia...</target>
2111 <context-group name="null">
2112 <context context-type="linenumber">14</context>
2113 </context-group>
2114 </trans-unit>
2115 <trans-unit id="0e6b8229bd65f93bc8040d0fb598967f220740c7">
2116 <source>
2117 Cancel
2118 </source>
2119 <target>
2120 Utzi
2121 </target>
2122 <context-group name="null">
2123 <context context-type="linenumber">22</context>
2124 </context-group>
2125 </trans-unit>
2126 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
2127 <source>Submit</source>
2128 <target>Bidali</target>
2129 <context-group name="null">
2130 <context context-type="linenumber">27</context>
2131 </context-group> 1926 </context-group>
2132 </trans-unit> 1927 </trans-unit>
2133 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9"> 1928 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9">
2134 <source>Share</source> 1929 <source>Share</source>
2135 <target>Partekatu</target> 1930 <target>Partekatu</target>
2136 <context-group name="null"> 1931 <context-group name="null">
2137 <context context-type="linenumber">76</context> 1932 <context context-type="linenumber">74</context>
2138 </context-group>
2139 </trans-unit>
2140 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
2141 <source>Embed</source>
2142 <target>Txertatu</target>
2143 <context-group name="null">
2144 <context context-type="linenumber">24</context>
2145 </context-group>
2146 </trans-unit>
2147 <trans-unit id="239fe0316cfe91aa6e1e7bf1ef19e3b7772131f8">
2148 <source>
2149 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).
2150 </source>
2151 <target>
2152 URL-a ez da segurua (ez da HTTPS), beraz txertatutako bideoa ez da HTTPS webguneetan ibiliko (web nabigatzaileek seguruak ez diren HTTP eskariak blokeatzen dituzte HTTPS webguneetan).
2153 </target>
2154 <context-group name="null">
2155 <context context-type="linenumber">35</context>
2156 </context-group> 1933 </context-group>
2157 </trans-unit> 1934 </trans-unit>
2158 <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f"> 1935 <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f">
2159 <source>QR-Code</source> 1936 <source>QR-Code</source>
2160 <target>QR-kodea</target> 1937 <target>QR-kodea</target>
2161 <context-group name="null"> 1938 <context-group name="null">
2162 <context context-type="linenumber">40</context> 1939 <context context-type="linenumber">29</context>
1940 </context-group>
1941 </trans-unit>
1942 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
1943 <source>Embed</source>
1944 <target>Txertatu</target>
1945 <context-group name="null">
1946 <context context-type="linenumber">34</context>
2163 </context-group> 1947 </context-group>
2164 </trans-unit> 1948 </trans-unit>
2165 <trans-unit id="7584313e33a66811eb10646627914a01fff0347d"> 1949 <trans-unit id="7584313e33a66811eb10646627914a01fff0347d">
@@ -2184,174 +1968,116 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
2184 <context context-type="linenumber">15</context> 1968 <context context-type="linenumber">15</context>
2185 </context-group> 1969 </context-group>
2186 </trans-unit> 1970 </trans-unit>
2187 <trans-unit id="fbc205ea3d06fa8f65973fa3b490ae172f71c087">
2188 <source>
2189 This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
2190 </source>
2191 <target>
2192 Bideoa data eta ordu honetan argitaratuko da: <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
2193 </target>
2194 <context-group name="null">
2195 <context context-type="linenumber">19</context>
2196 </context-group>
2197 </trans-unit>
2198 <trans-unit id="643ab402461b1169eebbe2ed790e12a9a83551aa">
2199 <source>
2200 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views
2201 </source>
2202 <target>
2203 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> ikustaldi
2204 </target>
2205 <context-group name="null">
2206 <context context-type="linenumber">30</context>
2207 </context-group>
2208 </trans-unit>
2209 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
2210 <source>Go the channel page</source>
2211 <target>Joan kanalaren orrira</target>
2212 <context-group name="null">
2213 <context context-type="linenumber">35</context>
2214 </context-group>
2215 </trans-unit>
2216 <trans-unit id="ccc07df383b7a32be3e2e105faa5488caf261c1c">
2217 <source>By <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></source>
2218 <target>Egilea <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></target>
2219 <context-group name="null">
2220 <context context-type="linenumber">45</context>
2221 </context-group>
2222 </trans-unit>
2223 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
2224 <source>Go to the account page</source>
2225 <target>Joan kontuaren orrira</target>
2226 <context-group name="null">
2227 <context context-type="linenumber">44</context>
2228 </context-group>
2229 </trans-unit>
2230 <trans-unit id="57075c778cf28b81272df4eb17da944366c98e51">
2231 <source>You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; and subscribe there. Subscription as a PeerTube user is being worked on in &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</source>
2232 <target>Kontu honetara harpidetu zaitezke ActivityPub onartzen duen fedibertsoko Instantzia batetik, esaterako Mastodon edo Pleroma instantzietan, bilaketa kutxan &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; idatzi dezakezu eta handik harpidetu. PeerTube erabiltzaile gisa harpidetzeko aukera garapenean dago oraindik: &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</target>
2233 <context-group name="null">
2234 <context context-type="linenumber">49</context>
2235 </context-group>
2236 </trans-unit>
2237 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced"> 1971 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced">
2238 <source>Like this video</source> 1972 <source>Like this video</source>
2239 <target>Atsegin bideo hau</target> 1973 <target>Atsegin bideo hau</target>
2240 <context-group name="null"> 1974 <context-group name="null">
2241 <context context-type="linenumber">59</context> 1975 <context context-type="linenumber">57</context>
2242 </context-group> 1976 </context-group>
2243 </trans-unit> 1977 </trans-unit>
2244 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509"> 1978 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509">
2245 <source>Dislike this video</source> 1979 <source>Dislike this video</source>
2246 <target>Utzi bideoa hau atsegiteari</target> 1980 <target>Utzi bideoa hau atsegiteari</target>
2247 <context-group name="null"> 1981 <context-group name="null">
2248 <context context-type="linenumber">66</context> 1982 <context context-type="linenumber">64</context>
2249 </context-group> 1983 </context-group>
2250 </trans-unit> 1984 </trans-unit>
2251 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2"> 1985 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2">
2252 <source>Download the video</source> 1986 <source>Download the video</source>
2253 <target>Deskargatu bideoa</target> 1987 <target>Deskargatu bideoa</target>
2254 <context-group name="null"> 1988 <context-group name="null">
2255 <context context-type="linenumber">86</context> 1989 <context context-type="linenumber">83</context>
2256 </context-group> 1990 </context-group>
2257 </trans-unit> 1991 </trans-unit>
2258 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a"> 1992 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a">
2259 <source>Report</source> 1993 <source>Report</source>
2260 <target>Salatu</target> 1994 <target>Salatu</target>
2261 <context-group name="null"> 1995 <context-group name="null">
2262 <context context-type="linenumber">93</context> 1996 <context context-type="linenumber">88</context>
2263 </context-group> 1997 </context-group>
2264 </trans-unit> 1998 </trans-unit>
2265 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf"> 1999 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf">
2266 <source>Report this video</source> 2000 <source>Report this video</source>
2267 <target>Salatu bideo hau</target> 2001 <target>Salatu bideo hau</target>
2268 <context-group name="null"> 2002 <context-group name="null">
2269 <context context-type="linenumber">92</context> 2003 <context context-type="linenumber">87</context>
2004 </context-group>
2005 </trans-unit>
2006 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1">
2007 <source>Update this video</source>
2008 <target>Eguneratu bideo hau</target>
2009 <context-group name="null">
2010 <context context-type="linenumber">91</context>
2270 </context-group> 2011 </context-group>
2271 </trans-unit> 2012 </trans-unit>
2272 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61"> 2013 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61">
2273 <source>Blacklist</source> 2014 <source>Blacklist</source>
2274 <target>Zerrenda beltza</target> 2015 <target>Zerrenda beltza</target>
2275 <context-group name="null"> 2016 <context-group name="null">
2276 <context context-type="linenumber">99</context> 2017 <context context-type="linenumber">96</context>
2277 </context-group> 2018 </context-group>
2278 </trans-unit> 2019 </trans-unit>
2279 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037"> 2020 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037">
2280 <source>Blacklist this video</source> 2021 <source>Blacklist this video</source>
2281 <target>Sartu zerrenda beltzean bideo hau</target> 2022 <target>Sartu zerrenda beltzean bideo hau</target>
2282 <context-group name="null"> 2023 <context-group name="null">
2283 <context context-type="linenumber">98</context> 2024 <context context-type="linenumber">95</context>
2284 </context-group> 2025 </context-group>
2285 </trans-unit> 2026 </trans-unit>
2286 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1"> 2027 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
2287 <source>Update this video</source> 2028 <source>Unblacklist</source>
2288 <target>Eguneratu bideo hau</target> 2029 <target>Atera zerrenda beltzetik</target>
2289 <context-group name="null"> 2030 <context-group name="null">
2290 <context context-type="linenumber">104</context> 2031 <context context-type="linenumber">100</context>
2291 </context-group> 2032 </context-group>
2292 </trans-unit> 2033 </trans-unit>
2293 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5"> 2034 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5">
2294 <source>Delete this video</source> 2035 <source>Delete this video</source>
2295 <target>Ezabatu bideo hau</target> 2036 <target>Ezabatu bideo hau</target>
2296 <context-group name="null"> 2037 <context-group name="null">
2297 <context context-type="linenumber">110</context> 2038 <context context-type="linenumber">103</context>
2298 </context-group>
2299 </trans-unit>
2300 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b">
2301 <source>Show more</source>
2302 <target>Erakutsi gehiago</target>
2303 <context-group name="null">
2304 <context context-type="linenumber">130</context>
2305 </context-group> 2039 </context-group>
2306 </trans-unit> 2040 </trans-unit>
2307 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903"> 2041 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
2308 <source>Show less</source> 2042 <source>Go the channel page</source>
2309 <target>Erakutsi gutxiago</target> 2043 <target>Joan kanalaren orrira</target>
2310 <context-group name="null"> 2044 <context-group name="null">
2311 <context context-type="linenumber">136</context> 2045 <context context-type="linenumber">123</context>
2312 </context-group> 2046 </context-group>
2313 </trans-unit> 2047 </trans-unit>
2314 <trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1"> 2048 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
2315 <source> 2049 <source>Go to the account page</source>
2316 Other videos 2050 <target>Joan kontuaren orrira</target>
2317 </source>
2318 <target>
2319 Beste bideo batzuk
2320 </target>
2321 <context-group name="null"> 2051 <context-group name="null">
2322 <context context-type="linenumber">187</context> 2052 <context context-type="linenumber">133</context>
2323 </context-group> 2053 </context-group>
2324 </trans-unit> 2054 </trans-unit>
2325 <trans-unit id="fb779d2b25c4d0ffa7d52c823a240717e8c1fe6c"> 2055 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b">
2326 <source>Friendly Reminder:</source> 2056 <source>Show more</source>
2327 <target>Oroigarria:</target> 2057 <target>Erakutsi gehiago</target>
2328 <context-group name="null"> 2058 <context-group name="null">
2329 <context context-type="linenumber">199</context> 2059 <context context-type="linenumber">148</context>
2330 </context-group> 2060 </context-group>
2331 </trans-unit> 2061 </trans-unit>
2332 <trans-unit id="329900dd14bc4ca33cec3775d25c246e4cde7867"> 2062 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903">
2333 <source> 2063 <source>Show less</source>
2334 The sharing system used by this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. 2064 <target>Erakutsi gutxiago</target>
2335 </source>
2336 <target>
2337 Bideo honekl erabilitako partekatze sistema dela eta, zure sistemako informazio teknikoa (IP helbide publikoa esaterako) beste berdinei igorriko zaie.
2338 </target>
2339 <context-group name="null"> 2065 <context-group name="null">
2340 <context context-type="linenumber">201</context> 2066 <context context-type="linenumber">154</context>
2341 </context-group> 2067 </context-group>
2342 </trans-unit> 2068 </trans-unit>
2343 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e"> 2069 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e">
2344 <source>More information</source> 2070 <source>More information</source>
2345 <target>Informazio gehiago</target> 2071 <target>Informazio gehiago</target>
2346 <context-group name="null"> 2072 <context-group name="null">
2347 <context context-type="linenumber">204</context> 2073 <context context-type="linenumber">214</context>
2348 </context-group> 2074 </context-group>
2349 </trans-unit> 2075 </trans-unit>
2350 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318"> 2076 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318">
2351 <source>Get more information</source> 2077 <source>Get more information</source>
2352 <target>Lortu informazio gehiago</target> 2078 <target>Lortu informazio gehiago</target>
2353 <context-group name="null"> 2079 <context-group name="null">
2354 <context context-type="linenumber">204</context> 2080 <context context-type="linenumber">214</context>
2355 </context-group> 2081 </context-group>
2356 </trans-unit> 2082 </trans-unit>
2357 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f"> 2083 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f">
@@ -2362,7 +2088,7 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
2362 Ados 2088 Ados
2363 </target> 2089 </target>
2364 <context-group name="null"> 2090 <context-group name="null">
2365 <context context-type="linenumber">207</context> 2091 <context context-type="linenumber">217</context>
2366 </context-group> 2092 </context-group>
2367 </trans-unit> 2093 </trans-unit>
2368 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7"> 2094 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7">
@@ -2423,7 +2149,7 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
2423 Bidali iruzkina 2149 Bidali iruzkina
2424 </target> 2150 </target>
2425 <context-group name="null"> 2151 <context-group name="null">
2426 <context context-type="linenumber">17</context> 2152 <context context-type="linenumber">18</context>
2427 </context-group> 2153 </context-group>
2428 </trans-unit> 2154 </trans-unit>
2429 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> 2155 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285">
@@ -2587,23 +2313,9 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
2587 <context context-type="linenumber">1</context> 2313 <context context-type="linenumber">1</context>
2588 </context-group> 2314 </context-group>
2589 </trans-unit> 2315 </trans-unit>
2590 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936"> 2316 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2591 <source>Following</source> 2317 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2592 <target>Jarraitzen</target> 2318 <target><x id="INTERPOLATION" equiv-text="{{name}}"/> bideoa zerrenda beltzetik atera da.</target>
2593 <context-group name="null">
2594 <context context-type="linenumber">1</context>
2595 </context-group>
2596 </trans-unit>
2597 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
2598 <source>Follow</source>
2599 <target>Jarraitu</target>
2600 <context-group name="null">
2601 <context context-type="linenumber">1</context>
2602 </context-group>
2603 </trans-unit>
2604 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
2605 <source>Followers</source>
2606 <target>Jarraitzaileak</target>
2607 <context-group name="null"> 2319 <context-group name="null">
2608 <context context-type="linenumber">1</context> 2320 <context context-type="linenumber">1</context>
2609 </context-group> 2321 </context-group>
@@ -2657,27 +2369,6 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
2657 <context context-type="linenumber">1</context> 2369 <context context-type="linenumber">1</context>
2658 </context-group> 2370 </context-group>
2659 </trans-unit> 2371 </trans-unit>
2660 <trans-unit id="4733ad1d7e63960438c0203b9a64f165b5fc84f2">
2661 <source>Do you really want to remove this video from the blacklist ? It will be available again in the videos list.</source>
2662 <target>Ziur bideo hau zerrenda beltzetik atera nahi duzula? Berriro egongo da bideoen zerrendan ikusgai.</target>
2663 <context-group name="null">
2664 <context context-type="linenumber">1</context>
2665 </context-group>
2666 </trans-unit>
2667 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2668 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2669 <target><x id="INTERPOLATION" equiv-text="{{name}}"/> bideoa zerrenda beltzetik atera da.</target>
2670 <context-group name="null">
2671 <context context-type="linenumber">1</context>
2672 </context-group>
2673 </trans-unit>
2674 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2675 <source>The new password and the confirmed password do not correspond.</source>
2676 <target>Pasahitz berria eta berretsitako pasahitza ez datoz bat.</target>
2677 <context-group name="null">
2678 <context context-type="linenumber">1</context>
2679 </context-group>
2680 </trans-unit>
2681 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc"> 2372 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc">
2682 <source>Password updated.</source> 2373 <source>Password updated.</source>
2683 <target>Pasahitza eguneratuta.</target> 2374 <target>Pasahitza eguneratuta.</target>
@@ -2846,6 +2537,13 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
2846 <context context-type="linenumber">1</context> 2537 <context context-type="linenumber">1</context>
2847 </context-group> 2538 </context-group>
2848 </trans-unit> 2539 </trans-unit>
2540 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2541 <source>Unable to find user id or verification string.</source>
2542 <target>Ezin izan da erabiltzailearen id-a edo berreste katea aurkitu.</target>
2543 <context-group name="null">
2544 <context context-type="linenumber">1</context>
2545 </context-group>
2546 </trans-unit>
2849 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7"> 2547 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7">
2850 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>. 2548 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>.
2851</source> 2549</source>
@@ -2883,13 +2581,6 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
2883 <context context-type="linenumber">1</context> 2581 <context context-type="linenumber">1</context>
2884 </context-group> 2582 </context-group>
2885 </trans-unit> 2583 </trans-unit>
2886 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2887 <source>Unable to find user id or verification string.</source>
2888 <target>Ezin izan da erabiltzailearen id-a edo berreste katea aurkitu.</target>
2889 <context-group name="null">
2890 <context context-type="linenumber">1</context>
2891 </context-group>
2892 </trans-unit>
2893 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26"> 2584 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26">
2894 <source>Your password has been successfully reset!</source> 2585 <source>Your password has been successfully reset!</source>
2895 <target>Zure pasahitza ongi berrezarri da!</target> 2586 <target>Zure pasahitza ongi berrezarri da!</target>
@@ -3079,13 +2770,6 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
3079 <context context-type="linenumber">1</context> 2770 <context context-type="linenumber">1</context>
3080 </context-group> 2771 </context-group>
3081 </trans-unit> 2772 </trans-unit>
3082 <trans-unit id="ba88636d27c1a6a7e1f75ff57ec182b30b851c2e">
3083 <source>Transcoding threads must be greater than 1.</source>
3084 <target>Transkodetze hari kopurua 1 baino gehiago izan behar da.</target>
3085 <context-group name="null">
3086 <context context-type="linenumber">1</context>
3087 </context-group>
3088 </trans-unit>
3089 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149"> 2773 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149">
3090 <source>Username is required.</source> 2774 <source>Username is required.</source>
3091 <target>Erabiltzaile izena beha da.</target> 2775 <target>Erabiltzaile izena beha da.</target>
@@ -3156,6 +2840,13 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
3156 <context context-type="linenumber">1</context> 2840 <context context-type="linenumber">1</context>
3157 </context-group> 2841 </context-group>
3158 </trans-unit> 2842 </trans-unit>
2843 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2844 <source>The new password and the confirmed password do not correspond.</source>
2845 <target>Pasahitz berria eta berretsitako pasahitza ez datoz bat.</target>
2846 <context-group name="null">
2847 <context context-type="linenumber">1</context>
2848 </context-group>
2849 </trans-unit>
3159 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf"> 2850 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf">
3160 <source>Video quota is required.</source> 2851 <source>Video quota is required.</source>
3161 <target>Bideo-kuota behar da.</target> 2852 <target>Bideo-kuota behar da.</target>
@@ -3723,6 +3414,41 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
3723 <context context-type="linenumber">1</context> 3414 <context context-type="linenumber">1</context>
3724 </context-group> 3415 </context-group>
3725 </trans-unit> 3416 </trans-unit>
3417 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3418 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3419 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3420 <context-group name="null">
3421 <context context-type="linenumber">1</context>
3422 </context-group>
3423 </trans-unit>
3424 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3425 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3426 <target>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</target>
3427 <context-group name="null">
3428 <context context-type="linenumber">1</context>
3429 </context-group>
3430 </trans-unit>
3431 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3432 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3433 <target>HD osoko bideoen <x id="INTERPOLATION" equiv-text="{{seconds}}"/></target>
3434 <context-group name="null">
3435 <context context-type="linenumber">1</context>
3436 </context-group>
3437 </trans-unit>
3438 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3439 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3440 <target>HD bideoen <x id="INTERPOLATION" equiv-text="{{seconds}}"/></target>
3441 <context-group name="null">
3442 <context context-type="linenumber">1</context>
3443 </context-group>
3444 </trans-unit>
3445 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3446 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3447 <target>Bataz besteko kalitatezko bideoen <x id="INTERPOLATION" equiv-text="{{seconds}}"/></target>
3448 <context-group name="null">
3449 <context context-type="linenumber">1</context>
3450 </context-group>
3451 </trans-unit>
3726 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d"> 3452 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d">
3727 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source> 3453 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source>
3728 <target>duela <x id="INTERPOLATION" equiv-text="{{interval}}"/> urte</target> 3454 <target>duela <x id="INTERPOLATION" equiv-text="{{interval}}"/> urte</target>
@@ -3877,41 +3603,6 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
3877 <context context-type="linenumber">1</context> 3603 <context context-type="linenumber">1</context>
3878 </context-group> 3604 </context-group>
3879 </trans-unit> 3605 </trans-unit>
3880 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3881 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3882 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3883 <context-group name="null">
3884 <context context-type="linenumber">1</context>
3885 </context-group>
3886 </trans-unit>
3887 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3888 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3889 <target>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</target>
3890 <context-group name="null">
3891 <context context-type="linenumber">1</context>
3892 </context-group>
3893 </trans-unit>
3894 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3895 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3896 <target>HD osoko bideoen <x id="INTERPOLATION" equiv-text="{{seconds}}"/></target>
3897 <context-group name="null">
3898 <context context-type="linenumber">1</context>
3899 </context-group>
3900 </trans-unit>
3901 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3902 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3903 <target>HD bideoen <x id="INTERPOLATION" equiv-text="{{seconds}}"/></target>
3904 <context-group name="null">
3905 <context context-type="linenumber">1</context>
3906 </context-group>
3907 </trans-unit>
3908 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3909 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3910 <target>Bataz besteko kalitatezko bideoen <x id="INTERPOLATION" equiv-text="{{seconds}}"/></target>
3911 <context-group name="null">
3912 <context context-type="linenumber">1</context>
3913 </context-group>
3914 </trans-unit>
3915 <trans-unit id="320c9c3482a0ebe46da42ce9e0cbdc5ba26ea8bb"> 3606 <trans-unit id="320c9c3482a0ebe46da42ce9e0cbdc5ba26ea8bb">
3916 <source>Video to import updated.</source> 3607 <source>Video to import updated.</source>
3917 <target>Inportatzeko bideoa eguneratuta.</target> 3608 <target>Inportatzeko bideoa eguneratuta.</target>
@@ -3961,13 +3652,6 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
3961 <context context-type="linenumber">1</context> 3652 <context context-type="linenumber">1</context>
3962 </context-group> 3653 </context-group>
3963 </trans-unit> 3654 </trans-unit>
3964 <trans-unit id="d31d39e8ee9b2f20bffb3468ee062eaa5409c59f">
3965 <source>Your video quota is exceeded with this video (video size: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, used: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, quota: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</source>
3966 <target>Zure bideo-kuota bideo honekin gainditzen da (bideoaren tamaina: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, erabilia: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, kuota: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</target>
3967 <context-group name="null">
3968 <context context-type="linenumber">1</context>
3969 </context-group>
3970 </trans-unit>
3971 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce"> 3655 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce">
3972 <source>Video published.</source> 3656 <source>Video published.</source>
3973 <target>Bideoa argitaratuta.</target> 3657 <target>Bideoa argitaratuta.</target>
@@ -4003,20 +3687,6 @@ Ezin izan dugu bilatzen duzun orria aurkitu.
4003 <context context-type="linenumber">1</context> 3687 <context context-type="linenumber">1</context>
4004 </context-group> 3688 </context-group>
4005 </trans-unit> 3689 </trans-unit>
4006 <trans-unit id="23b2c2f4dd69e29c3bff00469e259dcb01de5633">
4007 <source>Do you really want to blacklist this video?</source>
4008 <target>Ziur bideo hau zerrenda beltzean sartu nahi duzula?</target>
4009 <context-group name="null">
4010 <context context-type="linenumber">1</context>
4011 </context-group>
4012 </trans-unit>
4013 <trans-unit id="cafd8ec6020e69f241a107b1cb7081bd9e773d4e">
4014 <source>Video <x id="INTERPOLATION" equiv-text="{{videoName}}"/> had been blacklisted.</source>
4015 <target><x id="INTERPOLATION" equiv-text="{{videoName}}"/> bideoa zerrenda beltzean sartu da.</target>
4016 <context-group name="null">
4017 <context context-type="linenumber">1</context>
4018 </context-group>
4019 </trans-unit>
4020 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95"> 3690 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95">
4021 <source>Do you really want to delete this video?</source> 3691 <source>Do you really want to delete this video?</source>
4022 <target>Ziur bideo hau ezabatu nahi duzula?</target> 3692 <target>Ziur bideo hau ezabatu nahi duzula?</target>
diff --git a/client/src/locale/target/angular_fr_FR.xml b/client/src/locale/target/angular_fr_FR.xml
index b47ad51b5..b4de776e3 100644
--- a/client/src/locale/target/angular_fr_FR.xml
+++ b/client/src/locale/target/angular_fr_FR.xml
@@ -3,17 +3,6 @@
3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1"> 3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1">
4 <file source-language="en-US" datatype="plaintext" original="" target-language="fr-FR"> 4 <file source-language="en-US" datatype="plaintext" original="" target-language="fr-FR">
5 <body> 5 <body>
6 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
7 <source>
8 Cancel
9 </source>
10 <target>
11 Annulé
12 </target>
13 <context-group name="null">
14 <context context-type="linenumber">45</context>
15 </context-group>
16 </trans-unit>
17 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46"> 6 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46">
18 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source> 7 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source>
19 <target>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, taille maximum : <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target> 8 <target>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, taille maximum : <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target>
@@ -25,14 +14,21 @@
25 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 14 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
26 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> vues</target> 15 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> vues</target>
27 <context-group name="null"> 16 <context-group name="null">
28 <context context-type="linenumber">34</context> 17 <context context-type="linenumber">12</context>
18 </context-group>
19 </trans-unit>
20 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7">
21 <source>Delete</source>
22 <target>Supprimer</target>
23 <context-group name="null">
24 <context context-type="linenumber">15</context>
29 </context-group> 25 </context-group>
30 </trans-unit> 26 </trans-unit>
31 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> 27 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c">
32 <source>Edit</source> 28 <source>Edit</source>
33 <target>Modifier</target> 29 <target>Modifier</target>
34 <context-group name="null"> 30 <context-group name="null">
35 <context context-type="linenumber">3</context> 31 <context context-type="linenumber">5</context>
36 </context-group> 32 </context-group>
37 </trans-unit> 33 </trans-unit>
38 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> 34 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d">
@@ -46,7 +42,7 @@
46 <source>Complete preview</source> 42 <source>Complete preview</source>
47 <target>Prévisualisation complète</target> 43 <target>Prévisualisation complète</target>
48 <context-group name="null"> 44 <context-group name="null">
49 <context context-type="linenumber">10</context> 45 <context context-type="linenumber">13</context>
50 </context-group> 46 </context-group>
51 </trans-unit> 47 </trans-unit>
52 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> 48 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f">
@@ -56,6 +52,13 @@
56 <context context-type="linenumber">18</context> 52 <context context-type="linenumber">18</context>
57 </context-group> 53 </context-group>
58 </trans-unit> 54 </trans-unit>
55 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
56 <source>Video quota</source>
57 <target>Quota des vidéos</target>
58 <context-group name="null">
59 <context context-type="linenumber">19</context>
60 </context-group>
61 </trans-unit>
59 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea"> 62 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea">
60 <source> 63 <source>
61 Login 64 Login
@@ -70,14 +73,14 @@
70 <source>User</source> 73 <source>User</source>
71 <target>Utilisateur</target> 74 <target>Utilisateur</target>
72 <context-group name="null"> 75 <context-group name="null">
73 <context context-type="linenumber">11</context> 76 <context context-type="linenumber">13</context>
74 </context-group> 77 </context-group>
75 </trans-unit> 78 </trans-unit>
76 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> 79 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478">
77 <source>Username or email address</source> 80 <source>Username or email address</source>
78 <target>Identifiant ou courriel</target> 81 <target>Identifiant ou courriel</target>
79 <context-group name="null"> 82 <context-group name="null">
80 <context context-type="linenumber">13</context> 83 <context context-type="linenumber">15</context>
81 </context-group> 84 </context-group>
82 </trans-unit> 85 </trans-unit>
83 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87"> 86 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87">
@@ -88,7 +91,7 @@
88 ou créer un compte 91 ou créer un compte
89 </target> 92 </target>
90 <context-group name="null"> 93 <context-group name="null">
91 <context context-type="linenumber">16</context> 94 <context context-type="linenumber">18</context>
92 </context-group> 95 </context-group>
93 </trans-unit> 96 </trans-unit>
94 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b"> 97 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b">
@@ -99,14 +102,14 @@
99 ou créer un compte sur une autre instance 102 ou créer un compte sur une autre instance
100 </target> 103 </target>
101 <context-group name="null"> 104 <context-group name="null">
102 <context context-type="linenumber">20</context> 105 <context context-type="linenumber">22</context>
103 </context-group> 106 </context-group>
104 </trans-unit> 107 </trans-unit>
105 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3"> 108 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3">
106 <source>User registration is not allowed on this instance, but you can register on many others!</source> 109 <source>User registration is not allowed on this instance, but you can register on many others!</source>
107 <target>Vous ne pouvez pas créer de compte sur cette instance, mais vous pouvez en créer sur beaucoup d'autres !</target> 110 <target>Vous ne pouvez pas créer de compte sur cette instance, mais vous pouvez en créer sur beaucoup d'autres !</target>
108 <context-group name="null"> 111 <context-group name="null">
109 <context context-type="linenumber">26</context> 112 <context context-type="linenumber">28</context>
110 </context-group> 113 </context-group>
111 </trans-unit> 114 </trans-unit>
112 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> 115 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407">
@@ -120,35 +123,35 @@
120 <source>I forgot my password</source> 123 <source>I forgot my password</source>
121 <target>J’ai oublié mon mot de passe</target> 124 <target>J’ai oublié mon mot de passe</target>
122 <context-group name="null"> 125 <context-group name="null">
123 <context context-type="linenumber">42</context> 126 <context context-type="linenumber">44</context>
124 </context-group> 127 </context-group>
125 </trans-unit> 128 </trans-unit>
126 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681"> 129 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681">
127 <source>Forgot your password</source> 130 <source>Forgot your password</source>
128 <target>Oubli de votre mot de passe</target> 131 <target>Oubli de votre mot de passe</target>
129 <context-group name="null"> 132 <context-group name="null">
130 <context context-type="linenumber">59</context> 133 <context context-type="linenumber">57</context>
131 </context-group> 134 </context-group>
132 </trans-unit> 135 </trans-unit>
133 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc"> 136 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc">
134 <source>Email</source> 137 <source>Email</source>
135 <target>Courriel</target> 138 <target>Courriel</target>
136 <context-group name="null"> 139 <context-group name="null">
137 <context context-type="linenumber">17</context> 140 <context context-type="linenumber">8</context>
138 </context-group> 141 </context-group>
139 </trans-unit> 142 </trans-unit>
140 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529"> 143 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529">
141 <source>Email address</source> 144 <source>Email address</source>
142 <target>Courriel</target> 145 <target>Courriel</target>
143 <context-group name="null"> 146 <context-group name="null">
144 <context context-type="linenumber">66</context> 147 <context context-type="linenumber">10</context>
145 </context-group> 148 </context-group>
146 </trans-unit> 149 </trans-unit>
147 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55"> 150 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55">
148 <source>Send me an email to reset my password</source> 151 <source>Send me an email to reset my password</source>
149 <target>M'envoyer un courriel pour réinitialiser mon mot de passe</target> 152 <target>M'envoyer un courriel pour réinitialiser mon mot de passe</target>
150 <context-group name="null"> 153 <context-group name="null">
151 <context context-type="linenumber">77</context> 154 <context context-type="linenumber">75</context>
152 </context-group> 155 </context-group>
153 </trans-unit> 156 </trans-unit>
154 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa"> 157 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa">
@@ -194,24 +197,6 @@
194 <context context-type="linenumber">3</context> 197 <context context-type="linenumber">3</context>
195 </context-group> 198 </context-group>
196 </trans-unit> 199 </trans-unit>
197 <trans-unit id="a6807b834e01ce165aa61fad157b0ff4288b6bf1">
198 <source>Initial video quota:</source>
199 <target>Quota de vidéos initial :</target>
200 <context-group name="null">
201 <context context-type="linenumber">8</context>
202 </context-group>
203 </trans-unit>
204 <trans-unit id="87b6b2c26215c5e712d3bfe4cc86ba53bc23451c">
205 <source>
206 Unlimited
207 </source>
208 <target>
209 Illimité
210 </target>
211 <context-group name="null">
212 <context context-type="linenumber">16</context>
213 </context-group>
214 </trans-unit>
215 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> 200 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48">
216 <source>Username</source> 201 <source>Username</source>
217 <target>Identifiant</target> 202 <target>Identifiant</target>
@@ -223,14 +208,14 @@
223 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source> 208 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source>
224 <target>J'ai lu et j'accepte les &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Condition&lt;/a&gt; de cette instance</target> 209 <target>J'ai lu et j'accepte les &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Condition&lt;/a&gt; de cette instance</target>
225 <context-group name="null"> 210 <context-group name="null">
226 <context context-type="linenumber">60</context> 211 <context context-type="linenumber">54</context>
227 </context-group> 212 </context-group>
228 </trans-unit> 213 </trans-unit>
229 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4"> 214 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4">
230 <source>Signup</source> 215 <source>Signup</source>
231 <target>Créer un compte</target> 216 <target>Créer un compte</target>
232 <context-group name="null"> 217 <context-group name="null">
233 <context context-type="linenumber">86</context> 218 <context context-type="linenumber">88</context>
234 </context-group> 219 </context-group>
235 </trans-unit> 220 </trans-unit>
236 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a"> 221 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a">
@@ -273,102 +258,70 @@
273 <source>Change the language</source> 258 <source>Change the language</source>
274 <target>Changer la langue</target> 259 <target>Changer la langue</target>
275 <context-group name="null"> 260 <context-group name="null">
276 <context context-type="linenumber">76</context> 261 <context context-type="linenumber">88</context>
277 </context-group>
278 </trans-unit>
279 <trans-unit id="b8ccc4f1b3f839fca9bd59e072f715fd487d540f">
280 <source>
281 My public profile
282 </source>
283 <target>
284 Mon profil public
285 </target>
286 <context-group name="null">
287 <context context-type="linenumber">19</context>
288 </context-group>
289 </trans-unit>
290 <trans-unit id="c84b721e9325c9cce20d92f4dbd66898ab5ec947">
291 <source>
292 My account
293 </source>
294 <target>
295 Mon compte
296 </target>
297 <context-group name="null">
298 <context context-type="linenumber">23</context>
299 </context-group>
300 </trans-unit>
301 <trans-unit id="ba7378cdaaa60b4fee17a551b232ad3512dac17d">
302 <source>
303 Log out
304 </source>
305 <target>
306 Se déconnecter </target>
307 <context-group name="null">
308 <context context-type="linenumber">27</context>
309 </context-group> 262 </context-group>
310 </trans-unit> 263 </trans-unit>
311 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> 264 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9">
312 <source>Login</source> 265 <source>Login</source>
313 <target>Se connecter</target> 266 <target>Se connecter</target>
314 <context-group name="null"> 267 <context-group name="null">
315 <context context-type="linenumber">36</context> 268 <context context-type="linenumber">38</context>
316 </context-group> 269 </context-group>
317 </trans-unit> 270 </trans-unit>
318 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> 271 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87">
319 <source>Create an account</source> 272 <source>Create an account</source>
320 <target>Créer un compte</target> 273 <target>Créer un compte</target>
321 <context-group name="null"> 274 <context-group name="null">
322 <context context-type="linenumber">37</context> 275 <context context-type="linenumber">39</context>
323 </context-group> 276 </context-group>
324 </trans-unit> 277 </trans-unit>
325 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238"> 278 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238">
326 <source>Videos</source> 279 <source>Videos</source>
327 <target>Vidéos</target> 280 <target>Vidéos</target>
328 <context-group name="null"> 281 <context-group name="null">
329 <context context-type="linenumber">21</context> 282 <context context-type="linenumber">24</context>
330 </context-group> 283 </context-group>
331 </trans-unit> 284 </trans-unit>
332 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> 285 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807">
333 <source>Trending</source> 286 <source>Trending</source>
334 <target>Tendances</target> 287 <target>Tendances</target>
335 <context-group name="null"> 288 <context-group name="null">
336 <context context-type="linenumber">45</context> 289 <context context-type="linenumber">57</context>
337 </context-group> 290 </context-group>
338 </trans-unit> 291 </trans-unit>
339 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> 292 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1">
340 <source>Recently added</source> 293 <source>Recently added</source>
341 <target>Récemment ajoutées</target> 294 <target>Récemment ajoutées</target>
342 <context-group name="null"> 295 <context-group name="null">
343 <context context-type="linenumber">50</context> 296 <context context-type="linenumber">62</context>
344 </context-group> 297 </context-group>
345 </trans-unit> 298 </trans-unit>
346 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d"> 299 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d">
347 <source>Local</source> 300 <source>Local</source>
348 <target>Locales</target> 301 <target>Locales</target>
349 <context-group name="null"> 302 <context-group name="null">
350 <context context-type="linenumber">55</context> 303 <context context-type="linenumber">67</context>
351 </context-group> 304 </context-group>
352 </trans-unit> 305 </trans-unit>
353 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f"> 306 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f">
354 <source>More</source> 307 <source>More</source>
355 <target>Plus</target> 308 <target>Plus</target>
356 <context-group name="null"> 309 <context-group name="null">
357 <context context-type="linenumber">60</context> 310 <context context-type="linenumber">72</context>
358 </context-group> 311 </context-group>
359 </trans-unit> 312 </trans-unit>
360 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> 313 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919">
361 <source>Administration</source> 314 <source>Administration</source>
362 <target>Administration</target> 315 <target>Administration</target>
363 <context-group name="null"> 316 <context-group name="null">
364 <context context-type="linenumber">64</context> 317 <context context-type="linenumber">76</context>
365 </context-group> 318 </context-group>
366 </trans-unit> 319 </trans-unit>
367 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> 320 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a">
368 <source>About</source> 321 <source>About</source>
369 <target>À propos</target> 322 <target>À propos</target>
370 <context-group name="null"> 323 <context-group name="null">
371 <context context-type="linenumber">23</context> 324 <context context-type="linenumber">25</context>
372 </context-group> 325 </context-group>
373 </trans-unit> 326 </trans-unit>
374 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> 327 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599">
@@ -431,21 +384,21 @@
431 <source>Category</source> 384 <source>Category</source>
432 <target>Catégorie</target> 385 <target>Catégorie</target>
433 <context-group name="null"> 386 <context-group name="null">
434 <context context-type="linenumber">148</context> 387 <context context-type="linenumber">166</context>
435 </context-group> 388 </context-group>
436 </trans-unit> 389 </trans-unit>
437 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c"> 390 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c">
438 <source>Licence</source> 391 <source>Licence</source>
439 <target>Licence</target> 392 <target>Licence</target>
440 <context-group name="null"> 393 <context-group name="null">
441 <context context-type="linenumber">157</context> 394 <context context-type="linenumber">175</context>
442 </context-group> 395 </context-group>
443 </trans-unit> 396 </trans-unit>
444 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619"> 397 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619">
445 <source>Language</source> 398 <source>Language</source>
446 <target>Langage</target> 399 <target>Langage</target>
447 <context-group name="null"> 400 <context-group name="null">
448 <context context-type="linenumber">166</context> 401 <context context-type="linenumber">184</context>
449 </context-group> 402 </context-group>
450 </trans-unit> 403 </trans-unit>
451 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8"> 404 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8">
@@ -480,7 +433,7 @@
480 <source>Instance</source> 433 <source>Instance</source>
481 <target>Instance</target> 434 <target>Instance</target>
482 <context-group name="null"> 435 <context-group name="null">
483 <context context-type="linenumber">7</context> 436 <context context-type="linenumber">8</context>
484 </context-group> 437 </context-group>
485 </trans-unit> 438 </trans-unit>
486 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390"> 439 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390">
@@ -495,8 +448,7 @@
495 About <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> instance 448 About <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> instance
496</source> 449</source>
497 <target> 450 <target>
498 A propos de <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> instance 451 À propos de l'instance : <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> </target>
499</target>
500 <context-group name="null"> 452 <context-group name="null">
501 <context context-type="linenumber">1</context> 453 <context context-type="linenumber">1</context>
502 </context-group> 454 </context-group>
@@ -505,14 +457,14 @@
505 <source>Description</source> 457 <source>Description</source>
506 <target>Description</target> 458 <target>Description</target>
507 <context-group name="null"> 459 <context-group name="null">
508 <context context-type="linenumber">23</context> 460 <context context-type="linenumber">26</context>
509 </context-group> 461 </context-group>
510 </trans-unit> 462 </trans-unit>
511 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774"> 463 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774">
512 <source>Terms</source> 464 <source>Terms</source>
513 <target>Conditions d'utilisation</target> 465 <target>Conditions d'utilisation</target>
514 <context-group name="null"> 466 <context-group name="null">
515 <context context-type="linenumber">43</context> 467 <context context-type="linenumber">44</context>
516 </context-group> 468 </context-group>
517 </trans-unit> 469 </trans-unit>
518 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27"> 470 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27">
@@ -560,7 +512,7 @@
560 About PeerTube 512 About PeerTube
561</source> 513</source>
562 <target> 514 <target>
563 A propos de PeerTube 515 À propos de PeerTube
564</target> 516</target>
565 <context-group name="null"> 517 <context-group name="null">
566 <context context-type="linenumber">1</context> 518 <context context-type="linenumber">1</context>
@@ -853,7 +805,7 @@
853 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source> 805 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source>
854 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> abonnés</target> 806 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> abonnés</target>
855 <context-group name="null"> 807 <context-group name="null">
856 <context context-type="linenumber">11</context> 808 <context context-type="linenumber">14</context>
857 </context-group> 809 </context-group>
858 </trans-unit> 810 </trans-unit>
859 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f"> 811 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f">
@@ -867,49 +819,49 @@
867 <source>Name</source> 819 <source>Name</source>
868 <target>Nom</target> 820 <target>Nom</target>
869 <context-group name="null"> 821 <context-group name="null">
870 <context context-type="linenumber">9</context> 822 <context context-type="linenumber">12</context>
871 </context-group> 823 </context-group>
872 </trans-unit> 824 </trans-unit>
873 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b"> 825 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b">
874 <source>Short description</source> 826 <source>Short description</source>
875 <target>Courte description</target> 827 <target>Courte description</target>
876 <context-group name="null"> 828 <context-group name="null">
877 <context context-type="linenumber">21</context> 829 <context context-type="linenumber">22</context>
878 </context-group> 830 </context-group>
879 </trans-unit> 831 </trans-unit>
880 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003"> 832 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003">
881 <source>Default client route</source> 833 <source>Default client route</source>
882 <target>Route du client par défaut</target> 834 <target>Route du client par défaut</target>
883 <context-group name="null"> 835 <context-group name="null">
884 <context context-type="linenumber">54</context> 836 <context context-type="linenumber">55</context>
885 </context-group> 837 </context-group>
886 </trans-unit> 838 </trans-unit>
887 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948"> 839 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948">
888 <source>Videos Trending</source> 840 <source>Videos Trending</source>
889 <target>Vidéos tendance</target> 841 <target>Vidéos tendance</target>
890 <context-group name="null"> 842 <context-group name="null">
891 <context context-type="linenumber">57</context> 843 <context context-type="linenumber">59</context>
892 </context-group> 844 </context-group>
893 </trans-unit> 845 </trans-unit>
894 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883"> 846 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883">
895 <source>Videos Recently Added</source> 847 <source>Videos Recently Added</source>
896 <target>Vidéos récemment ajoutées</target> 848 <target>Vidéos récemment ajoutées</target>
897 <context-group name="null"> 849 <context-group name="null">
898 <context context-type="linenumber">58</context> 850 <context context-type="linenumber">60</context>
899 </context-group> 851 </context-group>
900 </trans-unit> 852 </trans-unit>
901 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f"> 853 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f">
902 <source>Local videos</source> 854 <source>Local videos</source>
903 <target>Vidéo locales</target> 855 <target>Vidéo locales</target>
904 <context-group name="null"> 856 <context-group name="null">
905 <context context-type="linenumber">59</context> 857 <context context-type="linenumber">61</context>
906 </context-group> 858 </context-group>
907 </trans-unit> 859 </trans-unit>
908 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9"> 860 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9">
909 <source>Policy on videos containing sensitive content</source> 861 <source>Policy on videos containing sensitive content</source>
910 <target>Politique concernant les vidéos ayant du contenu sensible</target> 862 <target>Politique concernant les vidéos ayant du contenu sensible</target>
911 <context-group name="null"> 863 <context-group name="null">
912 <context context-type="linenumber">68</context> 864 <context context-type="linenumber">70</context>
913 </context-group> 865 </context-group>
914 </trans-unit> 866 </trans-unit>
915 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df"> 867 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df">
@@ -944,14 +896,14 @@
944 <source>Signup enabled</source> 896 <source>Signup enabled</source>
945 <target>Enregistrement activé</target> 897 <target>Enregistrement activé</target>
946 <context-group name="null"> 898 <context-group name="null">
947 <context context-type="linenumber">90</context> 899 <context context-type="linenumber">92</context>
948 </context-group> 900 </context-group>
949 </trans-unit> 901 </trans-unit>
950 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402"> 902 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402">
951 <source>Signup limit</source> 903 <source>Signup limit</source>
952 <target>Limitation des enregistrements</target> 904 <target>Limitation des enregistrements</target>
953 <context-group name="null"> 905 <context-group name="null">
954 <context context-type="linenumber">94</context> 906 <context context-type="linenumber">101</context>
955 </context-group> 907 </context-group>
956 </trans-unit> 908 </trans-unit>
957 <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36"> 909 <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36">
@@ -965,42 +917,42 @@
965 <source>Video import with HTTP enabled</source> 917 <source>Video import with HTTP enabled</source>
966 <target>Import de vidéo avec HTTP activé</target> 918 <target>Import de vidéo avec HTTP activé</target>
967 <context-group name="null"> 919 <context-group name="null">
968 <context context-type="linenumber">108</context> 920 <context context-type="linenumber">115</context>
969 </context-group> 921 </context-group>
970 </trans-unit> 922 </trans-unit>
971 <trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e"> 923 <trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e">
972 <source>Video import with a torrent file or a magnet URI enabled</source> 924 <source>Video import with a torrent file or a magnet URI enabled</source>
973 <target>Import de vidéo avec un fichier torrent ou URL magnet activé</target> 925 <target>Import de vidéo avec un fichier torrent ou URL magnet activé</target>
974 <context-group name="null"> 926 <context-group name="null">
975 <context context-type="linenumber">113</context> 927 <context context-type="linenumber">120</context>
976 </context-group> 928 </context-group>
977 </trans-unit> 929 </trans-unit>
978 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011"> 930 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011">
979 <source>Administrator</source> 931 <source>Administrator</source>
980 <target>Administrateur</target> 932 <target>Administrateur</target>
981 <context-group name="null"> 933 <context-group name="null">
982 <context context-type="linenumber">116</context> 934 <context context-type="linenumber">123</context>
983 </context-group> 935 </context-group>
984 </trans-unit> 936 </trans-unit>
985 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> 937 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587">
986 <source>Admin email</source> 938 <source>Admin email</source>
987 <target>Email de l'administrateur</target> 939 <target>Email de l'administrateur</target>
988 <context-group name="null"> 940 <context-group name="null">
989 <context context-type="linenumber">119</context> 941 <context context-type="linenumber">126</context>
990 </context-group> 942 </context-group>
991 </trans-unit> 943 </trans-unit>
992 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be"> 944 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be">
993 <source>Users</source> 945 <source>Users</source>
994 <target>Utilisateurs</target> 946 <target>Utilisateurs</target>
995 <context-group name="null"> 947 <context-group name="null">
996 <context context-type="linenumber">129</context> 948 <context context-type="linenumber">136</context>
997 </context-group> 949 </context-group>
998 </trans-unit> 950 </trans-unit>
999 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09"> 951 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09">
1000 <source>User default video quota</source> 952 <source>User default video quota</source>
1001 <target>Quota de vidéos par défaut par utilisateur </target> 953 <target>Quota de vidéos par défaut par utilisateur </target>
1002 <context-group name="null"> 954 <context-group name="null">
1003 <context context-type="linenumber">132</context> 955 <context context-type="linenumber">139</context>
1004 </context-group> 956 </context-group>
1005 </trans-unit> 957 </trans-unit>
1006 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5"> 958 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5">
@@ -1014,194 +966,133 @@
1014 <source>Twitter</source> 966 <source>Twitter</source>
1015 <target>Twitter</target> 967 <target>Twitter</target>
1016 <context-group name="null"> 968 <context-group name="null">
1017 <context context-type="linenumber">148</context> 969 <context context-type="linenumber">170</context>
1018 </context-group> 970 </context-group>
1019 </trans-unit> 971 </trans-unit>
1020 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> 972 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524">
1021 <source>Your Twitter username</source> 973 <source>Your Twitter username</source>
1022 <target>Votre identifiant Twitter</target> 974 <target>Votre identifiant Twitter</target>
1023 <context-group name="null"> 975 <context-group name="null">
1024 <context context-type="linenumber">151</context> 976 <context context-type="linenumber">173</context>
1025 </context-group> 977 </context-group>
1026 </trans-unit> 978 </trans-unit>
1027 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c"> 979 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c">
1028 <source>Indicates the Twitter account for the website or platform on which the content was published.</source> 980 <source>Indicates the Twitter account for the website or platform on which the content was published.</source>
1029 <target>Indique le compte Twitter pour le site ou la plateforme sur laquelle le contenu a été publié.</target> 981 <target>Indique le compte Twitter pour le site ou la plateforme sur laquelle le contenu a été publié.</target>
1030 <context-group name="null"> 982 <context-group name="null">
1031 <context context-type="linenumber">154</context> 983 <context context-type="linenumber">176</context>
1032 </context-group> 984 </context-group>
1033 </trans-unit> 985 </trans-unit>
1034 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605"> 986 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605">
1035 <source>Instance whitelisted by Twitter</source> 987 <source>Instance whitelisted by Twitter</source>
1036 <target>Instance sur la liste blanche de Twitter</target> 988 <target>Instance sur la liste blanche de Twitter</target>
1037 <context-group name="null"> 989 <context-group name="null">
1038 <context context-type="linenumber">167</context> 990 <context context-type="linenumber">189</context>
1039 </context-group>
1040 </trans-unit>
1041 <trans-unit id="3f008a1a07ca42c6ad258fde1bbd80ed74ada19b">
1042 <source>If your instance is whitelisted by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.&lt;br /&gt;
1043If the instance is not whitelisted, we use an image link card that will redirect on your PeerTube instance.&lt;br /&gt;&lt;br /&gt;
1044Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; to see if you instance is whitelisted.</source>
1045 <target>Si votre instance est sur la liste blanche de Twitter, un player vidéo sera intégré dans le fil d'actualité de Twitter lors d'un partage d'une vidéo PeerTube.&lt;br /&gt;
1046Si l'instance n'est pas sur liste blanche, nous utilisons une lien-image qui redirigera sur votre instance PeerTube.&lt;br /&gt;&lt;br /&gt;
1047Cochez cette case, sauvegardez la configuration et testez avec l'URL d'une vidéo de votre instance (https://example.com/videos/watch/blabla) sur &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; pour voir si votre instance est sur liste blanche.</target>
1048 <context-group name="null">
1049 <context context-type="linenumber">168</context>
1050 </context-group> 991 </context-group>
1051 </trans-unit> 992 </trans-unit>
1052 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> 993 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5">
1053 <source>Services</source> 994 <source>Services</source>
1054 <target>Services</target> 995 <target>Services</target>
1055 <context-group name="null"> 996 <context-group name="null">
1056 <context context-type="linenumber">146</context> 997 <context context-type="linenumber">168</context>
1057 </context-group> 998 </context-group>
1058 </trans-unit> 999 </trans-unit>
1059 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490"> 1000 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490">
1060 <source>Transcoding</source> 1001 <source>Transcoding</source>
1061 <target>Encodage</target> 1002 <target>Encodage</target>
1062 <context-group name="null"> 1003 <context-group name="null">
1063 <context context-type="linenumber">176</context> 1004 <context context-type="linenumber">200</context>
1064 </context-group> 1005 </context-group>
1065 </trans-unit> 1006 </trans-unit>
1066 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> 1007 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9">
1067 <source>Transcoding enabled</source> 1008 <source>Transcoding enabled</source>
1068 <target>Encodage activé</target> 1009 <target>Encodage activé</target>
1069 <context-group name="null"> 1010 <context-group name="null">
1070 <context context-type="linenumber">180</context> 1011 <context context-type="linenumber">204</context>
1071 </context-group> 1012 </context-group>
1072 </trans-unit> 1013 </trans-unit>
1073 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> 1014 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f">
1074 <source>If you disable transcoding, many videos from your users will not work!</source> 1015 <source>If you disable transcoding, many videos from your users will not work!</source>
1075 <target>Si vous désactivez le transcodage, de nombreuses vidéos d'utilisateurs ne fonctionneront pas !</target> 1016 <target>Si vous désactivez le transcodage, de nombreuses vidéos d'utilisateurs ne fonctionneront pas !</target>
1076 <context-group name="null"> 1017 <context-group name="null">
1077 <context context-type="linenumber">181</context> 1018 <context context-type="linenumber">205</context>
1078 </context-group> 1019 </context-group>
1079 </trans-unit> 1020 </trans-unit>
1080 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> 1021 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2">
1081 <source>Transcoding threads</source> 1022 <source>Transcoding threads</source>
1082 <target>Nombre de threads pour l'encodage</target> 1023 <target>Nombre de threads pour l'encodage</target>
1083 <context-group name="null"> 1024 <context-group name="null">
1084 <context context-type="linenumber">187</context> 1025 <context context-type="linenumber">211</context>
1085 </context-group> 1026 </context-group>
1086 </trans-unit> 1027 </trans-unit>
1087 <trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500"> 1028 <trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500">
1088 <source>Resolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> enabled</source> 1029 <source>Resolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> enabled</source>
1089 <target>Résolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> activé</target> 1030 <target>Résolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> activé</target>
1090 <context-group name="null"> 1031 <context-group name="null">
1091 <context context-type="linenumber">203</context> 1032 <context context-type="linenumber">227</context>
1092 </context-group>
1093 </trans-unit>
1094 <trans-unit id="f86acfe567b75b7ea85af6f1cb3efb88085dfb9a">
1095 <source>
1096 Cache
1097
1098 <x id="START_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;my-help&gt;"/><x id="CLOSE_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;/my-help&gt;"/>
1099 </source>
1100 <target>
1101 Cache
1102
1103 <x id="START_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;my-help&gt;"/><x id="CLOSE_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;/my-help&gt;"/>
1104 </target>
1105 <context-group name="null">
1106 <context context-type="linenumber">209</context>
1107 </context-group> 1033 </context-group>
1108 </trans-unit> 1034 </trans-unit>
1109 <trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0"> 1035 <trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0">
1110 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source> 1036 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source>
1111 <target>Certain fichiers ne sont pas fédérés (miniature, sous-titre). Nous les récupérons directement depuis l'instance d'origine et nous les gardons cache.</target> 1037 <target>Certain fichiers ne sont pas fédérés (miniature, sous-titre). Nous les récupérons directement depuis l'instance d'origine et nous les gardons cache.</target>
1112 <context-group name="null"> 1038 <context-group name="null">
1113 <context context-type="linenumber">214</context> 1039 <context context-type="linenumber">238</context>
1114 </context-group> 1040 </context-group>
1115 </trans-unit> 1041 </trans-unit>
1116 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7"> 1042 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7">
1117 <source>Previews cache size</source> 1043 <source>Previews cache size</source>
1118 <target>Taille du cache des prévisualisations </target> 1044 <target>Taille du cache des prévisualisations </target>
1119 <context-group name="null"> 1045 <context-group name="null">
1120 <context context-type="linenumber">219</context> 1046 <context context-type="linenumber">243</context>
1121 </context-group> 1047 </context-group>
1122 </trans-unit> 1048 </trans-unit>
1123 <trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607"> 1049 <trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607">
1124 <source>Video captions cache size</source> 1050 <source>Video captions cache size</source>
1125 <target>Taille du cache de sous-titre</target> 1051 <target>Taille du cache de sous-titre</target>
1126 <context-group name="null"> 1052 <context-group name="null">
1127 <context context-type="linenumber">230</context> 1053 <context context-type="linenumber">254</context>
1128 </context-group> 1054 </context-group>
1129 </trans-unit> 1055 </trans-unit>
1130 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c"> 1056 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c">
1131 <source>Customizations</source> 1057 <source>Customizations</source>
1132 <target>Personnalisations</target> 1058 <target>Personnalisations</target>
1133 <context-group name="null"> 1059 <context-group name="null">
1134 <context context-type="linenumber">240</context> 1060 <context context-type="linenumber">264</context>
1135 </context-group> 1061 </context-group>
1136 </trans-unit> 1062 </trans-unit>
1137 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> 1063 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c">
1138 <source>JavaScript</source> 1064 <source>JavaScript</source>
1139 <target>JavaScript</target> 1065 <target>JavaScript</target>
1140 <context-group name="null"> 1066 <context-group name="null">
1141 <context context-type="linenumber">243</context> 1067 <context context-type="linenumber">267</context>
1142 </context-group> 1068 </context-group>
1143 </trans-unit> 1069 </trans-unit>
1144 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c"> 1070 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c">
1145 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source> 1071 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source>
1146 <target>Écrivez directement du code JavaScript.&lt;br /&gt;Exemple : &lt;pre&gt;console.log('mon instance est super géniale');&lt;/pre&gt;</target> 1072 <target>Écrivez directement du code JavaScript.&lt;br /&gt;Exemple : &lt;pre&gt;console.log('mon instance est super géniale');&lt;/pre&gt;</target>
1147 <context-group name="null"> 1073 <context-group name="null">
1148 <context context-type="linenumber">246</context> 1074 <context context-type="linenumber">270</context>
1149 </context-group>
1150 </trans-unit>
1151 <trans-unit id="f133b08d6519081bfb8ef51cff4bf2b3af23dde6">
1152 <source>
1153 Write directly CSS code. Example:&lt;br /&gt;
1154 &lt;pre&gt;
1155 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1156 background-color: red;
1157 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1158 &lt;/pre&gt;
1159
1160 Prepend with &lt;em&gt;#custom-css&lt;/em&gt; to override styles. Example:
1161 &lt;pre&gt;
1162 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1163 color: red;
1164 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1165 &lt;/pre&gt;
1166 </source>
1167 <target>
1168 Écrivez directement du code CSS. Exemple:&lt;br /&gt;
1169 &lt;pre&gt;
1170 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1171 background-color: red;
1172 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1173 &lt;/pre&gt;
1174
1175 Préfixer avec &lt;em&gt;#custom-css&lt;/em&gt; pour surcharger les styles. Exemple:
1176 &lt;pre&gt;
1177 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1178 color: red;
1179 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1180 &lt;/pre&gt;
1181 </target>
1182 <context-group name="null">
1183 <context context-type="linenumber">262</context>
1184 </context-group> 1075 </context-group>
1185 </trans-unit> 1076 </trans-unit>
1186 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> 1077 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab">
1187 <source>Advanced configuration</source> 1078 <source>Advanced configuration</source>
1188 <target>Configuration avancée</target> 1079 <target>Configuration avancée</target>
1189 <context-group name="null"> 1080 <context-group name="null">
1190 <context context-type="linenumber">174</context> 1081 <context context-type="linenumber">197</context>
1191 </context-group> 1082 </context-group>
1192 </trans-unit> 1083 </trans-unit>
1193 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> 1084 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8">
1194 <source>Update configuration</source> 1085 <source>Update configuration</source>
1195 <target>Mettre à jour la configuration</target> 1086 <target>Mettre à jour la configuration</target>
1196 <context-group name="null"> 1087 <context-group name="null">
1197 <context context-type="linenumber">289</context> 1088 <context context-type="linenumber">314</context>
1198 </context-group> 1089 </context-group>
1199 </trans-unit> 1090 </trans-unit>
1200 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca"> 1091 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca">
1201 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source> 1092 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source>
1202 <target>Il semblerait que la configuration soit invalide. Merci de chercher des erreurs potentielles dans les différents onglets.</target> 1093 <target>Il semblerait que la configuration soit invalide. Merci de chercher des erreurs potentielles dans les différents onglets.</target>
1203 <context-group name="null"> 1094 <context-group name="null">
1204 <context context-type="linenumber">290</context> 1095 <context context-type="linenumber">315</context>
1205 </context-group> 1096 </context-group>
1206 </trans-unit> 1097 </trans-unit>
1207 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c"> 1098 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c">
@@ -1226,28 +1117,6 @@ Cochez cette case, sauvegardez la configuration et testez avec l'URL d'une vidé
1226 <context context-type="linenumber">7</context> 1117 <context context-type="linenumber">7</context>
1227 </context-group> 1118 </context-group>
1228 </trans-unit> 1119 </trans-unit>
1229 <trans-unit id="1c9406213cf05033eda4d3df678217b5eb822315">
1230 <source>
1231 Video abuses
1232 </source>
1233 <target>
1234 Signalements de vidéos
1235 </target>
1236 <context-group name="null">
1237 <context context-type="linenumber">11</context>
1238 </context-group>
1239 </trans-unit>
1240 <trans-unit id="96ccede058f0022f34230c3adc09e60076b6d037">
1241 <source>
1242 Video blacklist
1243 </source>
1244 <target>
1245 Liste noire des vidéos
1246 </target>
1247 <context-group name="null">
1248 <context context-type="linenumber">15</context>
1249 </context-group>
1250 </trans-unit>
1251 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368"> 1120 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368">
1252 <source> 1121 <source>
1253 Jobs 1122 Jobs
@@ -1256,7 +1125,7 @@ Cochez cette case, sauvegardez la configuration et testez avec l'URL d'une vidé
1256 Jobs 1125 Jobs
1257 </target> 1126 </target>
1258 <context-group name="null"> 1127 <context-group name="null">
1259 <context context-type="linenumber">19</context> 1128 <context context-type="linenumber">15</context>
1260 </context-group> 1129 </context-group>
1261 </trans-unit> 1130 </trans-unit>
1262 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13"> 1131 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13">
@@ -1267,7 +1136,7 @@ Cochez cette case, sauvegardez la configuration et testez avec l'URL d'une vidé
1267 Configuration 1136 Configuration
1268 </target> 1137 </target>
1269 <context-group name="null"> 1138 <context-group name="null">
1270 <context context-type="linenumber">23</context> 1139 <context context-type="linenumber">19</context>
1271 </context-group> 1140 </context-group>
1272 </trans-unit> 1141 </trans-unit>
1273 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396"> 1142 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396">
@@ -1337,6 +1206,27 @@ Cochez cette case, sauvegardez la configuration et testez avec l'URL d'une vidé
1337 <context context-type="linenumber">2</context> 1206 <context context-type="linenumber">2</context>
1338 </context-group> 1207 </context-group>
1339 </trans-unit> 1208 </trans-unit>
1209 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936">
1210 <source>Following</source>
1211 <target>Abonnements</target>
1212 <context-group name="null">
1213 <context context-type="linenumber">5</context>
1214 </context-group>
1215 </trans-unit>
1216 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
1217 <source>Follow</source>
1218 <target>S'abonner</target>
1219 <context-group name="null">
1220 <context context-type="linenumber">7</context>
1221 </context-group>
1222 </trans-unit>
1223 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
1224 <source>Followers</source>
1225 <target>Abonnés</target>
1226 <context-group name="null">
1227 <context context-type="linenumber">9</context>
1228 </context-group>
1229 </trans-unit>
1340 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f"> 1230 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f">
1341 <source>Jobs list</source> 1231 <source>Jobs list</source>
1342 <target>Liste des jobs</target> 1232 <target>Liste des jobs</target>
@@ -1397,14 +1287,7 @@ Cochez cette case, sauvegardez la configuration et testez avec l'URL d'une vidé
1397 <source>Role</source> 1287 <source>Role</source>
1398 <target>Rôle</target> 1288 <target>Rôle</target>
1399 <context-group name="null"> 1289 <context-group name="null">
1400 <context context-type="linenumber">19</context> 1290 <context context-type="linenumber">20</context>
1401 </context-group>
1402 </trans-unit>
1403 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
1404 <source>Video quota</source>
1405 <target>Quota des vidéos</target>
1406 <context-group name="null">
1407 <context context-type="linenumber">18</context>
1408 </context-group> 1291 </context-group>
1409 </trans-unit> 1292 </trans-unit>
1410 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345"> 1293 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345">
@@ -1420,6 +1303,13 @@ Cochez cette case, sauvegardez la configuration et testez avec l'URL d'une vidé
1420 <context context-type="linenumber">65</context> 1303 <context context-type="linenumber">65</context>
1421 </context-group> 1304 </context-group>
1422 </trans-unit> 1305 </trans-unit>
1306 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
1307 <source>Reason...</source>
1308 <target>Motivation…</target>
1309 <context-group name="null">
1310 <context context-type="linenumber">11</context>
1311 </context-group>
1312 </trans-unit>
1423 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f"> 1313 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f">
1424 <source>Users list</source> 1314 <source>Users list</source>
1425 <target>Liste des utilisateurs</target> 1315 <target>Liste des utilisateurs</target>
@@ -1431,91 +1321,42 @@ Cochez cette case, sauvegardez la configuration et testez avec l'URL d'une vidé
1431 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source> 1321 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1432 <target>Identifiant <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target> 1322 <target>Identifiant <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1433 <context-group name="null"> 1323 <context-group name="null">
1434 <context context-type="linenumber">16</context> 1324 <context context-type="linenumber">17</context>
1435 </context-group>
1436 </trans-unit>
1437 <trans-unit id="0c7e8870481f1287af6a142f538391d8c16c2408">
1438 <source>Video abuses list</source>
1439 <target>Liste des signalements de vidéos</target>
1440 <context-group name="null">
1441 <context context-type="linenumber">2</context>
1442 </context-group>
1443 </trans-unit>
1444 <trans-unit id="4ba250869daa372b54d24fafc0ea934769ee4076">
1445 <source>Reason</source>
1446 <target>Raison</target>
1447 <context-group name="null">
1448 <context context-type="linenumber">11</context>
1449 </context-group> 1325 </context-group>
1450 </trans-unit> 1326 </trans-unit>
1451 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2"> 1327 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2">
1452 <source>Reporter</source> 1328 <source>Reporter</source>
1453 <target>Rapporteur</target> 1329 <target>Rapporteur</target>
1454 <context-group name="null"> 1330 <context-group name="null">
1455 <context context-type="linenumber">12</context> 1331 <context context-type="linenumber">8</context>
1456 </context-group> 1332 </context-group>
1457 </trans-unit> 1333 </trans-unit>
1458 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4"> 1334 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4">
1459 <source>Video</source> 1335 <source>Video</source>
1460 <target>Vidéo</target> 1336 <target>Vidéo</target>
1461 <context-group name="null"> 1337 <context-group name="null">
1462 <context context-type="linenumber">9</context> 1338 <context context-type="linenumber">14</context>
1463 </context-group> 1339 </context-group>
1464 </trans-unit> 1340 </trans-unit>
1465 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7"> 1341 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7">
1466 <source>Go to the account</source> 1342 <source>Go to the account</source>
1467 <target>Aller sur le compte</target> 1343 <target>Aller sur le compte</target>
1468 <context-group name="null"> 1344 <context-group name="null">
1469 <context context-type="linenumber">22</context> 1345 <context context-type="linenumber">27</context>
1470 </context-group> 1346 </context-group>
1471 </trans-unit> 1347 </trans-unit>
1472 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5"> 1348 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5">
1473 <source>Go to the video</source> 1349 <source>Go to the video</source>
1474 <target>Aller sur la vidéo</target> 1350 <target>Aller sur la vidéo</target>
1475 <context-group name="null"> 1351 <context-group name="null">
1476 <context context-type="linenumber">28</context> 1352 <context context-type="linenumber">33</context>
1477 </context-group> 1353 </context-group>
1478 </trans-unit> 1354 </trans-unit>
1479 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1"> 1355 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1">
1480 <source>Blacklisted videos</source> 1356 <source>Blacklisted videos</source>
1481 <target>Vidéos sur liste noire</target> 1357 <target>Vidéos sur liste noire</target>
1482 <context-group name="null"> 1358 <context-group name="null">
1483 <context context-type="linenumber">2</context> 1359 <context context-type="linenumber">7</context>
1484 </context-group>
1485 </trans-unit>
1486 <trans-unit id="7c02d113e9b7884037834cddecf2a32a5538b35b">
1487 <source>Name <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1488 <target>Nom <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1489 <context-group name="null">
1490 <context context-type="linenumber">11</context>
1491 </context-group>
1492 </trans-unit>
1493 <trans-unit id="cd5ca5da9e2fa21571e9f86a24a5c3b45a3ddc51">
1494 <source>Views <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1495 <target>Vues <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1496 <context-group name="null">
1497 <context context-type="linenumber">13</context>
1498 </context-group>
1499 </trans-unit>
1500 <trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9">
1501 <source>NSFW</source>
1502 <target>NSFW</target>
1503 <context-group name="null">
1504 <context context-type="linenumber">14</context>
1505 </context-group>
1506 </trans-unit>
1507 <trans-unit id="8c87d9527af7ff2ada84c911516a9e43a352e401">
1508 <source>UUID</source>
1509 <target>UUID</target>
1510 <context-group name="null">
1511 <context context-type="linenumber">15</context>
1512 </context-group>
1513 </trans-unit>
1514 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1515 <source>Unblacklist</source>
1516 <target>Retirer de la liste noir</target>
1517 <context-group name="null">
1518 <context context-type="linenumber">30</context>
1519 </context-group> 1360 </context-group>
1520 </trans-unit> 1361 </trans-unit>
1521 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6"> 1362 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6">
@@ -1525,25 +1366,11 @@ Cochez cette case, sauvegardez la configuration et testez avec l'URL d'une vidé
1525 <context context-type="linenumber">3</context> 1366 <context context-type="linenumber">3</context>
1526 </context-group> 1367 </context-group>
1527 </trans-unit> 1368 </trans-unit>
1528 <trans-unit id="520d68b2c9f7dacaf2a5073716cad9bd328ea7e7">
1529 <source>My video channels</source>
1530 <target>Mes chaînes vidéos</target>
1531 <context-group name="null">
1532 <context context-type="linenumber">5</context>
1533 </context-group>
1534 </trans-unit>
1535 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894"> 1369 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894">
1536 <source>My videos</source> 1370 <source>My videos</source>
1537 <target>Mes vidéos</target> 1371 <target>Mes vidéos</target>
1538 <context-group name="null"> 1372 <context-group name="null">
1539 <context context-type="linenumber">7</context> 1373 <context context-type="linenumber">14</context>
1540 </context-group>
1541 </trans-unit>
1542 <trans-unit id="0bb0c57c6d12635d26996c124248e748b666e5ad">
1543 <source>My video imports</source>
1544 <target>Mes imports de vidéos</target>
1545 <context-group name="null">
1546 <context context-type="linenumber">9</context>
1547 </context-group> 1374 </context-group>
1548 </trans-unit> 1375 </trans-unit>
1549 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48"> 1376 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48">
@@ -1574,6 +1401,13 @@ Cochez cette case, sauvegardez la configuration et testez avec l'URL d'une vidé
1574 <context context-type="linenumber">18</context> 1401 <context context-type="linenumber">18</context>
1575 </context-group> 1402 </context-group>
1576 </trans-unit> 1403 </trans-unit>
1404 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
1405 <source>Submit</source>
1406 <target>Envoyer</target>
1407 <context-group name="null">
1408 <context context-type="linenumber">24</context>
1409 </context-group>
1410 </trans-unit>
1577 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79"> 1411 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79">
1578 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 1412 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
1579 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> vues</target> 1413 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> vues</target>
@@ -1581,11 +1415,15 @@ Cochez cette case, sauvegardez la configuration et testez avec l'URL d'une vidé
1581 <context context-type="linenumber">19</context> 1415 <context context-type="linenumber">19</context>
1582 </context-group> 1416 </context-group>
1583 </trans-unit> 1417 </trans-unit>
1584 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7"> 1418 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
1585 <source>Delete</source> 1419 <source>
1586 <target>Supprimer</target> 1420 Cancel
1421 </source>
1422 <target>
1423 Annulé
1424 </target>
1587 <context-group name="null"> 1425 <context-group name="null">
1588 <context context-type="linenumber">15</context> 1426 <context context-type="linenumber">30</context>
1589 </context-group> 1427 </context-group>
1590 </trans-unit> 1428 </trans-unit>
1591 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260"> 1429 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260">
@@ -1599,7 +1437,7 @@ Cochez cette case, sauvegardez la configuration et testez avec l'URL d'une vidé
1599 <source>Go to the channel</source> 1437 <source>Go to the channel</source>
1600 <target>Aller sur la chaine</target> 1438 <target>Aller sur la chaine</target>
1601 <context-group name="null"> 1439 <context-group name="null">
1602 <context context-type="linenumber">15</context> 1440 <context context-type="linenumber">8</context>
1603 </context-group> 1441 </context-group>
1604 </trans-unit> 1442 </trans-unit>
1605 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68"> 1443 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68">
@@ -1622,7 +1460,7 @@ When you will upload a video in this channel, the video support field will be au
1622 <target>Texte court pour décrire les moyens mis à disposition de ceux qui souhaiteraient vous soutenir (plateforme de financement participatif, etc.).&lt;br /&gt;&lt;br /&gt; 1460 <target>Texte court pour décrire les moyens mis à disposition de ceux qui souhaiteraient vous soutenir (plateforme de financement participatif, etc.).&lt;br /&gt;&lt;br /&gt;
1623Quand vous mettrez en ligne une vidéo sur cette chaîne, la vidéo affichera automatiquement un bouton pour afficher ce texte.</target> 1461Quand vous mettrez en ligne une vidéo sur cette chaîne, la vidéo affichera automatiquement un bouton pour afficher ce texte.</target>
1624 <context-group name="null"> 1462 <context-group name="null">
1625 <context context-type="linenumber">36</context> 1463 <context context-type="linenumber">52</context>
1626 </context-group> 1464 </context-group>
1627 </trans-unit> 1465 </trans-unit>
1628 <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191"> 1466 <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191">
@@ -1632,11 +1470,25 @@ Quand vous mettrez en ligne une vidéo sur cette chaîne, la vidéo affichera au
1632 <context context-type="linenumber">8</context> 1470 <context context-type="linenumber">8</context>
1633 </context-group> 1471 </context-group>
1634 </trans-unit> 1472 </trans-unit>
1473 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1474 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1475 <target>Créée par <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1476 <context-group name="null">
1477 <context context-type="linenumber">17</context>
1478 </context-group>
1479 </trans-unit>
1480 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1481 <source>Go the owner account page</source>
1482 <target>Aller au compte du propriétaire</target>
1483 <context-group name="null">
1484 <context context-type="linenumber">16</context>
1485 </context-group>
1486 </trans-unit>
1635 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9"> 1487 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9">
1636 <source>Change password</source> 1488 <source>Change password</source>
1637 <target>Changer le mot de passe</target> 1489 <target>Changer le mot de passe</target>
1638 <context-group name="null"> 1490 <context-group name="null">
1639 <context context-type="linenumber">19</context> 1491 <context context-type="linenumber">22</context>
1640 </context-group> 1492 </context-group>
1641 </trans-unit> 1493 </trans-unit>
1642 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229"> 1494 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229">
@@ -1713,20 +1565,6 @@ Quand vous mettrez en ligne une vidéo sur cette chaîne, la vidéo affichera au
1713 <context context-type="linenumber">1</context> 1565 <context context-type="linenumber">1</context>
1714 </context-group> 1566 </context-group>
1715 </trans-unit> 1567 </trans-unit>
1716 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1717 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1718 <target>Créée par <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1719 <context-group name="null">
1720 <context context-type="linenumber">14</context>
1721 </context-group>
1722 </trans-unit>
1723 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1724 <source>Go the owner account page</source>
1725 <target>Aller au compte du propriétaire</target>
1726 <context-group name="null">
1727 <context context-type="linenumber">13</context>
1728 </context-group>
1729 </trans-unit>
1730 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8"> 1568 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8">
1731 <source>Support this channel</source> 1569 <source>Support this channel</source>
1732 <target>Soutenir cette chaîne</target> 1570 <target>Soutenir cette chaîne</target>
@@ -1745,7 +1583,7 @@ Quand vous mettrez en ligne une vidéo sur cette chaîne, la vidéo affichera au
1745 <source>URL</source> 1583 <source>URL</source>
1746 <target>URL</target> 1584 <target>URL</target>
1747 <context-group name="null"> 1585 <context-group name="null">
1748 <context context-type="linenumber">12</context> 1586 <context context-type="linenumber">17</context>
1749 </context-group> 1587 </context-group>
1750 </trans-unit> 1588 </trans-unit>
1751 <trans-unit id="bfe7f34fbd4c3afa5f84a5580e0fae942cad2333"> 1589 <trans-unit id="bfe7f34fbd4c3afa5f84a5580e0fae942cad2333">
@@ -1760,14 +1598,14 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
1760 <source>Channel</source> 1598 <source>Channel</source>
1761 <target>Chaîne</target> 1599 <target>Chaîne</target>
1762 <context-group name="null"> 1600 <context-group name="null">
1763 <context context-type="linenumber">35</context> 1601 <context context-type="linenumber">38</context>
1764 </context-group> 1602 </context-group>
1765 </trans-unit> 1603 </trans-unit>
1766 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427"> 1604 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427">
1767 <source>Privacy</source> 1605 <source>Privacy</source>
1768 <target>Confidentialité</target> 1606 <target>Confidentialité</target>
1769 <context-group name="null"> 1607 <context-group name="null">
1770 <context context-type="linenumber">143</context> 1608 <context context-type="linenumber">161</context>
1771 </context-group> 1609 </context-group>
1772 </trans-unit> 1610 </trans-unit>
1773 <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2"> 1611 <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2">
@@ -1785,7 +1623,7 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
1785 <source>Update</source> 1623 <source>Update</source>
1786 <target>Mettre à jour</target> 1624 <target>Mettre à jour</target>
1787 <context-group name="null"> 1625 <context-group name="null">
1788 <context context-type="linenumber">105</context> 1626 <context context-type="linenumber">92</context>
1789 </context-group> 1627 </context-group>
1790 </trans-unit> 1628 </trans-unit>
1791 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> 1629 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9">
@@ -1860,46 +1698,35 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
1860 <source>Upload a file</source> 1698 <source>Upload a file</source>
1861 <target>Déverser un fichier</target> 1699 <target>Déverser un fichier</target>
1862 <context-group name="null"> 1700 <context-group name="null">
1863 <context context-type="linenumber">9</context> 1701 <context context-type="linenumber">10</context>
1864 </context-group> 1702 </context-group>
1865 </trans-unit> 1703 </trans-unit>
1866 <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470"> 1704 <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470">
1867 <source>Import with URL</source> 1705 <source>Import with URL</source>
1868 <target>Importer avec une URL</target> 1706 <target>Importer avec une URL</target>
1869 <context-group name="null"> 1707 <context-group name="null">
1870 <context context-type="linenumber">13</context> 1708 <context context-type="linenumber">17</context>
1871 </context-group> 1709 </context-group>
1872 </trans-unit> 1710 </trans-unit>
1873 <trans-unit id="752c401d7dcd708944eef60e411187f71d882340"> 1711 <trans-unit id="752c401d7dcd708944eef60e411187f71d882340">
1874 <source>Import with torrent</source> 1712 <source>Import with torrent</source>
1875 <target>Importer avec un torrent</target> 1713 <target>Importer avec un torrent</target>
1876 <context-group name="null"> 1714 <context-group name="null">
1877 <context context-type="linenumber">17</context> 1715 <context context-type="linenumber">24</context>
1878 </context-group> 1716 </context-group>
1879 </trans-unit> 1717 </trans-unit>
1880 <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0"> 1718 <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0">
1881 <source>Add caption</source> 1719 <source>Add caption</source>
1882 <target>Ajouter un sous-titre</target> 1720 <target>Ajouter un sous-titre</target>
1883 <context-group name="null"> 1721 <context-group name="null">
1884 <context context-type="linenumber">7</context> 1722 <context context-type="linenumber">5</context>
1885 </context-group> 1723 </context-group>
1886 </trans-unit> 1724 </trans-unit>
1887 <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8"> 1725 <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8">
1888 <source>Select the caption file</source> 1726 <source>Select the caption file</source>
1889 <target>Choisir le fichier de sous-titre</target> 1727 <target>Choisir le fichier de sous-titre</target>
1890 <context-group name="null"> 1728 <context-group name="null">
1891 <context context-type="linenumber">25</context> 1729 <context context-type="linenumber">24</context>
1892 </context-group>
1893 </trans-unit>
1894 <trans-unit id="a40a8a9f8359eda00c6a79809e9499100fde3ffd">
1895 <source>
1896 This will replace an existing caption!
1897 </source>
1898 <target>
1899 Cela va replacer les sous-titres existants !
1900 </target>
1901 <context-group name="null">
1902 <context context-type="linenumber">30</context>
1903 </context-group> 1730 </context-group>
1904 </trans-unit> 1731 </trans-unit>
1905 <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c"> 1732 <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c">
@@ -1913,70 +1740,63 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
1913 <source>Title</source> 1740 <source>Title</source>
1914 <target>Titre</target> 1741 <target>Titre</target>
1915 <context-group name="null"> 1742 <context-group name="null">
1916 <context context-type="linenumber">7</context> 1743 <context context-type="linenumber">9</context>
1917 </context-group> 1744 </context-group>
1918 </trans-unit> 1745 </trans-unit>
1919 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b"> 1746 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b">
1920 <source>Tags</source> 1747 <source>Tags</source>
1921 <target>Étiquettes</target> 1748 <target>Étiquettes</target>
1922 <context-group name="null"> 1749 <context-group name="null">
1923 <context context-type="linenumber">175</context> 1750 <context context-type="linenumber">193</context>
1924 </context-group>
1925 </trans-unit>
1926 <trans-unit id="935e7146fe6c12169abfda18536c5856935cfd82">
1927 <source>(press Enter to add)</source>
1928 <target>(presser Entrée pour ajouter)</target>
1929 <context-group name="null">
1930 <context context-type="linenumber">15</context>
1931 </context-group> 1751 </context-group>
1932 </trans-unit> 1752 </trans-unit>
1933 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e"> 1753 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e">
1934 <source>Video descriptions are truncated by default and require manual action to expand them.</source> 1754 <source>Video descriptions are truncated by default and require manual action to expand them.</source>
1935 <target>Les descriptions des vidéos sont tronquées par défaut et requièrent une action manuelle pour être pleinement affichées.</target> 1755 <target>Les descriptions des vidéos sont tronquées par défaut et requièrent une action manuelle pour être pleinement affichées.</target>
1936 <context-group name="null"> 1756 <context-group name="null">
1937 <context context-type="linenumber">24</context> 1757 <context context-type="linenumber">27</context>
1938 </context-group> 1758 </context-group>
1939 </trans-unit> 1759 </trans-unit>
1940 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> 1760 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5">
1941 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source> 1761 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source>
1942 <target>Programmation de la publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target> 1762 <target>Programmation de la publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target>
1943 <context-group name="null"> 1763 <context-group name="null">
1944 <context context-type="linenumber">101</context> 1764 <context context-type="linenumber">104</context>
1945 </context-group> 1765 </context-group>
1946 </trans-unit> 1766 </trans-unit>
1947 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee"> 1767 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee">
1948 <source>This video contains mature or explicit content</source> 1768 <source>This video contains mature or explicit content</source>
1949 <target>Cette vidéo contient du contenu sensible</target> 1769 <target>Cette vidéo contient du contenu sensible</target>
1950 <context-group name="null"> 1770 <context-group name="null">
1951 <context context-type="linenumber">115</context> 1771 <context context-type="linenumber">118</context>
1952 </context-group> 1772 </context-group>
1953 </trans-unit> 1773 </trans-unit>
1954 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644"> 1774 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644">
1955 <source>Some instances do not list videos containing mature or explicit content by default.</source> 1775 <source>Some instances do not list videos containing mature or explicit content by default.</source>
1956 <target>Certaines instances ne listent pas, par défaut, des vidéos sensibles ou avec du contenu pour adultes.</target> 1776 <target>Certaines instances ne listent pas, par défaut, des vidéos sensibles ou avec du contenu pour adultes.</target>
1957 <context-group name="null"> 1777 <context-group name="null">
1958 <context context-type="linenumber">116</context> 1778 <context context-type="linenumber">119</context>
1959 </context-group> 1779 </context-group>
1960 </trans-unit> 1780 </trans-unit>
1961 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a"> 1781 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a">
1962 <source>Enable video comments</source> 1782 <source>Enable video comments</source>
1963 <target>Activer les commentaires</target> 1783 <target>Activer les commentaires</target>
1964 <context-group name="null"> 1784 <context-group name="null">
1965 <context context-type="linenumber">121</context> 1785 <context context-type="linenumber">124</context>
1966 </context-group> 1786 </context-group>
1967 </trans-unit> 1787 </trans-unit>
1968 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0"> 1788 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0">
1969 <source>Wait transcoding before publishing the video</source> 1789 <source>Wait transcoding before publishing the video</source>
1970 <target>Attendre l'encodage avant de publier la vidéo</target> 1790 <target>Attendre l'encodage avant de publier la vidéo</target>
1971 <context-group name="null"> 1791 <context-group name="null">
1972 <context context-type="linenumber">126</context> 1792 <context context-type="linenumber">129</context>
1973 </context-group> 1793 </context-group>
1974 </trans-unit> 1794 </trans-unit>
1975 <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63"> 1795 <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63">
1976 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source> 1796 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source>
1977 <target>Si vous décidez de ne pas attendre la fin du traitement avant la publication de la vidéo, elle pourrait bien être injouable.</target> 1797 <target>Si vous décidez de ne pas attendre la fin du traitement avant la publication de la vidéo, elle pourrait bien être injouable.</target>
1978 <context-group name="null"> 1798 <context-group name="null">
1979 <context context-type="linenumber">127</context> 1799 <context context-type="linenumber">130</context>
1980 </context-group> 1800 </context-group>
1981 </trans-unit> 1801 </trans-unit>
1982 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7"> 1802 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7">
@@ -1990,70 +1810,70 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
1990 <source>Add another caption</source> 1810 <source>Add another caption</source>
1991 <target>Ajouter un nouveau sous-titre</target> 1811 <target>Ajouter un nouveau sous-titre</target>
1992 <context-group name="null"> 1812 <context-group name="null">
1993 <context context-type="linenumber">139</context> 1813 <context context-type="linenumber">145</context>
1994 </context-group> 1814 </context-group>
1995 </trans-unit> 1815 </trans-unit>
1996 <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed"> 1816 <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed">
1997 <source>See the subtitle file</source> 1817 <source>See the subtitle file</source>
1998 <target>Voir le fichier de sous-titre</target> 1818 <target>Voir le fichier de sous-titre</target>
1999 <context-group name="null"> 1819 <context-group name="null">
2000 <context context-type="linenumber">148</context> 1820 <context context-type="linenumber">154</context>
2001 </context-group> 1821 </context-group>
2002 </trans-unit> 1822 </trans-unit>
2003 <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9"> 1823 <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9">
2004 <source>Cancel create</source> 1824 <source>Cancel create</source>
2005 <target>Annuler la création</target> 1825 <target>Annuler la création</target>
2006 <context-group name="null"> 1826 <context-group name="null">
2007 <context context-type="linenumber">162</context> 1827 <context context-type="linenumber">168</context>
2008 </context-group> 1828 </context-group>
2009 </trans-unit> 1829 </trans-unit>
2010 <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c"> 1830 <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c">
2011 <source>Cancel deletion</source> 1831 <source>Cancel deletion</source>
2012 <target>Annuler la suppression</target> 1832 <target>Annuler la suppression</target>
2013 <context-group name="null"> 1833 <context-group name="null">
2014 <context context-type="linenumber">170</context> 1834 <context context-type="linenumber">176</context>
2015 </context-group> 1835 </context-group>
2016 </trans-unit> 1836 </trans-unit>
2017 <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93"> 1837 <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93">
2018 <source>Captions</source> 1838 <source>Captions</source>
2019 <target>Sous-titre</target> 1839 <target>Sous-titre</target>
2020 <context-group name="null"> 1840 <context-group name="null">
2021 <context context-type="linenumber">133</context> 1841 <context context-type="linenumber">138</context>
2022 </context-group> 1842 </context-group>
2023 </trans-unit> 1843 </trans-unit>
2024 <trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513"> 1844 <trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513">
2025 <source>Upload thumbnail</source> 1845 <source>Upload thumbnail</source>
2026 <target>Téléverser une vignette</target> 1846 <target>Téléverser une vignette</target>
2027 <context-group name="null"> 1847 <context-group name="null">
2028 <context context-type="linenumber">186</context> 1848 <context context-type="linenumber">194</context>
2029 </context-group> 1849 </context-group>
2030 </trans-unit> 1850 </trans-unit>
2031 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639"> 1851 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639">
2032 <source>Upload preview</source> 1852 <source>Upload preview</source>
2033 <target>Téléverser un aperçu</target> 1853 <target>Téléverser un aperçu</target>
2034 <context-group name="null"> 1854 <context-group name="null">
2035 <context context-type="linenumber">193</context> 1855 <context context-type="linenumber">201</context>
2036 </context-group> 1856 </context-group>
2037 </trans-unit> 1857 </trans-unit>
2038 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604"> 1858 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604">
2039 <source>Support</source> 1859 <source>Support</source>
2040 <target>Soutenir</target> 1860 <target>Soutenir</target>
2041 <context-group name="null"> 1861 <context-group name="null">
2042 <context context-type="linenumber">71</context> 1862 <context context-type="linenumber">69</context>
2043 </context-group> 1863 </context-group>
2044 </trans-unit> 1864 </trans-unit>
2045 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0"> 1865 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0">
2046 <source>Short text to tell people how they can support you (membership platform...).</source> 1866 <source>Short text to tell people how they can support you (membership platform...).</source>
2047 <target>Courte description des moyens qu'ont les utilisateurs de vous soutenir (financement participatif, etc.).</target> 1867 <target>Courte description des moyens qu'ont les utilisateurs de vous soutenir (financement participatif, etc.).</target>
2048 <context-group name="null"> 1868 <context-group name="null">
2049 <context context-type="linenumber">200</context> 1869 <context context-type="linenumber">208</context>
2050 </context-group> 1870 </context-group>
2051 </trans-unit> 1871 </trans-unit>
2052 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1"> 1872 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1">
2053 <source>Advanced settings</source> 1873 <source>Advanced settings</source>
2054 <target>Paramétrage avancé</target> 1874 <target>Paramétrage avancé</target>
2055 <context-group name="null"> 1875 <context-group name="null">
2056 <context context-type="linenumber">182</context> 1876 <context context-type="linenumber">189</context>
2057 </context-group> 1877 </context-group>
2058 </trans-unit> 1878 </trans-unit>
2059 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0"> 1879 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0">
@@ -2071,99 +1891,63 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
2071 <source>Download video</source> 1891 <source>Download video</source>
2072 <target>Télécharger la vidéo</target> 1892 <target>Télécharger la vidéo</target>
2073 <context-group name="null"> 1893 <context-group name="null">
2074 <context context-type="linenumber">7</context> 1894 <context context-type="linenumber">3</context>
2075 </context-group> 1895 </context-group>
2076 </trans-unit> 1896 </trans-unit>
2077 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c"> 1897 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c">
2078 <source>Direct download</source> 1898 <source>Direct download</source>
2079 <target>Téléchargement direct</target> 1899 <target>Téléchargement direct</target>
2080 <context-group name="null"> 1900 <context-group name="null">
2081 <context context-type="linenumber">20</context> 1901 <context context-type="linenumber">17</context>
2082 </context-group> 1902 </context-group>
2083 </trans-unit> 1903 </trans-unit>
2084 <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d"> 1904 <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d">
2085 <source>Torrent (.torrent file)</source> 1905 <source>Torrent (.torrent file)</source>
2086 <target>Torrent (fichier .torrent)</target> 1906 <target>Torrent (fichier .torrent)</target>
2087 <context-group name="null"> 1907 <context-group name="null">
2088 <context context-type="linenumber">25</context> 1908 <context context-type="linenumber">22</context>
2089 </context-group> 1909 </context-group>
2090 </trans-unit> 1910 </trans-unit>
2091 <trans-unit id="2db8d7cf6a3071f4c1519ef2b5e2713d9ff4e87f"> 1911 <trans-unit id="2db8d7cf6a3071f4c1519ef2b5e2713d9ff4e87f">
2092 <source>Torrent (magnet link)</source> 1912 <source>Torrent (magnet link)</source>
2093 <target>Torrent (URL magnet)</target> 1913 <target>Torrent (URL magnet)</target>
2094 <context-group name="null"> 1914 <context-group name="null">
2095 <context context-type="linenumber">30</context> 1915 <context context-type="linenumber">27</context>
2096 </context-group> 1916 </context-group>
2097 </trans-unit> 1917 </trans-unit>
2098 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> 1918 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd">
2099 <source>Download</source> 1919 <source>Download</source>
2100 <target>Télécharger</target> 1920 <target>Télécharger</target>
2101 <context-group name="null"> 1921 <context-group name="null">
2102 <context context-type="linenumber">87</context> 1922 <context context-type="linenumber">84</context>
2103 </context-group> 1923 </context-group>
2104 </trans-unit> 1924 </trans-unit>
2105 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b"> 1925 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b">
2106 <source>Report video</source> 1926 <source>Report video</source>
2107 <target>Signaler la vidéo</target> 1927 <target>Signaler la vidéo</target>
2108 <context-group name="null"> 1928 <context-group name="null">
2109 <context context-type="linenumber">7</context> 1929 <context context-type="linenumber">3</context>
2110 </context-group>
2111 </trans-unit>
2112 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
2113 <source>Reason...</source>
2114 <target>Motivation…</target>
2115 <context-group name="null">
2116 <context context-type="linenumber">14</context>
2117 </context-group>
2118 </trans-unit>
2119 <trans-unit id="0e6b8229bd65f93bc8040d0fb598967f220740c7">
2120 <source>
2121 Cancel
2122 </source>
2123 <target>
2124 Annuler
2125 </target>
2126 <context-group name="null">
2127 <context context-type="linenumber">22</context>
2128 </context-group>
2129 </trans-unit>
2130 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
2131 <source>Submit</source>
2132 <target>Envoyer</target>
2133 <context-group name="null">
2134 <context context-type="linenumber">27</context>
2135 </context-group> 1930 </context-group>
2136 </trans-unit> 1931 </trans-unit>
2137 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9"> 1932 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9">
2138 <source>Share</source> 1933 <source>Share</source>
2139 <target>Partager</target> 1934 <target>Partager</target>
2140 <context-group name="null"> 1935 <context-group name="null">
2141 <context context-type="linenumber">76</context> 1936 <context context-type="linenumber">74</context>
2142 </context-group>
2143 </trans-unit>
2144 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
2145 <source>Embed</source>
2146 <target>Intégration</target>
2147 <context-group name="null">
2148 <context context-type="linenumber">24</context>
2149 </context-group>
2150 </trans-unit>
2151 <trans-unit id="239fe0316cfe91aa6e1e7bf1ef19e3b7772131f8">
2152 <source>
2153 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).
2154 </source>
2155 <target>
2156 Cette URL n'est pas sécurisée (pas d'HTTPS), donc l'intégration vidéo ne marchera pas sur les sites utilisant HTTPS (Les navigateurs bloquent les requêtes HTTP non sécurisées).
2157 </target>
2158 <context-group name="null">
2159 <context context-type="linenumber">35</context>
2160 </context-group> 1937 </context-group>
2161 </trans-unit> 1938 </trans-unit>
2162 <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f"> 1939 <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f">
2163 <source>QR-Code</source> 1940 <source>QR-Code</source>
2164 <target>QR-Code</target> 1941 <target>QR-Code</target>
2165 <context-group name="null"> 1942 <context-group name="null">
2166 <context context-type="linenumber">40</context> 1943 <context context-type="linenumber">29</context>
1944 </context-group>
1945 </trans-unit>
1946 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
1947 <source>Embed</source>
1948 <target>Intégration</target>
1949 <context-group name="null">
1950 <context context-type="linenumber">34</context>
2167 </context-group> 1951 </context-group>
2168 </trans-unit> 1952 </trans-unit>
2169 <trans-unit id="7584313e33a66811eb10646627914a01fff0347d"> 1953 <trans-unit id="7584313e33a66811eb10646627914a01fff0347d">
@@ -2188,173 +1972,116 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
2188 <context context-type="linenumber">15</context> 1972 <context context-type="linenumber">15</context>
2189 </context-group> 1973 </context-group>
2190 </trans-unit> 1974 </trans-unit>
2191 <trans-unit id="fbc205ea3d06fa8f65973fa3b490ae172f71c087">
2192 <source>
2193 This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
2194 </source>
2195 <target>
2196 Cette vidéo sera publiée le <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
2197 </target>
2198 <context-group name="null">
2199 <context context-type="linenumber">19</context>
2200 </context-group>
2201 </trans-unit>
2202 <trans-unit id="643ab402461b1169eebbe2ed790e12a9a83551aa">
2203 <source>
2204 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views
2205 </source>
2206 <target>
2207 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> vues </target>
2208 <context-group name="null">
2209 <context context-type="linenumber">30</context>
2210 </context-group>
2211 </trans-unit>
2212 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
2213 <source>Go the channel page</source>
2214 <target>Aller à la page des chaînes</target>
2215 <context-group name="null">
2216 <context context-type="linenumber">35</context>
2217 </context-group>
2218 </trans-unit>
2219 <trans-unit id="ccc07df383b7a32be3e2e105faa5488caf261c1c">
2220 <source>By <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></source>
2221 <target>Par <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></target>
2222 <context-group name="null">
2223 <context context-type="linenumber">45</context>
2224 </context-group>
2225 </trans-unit>
2226 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
2227 <source>Go to the account page</source>
2228 <target>Accéder au profil public de l'utilisateur</target>
2229 <context-group name="null">
2230 <context context-type="linenumber">44</context>
2231 </context-group>
2232 </trans-unit>
2233 <trans-unit id="57075c778cf28b81272df4eb17da944366c98e51">
2234 <source>You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; and subscribe there. Subscription as a PeerTube user is being worked on in &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</source>
2235 <target>Vous pouvez vous abonner à ce compte en utilisant une instance utilisant le protocole ActivityPub. Par exemple, avec Mastodon ou Pleroma vous pouvez taper dans le champ de recherche : &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; et s'abonner. S'abonner comme un utilisateur de PeerTube est en cours de développement, cela peut être suivi via cette issue : &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</target>
2236 <context-group name="null">
2237 <context context-type="linenumber">49</context>
2238 </context-group>
2239 </trans-unit>
2240 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced"> 1975 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced">
2241 <source>Like this video</source> 1976 <source>Like this video</source>
2242 <target>J'aime cette vidéo</target> 1977 <target>J'aime cette vidéo</target>
2243 <context-group name="null"> 1978 <context-group name="null">
2244 <context context-type="linenumber">59</context> 1979 <context context-type="linenumber">57</context>
2245 </context-group> 1980 </context-group>
2246 </trans-unit> 1981 </trans-unit>
2247 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509"> 1982 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509">
2248 <source>Dislike this video</source> 1983 <source>Dislike this video</source>
2249 <target>Je n'aime pas cette vidéo</target> 1984 <target>Je n'aime pas cette vidéo</target>
2250 <context-group name="null"> 1985 <context-group name="null">
2251 <context context-type="linenumber">66</context> 1986 <context context-type="linenumber">64</context>
2252 </context-group> 1987 </context-group>
2253 </trans-unit> 1988 </trans-unit>
2254 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2"> 1989 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2">
2255 <source>Download the video</source> 1990 <source>Download the video</source>
2256 <target>Télécharger la vidéo</target> 1991 <target>Télécharger la vidéo</target>
2257 <context-group name="null"> 1992 <context-group name="null">
2258 <context context-type="linenumber">86</context> 1993 <context context-type="linenumber">83</context>
2259 </context-group> 1994 </context-group>
2260 </trans-unit> 1995 </trans-unit>
2261 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a"> 1996 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a">
2262 <source>Report</source> 1997 <source>Report</source>
2263 <target>Signaler</target> 1998 <target>Signaler</target>
2264 <context-group name="null"> 1999 <context-group name="null">
2265 <context context-type="linenumber">93</context> 2000 <context context-type="linenumber">88</context>
2266 </context-group> 2001 </context-group>
2267 </trans-unit> 2002 </trans-unit>
2268 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf"> 2003 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf">
2269 <source>Report this video</source> 2004 <source>Report this video</source>
2270 <target>Signaler cette vidéo</target> 2005 <target>Signaler cette vidéo</target>
2271 <context-group name="null"> 2006 <context-group name="null">
2272 <context context-type="linenumber">92</context> 2007 <context context-type="linenumber">87</context>
2008 </context-group>
2009 </trans-unit>
2010 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1">
2011 <source>Update this video</source>
2012 <target>Mettre à jour cette vidéo</target>
2013 <context-group name="null">
2014 <context context-type="linenumber">91</context>
2273 </context-group> 2015 </context-group>
2274 </trans-unit> 2016 </trans-unit>
2275 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61"> 2017 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61">
2276 <source>Blacklist</source> 2018 <source>Blacklist</source>
2277 <target>Blacklister</target> 2019 <target>Blacklister</target>
2278 <context-group name="null"> 2020 <context-group name="null">
2279 <context context-type="linenumber">99</context> 2021 <context context-type="linenumber">96</context>
2280 </context-group> 2022 </context-group>
2281 </trans-unit> 2023 </trans-unit>
2282 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037"> 2024 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037">
2283 <source>Blacklist this video</source> 2025 <source>Blacklist this video</source>
2284 <target>Blacklister cette vidéo</target> 2026 <target>Blacklister cette vidéo</target>
2285 <context-group name="null"> 2027 <context-group name="null">
2286 <context context-type="linenumber">98</context> 2028 <context context-type="linenumber">95</context>
2287 </context-group> 2029 </context-group>
2288 </trans-unit> 2030 </trans-unit>
2289 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1"> 2031 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
2290 <source>Update this video</source> 2032 <source>Unblacklist</source>
2291 <target>Mettre à jour cette vidéo</target> 2033 <target>Retirer de la liste noir</target>
2292 <context-group name="null"> 2034 <context-group name="null">
2293 <context context-type="linenumber">104</context> 2035 <context context-type="linenumber">100</context>
2294 </context-group> 2036 </context-group>
2295 </trans-unit> 2037 </trans-unit>
2296 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5"> 2038 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5">
2297 <source>Delete this video</source> 2039 <source>Delete this video</source>
2298 <target>Supprimer cette vidéo</target> 2040 <target>Supprimer cette vidéo</target>
2299 <context-group name="null"> 2041 <context-group name="null">
2300 <context context-type="linenumber">110</context> 2042 <context context-type="linenumber">103</context>
2301 </context-group>
2302 </trans-unit>
2303 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b">
2304 <source>Show more</source>
2305 <target>Voir plus</target>
2306 <context-group name="null">
2307 <context context-type="linenumber">130</context>
2308 </context-group> 2043 </context-group>
2309 </trans-unit> 2044 </trans-unit>
2310 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903"> 2045 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
2311 <source>Show less</source> 2046 <source>Go the channel page</source>
2312 <target>Montrer moins</target> 2047 <target>Aller à la page des chaînes</target>
2313 <context-group name="null"> 2048 <context-group name="null">
2314 <context context-type="linenumber">136</context> 2049 <context context-type="linenumber">123</context>
2315 </context-group> 2050 </context-group>
2316 </trans-unit> 2051 </trans-unit>
2317 <trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1"> 2052 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
2318 <source> 2053 <source>Go to the account page</source>
2319 Other videos 2054 <target>Accéder au profil public de l'utilisateur</target>
2320 </source>
2321 <target>
2322 Autres vidéos
2323 </target>
2324 <context-group name="null"> 2055 <context-group name="null">
2325 <context context-type="linenumber">187</context> 2056 <context context-type="linenumber">133</context>
2326 </context-group> 2057 </context-group>
2327 </trans-unit> 2058 </trans-unit>
2328 <trans-unit id="fb779d2b25c4d0ffa7d52c823a240717e8c1fe6c"> 2059 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b">
2329 <source>Friendly Reminder:</source> 2060 <source>Show more</source>
2330 <target>Rappel :</target> 2061 <target>Voir plus</target>
2331 <context-group name="null"> 2062 <context-group name="null">
2332 <context context-type="linenumber">199</context> 2063 <context context-type="linenumber">148</context>
2333 </context-group> 2064 </context-group>
2334 </trans-unit> 2065 </trans-unit>
2335 <trans-unit id="329900dd14bc4ca33cec3775d25c246e4cde7867"> 2066 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903">
2336 <source> 2067 <source>Show less</source>
2337 The sharing system used by this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. 2068 <target>Montrer moins</target>
2338 </source>
2339 <target>
2340 Le système de partage implique d'envoyer certaine information technique (comme votre navigateur, OS, IP, ...) à d'autre pairs.
2341 </target>
2342 <context-group name="null"> 2069 <context-group name="null">
2343 <context context-type="linenumber">201</context> 2070 <context context-type="linenumber">154</context>
2344 </context-group> 2071 </context-group>
2345 </trans-unit> 2072 </trans-unit>
2346 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e"> 2073 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e">
2347 <source>More information</source> 2074 <source>More information</source>
2348 <target>Plus d'informations</target> 2075 <target>Plus d'informations</target>
2349 <context-group name="null"> 2076 <context-group name="null">
2350 <context context-type="linenumber">204</context> 2077 <context context-type="linenumber">214</context>
2351 </context-group> 2078 </context-group>
2352 </trans-unit> 2079 </trans-unit>
2353 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318"> 2080 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318">
2354 <source>Get more information</source> 2081 <source>Get more information</source>
2355 <target>Obtenir plus d'informations</target> 2082 <target>Obtenir plus d'informations</target>
2356 <context-group name="null"> 2083 <context-group name="null">
2357 <context context-type="linenumber">204</context> 2084 <context context-type="linenumber">214</context>
2358 </context-group> 2085 </context-group>
2359 </trans-unit> 2086 </trans-unit>
2360 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f"> 2087 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f">
@@ -2365,7 +2092,7 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
2365 OK 2092 OK
2366 </target> 2093 </target>
2367 <context-group name="null"> 2094 <context-group name="null">
2368 <context context-type="linenumber">207</context> 2095 <context context-type="linenumber">217</context>
2369 </context-group> 2096 </context-group>
2370 </trans-unit> 2097 </trans-unit>
2371 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7"> 2098 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7">
@@ -2426,7 +2153,7 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
2426 Poster un commentaire 2153 Poster un commentaire
2427 </target> 2154 </target>
2428 <context-group name="null"> 2155 <context-group name="null">
2429 <context context-type="linenumber">17</context> 2156 <context context-type="linenumber">18</context>
2430 </context-group> 2157 </context-group>
2431 </trans-unit> 2158 </trans-unit>
2432 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> 2159 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285">
@@ -2590,23 +2317,9 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
2590 <context context-type="linenumber">1</context> 2317 <context context-type="linenumber">1</context>
2591 </context-group> 2318 </context-group>
2592 </trans-unit> 2319 </trans-unit>
2593 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936"> 2320 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2594 <source>Following</source> 2321 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2595 <target>Abonnements</target> 2322 <target>Vidéo <x id="INTERPOLATION" equiv-text="{{name}}"/> supprimée de la liste noire.</target>
2596 <context-group name="null">
2597 <context context-type="linenumber">1</context>
2598 </context-group>
2599 </trans-unit>
2600 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
2601 <source>Follow</source>
2602 <target>S'abonner</target>
2603 <context-group name="null">
2604 <context context-type="linenumber">1</context>
2605 </context-group>
2606 </trans-unit>
2607 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
2608 <source>Followers</source>
2609 <target>Abonnés</target>
2610 <context-group name="null"> 2323 <context-group name="null">
2611 <context context-type="linenumber">1</context> 2324 <context context-type="linenumber">1</context>
2612 </context-group> 2325 </context-group>
@@ -2660,27 +2373,6 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
2660 <context context-type="linenumber">1</context> 2373 <context context-type="linenumber">1</context>
2661 </context-group> 2374 </context-group>
2662 </trans-unit> 2375 </trans-unit>
2663 <trans-unit id="4733ad1d7e63960438c0203b9a64f165b5fc84f2">
2664 <source>Do you really want to remove this video from the blacklist ? It will be available again in the videos list.</source>
2665 <target>Êtes-vous sûr de vouloir supprimer cette vidéo de la liste noire ? Elle sera de nouveau visible dans la liste de vidéos.</target>
2666 <context-group name="null">
2667 <context context-type="linenumber">1</context>
2668 </context-group>
2669 </trans-unit>
2670 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2671 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2672 <target>Vidéo <x id="INTERPOLATION" equiv-text="{{name}}"/> supprimée de la liste noire.</target>
2673 <context-group name="null">
2674 <context context-type="linenumber">1</context>
2675 </context-group>
2676 </trans-unit>
2677 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2678 <source>The new password and the confirmed password do not correspond.</source>
2679 <target>Les mots de passe ne correspondent pas.</target>
2680 <context-group name="null">
2681 <context context-type="linenumber">1</context>
2682 </context-group>
2683 </trans-unit>
2684 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc"> 2376 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc">
2685 <source>Password updated.</source> 2377 <source>Password updated.</source>
2686 <target>Mot de passe mis à jour.</target> 2378 <target>Mot de passe mis à jour.</target>
@@ -2849,6 +2541,13 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
2849 <context context-type="linenumber">1</context> 2541 <context context-type="linenumber">1</context>
2850 </context-group> 2542 </context-group>
2851 </trans-unit> 2543 </trans-unit>
2544 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2545 <source>Unable to find user id or verification string.</source>
2546 <target>Impossible de trouver l'identifiant utilisateur ou le texte de vérification.</target>
2547 <context-group name="null">
2548 <context context-type="linenumber">1</context>
2549 </context-group>
2550 </trans-unit>
2852 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7"> 2551 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7">
2853 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>. 2552 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>.
2854</source> 2553</source>
@@ -2886,13 +2585,6 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
2886 <context context-type="linenumber">1</context> 2585 <context context-type="linenumber">1</context>
2887 </context-group> 2586 </context-group>
2888 </trans-unit> 2587 </trans-unit>
2889 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2890 <source>Unable to find user id or verification string.</source>
2891 <target>Impossible de trouver l'identifiant utilisateur ou le texte de vérification.</target>
2892 <context-group name="null">
2893 <context context-type="linenumber">1</context>
2894 </context-group>
2895 </trans-unit>
2896 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26"> 2588 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26">
2897 <source>Your password has been successfully reset!</source> 2589 <source>Your password has been successfully reset!</source>
2898 <target>Votre mot de passe a été réinitialisé avec succès !</target> 2590 <target>Votre mot de passe a été réinitialisé avec succès !</target>
@@ -3082,13 +2774,6 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
3082 <context context-type="linenumber">1</context> 2774 <context context-type="linenumber">1</context>
3083 </context-group> 2775 </context-group>
3084 </trans-unit> 2776 </trans-unit>
3085 <trans-unit id="ba88636d27c1a6a7e1f75ff57ec182b30b851c2e">
3086 <source>Transcoding threads must be greater than 1.</source>
3087 <target>Le nombre de threads pour l'encodage doit être plus grand que 1.</target>
3088 <context-group name="null">
3089 <context context-type="linenumber">1</context>
3090 </context-group>
3091 </trans-unit>
3092 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149"> 2777 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149">
3093 <source>Username is required.</source> 2778 <source>Username is required.</source>
3094 <target>Le nom d'utilisateur est requis.</target> 2779 <target>Le nom d'utilisateur est requis.</target>
@@ -3159,6 +2844,13 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
3159 <context context-type="linenumber">1</context> 2844 <context context-type="linenumber">1</context>
3160 </context-group> 2845 </context-group>
3161 </trans-unit> 2846 </trans-unit>
2847 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2848 <source>The new password and the confirmed password do not correspond.</source>
2849 <target>Les mots de passe ne correspondent pas.</target>
2850 <context-group name="null">
2851 <context context-type="linenumber">1</context>
2852 </context-group>
2853 </trans-unit>
3162 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf"> 2854 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf">
3163 <source>Video quota is required.</source> 2855 <source>Video quota is required.</source>
3164 <target>Le quota de vidéos est requis.</target> 2856 <target>Le quota de vidéos est requis.</target>
@@ -3726,6 +3418,41 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
3726 <context context-type="linenumber">1</context> 3418 <context context-type="linenumber">1</context>
3727 </context-group> 3419 </context-group>
3728 </trans-unit> 3420 </trans-unit>
3421 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3422 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3423 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3424 <context-group name="null">
3425 <context context-type="linenumber">1</context>
3426 </context-group>
3427 </trans-unit>
3428 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3429 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3430 <target>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</target>
3431 <context-group name="null">
3432 <context context-type="linenumber">1</context>
3433 </context-group>
3434 </trans-unit>
3435 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3436 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3437 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vidéos full HD</target>
3438 <context-group name="null">
3439 <context context-type="linenumber">1</context>
3440 </context-group>
3441 </trans-unit>
3442 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3443 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3444 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vidéos HD</target>
3445 <context-group name="null">
3446 <context context-type="linenumber">1</context>
3447 </context-group>
3448 </trans-unit>
3449 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3450 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3451 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vidéos de qualité moyenne</target>
3452 <context-group name="null">
3453 <context context-type="linenumber">1</context>
3454 </context-group>
3455 </trans-unit>
3729 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d"> 3456 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d">
3730 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source> 3457 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source>
3731 <target>Publiée, il y a <x id="INTERPOLATION" equiv-text="{{interval}}"/> ans</target> 3458 <target>Publiée, il y a <x id="INTERPOLATION" equiv-text="{{interval}}"/> ans</target>
@@ -3880,41 +3607,6 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
3880 <context context-type="linenumber">1</context> 3607 <context context-type="linenumber">1</context>
3881 </context-group> 3608 </context-group>
3882 </trans-unit> 3609 </trans-unit>
3883 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3884 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3885 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3886 <context-group name="null">
3887 <context context-type="linenumber">1</context>
3888 </context-group>
3889 </trans-unit>
3890 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3891 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3892 <target>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</target>
3893 <context-group name="null">
3894 <context context-type="linenumber">1</context>
3895 </context-group>
3896 </trans-unit>
3897 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3898 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3899 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vidéos full HD</target>
3900 <context-group name="null">
3901 <context context-type="linenumber">1</context>
3902 </context-group>
3903 </trans-unit>
3904 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3905 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3906 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vidéos HD</target>
3907 <context-group name="null">
3908 <context context-type="linenumber">1</context>
3909 </context-group>
3910 </trans-unit>
3911 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3912 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3913 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vidéos de qualité moyenne</target>
3914 <context-group name="null">
3915 <context context-type="linenumber">1</context>
3916 </context-group>
3917 </trans-unit>
3918 <trans-unit id="320c9c3482a0ebe46da42ce9e0cbdc5ba26ea8bb"> 3610 <trans-unit id="320c9c3482a0ebe46da42ce9e0cbdc5ba26ea8bb">
3919 <source>Video to import updated.</source> 3611 <source>Video to import updated.</source>
3920 <target>Les vidéos à importer ont été mise à jour</target> 3612 <target>Les vidéos à importer ont été mise à jour</target>
@@ -3964,13 +3656,6 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
3964 <context context-type="linenumber">1</context> 3656 <context context-type="linenumber">1</context>
3965 </context-group> 3657 </context-group>
3966 </trans-unit> 3658 </trans-unit>
3967 <trans-unit id="d31d39e8ee9b2f20bffb3468ee062eaa5409c59f">
3968 <source>Your video quota is exceeded with this video (video size: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, used: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, quota: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</source>
3969 <target>Votre quota vidéo est dépassé avec cette vidéo (taille de la vidéo : <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, utilisé : <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, quota : <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</target>
3970 <context-group name="null">
3971 <context context-type="linenumber">1</context>
3972 </context-group>
3973 </trans-unit>
3974 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce"> 3659 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce">
3975 <source>Video published.</source> 3660 <source>Video published.</source>
3976 <target>Vidéo publiée.</target> 3661 <target>Vidéo publiée.</target>
@@ -4006,20 +3691,6 @@ Vous devez être certain d'avoir les droits de diffusion vers se contenu, sinon
4006 <context context-type="linenumber">1</context> 3691 <context context-type="linenumber">1</context>
4007 </context-group> 3692 </context-group>
4008 </trans-unit> 3693 </trans-unit>
4009 <trans-unit id="23b2c2f4dd69e29c3bff00469e259dcb01de5633">
4010 <source>Do you really want to blacklist this video?</source>
4011 <target>Êtes vous bien sûr·e de vouloir mettre cette vidéo sur liste noire ?</target>
4012 <context-group name="null">
4013 <context context-type="linenumber">1</context>
4014 </context-group>
4015 </trans-unit>
4016 <trans-unit id="cafd8ec6020e69f241a107b1cb7081bd9e773d4e">
4017 <source>Video <x id="INTERPOLATION" equiv-text="{{videoName}}"/> had been blacklisted.</source>
4018 <target>La vidéo <x id="INTERPOLATION" equiv-text="{{videoName}}"/> a été mise sur liste noire.</target>
4019 <context-group name="null">
4020 <context context-type="linenumber">1</context>
4021 </context-group>
4022 </trans-unit>
4023 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95"> 3694 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95">
4024 <source>Do you really want to delete this video?</source> 3695 <source>Do you really want to delete this video?</source>
4025 <target>Êtes-vous bien sûr·e de vouloir supprimer cette vidéo ?</target> 3696 <target>Êtes-vous bien sûr·e de vouloir supprimer cette vidéo ?</target>
diff --git a/client/src/locale/target/angular_gl_ES.xml b/client/src/locale/target/angular_gl_ES.xml
index 0e3bb5a1d..5eafc35b5 100644
--- a/client/src/locale/target/angular_gl_ES.xml
+++ b/client/src/locale/target/angular_gl_ES.xml
@@ -3,17 +3,6 @@
3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1"> 3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1">
4 <file source-language="en-US" datatype="plaintext" original="" target-language="gl-ES"> 4 <file source-language="en-US" datatype="plaintext" original="" target-language="gl-ES">
5 <body> 5 <body>
6 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
7 <source>
8 Cancel
9 </source>
10 <target>
11 Cancelar
12 </target>
13 <context-group name="null">
14 <context context-type="linenumber">45</context>
15 </context-group>
16 </trans-unit>
17 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46"> 6 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46">
18 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source> 7 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source>
19 <target>(extensións: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, tamaño máx.: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target> 8 <target>(extensións: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, tamaño máx.: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target>
@@ -25,14 +14,14 @@
25 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 14 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
26 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visionados</target> 15 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visionados</target>
27 <context-group name="null"> 16 <context-group name="null">
28 <context context-type="linenumber">34</context> 17 <context context-type="linenumber">12</context>
29 </context-group> 18 </context-group>
30 </trans-unit> 19 </trans-unit>
31 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> 20 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c">
32 <source>Edit</source> 21 <source>Edit</source>
33 <target>Editar</target> 22 <target>Editar</target>
34 <context-group name="null"> 23 <context-group name="null">
35 <context context-type="linenumber">3</context> 24 <context context-type="linenumber">5</context>
36 </context-group> 25 </context-group>
37 </trans-unit> 26 </trans-unit>
38 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> 27 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d">
@@ -46,7 +35,7 @@
46 <source>Complete preview</source> 35 <source>Complete preview</source>
47 <target>Vista previa completa</target> 36 <target>Vista previa completa</target>
48 <context-group name="null"> 37 <context-group name="null">
49 <context context-type="linenumber">10</context> 38 <context context-type="linenumber">13</context>
50 </context-group> 39 </context-group>
51 </trans-unit> 40 </trans-unit>
52 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> 41 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f">
@@ -71,14 +60,14 @@
71 <source>User</source> 60 <source>User</source>
72 <target>Usuaria</target> 61 <target>Usuaria</target>
73 <context-group name="null"> 62 <context-group name="null">
74 <context context-type="linenumber">11</context> 63 <context context-type="linenumber">13</context>
75 </context-group> 64 </context-group>
76 </trans-unit> 65 </trans-unit>
77 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> 66 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478">
78 <source>Username or email address</source> 67 <source>Username or email address</source>
79 <target>Nome de usuaria ou enderezo de correo</target> 68 <target>Nome de usuaria ou enderezo de correo</target>
80 <context-group name="null"> 69 <context-group name="null">
81 <context context-type="linenumber">13</context> 70 <context context-type="linenumber">15</context>
82 </context-group> 71 </context-group>
83 </trans-unit> 72 </trans-unit>
84 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87"> 73 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87">
@@ -89,7 +78,7 @@
89 ou crear unha conta 78 ou crear unha conta
90 </target> 79 </target>
91 <context-group name="null"> 80 <context-group name="null">
92 <context context-type="linenumber">16</context> 81 <context context-type="linenumber">18</context>
93 </context-group> 82 </context-group>
94 </trans-unit> 83 </trans-unit>
95 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b"> 84 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b">
@@ -100,14 +89,14 @@
100 ou crear unha conta en outra instancia 89 ou crear unha conta en outra instancia
101 </target> 90 </target>
102 <context-group name="null"> 91 <context-group name="null">
103 <context context-type="linenumber">20</context> 92 <context context-type="linenumber">22</context>
104 </context-group> 93 </context-group>
105 </trans-unit> 94 </trans-unit>
106 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3"> 95 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3">
107 <source>User registration is not allowed on this instance, but you can register on many others!</source> 96 <source>User registration is not allowed on this instance, but you can register on many others!</source>
108 <target>O rexistro de novas usuarias en esta instancia está desactivado, mais pode escoller entre moitas outras!</target> 97 <target>O rexistro de novas usuarias en esta instancia está desactivado, mais pode escoller entre moitas outras!</target>
109 <context-group name="null"> 98 <context-group name="null">
110 <context context-type="linenumber">26</context> 99 <context context-type="linenumber">28</context>
111 </context-group> 100 </context-group>
112 </trans-unit> 101 </trans-unit>
113 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> 102 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407">
@@ -121,35 +110,35 @@
121 <source>I forgot my password</source> 110 <source>I forgot my password</source>
122 <target>Esquecín o contrasinal</target> 111 <target>Esquecín o contrasinal</target>
123 <context-group name="null"> 112 <context-group name="null">
124 <context context-type="linenumber">42</context> 113 <context context-type="linenumber">44</context>
125 </context-group> 114 </context-group>
126 </trans-unit> 115 </trans-unit>
127 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681"> 116 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681">
128 <source>Forgot your password</source> 117 <source>Forgot your password</source>
129 <target>Esqueceu o contrasinal</target> 118 <target>Esqueceu o contrasinal</target>
130 <context-group name="null"> 119 <context-group name="null">
131 <context context-type="linenumber">59</context> 120 <context context-type="linenumber">57</context>
132 </context-group> 121 </context-group>
133 </trans-unit> 122 </trans-unit>
134 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc"> 123 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc">
135 <source>Email</source> 124 <source>Email</source>
136 <target>Correo electrónico</target> 125 <target>Correo electrónico</target>
137 <context-group name="null"> 126 <context-group name="null">
138 <context context-type="linenumber">17</context> 127 <context context-type="linenumber">8</context>
139 </context-group> 128 </context-group>
140 </trans-unit> 129 </trans-unit>
141 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529"> 130 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529">
142 <source>Email address</source> 131 <source>Email address</source>
143 <target>Enderezo de correo electrónico</target> 132 <target>Enderezo de correo electrónico</target>
144 <context-group name="null"> 133 <context-group name="null">
145 <context context-type="linenumber">66</context> 134 <context context-type="linenumber">10</context>
146 </context-group> 135 </context-group>
147 </trans-unit> 136 </trans-unit>
148 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55"> 137 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55">
149 <source>Send me an email to reset my password</source> 138 <source>Send me an email to reset my password</source>
150 <target>Envíenme un correo para restablecer o contrasinal</target> 139 <target>Envíenme un correo para restablecer o contrasinal</target>
151 <context-group name="null"> 140 <context-group name="null">
152 <context context-type="linenumber">77</context> 141 <context context-type="linenumber">75</context>
153 </context-group> 142 </context-group>
154 </trans-unit> 143 </trans-unit>
155 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa"> 144 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa">
@@ -195,24 +184,6 @@
195 <context context-type="linenumber">3</context> 184 <context context-type="linenumber">3</context>
196 </context-group> 185 </context-group>
197 </trans-unit> 186 </trans-unit>
198 <trans-unit id="a6807b834e01ce165aa61fad157b0ff4288b6bf1">
199 <source>Initial video quota:</source>
200 <target>Cota de video inicial:</target>
201 <context-group name="null">
202 <context context-type="linenumber">8</context>
203 </context-group>
204 </trans-unit>
205 <trans-unit id="87b6b2c26215c5e712d3bfe4cc86ba53bc23451c">
206 <source>
207 Unlimited
208 </source>
209 <target>
210 Non limitada
211 </target>
212 <context-group name="null">
213 <context context-type="linenumber">16</context>
214 </context-group>
215 </trans-unit>
216 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> 187 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48">
217 <source>Username</source> 188 <source>Username</source>
218 <target>Nome de usuaria</target> 189 <target>Nome de usuaria</target>
@@ -224,14 +195,14 @@
224 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source> 195 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source>
225 <target>Lin e acepto os &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Termos&lt;/a&gt; de esta instancia</target> 196 <target>Lin e acepto os &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Termos&lt;/a&gt; de esta instancia</target>
226 <context-group name="null"> 197 <context-group name="null">
227 <context context-type="linenumber">60</context> 198 <context context-type="linenumber">54</context>
228 </context-group> 199 </context-group>
229 </trans-unit> 200 </trans-unit>
230 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4"> 201 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4">
231 <source>Signup</source> 202 <source>Signup</source>
232 <target>Abrir conta</target> 203 <target>Abrir conta</target>
233 <context-group name="null"> 204 <context-group name="null">
234 <context context-type="linenumber">86</context> 205 <context context-type="linenumber">88</context>
235 </context-group> 206 </context-group>
236 </trans-unit> 207 </trans-unit>
237 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a"> 208 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a">
@@ -274,103 +245,70 @@
274 <source>Change the language</source> 245 <source>Change the language</source>
275 <target>Cambiar o idioma</target> 246 <target>Cambiar o idioma</target>
276 <context-group name="null"> 247 <context-group name="null">
277 <context context-type="linenumber">76</context> 248 <context context-type="linenumber">88</context>
278 </context-group>
279 </trans-unit>
280 <trans-unit id="b8ccc4f1b3f839fca9bd59e072f715fd487d540f">
281 <source>
282 My public profile
283 </source>
284 <target>
285 O meu perfil público
286 </target>
287 <context-group name="null">
288 <context context-type="linenumber">19</context>
289 </context-group>
290 </trans-unit>
291 <trans-unit id="c84b721e9325c9cce20d92f4dbd66898ab5ec947">
292 <source>
293 My account
294 </source>
295 <target>
296 A miña conta
297 </target>
298 <context-group name="null">
299 <context context-type="linenumber">23</context>
300 </context-group>
301 </trans-unit>
302 <trans-unit id="ba7378cdaaa60b4fee17a551b232ad3512dac17d">
303 <source>
304 Log out
305 </source>
306 <target>
307 Desconectar
308 </target>
309 <context-group name="null">
310 <context context-type="linenumber">27</context>
311 </context-group> 249 </context-group>
312 </trans-unit> 250 </trans-unit>
313 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> 251 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9">
314 <source>Login</source> 252 <source>Login</source>
315 <target>Conectar</target> 253 <target>Conectar</target>
316 <context-group name="null"> 254 <context-group name="null">
317 <context context-type="linenumber">36</context> 255 <context context-type="linenumber">38</context>
318 </context-group> 256 </context-group>
319 </trans-unit> 257 </trans-unit>
320 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> 258 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87">
321 <source>Create an account</source> 259 <source>Create an account</source>
322 <target>Crear unha conta</target> 260 <target>Crear unha conta</target>
323 <context-group name="null"> 261 <context-group name="null">
324 <context context-type="linenumber">37</context> 262 <context context-type="linenumber">39</context>
325 </context-group> 263 </context-group>
326 </trans-unit> 264 </trans-unit>
327 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238"> 265 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238">
328 <source>Videos</source> 266 <source>Videos</source>
329 <target>Vídeos</target> 267 <target>Vídeos</target>
330 <context-group name="null"> 268 <context-group name="null">
331 <context context-type="linenumber">21</context> 269 <context context-type="linenumber">24</context>
332 </context-group> 270 </context-group>
333 </trans-unit> 271 </trans-unit>
334 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> 272 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807">
335 <source>Trending</source> 273 <source>Trending</source>
336 <target>En voga</target> 274 <target>En voga</target>
337 <context-group name="null"> 275 <context-group name="null">
338 <context context-type="linenumber">45</context> 276 <context context-type="linenumber">57</context>
339 </context-group> 277 </context-group>
340 </trans-unit> 278 </trans-unit>
341 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> 279 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1">
342 <source>Recently added</source> 280 <source>Recently added</source>
343 <target>Últimos engadidos</target> 281 <target>Últimos engadidos</target>
344 <context-group name="null"> 282 <context-group name="null">
345 <context context-type="linenumber">50</context> 283 <context context-type="linenumber">62</context>
346 </context-group> 284 </context-group>
347 </trans-unit> 285 </trans-unit>
348 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d"> 286 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d">
349 <source>Local</source> 287 <source>Local</source>
350 <target>Local</target> 288 <target>Local</target>
351 <context-group name="null"> 289 <context-group name="null">
352 <context context-type="linenumber">55</context> 290 <context context-type="linenumber">67</context>
353 </context-group> 291 </context-group>
354 </trans-unit> 292 </trans-unit>
355 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f"> 293 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f">
356 <source>More</source> 294 <source>More</source>
357 <target>Máis</target> 295 <target>Máis</target>
358 <context-group name="null"> 296 <context-group name="null">
359 <context context-type="linenumber">60</context> 297 <context context-type="linenumber">72</context>
360 </context-group> 298 </context-group>
361 </trans-unit> 299 </trans-unit>
362 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> 300 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919">
363 <source>Administration</source> 301 <source>Administration</source>
364 <target>Administración</target> 302 <target>Administración</target>
365 <context-group name="null"> 303 <context-group name="null">
366 <context context-type="linenumber">64</context> 304 <context context-type="linenumber">76</context>
367 </context-group> 305 </context-group>
368 </trans-unit> 306 </trans-unit>
369 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> 307 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a">
370 <source>About</source> 308 <source>About</source>
371 <target>Acerca de</target> 309 <target>Acerca de</target>
372 <context-group name="null"> 310 <context-group name="null">
373 <context context-type="linenumber">23</context> 311 <context context-type="linenumber">25</context>
374 </context-group> 312 </context-group>
375 </trans-unit> 313 </trans-unit>
376 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> 314 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599">
@@ -433,21 +371,21 @@
433 <source>Category</source> 371 <source>Category</source>
434 <target>Categoría</target> 372 <target>Categoría</target>
435 <context-group name="null"> 373 <context-group name="null">
436 <context context-type="linenumber">148</context> 374 <context context-type="linenumber">166</context>
437 </context-group> 375 </context-group>
438 </trans-unit> 376 </trans-unit>
439 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c"> 377 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c">
440 <source>Licence</source> 378 <source>Licence</source>
441 <target>Licenza</target> 379 <target>Licenza</target>
442 <context-group name="null"> 380 <context-group name="null">
443 <context context-type="linenumber">157</context> 381 <context context-type="linenumber">175</context>
444 </context-group> 382 </context-group>
445 </trans-unit> 383 </trans-unit>
446 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619"> 384 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619">
447 <source>Language</source> 385 <source>Language</source>
448 <target>Idioma</target> 386 <target>Idioma</target>
449 <context-group name="null"> 387 <context-group name="null">
450 <context context-type="linenumber">166</context> 388 <context context-type="linenumber">184</context>
451 </context-group> 389 </context-group>
452 </trans-unit> 390 </trans-unit>
453 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8"> 391 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8">
@@ -482,7 +420,7 @@
482 <source>Instance</source> 420 <source>Instance</source>
483 <target>Instancia</target> 421 <target>Instancia</target>
484 <context-group name="null"> 422 <context-group name="null">
485 <context context-type="linenumber">7</context> 423 <context context-type="linenumber">8</context>
486 </context-group> 424 </context-group>
487 </trans-unit> 425 </trans-unit>
488 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390"> 426 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390">
@@ -507,14 +445,14 @@
507 <source>Description</source> 445 <source>Description</source>
508 <target>Descrición</target> 446 <target>Descrición</target>
509 <context-group name="null"> 447 <context-group name="null">
510 <context context-type="linenumber">23</context> 448 <context context-type="linenumber">26</context>
511 </context-group> 449 </context-group>
512 </trans-unit> 450 </trans-unit>
513 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774"> 451 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774">
514 <source>Terms</source> 452 <source>Terms</source>
515 <target>Termos</target> 453 <target>Termos</target>
516 <context-group name="null"> 454 <context-group name="null">
517 <context context-type="linenumber">43</context> 455 <context context-type="linenumber">44</context>
518 </context-group> 456 </context-group>
519 </trans-unit> 457 </trans-unit>
520 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27"> 458 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27">
@@ -696,5 +634,444 @@
696 <context context-type="linenumber">51</context> 634 <context context-type="linenumber">51</context>
697 </context-group> 635 </context-group>
698 </trans-unit> 636 </trans-unit>
637 <trans-unit id="4bf47a1ae952bf42a4682a5ecddb0bfb8c9adfaf">
638 <source>How does PeerTube compare with YouTube?</source>
639 <target>Como é PeerTube comparado con YouTube?</target>
640 <context-group name="null">
641 <context context-type="linenumber">67</context>
642 </context-group>
643 </trans-unit>
644 <trans-unit id="3c2990d5e452bdf2317ff23745db70705d848d99">
645 <source>What can I do to limit the exposure of my IP address?</source>
646 <target>Qué podo facer para limitar a exposición do meu enderezo IP?</target>
647 <context-group name="null">
648 <context context-type="linenumber">75</context>
649 </context-group>
650 </trans-unit>
651 <trans-unit id="a545356de272b955258c2a2432b08ec637b65f7e">
652 <source>
653 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.
654 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.
655 Thinking that removing P2P from PeerTube will give you back anonymity doesn't make sense.
656 </source>
657 <target>
658 O seu enderezo IP é público cada vez que consulta unha web, hai un número de actores (aparte do sitio web final) vendo o seu enderezo IP nos rexistros de conexión: ISP/routers/trackers/CDN e máis.
659 PeerTube é transparente ao respecto: avisámola de que se desexa manter a súa IP privada, debe utilizar unha VPN ou Navegador Tor.
660 Crer que eliminar o P2P de PeerTube lle devolverá o anonimato non ten sentido.
661 </target>
662 <context-group name="null">
663 <context context-type="linenumber">77</context>
664 </context-group>
665 </trans-unit>
666 <trans-unit id="8ce78dd287b9a9dde5079916425ea66466530e41">
667 <source>What will be done to mitigate this problem?</source>
668 <target>Que se vai facer para minimizar este problema?</target>
669 <context-group name="null">
670 <context context-type="linenumber">83</context>
671 </context-group>
672 </trans-unit>
673 <trans-unit id="d8f1c6b816aaf1ebcb936a705dbe88bcef28eaa8">
674 <source>
675 PeerTube is only in beta, and want to deliver the best countermeasures possible by the time the stable is released.
676 In the meantime, we want to test different ideas related to this issue:
677 </source>
678 <target>
679 PeerTube só está en fase beta, e quere proporcionar as mellores contramedidas posibles para cando a versión estable sexa publicada.
680 Por agora, queremos probar diferentes ideas en relación a este asunto:
681 </target>
682 <context-group name="null">
683 <context context-type="linenumber">85</context>
684 </context-group>
685 </trans-unit>
686 <trans-unit id="d32608aba08c6bb3cc4e4e8ec6223e5f4e78ca19">
687 <source>Set a limit to the number of peers sent by the tracker</source>
688 <target>Establecer un límite ao número de pares enviados polo rastrexador</target>
689 <context-group name="null">
690 <context context-type="linenumber">91</context>
691 </context-group>
692 </trans-unit>
693 <trans-unit id="a6d732b614143f862e69798046dc0868716547e5">
694 <source>Set a limit on the request frequency received by the tracker (being tested)</source>
695 <target>Establecer un límite na frecuencia das peticións recibidas polo rastrexador (en probas)</target>
696 <context-group name="null">
697 <context context-type="linenumber">92</context>
698 </context-group>
699 </trans-unit>
700 <trans-unit id="ba77e356eaa5c06caaf5c8734c361d1a5415fe1c">
701 <source>Ring a bell if there are unusual requests (being tested)</source>
702 <target>Activar un son se hai peticións estranas (en probas)</target>
703 <context-group name="null">
704 <context context-type="linenumber">93</context>
705 </context-group>
706 </trans-unit>
707 <trans-unit id="81861ff8a71c8a5881cdf66417f3bddb753f0e18">
708 <source>Disable P2P from the administration interface</source>
709 <target>Desactivar P2P desde a interface de administración</target>
710 <context-group name="null">
711 <context context-type="linenumber">94</context>
712 </context-group>
713 </trans-unit>
714 <trans-unit id="efde279863678ed95a8949a3712c99748bdabfe6">
715 <source>An automatic video redundancy program: we wouldn't know if the IP downloaded the video on purpose or if it was the automatized program</source>
716 <target>Un programa de redundancia automática de vídeos: non saberiamos si a IP descargou o vídeo de forma consciente ou se foi un programa automatizado</target>
717 <context-group name="null">
718 <context context-type="linenumber">95</context>
719 </context-group>
720 </trans-unit>
721 <trans-unit id="a835d8a12e14eb96919245a0bbafd8069c146578">
722 <source><x id="INTERPOLATION" equiv-text="{{ account.followersCount }}"/> subscribers</source>
723 <target><x id="INTERPOLATION" equiv-text="{{ account.followersCount }}"/> suscritoras</target>
724 <context-group name="null">
725 <context context-type="linenumber">12</context>
726 </context-group>
727 </trans-unit>
728 <trans-unit id="6f5a458f827503ac7b8697688ecf3e0490818ee8">
729 <source>Video channels</source>
730 <target>Canles de vídeo</target>
731 <context-group name="null">
732 <context context-type="linenumber">19</context>
733 </context-group>
734 </trans-unit>
735 <trans-unit id="299f97b8ee9c62d45f2cc01961aa1e5101d6d05a">
736 <source>Stats</source>
737 <target>Estatísticas</target>
738 <context-group name="null">
739 <context context-type="linenumber">16</context>
740 </context-group>
741 </trans-unit>
742 <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc">
743 <source>Joined <x id="INTERPOLATION" equiv-text="{{ account.createdAt | date }}"/></source>
744 <target>Uneuse <x id="INTERPOLATION" equiv-text="{{ account.createdAt | date }}"/></target>
745 <context-group name="null">
746 <context context-type="linenumber">10</context>
747 </context-group>
748 </trans-unit>
749 <trans-unit id="8fef247fd0c5bf790151f7661cafc4b7fd0397f3">
750 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source>
751 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> suscritoras</target>
752 <context-group name="null">
753 <context context-type="linenumber">14</context>
754 </context-group>
755 </trans-unit>
756 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f">
757 <source>See this video channel</source>
758 <target>Ver esta canle de vídeo</target>
759 <context-group name="null">
760 <context context-type="linenumber">4</context>
761 </context-group>
762 </trans-unit>
763 <trans-unit id="cff1428d10d59d14e45edec3c735a27b5482db59">
764 <source>Name</source>
765 <target>Nome</target>
766 <context-group name="null">
767 <context context-type="linenumber">12</context>
768 </context-group>
769 </trans-unit>
770 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b">
771 <source>Short description</source>
772 <target>Descrición curta</target>
773 <context-group name="null">
774 <context context-type="linenumber">22</context>
775 </context-group>
776 </trans-unit>
777 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003">
778 <source>Default client route</source>
779 <target>Ruta ao cliente por omisión</target>
780 <context-group name="null">
781 <context context-type="linenumber">55</context>
782 </context-group>
783 </trans-unit>
784 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948">
785 <source>Videos Trending</source>
786 <target>Vídeos de moda</target>
787 <context-group name="null">
788 <context context-type="linenumber">59</context>
789 </context-group>
790 </trans-unit>
791 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883">
792 <source>Videos Recently Added</source>
793 <target>Vídeos engadidos recentemente</target>
794 <context-group name="null">
795 <context context-type="linenumber">60</context>
796 </context-group>
797 </trans-unit>
798 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f">
799 <source>Local videos</source>
800 <target>Vídeos en local</target>
801 <context-group name="null">
802 <context context-type="linenumber">61</context>
803 </context-group>
804 </trans-unit>
805 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9">
806 <source>Policy on videos containing sensitive content</source>
807 <target>Política para os vídeos con contido sensible</target>
808 <context-group name="null">
809 <context context-type="linenumber">70</context>
810 </context-group>
811 </trans-unit>
812 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df">
813 <source>With &lt;strong&gt;Do not list&lt;/strong&gt; or &lt;strong&gt;Blur thumbnails&lt;/strong&gt;, a confirmation will be requested to watch the video.</source>
814 <target>Con &lt;strong&gt;Non listar&lt;/strong&gt; ou &lt;strong&gt;Emborrar icona&lt;/strong&gt;, pedirase autorización para ver o vídeo.</target>
815 <context-group name="null">
816 <context context-type="linenumber">6</context>
817 </context-group>
818 </trans-unit>
819 <trans-unit id="5e155c34fb3ed8159bf0a486a366cfbc6874f9fe">
820 <source>Do not list</source>
821 <target>Non listar</target>
822 <context-group name="null">
823 <context context-type="linenumber">11</context>
824 </context-group>
825 </trans-unit>
826 <trans-unit id="aaa900149c2ca1575ac1918d1ded33fb69830ab2">
827 <source>Blur thumbnails</source>
828 <target>Emborrar icona</target>
829 <context-group name="null">
830 <context context-type="linenumber">12</context>
831 </context-group>
832 </trans-unit>
833 <trans-unit id="010d24ef3c43b2d8f45a4d6cba7d73e12ee1557e">
834 <source>Display</source>
835 <target>Mostrar</target>
836 <context-group name="null">
837 <context context-type="linenumber">13</context>
838 </context-group>
839 </trans-unit>
840 <trans-unit id="ca53e66e68986546b7ef820c934145fd7c9c4247">
841 <source>Signup enabled</source>
842 <target>Rexistro activado</target>
843 <context-group name="null">
844 <context context-type="linenumber">92</context>
845 </context-group>
846 </trans-unit>
847 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402">
848 <source>Signup limit</source>
849 <target>Rexistro limitado</target>
850 <context-group name="null">
851 <context context-type="linenumber">101</context>
852 </context-group>
853 </trans-unit>
854 <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36">
855 <source>Import</source>
856 <target>Importar</target>
857 <context-group name="null">
858 <context context-type="linenumber">42</context>
859 </context-group>
860 </trans-unit>
861 <trans-unit id="e9964673c94eb0b4ff8088c84018217c031f31ce">
862 <source>Video import with HTTP enabled</source>
863 <target>Importación de vídeos por HTTP activada</target>
864 <context-group name="null">
865 <context context-type="linenumber">115</context>
866 </context-group>
867 </trans-unit>
868 <trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e">
869 <source>Video import with a torrent file or a magnet URI enabled</source>
870 <target>Importación de vídeo con un ficheiro torrent ou URI magnet activada</target>
871 <context-group name="null">
872 <context context-type="linenumber">120</context>
873 </context-group>
874 </trans-unit>
875 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011">
876 <source>Administrator</source>
877 <target>Administración</target>
878 <context-group name="null">
879 <context context-type="linenumber">123</context>
880 </context-group>
881 </trans-unit>
882 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587">
883 <source>Admin email</source>
884 <target>Correo-e da Admin</target>
885 <context-group name="null">
886 <context context-type="linenumber">126</context>
887 </context-group>
888 </trans-unit>
889 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be">
890 <source>Users</source>
891 <target>Usuarias</target>
892 <context-group name="null">
893 <context context-type="linenumber">136</context>
894 </context-group>
895 </trans-unit>
896 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09">
897 <source>User default video quota</source>
898 <target>Cota de vídeo por omisión para a usuaria</target>
899 <context-group name="null">
900 <context context-type="linenumber">139</context>
901 </context-group>
902 </trans-unit>
903 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5">
904 <source>Basic configuration</source>
905 <target>Configuración básica</target>
906 <context-group name="null">
907 <context context-type="linenumber">5</context>
908 </context-group>
909 </trans-unit>
910 <trans-unit id="99cb827741e93125476a0f5b676372d85d15b5fc">
911 <source>Twitter</source>
912 <target>Twitter</target>
913 <context-group name="null">
914 <context context-type="linenumber">170</context>
915 </context-group>
916 </trans-unit>
917 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524">
918 <source>Your Twitter username</source>
919 <target>O seu alcume na Twitter</target>
920 <context-group name="null">
921 <context context-type="linenumber">173</context>
922 </context-group>
923 </trans-unit>
924 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c">
925 <source>Indicates the Twitter account for the website or platform on which the content was published.</source>
926 <target>Indica a conta na Twitter para o sitio web ou plataforma para a cal o contido foi publicado.</target>
927 <context-group name="null">
928 <context context-type="linenumber">176</context>
929 </context-group>
930 </trans-unit>
931 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605">
932 <source>Instance whitelisted by Twitter</source>
933 <target>Instancia na lista blanca por Twitter</target>
934 <context-group name="null">
935 <context context-type="linenumber">189</context>
936 </context-group>
937 </trans-unit>
938 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5">
939 <source>Services</source>
940 <target>Servizos</target>
941 <context-group name="null">
942 <context context-type="linenumber">168</context>
943 </context-group>
944 </trans-unit>
945 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490">
946 <source>Transcoding</source>
947 <target>Recodificando</target>
948 <context-group name="null">
949 <context context-type="linenumber">200</context>
950 </context-group>
951 </trans-unit>
952 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9">
953 <source>Transcoding enabled</source>
954 <target>Recodificación activada</target>
955 <context-group name="null">
956 <context context-type="linenumber">204</context>
957 </context-group>
958 </trans-unit>
959 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f">
960 <source>If you disable transcoding, many videos from your users will not work!</source>
961 <target>Si desactiva a recodificación moitos vídeos das súas usuarias non funcionarán!</target>
962 <context-group name="null">
963 <context context-type="linenumber">205</context>
964 </context-group>
965 </trans-unit>
966 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2">
967 <source>Transcoding threads</source>
968 <target>Fíos de recodificación</target>
969 <context-group name="null">
970 <context context-type="linenumber">211</context>
971 </context-group>
972 </trans-unit>
973 <trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500">
974 <source>Resolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> enabled</source>
975 <target>Resolución <x id="INTERPOLATION" equiv-text="{{resolution}}"/> activada</target>
976 <context-group name="null">
977 <context context-type="linenumber">227</context>
978 </context-group>
979 </trans-unit>
980 <trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0">
981 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source>
982 <target>Algúns ficheiros non se federan (vista previa, comentarios). Recollémolos directamente desde a instancia de orixe e almacenámolos.</target>
983 <context-group name="null">
984 <context context-type="linenumber">238</context>
985 </context-group>
986 </trans-unit>
987 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7">
988 <source>Previews cache size</source>
989 <target>Tamaño da caché de vista previa</target>
990 <context-group name="null">
991 <context context-type="linenumber">243</context>
992 </context-group>
993 </trans-unit>
994 <trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607">
995 <source>Video captions cache size</source>
996 <target>Tamaño da caché de comentarios no vídeo</target>
997 <context-group name="null">
998 <context context-type="linenumber">254</context>
999 </context-group>
1000 </trans-unit>
1001 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c">
1002 <source>Customizations</source>
1003 <target>Personalizacións</target>
1004 <context-group name="null">
1005 <context context-type="linenumber">264</context>
1006 </context-group>
1007 </trans-unit>
1008 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c">
1009 <source>JavaScript</source>
1010 <target>JavaScript</target>
1011 <context-group name="null">
1012 <context context-type="linenumber">267</context>
1013 </context-group>
1014 </trans-unit>
1015 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c">
1016 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source>
1017 <target>Escribir código JavaScript directamente.&lt;br /&gt;Exemplo: &lt;pre&gt;console.log('a miña instancia é tremenda');&lt;/pre&gt;</target>
1018 <context-group name="null">
1019 <context context-type="linenumber">270</context>
1020 </context-group>
1021 </trans-unit>
1022 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab">
1023 <source>Advanced configuration</source>
1024 <target>Configuración avanzada</target>
1025 <context-group name="null">
1026 <context context-type="linenumber">197</context>
1027 </context-group>
1028 </trans-unit>
1029 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8">
1030 <source>Update configuration</source>
1031 <target>Actualizar configuración</target>
1032 <context-group name="null">
1033 <context context-type="linenumber">314</context>
1034 </context-group>
1035 </trans-unit>
1036 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca">
1037 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source>
1038 <target>Semella que a configuración non é válida. Por favor busque os erros potenciais nas diferentes pestanas.</target>
1039 <context-group name="null">
1040 <context context-type="linenumber">315</context>
1041 </context-group>
1042 </trans-unit>
1043 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c">
1044 <source>
1045 Users
1046 </source>
1047 <target>
1048 Usuarias
1049 </target>
1050 <context-group name="null">
1051 <context context-type="linenumber">3</context>
1052 </context-group>
1053 </trans-unit>
1054 <trans-unit id="0315abd64e35510ed0534f597130ef781aca175a">
1055 <source>
1056 Manage follows
1057 </source>
1058 <target>
1059 Xestionar seguimento
1060 </target>
1061 <context-group name="null">
1062 <context context-type="linenumber">7</context>
1063 </context-group>
1064 </trans-unit>
1065 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
1066 <source>
1067 Cancel
1068 </source>
1069 <target>
1070 Cancelar
1071 </target>
1072 <context-group name="null">
1073 <context context-type="linenumber">30</context>
1074 </context-group>
1075 </trans-unit>
699 </body> 1076 </body>
700 </file></xliff> \ No newline at end of file 1077 </file></xliff> \ No newline at end of file
diff --git a/client/src/locale/target/angular_ja_JP.xml b/client/src/locale/target/angular_ja_JP.xml
new file mode 100644
index 000000000..ba5f33a5e
--- /dev/null
+++ b/client/src/locale/target/angular_ja_JP.xml
@@ -0,0 +1,176 @@
1<?xml version="1.0" encoding="utf-8"?>
2<!--XLIFF document generated by Zanata. Visit http://zanata.org for more infomation.-->
3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1">
4 <file source-language="en-US" datatype="plaintext" original="" target-language="ja-JP">
5 <body>
6 <trans-unit id="f82f53a2544638939a8ba93c0fb1b0a4419c3196">
7 <source>Complete preview</source>
8 <target>完全なプレビュー</target>
9 <context-group name="null">
10 <context context-type="linenumber">13</context>
11 </context-group>
12 </trans-unit>
13 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea">
14 <source>
15 Login
16 </source>
17 <target>
18 ログイン
19 </target>
20 <context-group name="null">
21 <context context-type="linenumber">2</context>
22 </context-group>
23 </trans-unit>
24 <trans-unit id="e08a77594f3d89311cdf6da5090044270909c194">
25 <source>User</source>
26 <target>ユーザー</target>
27 <context-group name="null">
28 <context context-type="linenumber">13</context>
29 </context-group>
30 </trans-unit>
31 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478">
32 <source>Username or email address</source>
33 <context-group name="null">
34 <context context-type="linenumber">15</context>
35 </context-group>
36 </trans-unit>
37 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87">
38 <source>
39 or create an account
40 </source>
41 <target>
42 アカウントを作成する
43 </target>
44 <context-group name="null">
45 <context context-type="linenumber">18</context>
46 </context-group>
47 </trans-unit>
48 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407">
49 <source>Password</source>
50 <target>パスワード</target>
51 <context-group name="null">
52 <context context-type="linenumber">12</context>
53 </context-group>
54 </trans-unit>
55 <trans-unit id="b87e81682959464211443afc3e23c506865d2eda">
56 <source>I forgot my password</source>
57 <target>パスワードを忘れました</target>
58 <context-group name="null">
59 <context context-type="linenumber">44</context>
60 </context-group>
61 </trans-unit>
62 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681">
63 <source>Forgot your password</source>
64 <context-group name="null">
65 <context context-type="linenumber">57</context>
66 </context-group>
67 </trans-unit>
68 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc">
69 <source>Email</source>
70 <target>メール</target>
71 <context-group name="null">
72 <context context-type="linenumber">8</context>
73 </context-group>
74 </trans-unit>
75 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529">
76 <source>Email address</source>
77 <target>メールアドレス</target>
78 <context-group name="null">
79 <context context-type="linenumber">10</context>
80 </context-group>
81 </trans-unit>
82 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa">
83 <source>
84 Reset my password
85 </source>
86 <target>
87 私のパスワードをリセットする
88 </target>
89 <context-group name="null">
90 <context context-type="linenumber">2</context>
91 </context-group>
92 </trans-unit>
93 <trans-unit id="7f3bdcce4b2e8c37cd7f0f6c92ef8cff34b039b8">
94 <source>Confirm password</source>
95 <context-group name="null">
96 <context context-type="linenumber">19</context>
97 </context-group>
98 </trans-unit>
99 <trans-unit id="8bdf8db5eeeaef83184b489b80c1557b516fb3c3">
100 <source>Reset my password</source>
101 <target> 私のパスワードをリセットする</target>
102 <context-group name="null">
103 <context context-type="linenumber">29</context>
104 </context-group>
105 </trans-unit>
106 <trans-unit id="4499806949402133d08a5029cb5462c5ea25336d">
107 <source>
108 Create an account
109 </source>
110 <target>
111 アカウントを作成する
112 </target>
113 <context-group name="null">
114 <context context-type="linenumber">3</context>
115 </context-group>
116 </trans-unit>
117 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48">
118 <source>Username</source>
119 <target>ユーザー名</target>
120 <context-group name="null">
121 <context context-type="linenumber">8</context>
122 </context-group>
123 </trans-unit>
124 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4">
125 <source>Signup</source>
126 <target>サインアップ</target>
127 <context-group name="null">
128 <context context-type="linenumber">88</context>
129 </context-group>
130 </trans-unit>
131 <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96">
132 <source>Change the language</source>
133 <context-group name="null">
134 <context context-type="linenumber">88</context>
135 </context-group>
136 </trans-unit>
137 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9">
138 <source>Login</source>
139 <target>ログイン</target>
140 <context-group name="null">
141 <context context-type="linenumber">38</context>
142 </context-group>
143 </trans-unit>
144 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87">
145 <source>Create an account</source>
146 <target>アカウントを作成する</target>
147 <context-group name="null">
148 <context context-type="linenumber">39</context>
149 </context-group>
150 </trans-unit>
151 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238">
152 <source>Videos</source>
153 <target>ビデオ</target>
154 <context-group name="null">
155 <context context-type="linenumber">24</context>
156 </context-group>
157 </trans-unit>
158 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807">
159 <source>Trending</source>
160 <context-group name="null">
161 <context context-type="linenumber">57</context>
162 </context-group>
163 </trans-unit>
164 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
165 <source>
166 Cancel
167 </source>
168 <target>
169キャンセル
170 </target>
171 <context-group name="null">
172 <context context-type="linenumber">30</context>
173 </context-group>
174 </trans-unit>
175 </body>
176 </file></xliff> \ No newline at end of file
diff --git a/client/src/locale/target/angular_nl_NL.xml b/client/src/locale/target/angular_nl_NL.xml
index 93cd27ed0..e9e5dd666 100644
--- a/client/src/locale/target/angular_nl_NL.xml
+++ b/client/src/locale/target/angular_nl_NL.xml
@@ -3,27 +3,25 @@
3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1"> 3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1">
4 <file source-language="en-US" datatype="plaintext" original="" target-language="nl-NL"> 4 <file source-language="en-US" datatype="plaintext" original="" target-language="nl-NL">
5 <body> 5 <body>
6 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
7 <source>
8 Cancel
9 </source>
10 <target>Annuleren</target>
11 <context-group name="null">
12 <context context-type="linenumber">45</context>
13 </context-group>
14 </trans-unit>
15 <trans-unit id="9d5f16f0233b39fa2cd843321407a7358c323ad8"> 6 <trans-unit id="9d5f16f0233b39fa2cd843321407a7358c323ad8">
16 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 7 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
17 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> keer bekeken</target> 8 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> keer bekeken</target>
18 <context-group name="null"> 9 <context-group name="null">
19 <context context-type="linenumber">34</context> 10 <context context-type="linenumber">12</context>
11 </context-group>
12 </trans-unit>
13 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7">
14 <source>Delete</source>
15 <target>Verwijderen</target>
16 <context-group name="null">
17 <context context-type="linenumber">15</context>
20 </context-group> 18 </context-group>
21 </trans-unit> 19 </trans-unit>
22 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> 20 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c">
23 <source>Edit</source> 21 <source>Edit</source>
24 <target>Bewerken</target> 22 <target>Bewerken</target>
25 <context-group name="null"> 23 <context-group name="null">
26 <context context-type="linenumber">3</context> 24 <context context-type="linenumber">5</context>
27 </context-group> 25 </context-group>
28 </trans-unit> 26 </trans-unit>
29 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> 27 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d">
@@ -37,7 +35,7 @@
37 <source>Complete preview</source> 35 <source>Complete preview</source>
38 <target>Volledige voorvertoning</target> 36 <target>Volledige voorvertoning</target>
39 <context-group name="null"> 37 <context-group name="null">
40 <context context-type="linenumber">10</context> 38 <context context-type="linenumber">13</context>
41 </context-group> 39 </context-group>
42 </trans-unit> 40 </trans-unit>
43 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> 41 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f">
@@ -47,6 +45,13 @@
47 <context context-type="linenumber">18</context> 45 <context context-type="linenumber">18</context>
48 </context-group> 46 </context-group>
49 </trans-unit> 47 </trans-unit>
48 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
49 <source>Video quota</source>
50 <target>Videoquotum</target>
51 <context-group name="null">
52 <context context-type="linenumber">19</context>
53 </context-group>
54 </trans-unit>
50 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea"> 55 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea">
51 <source> 56 <source>
52 Login 57 Login
@@ -60,14 +65,14 @@
60 <source>User</source> 65 <source>User</source>
61 <target>Gebruiker</target> 66 <target>Gebruiker</target>
62 <context-group name="null"> 67 <context-group name="null">
63 <context context-type="linenumber">11</context> 68 <context context-type="linenumber">13</context>
64 </context-group> 69 </context-group>
65 </trans-unit> 70 </trans-unit>
66 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> 71 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478">
67 <source>Username or email address</source> 72 <source>Username or email address</source>
68 <target>Gebruikersnaam of e-mailadres</target> 73 <target>Gebruikersnaam of e-mailadres</target>
69 <context-group name="null"> 74 <context-group name="null">
70 <context context-type="linenumber">13</context> 75 <context context-type="linenumber">15</context>
71 </context-group> 76 </context-group>
72 </trans-unit> 77 </trans-unit>
73 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87"> 78 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87">
@@ -76,7 +81,7 @@
76 </source> 81 </source>
77 <target>of maak een account</target> 82 <target>of maak een account</target>
78 <context-group name="null"> 83 <context-group name="null">
79 <context context-type="linenumber">16</context> 84 <context context-type="linenumber">18</context>
80 </context-group> 85 </context-group>
81 </trans-unit> 86 </trans-unit>
82 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b"> 87 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b">
@@ -85,14 +90,14 @@
85 </source> 90 </source>
86 <target>of maak een account aan op een andere server</target> 91 <target>of maak een account aan op een andere server</target>
87 <context-group name="null"> 92 <context-group name="null">
88 <context context-type="linenumber">20</context> 93 <context context-type="linenumber">22</context>
89 </context-group> 94 </context-group>
90 </trans-unit> 95 </trans-unit>
91 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3"> 96 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3">
92 <source>User registration is not allowed on this instance, but you can register on many others!</source> 97 <source>User registration is not allowed on this instance, but you can register on many others!</source>
93 <target>Registratie is niet mogelijk op deze instantie, maar je kan een account maken op een van de vele anderen!</target> 98 <target>Registratie is niet mogelijk op deze instantie, maar je kan een account maken op een van de vele anderen!</target>
94 <context-group name="null"> 99 <context-group name="null">
95 <context context-type="linenumber">26</context> 100 <context context-type="linenumber">28</context>
96 </context-group> 101 </context-group>
97 </trans-unit> 102 </trans-unit>
98 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> 103 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407">
@@ -106,35 +111,35 @@
106 <source>I forgot my password</source> 111 <source>I forgot my password</source>
107 <target>Wachtwoord vergeten</target> 112 <target>Wachtwoord vergeten</target>
108 <context-group name="null"> 113 <context-group name="null">
109 <context context-type="linenumber">42</context> 114 <context context-type="linenumber">44</context>
110 </context-group> 115 </context-group>
111 </trans-unit> 116 </trans-unit>
112 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681"> 117 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681">
113 <source>Forgot your password</source> 118 <source>Forgot your password</source>
114 <target>Wachtwoord vergeten</target> 119 <target>Wachtwoord vergeten</target>
115 <context-group name="null"> 120 <context-group name="null">
116 <context context-type="linenumber">59</context> 121 <context context-type="linenumber">57</context>
117 </context-group> 122 </context-group>
118 </trans-unit> 123 </trans-unit>
119 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc"> 124 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc">
120 <source>Email</source> 125 <source>Email</source>
121 <target>E-mail</target> 126 <target>E-mail</target>
122 <context-group name="null"> 127 <context-group name="null">
123 <context context-type="linenumber">17</context> 128 <context context-type="linenumber">8</context>
124 </context-group> 129 </context-group>
125 </trans-unit> 130 </trans-unit>
126 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529"> 131 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529">
127 <source>Email address</source> 132 <source>Email address</source>
128 <target>E-mailadres</target> 133 <target>E-mailadres</target>
129 <context-group name="null"> 134 <context-group name="null">
130 <context context-type="linenumber">66</context> 135 <context context-type="linenumber">10</context>
131 </context-group> 136 </context-group>
132 </trans-unit> 137 </trans-unit>
133 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55"> 138 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55">
134 <source>Send me an email to reset my password</source> 139 <source>Send me an email to reset my password</source>
135 <target>Zend me een e-mail om een nieuw wachtwoord in te stellen</target> 140 <target>Zend me een e-mail om een nieuw wachtwoord in te stellen</target>
136 <context-group name="null"> 141 <context-group name="null">
137 <context context-type="linenumber">77</context> 142 <context context-type="linenumber">75</context>
138 </context-group> 143 </context-group>
139 </trans-unit> 144 </trans-unit>
140 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa"> 145 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa">
@@ -176,22 +181,6 @@
176 <context context-type="linenumber">3</context> 181 <context context-type="linenumber">3</context>
177 </context-group> 182 </context-group>
178 </trans-unit> 183 </trans-unit>
179 <trans-unit id="a6807b834e01ce165aa61fad157b0ff4288b6bf1">
180 <source>Initial video quota:</source>
181 <target>Aanvankelijk video-quotum:</target>
182 <context-group name="null">
183 <context context-type="linenumber">8</context>
184 </context-group>
185 </trans-unit>
186 <trans-unit id="87b6b2c26215c5e712d3bfe4cc86ba53bc23451c">
187 <source>
188 Unlimited
189 </source>
190 <target>Onbeperkt</target>
191 <context-group name="null">
192 <context context-type="linenumber">16</context>
193 </context-group>
194 </trans-unit>
195 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> 184 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48">
196 <source>Username</source> 185 <source>Username</source>
197 <target>Gebruikersnaam</target> 186 <target>Gebruikersnaam</target>
@@ -203,97 +192,70 @@
203 <source>Signup</source> 192 <source>Signup</source>
204 <target>Registratie</target> 193 <target>Registratie</target>
205 <context-group name="null"> 194 <context-group name="null">
206 <context context-type="linenumber">86</context> 195 <context context-type="linenumber">88</context>
207 </context-group> 196 </context-group>
208 </trans-unit> 197 </trans-unit>
209 <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96"> 198 <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96">
210 <source>Change the language</source> 199 <source>Change the language</source>
211 <target>Taal veranderen</target> 200 <target>Taal veranderen</target>
212 <context-group name="null"> 201 <context-group name="null">
213 <context context-type="linenumber">76</context> 202 <context context-type="linenumber">88</context>
214 </context-group>
215 </trans-unit>
216 <trans-unit id="b8ccc4f1b3f839fca9bd59e072f715fd487d540f">
217 <source>
218 My public profile
219 </source>
220 <target>Mijn openbaar profiel</target>
221 <context-group name="null">
222 <context context-type="linenumber">19</context>
223 </context-group>
224 </trans-unit>
225 <trans-unit id="c84b721e9325c9cce20d92f4dbd66898ab5ec947">
226 <source>
227 My account
228 </source>
229 <target>Mijn account</target>
230 <context-group name="null">
231 <context context-type="linenumber">23</context>
232 </context-group>
233 </trans-unit>
234 <trans-unit id="ba7378cdaaa60b4fee17a551b232ad3512dac17d">
235 <source>
236 Log out
237 </source>
238 <target>Afmelden</target>
239 <context-group name="null">
240 <context context-type="linenumber">27</context>
241 </context-group> 203 </context-group>
242 </trans-unit> 204 </trans-unit>
243 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> 205 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9">
244 <source>Login</source> 206 <source>Login</source>
245 <target>Aanmelden</target> 207 <target>Aanmelden</target>
246 <context-group name="null"> 208 <context-group name="null">
247 <context context-type="linenumber">36</context> 209 <context context-type="linenumber">38</context>
248 </context-group> 210 </context-group>
249 </trans-unit> 211 </trans-unit>
250 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> 212 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87">
251 <source>Create an account</source> 213 <source>Create an account</source>
252 <target>Account maken</target> 214 <target>Account maken</target>
253 <context-group name="null"> 215 <context-group name="null">
254 <context context-type="linenumber">37</context> 216 <context context-type="linenumber">39</context>
255 </context-group> 217 </context-group>
256 </trans-unit> 218 </trans-unit>
257 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238"> 219 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238">
258 <source>Videos</source> 220 <source>Videos</source>
259 <target>Video's</target> 221 <target>Video's</target>
260 <context-group name="null"> 222 <context-group name="null">
261 <context context-type="linenumber">21</context> 223 <context context-type="linenumber">24</context>
262 </context-group> 224 </context-group>
263 </trans-unit> 225 </trans-unit>
264 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> 226 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807">
265 <source>Trending</source> 227 <source>Trending</source>
266 <target>Populair</target> 228 <target>Populair</target>
267 <context-group name="null"> 229 <context-group name="null">
268 <context context-type="linenumber">45</context> 230 <context context-type="linenumber">57</context>
269 </context-group> 231 </context-group>
270 </trans-unit> 232 </trans-unit>
271 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> 233 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1">
272 <source>Recently added</source> 234 <source>Recently added</source>
273 <target>Recent toegevoegd</target> 235 <target>Recent toegevoegd</target>
274 <context-group name="null"> 236 <context-group name="null">
275 <context context-type="linenumber">50</context> 237 <context context-type="linenumber">62</context>
276 </context-group> 238 </context-group>
277 </trans-unit> 239 </trans-unit>
278 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d"> 240 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d">
279 <source>Local</source> 241 <source>Local</source>
280 <target>Lokaal</target> 242 <target>Lokaal</target>
281 <context-group name="null"> 243 <context-group name="null">
282 <context context-type="linenumber">55</context> 244 <context context-type="linenumber">67</context>
283 </context-group> 245 </context-group>
284 </trans-unit> 246 </trans-unit>
285 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> 247 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919">
286 <source>Administration</source> 248 <source>Administration</source>
287 <target>Administratie</target> 249 <target>Administratie</target>
288 <context-group name="null"> 250 <context-group name="null">
289 <context context-type="linenumber">64</context> 251 <context context-type="linenumber">76</context>
290 </context-group> 252 </context-group>
291 </trans-unit> 253 </trans-unit>
292 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> 254 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a">
293 <source>About</source> 255 <source>About</source>
294 <target>Over</target> 256 <target>Over</target>
295 <context-group name="null"> 257 <context-group name="null">
296 <context context-type="linenumber">23</context> 258 <context context-type="linenumber">25</context>
297 </context-group> 259 </context-group>
298 </trans-unit> 260 </trans-unit>
299 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> 261 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599">
@@ -314,21 +276,21 @@
314 <source>Category</source> 276 <source>Category</source>
315 <target>Categorie</target> 277 <target>Categorie</target>
316 <context-group name="null"> 278 <context-group name="null">
317 <context context-type="linenumber">148</context> 279 <context context-type="linenumber">166</context>
318 </context-group> 280 </context-group>
319 </trans-unit> 281 </trans-unit>
320 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c"> 282 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c">
321 <source>Licence</source> 283 <source>Licence</source>
322 <target>Licentie</target> 284 <target>Licentie</target>
323 <context-group name="null"> 285 <context-group name="null">
324 <context context-type="linenumber">157</context> 286 <context context-type="linenumber">175</context>
325 </context-group> 287 </context-group>
326 </trans-unit> 288 </trans-unit>
327 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619"> 289 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619">
328 <source>Language</source> 290 <source>Language</source>
329 <target>Taal</target> 291 <target>Taal</target>
330 <context-group name="null"> 292 <context-group name="null">
331 <context context-type="linenumber">166</context> 293 <context context-type="linenumber">184</context>
332 </context-group> 294 </context-group>
333 </trans-unit> 295 </trans-unit>
334 <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e"> 296 <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e">
@@ -342,7 +304,7 @@
342 <source>Instance</source> 304 <source>Instance</source>
343 <target>Instantie</target> 305 <target>Instantie</target>
344 <context-group name="null"> 306 <context-group name="null">
345 <context context-type="linenumber">7</context> 307 <context context-type="linenumber">8</context>
346 </context-group> 308 </context-group>
347 </trans-unit> 309 </trans-unit>
348 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390"> 310 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390">
@@ -365,14 +327,14 @@
365 <source>Description</source> 327 <source>Description</source>
366 <target>Beschrijving</target> 328 <target>Beschrijving</target>
367 <context-group name="null"> 329 <context-group name="null">
368 <context context-type="linenumber">23</context> 330 <context context-type="linenumber">26</context>
369 </context-group> 331 </context-group>
370 </trans-unit> 332 </trans-unit>
371 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774"> 333 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774">
372 <source>Terms</source> 334 <source>Terms</source>
373 <target>Voorwaarden</target> 335 <target>Voorwaarden</target>
374 <context-group name="null"> 336 <context-group name="null">
375 <context context-type="linenumber">43</context> 337 <context context-type="linenumber">44</context>
376 </context-group> 338 </context-group>
377 </trans-unit> 339 </trans-unit>
378 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27"> 340 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27">
@@ -569,7 +531,7 @@ Het Peer-to-Peer-mechanisme uit PeerTube halen zou je niet méér anonimiteit ge
569 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source> 531 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source>
570 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> abonnees</target> 532 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> abonnees</target>
571 <context-group name="null"> 533 <context-group name="null">
572 <context context-type="linenumber">11</context> 534 <context context-type="linenumber">14</context>
573 </context-group> 535 </context-group>
574 </trans-unit> 536 </trans-unit>
575 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f"> 537 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f">
@@ -583,49 +545,49 @@ Het Peer-to-Peer-mechanisme uit PeerTube halen zou je niet méér anonimiteit ge
583 <source>Name</source> 545 <source>Name</source>
584 <target>Naam</target> 546 <target>Naam</target>
585 <context-group name="null"> 547 <context-group name="null">
586 <context context-type="linenumber">9</context> 548 <context context-type="linenumber">12</context>
587 </context-group> 549 </context-group>
588 </trans-unit> 550 </trans-unit>
589 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b"> 551 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b">
590 <source>Short description</source> 552 <source>Short description</source>
591 <target>Korte omschrijving</target> 553 <target>Korte omschrijving</target>
592 <context-group name="null"> 554 <context-group name="null">
593 <context context-type="linenumber">21</context> 555 <context context-type="linenumber">22</context>
594 </context-group> 556 </context-group>
595 </trans-unit> 557 </trans-unit>
596 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003"> 558 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003">
597 <source>Default client route</source> 559 <source>Default client route</source>
598 <target>Startpagina</target> 560 <target>Startpagina</target>
599 <context-group name="null"> 561 <context-group name="null">
600 <context context-type="linenumber">54</context> 562 <context context-type="linenumber">55</context>
601 </context-group> 563 </context-group>
602 </trans-unit> 564 </trans-unit>
603 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948"> 565 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948">
604 <source>Videos Trending</source> 566 <source>Videos Trending</source>
605 <target>Populaire video's</target> 567 <target>Populaire video's</target>
606 <context-group name="null"> 568 <context-group name="null">
607 <context context-type="linenumber">57</context> 569 <context context-type="linenumber">59</context>
608 </context-group> 570 </context-group>
609 </trans-unit> 571 </trans-unit>
610 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883"> 572 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883">
611 <source>Videos Recently Added</source> 573 <source>Videos Recently Added</source>
612 <target>Recent toegevoegde video's</target> 574 <target>Recent toegevoegde video's</target>
613 <context-group name="null"> 575 <context-group name="null">
614 <context context-type="linenumber">58</context> 576 <context context-type="linenumber">60</context>
615 </context-group> 577 </context-group>
616 </trans-unit> 578 </trans-unit>
617 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f"> 579 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f">
618 <source>Local videos</source> 580 <source>Local videos</source>
619 <target>Video's op deze instantie</target> 581 <target>Video's op deze instantie</target>
620 <context-group name="null"> 582 <context-group name="null">
621 <context context-type="linenumber">59</context> 583 <context context-type="linenumber">61</context>
622 </context-group> 584 </context-group>
623 </trans-unit> 585 </trans-unit>
624 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9"> 586 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9">
625 <source>Policy on videos containing sensitive content</source> 587 <source>Policy on videos containing sensitive content</source>
626 <target>Beleid rond video's met gevoelige inhoud</target> 588 <target>Beleid rond video's met gevoelige inhoud</target>
627 <context-group name="null"> 589 <context-group name="null">
628 <context context-type="linenumber">68</context> 590 <context context-type="linenumber">70</context>
629 </context-group> 591 </context-group>
630 </trans-unit> 592 </trans-unit>
631 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df"> 593 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df">
@@ -660,42 +622,42 @@ Het Peer-to-Peer-mechanisme uit PeerTube halen zou je niet méér anonimiteit ge
660 <source>Signup enabled</source> 622 <source>Signup enabled</source>
661 <target>Registratie mogelijk</target> 623 <target>Registratie mogelijk</target>
662 <context-group name="null"> 624 <context-group name="null">
663 <context context-type="linenumber">90</context> 625 <context context-type="linenumber">92</context>
664 </context-group> 626 </context-group>
665 </trans-unit> 627 </trans-unit>
666 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402"> 628 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402">
667 <source>Signup limit</source> 629 <source>Signup limit</source>
668 <target>Registratielimiet</target> 630 <target>Registratielimiet</target>
669 <context-group name="null"> 631 <context-group name="null">
670 <context context-type="linenumber">94</context> 632 <context context-type="linenumber">101</context>
671 </context-group> 633 </context-group>
672 </trans-unit> 634 </trans-unit>
673 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011"> 635 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011">
674 <source>Administrator</source> 636 <source>Administrator</source>
675 <target>Beheerder</target> 637 <target>Beheerder</target>
676 <context-group name="null"> 638 <context-group name="null">
677 <context context-type="linenumber">116</context> 639 <context context-type="linenumber">123</context>
678 </context-group> 640 </context-group>
679 </trans-unit> 641 </trans-unit>
680 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> 642 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587">
681 <source>Admin email</source> 643 <source>Admin email</source>
682 <target>E-mail van beheerder</target> 644 <target>E-mail van beheerder</target>
683 <context-group name="null"> 645 <context-group name="null">
684 <context context-type="linenumber">119</context> 646 <context context-type="linenumber">126</context>
685 </context-group> 647 </context-group>
686 </trans-unit> 648 </trans-unit>
687 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be"> 649 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be">
688 <source>Users</source> 650 <source>Users</source>
689 <target>Gebruikers</target> 651 <target>Gebruikers</target>
690 <context-group name="null"> 652 <context-group name="null">
691 <context context-type="linenumber">129</context> 653 <context context-type="linenumber">136</context>
692 </context-group> 654 </context-group>
693 </trans-unit> 655 </trans-unit>
694 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09"> 656 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09">
695 <source>User default video quota</source> 657 <source>User default video quota</source>
696 <target>Standaard video-quotum voor gebruikers</target> 658 <target>Standaard video-quotum voor gebruikers</target>
697 <context-group name="null"> 659 <context-group name="null">
698 <context context-type="linenumber">132</context> 660 <context context-type="linenumber">139</context>
699 </context-group> 661 </context-group>
700 </trans-unit> 662 </trans-unit>
701 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5"> 663 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5">
@@ -709,150 +671,105 @@ Het Peer-to-Peer-mechanisme uit PeerTube halen zou je niet méér anonimiteit ge
709 <source>Twitter</source> 671 <source>Twitter</source>
710 <target>Twitter</target> 672 <target>Twitter</target>
711 <context-group name="null"> 673 <context-group name="null">
712 <context context-type="linenumber">148</context> 674 <context context-type="linenumber">170</context>
713 </context-group> 675 </context-group>
714 </trans-unit> 676 </trans-unit>
715 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> 677 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524">
716 <source>Your Twitter username</source> 678 <source>Your Twitter username</source>
717 <target>Je Twitter-gebruikersnaam</target> 679 <target>Je Twitter-gebruikersnaam</target>
718 <context-group name="null"> 680 <context-group name="null">
719 <context context-type="linenumber">151</context> 681 <context context-type="linenumber">173</context>
720 </context-group> 682 </context-group>
721 </trans-unit> 683 </trans-unit>
722 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c"> 684 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c">
723 <source>Indicates the Twitter account for the website or platform on which the content was published.</source> 685 <source>Indicates the Twitter account for the website or platform on which the content was published.</source>
724 <target>Geeft het Twitter-account aan voor de website of het platform waarop de inhoud gepubliceerd werd.</target> 686 <target>Geeft het Twitter-account aan voor de website of het platform waarop de inhoud gepubliceerd werd.</target>
725 <context-group name="null"> 687 <context-group name="null">
726 <context context-type="linenumber">154</context> 688 <context context-type="linenumber">176</context>
727 </context-group> 689 </context-group>
728 </trans-unit> 690 </trans-unit>
729 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605"> 691 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605">
730 <source>Instance whitelisted by Twitter</source> 692 <source>Instance whitelisted by Twitter</source>
731 <target>Instantie ge-whitelist door Twitter</target> 693 <target>Instantie ge-whitelist door Twitter</target>
732 <context-group name="null"> 694 <context-group name="null">
733 <context context-type="linenumber">167</context> 695 <context context-type="linenumber">189</context>
734 </context-group>
735 </trans-unit>
736 <trans-unit id="3f008a1a07ca42c6ad258fde1bbd80ed74ada19b">
737 <source>If your instance is whitelisted by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.&lt;br /&gt;
738If the instance is not whitelisted, we use an image link card that will redirect on your PeerTube instance.&lt;br /&gt;&lt;br /&gt;
739Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; to see if you instance is whitelisted.</source>
740 <target>Als je instantie ge-whitelist is door Twitter, kan een videospeler ingesloten worden in de Twitterfeed als een video gedeeld wordt.&lt;br /&gt;
741Als de instantie niet ge-whitelist is, komt er een afbeelding met een link die naar de PeerTube-instantie leidt.&lt;br /&gt;&lt;br /&gt;
742Vink dit hokje aan, sla de configuratie op en test met een video-URL van je instantie (https://example.com/videos/watch/blabla) op &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; om te zien of je instantie ge-whitelist is.</target>
743 <context-group name="null">
744 <context context-type="linenumber">168</context>
745 </context-group> 696 </context-group>
746 </trans-unit> 697 </trans-unit>
747 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> 698 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5">
748 <source>Services</source> 699 <source>Services</source>
749 <target>Diensten</target> 700 <target>Diensten</target>
750 <context-group name="null"> 701 <context-group name="null">
751 <context context-type="linenumber">146</context> 702 <context context-type="linenumber">168</context>
752 </context-group> 703 </context-group>
753 </trans-unit> 704 </trans-unit>
754 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490"> 705 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490">
755 <source>Transcoding</source> 706 <source>Transcoding</source>
756 <target>Transcoding</target> 707 <target>Transcoding</target>
757 <context-group name="null"> 708 <context-group name="null">
758 <context context-type="linenumber">176</context> 709 <context context-type="linenumber">200</context>
759 </context-group> 710 </context-group>
760 </trans-unit> 711 </trans-unit>
761 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> 712 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9">
762 <source>Transcoding enabled</source> 713 <source>Transcoding enabled</source>
763 <target>Transcoding ingeschakeld</target> 714 <target>Transcoding ingeschakeld</target>
764 <context-group name="null"> 715 <context-group name="null">
765 <context context-type="linenumber">180</context> 716 <context context-type="linenumber">204</context>
766 </context-group> 717 </context-group>
767 </trans-unit> 718 </trans-unit>
768 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> 719 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f">
769 <source>If you disable transcoding, many videos from your users will not work!</source> 720 <source>If you disable transcoding, many videos from your users will not work!</source>
770 <target>Als je transcoding niet inschakelt, zullen veel video's die je gebruikers uploaden niet overal werken!</target> 721 <target>Als je transcoding niet inschakelt, zullen veel video's die je gebruikers uploaden niet overal werken!</target>
771 <context-group name="null"> 722 <context-group name="null">
772 <context context-type="linenumber">181</context> 723 <context context-type="linenumber">205</context>
773 </context-group> 724 </context-group>
774 </trans-unit> 725 </trans-unit>
775 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> 726 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2">
776 <source>Transcoding threads</source> 727 <source>Transcoding threads</source>
777 <target>Threads gebruikt voor transcoding</target> 728 <target>Threads gebruikt voor transcoding</target>
778 <context-group name="null"> 729 <context-group name="null">
779 <context context-type="linenumber">187</context> 730 <context context-type="linenumber">211</context>
780 </context-group> 731 </context-group>
781 </trans-unit> 732 </trans-unit>
782 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7"> 733 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7">
783 <source>Previews cache size</source> 734 <source>Previews cache size</source>
784 <target>Cachegrootte voor previews</target> 735 <target>Cachegrootte voor previews</target>
785 <context-group name="null"> 736 <context-group name="null">
786 <context context-type="linenumber">219</context> 737 <context context-type="linenumber">243</context>
787 </context-group> 738 </context-group>
788 </trans-unit> 739 </trans-unit>
789 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c"> 740 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c">
790 <source>Customizations</source> 741 <source>Customizations</source>
791 <target>Aanpassingen</target> 742 <target>Aanpassingen</target>
792 <context-group name="null"> 743 <context-group name="null">
793 <context context-type="linenumber">240</context> 744 <context context-type="linenumber">264</context>
794 </context-group> 745 </context-group>
795 </trans-unit> 746 </trans-unit>
796 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> 747 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c">
797 <source>JavaScript</source> 748 <source>JavaScript</source>
798 <target>JavaScript</target> 749 <target>JavaScript</target>
799 <context-group name="null"> 750 <context-group name="null">
800 <context context-type="linenumber">243</context> 751 <context context-type="linenumber">267</context>
801 </context-group> 752 </context-group>
802 </trans-unit> 753 </trans-unit>
803 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c"> 754 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c">
804 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source> 755 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source>
805 <target>Schrijf JavaScriptcode.&lt;br /&gt;Voorbeeld: &lt;pre&gt;console.log('mijn instantie is fantastisch');&lt;/pre&gt;</target> 756 <target>Schrijf JavaScriptcode.&lt;br /&gt;Voorbeeld: &lt;pre&gt;console.log('mijn instantie is fantastisch');&lt;/pre&gt;</target>
806 <context-group name="null"> 757 <context-group name="null">
807 <context context-type="linenumber">246</context> 758 <context context-type="linenumber">270</context>
808 </context-group>
809 </trans-unit>
810 <trans-unit id="f133b08d6519081bfb8ef51cff4bf2b3af23dde6">
811 <source>
812 Write directly CSS code. Example:&lt;br /&gt;
813 &lt;pre&gt;
814 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
815 background-color: red;
816 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
817 &lt;/pre&gt;
818
819 Prepend with &lt;em&gt;#custom-css&lt;/em&gt; to override styles. Example:
820 &lt;pre&gt;
821 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
822 color: red;
823 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
824 &lt;/pre&gt;
825 </source>
826 <target>Schrijf CSS-code. Voorbeeld:&lt;br /&gt;
827&lt;pre&gt;
828 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
829 background-color: red;
830 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
831&lt;/pre&gt;
832
833Laat er &lt;em&gt;#custom-css&lt;/em&gt; aan voorafgaan om stijlen te overriden. Voorbeeld:
834&lt;pre&gt;
835 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
836 color: red;
837 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
838&lt;/pre&gt;
839 </target>
840 <context-group name="null">
841 <context context-type="linenumber">262</context>
842 </context-group> 759 </context-group>
843 </trans-unit> 760 </trans-unit>
844 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> 761 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab">
845 <source>Advanced configuration</source> 762 <source>Advanced configuration</source>
846 <target>Geavanceerde configuratie</target> 763 <target>Geavanceerde configuratie</target>
847 <context-group name="null"> 764 <context-group name="null">
848 <context context-type="linenumber">174</context> 765 <context context-type="linenumber">197</context>
849 </context-group> 766 </context-group>
850 </trans-unit> 767 </trans-unit>
851 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> 768 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8">
852 <source>Update configuration</source> 769 <source>Update configuration</source>
853 <target>Updateconfiguratie</target> 770 <target>Updateconfiguratie</target>
854 <context-group name="null"> 771 <context-group name="null">
855 <context context-type="linenumber">289</context> 772 <context context-type="linenumber">314</context>
856 </context-group> 773 </context-group>
857 </trans-unit> 774 </trans-unit>
858 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c"> 775 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c">
@@ -873,31 +790,13 @@ Laat er &lt;em&gt;#custom-css&lt;/em&gt; aan voorafgaan om stijlen te overriden.
873 <context context-type="linenumber">7</context> 790 <context context-type="linenumber">7</context>
874 </context-group> 791 </context-group>
875 </trans-unit> 792 </trans-unit>
876 <trans-unit id="1c9406213cf05033eda4d3df678217b5eb822315">
877 <source>
878 Video abuses
879 </source>
880 <target>Videomisbruik</target>
881 <context-group name="null">
882 <context context-type="linenumber">11</context>
883 </context-group>
884 </trans-unit>
885 <trans-unit id="96ccede058f0022f34230c3adc09e60076b6d037">
886 <source>
887 Video blacklist
888 </source>
889 <target>Zwarte lijst</target>
890 <context-group name="null">
891 <context context-type="linenumber">15</context>
892 </context-group>
893 </trans-unit>
894 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368"> 793 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368">
895 <source> 794 <source>
896 Jobs 795 Jobs
897 </source> 796 </source>
898 <target>Jobs</target> 797 <target>Jobs</target>
899 <context-group name="null"> 798 <context-group name="null">
900 <context context-type="linenumber">19</context> 799 <context context-type="linenumber">15</context>
901 </context-group> 800 </context-group>
902 </trans-unit> 801 </trans-unit>
903 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13"> 802 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13">
@@ -906,7 +805,7 @@ Laat er &lt;em&gt;#custom-css&lt;/em&gt; aan voorafgaan om stijlen te overriden.
906 </source> 805 </source>
907 <target>Configuratie</target> 806 <target>Configuratie</target>
908 <context-group name="null"> 807 <context-group name="null">
909 <context context-type="linenumber">23</context> 808 <context context-type="linenumber">19</context>
910 </context-group> 809 </context-group>
911 </trans-unit> 810 </trans-unit>
912 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396"> 811 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396">
@@ -1020,14 +919,7 @@ Laat er &lt;em&gt;#custom-css&lt;/em&gt; aan voorafgaan om stijlen te overriden.
1020 <source>Role</source> 919 <source>Role</source>
1021 <target>Rol</target> 920 <target>Rol</target>
1022 <context-group name="null"> 921 <context-group name="null">
1023 <context context-type="linenumber">19</context> 922 <context context-type="linenumber">20</context>
1024 </context-group>
1025 </trans-unit>
1026 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
1027 <source>Video quota</source>
1028 <target>Videoquotum</target>
1029 <context-group name="null">
1030 <context context-type="linenumber">18</context>
1031 </context-group> 923 </context-group>
1032 </trans-unit> 924 </trans-unit>
1033 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345"> 925 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345">
@@ -1054,91 +946,42 @@ Laat er &lt;em&gt;#custom-css&lt;/em&gt; aan voorafgaan om stijlen te overriden.
1054 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source> 946 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1055 <target>Gebruikersnaam <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target> 947 <target>Gebruikersnaam <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1056 <context-group name="null"> 948 <context-group name="null">
1057 <context context-type="linenumber">16</context> 949 <context context-type="linenumber">17</context>
1058 </context-group>
1059 </trans-unit>
1060 <trans-unit id="0c7e8870481f1287af6a142f538391d8c16c2408">
1061 <source>Video abuses list</source>
1062 <target>Lijst van misbruiken</target>
1063 <context-group name="null">
1064 <context context-type="linenumber">2</context>
1065 </context-group>
1066 </trans-unit>
1067 <trans-unit id="4ba250869daa372b54d24fafc0ea934769ee4076">
1068 <source>Reason</source>
1069 <target>Reden</target>
1070 <context-group name="null">
1071 <context context-type="linenumber">11</context>
1072 </context-group> 950 </context-group>
1073 </trans-unit> 951 </trans-unit>
1074 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2"> 952 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2">
1075 <source>Reporter</source> 953 <source>Reporter</source>
1076 <target>Melder</target> 954 <target>Melder</target>
1077 <context-group name="null"> 955 <context-group name="null">
1078 <context context-type="linenumber">12</context> 956 <context context-type="linenumber">8</context>
1079 </context-group> 957 </context-group>
1080 </trans-unit> 958 </trans-unit>
1081 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4"> 959 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4">
1082 <source>Video</source> 960 <source>Video</source>
1083 <target>Video</target> 961 <target>Video</target>
1084 <context-group name="null"> 962 <context-group name="null">
1085 <context context-type="linenumber">9</context> 963 <context context-type="linenumber">14</context>
1086 </context-group> 964 </context-group>
1087 </trans-unit> 965 </trans-unit>
1088 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7"> 966 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7">
1089 <source>Go to the account</source> 967 <source>Go to the account</source>
1090 <target>Naar account gaan</target> 968 <target>Naar account gaan</target>
1091 <context-group name="null"> 969 <context-group name="null">
1092 <context context-type="linenumber">22</context> 970 <context context-type="linenumber">27</context>
1093 </context-group> 971 </context-group>
1094 </trans-unit> 972 </trans-unit>
1095 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5"> 973 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5">
1096 <source>Go to the video</source> 974 <source>Go to the video</source>
1097 <target>Naar video gaan</target> 975 <target>Naar video gaan</target>
1098 <context-group name="null"> 976 <context-group name="null">
1099 <context context-type="linenumber">28</context> 977 <context context-type="linenumber">33</context>
1100 </context-group> 978 </context-group>
1101 </trans-unit> 979 </trans-unit>
1102 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1"> 980 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1">
1103 <source>Blacklisted videos</source> 981 <source>Blacklisted videos</source>
1104 <target>Video's op zwarte lijst</target> 982 <target>Video's op zwarte lijst</target>
1105 <context-group name="null"> 983 <context-group name="null">
1106 <context context-type="linenumber">2</context> 984 <context context-type="linenumber">7</context>
1107 </context-group>
1108 </trans-unit>
1109 <trans-unit id="7c02d113e9b7884037834cddecf2a32a5538b35b">
1110 <source>Name <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1111 <target>Naam <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1112 <context-group name="null">
1113 <context context-type="linenumber">11</context>
1114 </context-group>
1115 </trans-unit>
1116 <trans-unit id="cd5ca5da9e2fa21571e9f86a24a5c3b45a3ddc51">
1117 <source>Views <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1118 <target>Video's aantal keer bekeken <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1119 <context-group name="null">
1120 <context context-type="linenumber">13</context>
1121 </context-group>
1122 </trans-unit>
1123 <trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9">
1124 <source>NSFW</source>
1125 <target>NSFW</target>
1126 <context-group name="null">
1127 <context context-type="linenumber">14</context>
1128 </context-group>
1129 </trans-unit>
1130 <trans-unit id="8c87d9527af7ff2ada84c911516a9e43a352e401">
1131 <source>UUID</source>
1132 <target>UUID</target>
1133 <context-group name="null">
1134 <context context-type="linenumber">15</context>
1135 </context-group>
1136 </trans-unit>
1137 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1138 <source>Unblacklist</source>
1139 <target>Van zwarte lijst halen</target>
1140 <context-group name="null">
1141 <context context-type="linenumber">30</context>
1142 </context-group> 985 </context-group>
1143 </trans-unit> 986 </trans-unit>
1144 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6"> 987 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6">
@@ -1148,18 +991,11 @@ Laat er &lt;em&gt;#custom-css&lt;/em&gt; aan voorafgaan om stijlen te overriden.
1148 <context context-type="linenumber">3</context> 991 <context context-type="linenumber">3</context>
1149 </context-group> 992 </context-group>
1150 </trans-unit> 993 </trans-unit>
1151 <trans-unit id="520d68b2c9f7dacaf2a5073716cad9bd328ea7e7">
1152 <source>My video channels</source>
1153 <target>Mijn videokanalen</target>
1154 <context-group name="null">
1155 <context context-type="linenumber">5</context>
1156 </context-group>
1157 </trans-unit>
1158 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894"> 994 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894">
1159 <source>My videos</source> 995 <source>My videos</source>
1160 <target>Mijn video's</target> 996 <target>Mijn video's</target>
1161 <context-group name="null"> 997 <context-group name="null">
1162 <context context-type="linenumber">7</context> 998 <context context-type="linenumber">14</context>
1163 </context-group> 999 </context-group>
1164 </trans-unit> 1000 </trans-unit>
1165 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48"> 1001 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48">
@@ -1190,11 +1026,13 @@ Laat er &lt;em&gt;#custom-css&lt;/em&gt; aan voorafgaan om stijlen te overriden.
1190 <context context-type="linenumber">19</context> 1026 <context context-type="linenumber">19</context>
1191 </context-group> 1027 </context-group>
1192 </trans-unit> 1028 </trans-unit>
1193 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7"> 1029 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
1194 <source>Delete</source> 1030 <source>
1195 <target>Verwijderen</target> 1031 Cancel
1032 </source>
1033 <target>Annuleren</target>
1196 <context-group name="null"> 1034 <context-group name="null">
1197 <context context-type="linenumber">15</context> 1035 <context context-type="linenumber">30</context>
1198 </context-group> 1036 </context-group>
1199 </trans-unit> 1037 </trans-unit>
1200 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260"> 1038 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260">
@@ -1208,7 +1046,7 @@ Laat er &lt;em&gt;#custom-css&lt;/em&gt; aan voorafgaan om stijlen te overriden.
1208 <source>Go to the channel</source> 1046 <source>Go to the channel</source>
1209 <target>Naar kanaal gaan</target> 1047 <target>Naar kanaal gaan</target>
1210 <context-group name="null"> 1048 <context-group name="null">
1211 <context context-type="linenumber">15</context> 1049 <context context-type="linenumber">8</context>
1212 </context-group> 1050 </context-group>
1213 </trans-unit> 1051 </trans-unit>
1214 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68"> 1052 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68">
@@ -1231,14 +1069,28 @@ When you will upload a video in this channel, the video support field will be au
1231 <target>Korte tekst om mensen te vertellen hoe ze je kanaal kunnen ondersteunen (lidmaatschap…).&lt;br/&gt;&lt;br/&gt; 1069 <target>Korte tekst om mensen te vertellen hoe ze je kanaal kunnen ondersteunen (lidmaatschap…).&lt;br/&gt;&lt;br/&gt;
1232Als je een video uploadt in dit kanaal, wordt deze tekst ingevuld in het "ondersteun"-veld.</target> 1070Als je een video uploadt in dit kanaal, wordt deze tekst ingevuld in het "ondersteun"-veld.</target>
1233 <context-group name="null"> 1071 <context-group name="null">
1234 <context context-type="linenumber">36</context> 1072 <context context-type="linenumber">52</context>
1073 </context-group>
1074 </trans-unit>
1075 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1076 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1077 <target>Gemaakt door <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1078 <context-group name="null">
1079 <context context-type="linenumber">17</context>
1080 </context-group>
1081 </trans-unit>
1082 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1083 <source>Go the owner account page</source>
1084 <target>Naar de accountpagina van de eigenaar gaan</target>
1085 <context-group name="null">
1086 <context context-type="linenumber">16</context>
1235 </context-group> 1087 </context-group>
1236 </trans-unit> 1088 </trans-unit>
1237 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9"> 1089 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9">
1238 <source>Change password</source> 1090 <source>Change password</source>
1239 <target>Wachtwoord veranderen</target> 1091 <target>Wachtwoord veranderen</target>
1240 <context-group name="null"> 1092 <context-group name="null">
1241 <context context-type="linenumber">19</context> 1093 <context context-type="linenumber">22</context>
1242 </context-group> 1094 </context-group>
1243 </trans-unit> 1095 </trans-unit>
1244 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229"> 1096 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229">
@@ -1298,20 +1150,6 @@ Als je een video uploadt in dit kanaal, wordt deze tekst ingevuld in het "onders
1298 <context context-type="linenumber">1</context> 1150 <context context-type="linenumber">1</context>
1299 </context-group> 1151 </context-group>
1300 </trans-unit> 1152 </trans-unit>
1301 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1302 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1303 <target>Gemaakt door <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1304 <context-group name="null">
1305 <context context-type="linenumber">14</context>
1306 </context-group>
1307 </trans-unit>
1308 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1309 <source>Go the owner account page</source>
1310 <target>Naar de accountpagina van de eigenaar gaan</target>
1311 <context-group name="null">
1312 <context context-type="linenumber">13</context>
1313 </context-group>
1314 </trans-unit>
1315 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8"> 1153 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8">
1316 <source>Support this channel</source> 1154 <source>Support this channel</source>
1317 <target>Ondersteun dit kanaal</target> 1155 <target>Ondersteun dit kanaal</target>
@@ -1330,14 +1168,14 @@ Als je een video uploadt in dit kanaal, wordt deze tekst ingevuld in het "onders
1330 <source>Channel</source> 1168 <source>Channel</source>
1331 <target>Kanaal</target> 1169 <target>Kanaal</target>
1332 <context-group name="null"> 1170 <context-group name="null">
1333 <context context-type="linenumber">35</context> 1171 <context context-type="linenumber">38</context>
1334 </context-group> 1172 </context-group>
1335 </trans-unit> 1173 </trans-unit>
1336 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427"> 1174 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427">
1337 <source>Privacy</source> 1175 <source>Privacy</source>
1338 <target>Zichtbaarheid</target> 1176 <target>Zichtbaarheid</target>
1339 <context-group name="null"> 1177 <context-group name="null">
1340 <context context-type="linenumber">143</context> 1178 <context context-type="linenumber">161</context>
1341 </context-group> 1179 </context-group>
1342 </trans-unit> 1180 </trans-unit>
1343 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> 1181 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9">
@@ -1365,63 +1203,56 @@ Als je een video uploadt in dit kanaal, wordt deze tekst ingevuld in het "onders
1365 <source>Title</source> 1203 <source>Title</source>
1366 <target>Titel</target> 1204 <target>Titel</target>
1367 <context-group name="null"> 1205 <context-group name="null">
1368 <context context-type="linenumber">7</context> 1206 <context context-type="linenumber">9</context>
1369 </context-group> 1207 </context-group>
1370 </trans-unit> 1208 </trans-unit>
1371 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b"> 1209 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b">
1372 <source>Tags</source> 1210 <source>Tags</source>
1373 <target>Tags</target> 1211 <target>Tags</target>
1374 <context-group name="null"> 1212 <context-group name="null">
1375 <context context-type="linenumber">175</context> 1213 <context context-type="linenumber">193</context>
1376 </context-group>
1377 </trans-unit>
1378 <trans-unit id="935e7146fe6c12169abfda18536c5856935cfd82">
1379 <source>(press Enter to add)</source>
1380 <target>(druk op Enter om toe te voegen)</target>
1381 <context-group name="null">
1382 <context context-type="linenumber">15</context>
1383 </context-group> 1214 </context-group>
1384 </trans-unit> 1215 </trans-unit>
1385 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e"> 1216 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e">
1386 <source>Video descriptions are truncated by default and require manual action to expand them.</source> 1217 <source>Video descriptions are truncated by default and require manual action to expand them.</source>
1387 <target>Videobeschrijvingen worden standaard gedeeltelijk weergegeven, de kijker kan ze handmatig openvouwen.</target> 1218 <target>Videobeschrijvingen worden standaard gedeeltelijk weergegeven, de kijker kan ze handmatig openvouwen.</target>
1388 <context-group name="null"> 1219 <context-group name="null">
1389 <context context-type="linenumber">24</context> 1220 <context context-type="linenumber">27</context>
1390 </context-group> 1221 </context-group>
1391 </trans-unit> 1222 </trans-unit>
1392 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> 1223 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5">
1393 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source> 1224 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source>
1394 <target>Publicatie uitstellen (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target> 1225 <target>Publicatie uitstellen (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target>
1395 <context-group name="null"> 1226 <context-group name="null">
1396 <context context-type="linenumber">101</context> 1227 <context context-type="linenumber">104</context>
1397 </context-group> 1228 </context-group>
1398 </trans-unit> 1229 </trans-unit>
1399 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee"> 1230 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee">
1400 <source>This video contains mature or explicit content</source> 1231 <source>This video contains mature or explicit content</source>
1401 <target>Deze video bevat expliciete inhoud of inhoud die enkel voor volwassenen geschikt is</target> 1232 <target>Deze video bevat expliciete inhoud of inhoud die enkel voor volwassenen geschikt is</target>
1402 <context-group name="null"> 1233 <context-group name="null">
1403 <context context-type="linenumber">115</context> 1234 <context context-type="linenumber">118</context>
1404 </context-group> 1235 </context-group>
1405 </trans-unit> 1236 </trans-unit>
1406 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644"> 1237 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644">
1407 <source>Some instances do not list videos containing mature or explicit content by default.</source> 1238 <source>Some instances do not list videos containing mature or explicit content by default.</source>
1408 <target>Op sommige instanties worden expliciete video's standaard niet in zoekresultaten en in lijsten getoond.</target> 1239 <target>Op sommige instanties worden expliciete video's standaard niet in zoekresultaten en in lijsten getoond.</target>
1409 <context-group name="null"> 1240 <context-group name="null">
1410 <context context-type="linenumber">116</context> 1241 <context context-type="linenumber">119</context>
1411 </context-group> 1242 </context-group>
1412 </trans-unit> 1243 </trans-unit>
1413 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a"> 1244 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a">
1414 <source>Enable video comments</source> 1245 <source>Enable video comments</source>
1415 <target>Videoreacties toelaten</target> 1246 <target>Videoreacties toelaten</target>
1416 <context-group name="null"> 1247 <context-group name="null">
1417 <context context-type="linenumber">121</context> 1248 <context context-type="linenumber">124</context>
1418 </context-group> 1249 </context-group>
1419 </trans-unit> 1250 </trans-unit>
1420 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0"> 1251 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0">
1421 <source>Wait transcoding before publishing the video</source> 1252 <source>Wait transcoding before publishing the video</source>
1422 <target>Wacht tot het transcoderen voltooid is om de video te publiceren</target> 1253 <target>Wacht tot het transcoderen voltooid is om de video te publiceren</target>
1423 <context-group name="null"> 1254 <context-group name="null">
1424 <context context-type="linenumber">126</context> 1255 <context context-type="linenumber">129</context>
1425 </context-group> 1256 </context-group>
1426 </trans-unit> 1257 </trans-unit>
1427 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7"> 1258 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7">
@@ -1435,35 +1266,35 @@ Als je een video uploadt in dit kanaal, wordt deze tekst ingevuld in het "onders
1435 <source>Upload thumbnail</source> 1266 <source>Upload thumbnail</source>
1436 <target>Thumbnail uploaden</target> 1267 <target>Thumbnail uploaden</target>
1437 <context-group name="null"> 1268 <context-group name="null">
1438 <context context-type="linenumber">186</context> 1269 <context context-type="linenumber">194</context>
1439 </context-group> 1270 </context-group>
1440 </trans-unit> 1271 </trans-unit>
1441 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639"> 1272 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639">
1442 <source>Upload preview</source> 1273 <source>Upload preview</source>
1443 <target>Voorvertoning uploaden</target> 1274 <target>Voorvertoning uploaden</target>
1444 <context-group name="null"> 1275 <context-group name="null">
1445 <context context-type="linenumber">193</context> 1276 <context context-type="linenumber">201</context>
1446 </context-group> 1277 </context-group>
1447 </trans-unit> 1278 </trans-unit>
1448 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604"> 1279 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604">
1449 <source>Support</source> 1280 <source>Support</source>
1450 <target>Ondersteun</target> 1281 <target>Ondersteun</target>
1451 <context-group name="null"> 1282 <context-group name="null">
1452 <context context-type="linenumber">71</context> 1283 <context context-type="linenumber">69</context>
1453 </context-group> 1284 </context-group>
1454 </trans-unit> 1285 </trans-unit>
1455 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0"> 1286 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0">
1456 <source>Short text to tell people how they can support you (membership platform...).</source> 1287 <source>Short text to tell people how they can support you (membership platform...).</source>
1457 <target>Korte tekst om mensen te vertellen hoe ze je kanaal kunnen ondersteunen (bv. door gelddonaties).</target> 1288 <target>Korte tekst om mensen te vertellen hoe ze je kanaal kunnen ondersteunen (bv. door gelddonaties).</target>
1458 <context-group name="null"> 1289 <context-group name="null">
1459 <context context-type="linenumber">200</context> 1290 <context context-type="linenumber">208</context>
1460 </context-group> 1291 </context-group>
1461 </trans-unit> 1292 </trans-unit>
1462 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1"> 1293 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1">
1463 <source>Advanced settings</source> 1294 <source>Advanced settings</source>
1464 <target>Geavanceerde instellingen</target> 1295 <target>Geavanceerde instellingen</target>
1465 <context-group name="null"> 1296 <context-group name="null">
1466 <context context-type="linenumber">182</context> 1297 <context context-type="linenumber">189</context>
1467 </context-group> 1298 </context-group>
1468 </trans-unit> 1299 </trans-unit>
1469 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0"> 1300 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0">
@@ -1474,6 +1305,13 @@ Als je een video uploadt in dit kanaal, wordt deze tekst ingevuld in het "onders
1474 <context context-type="linenumber">2</context> 1305 <context context-type="linenumber">2</context>
1475 </context-group> 1306 </context-group>
1476 </trans-unit> 1307 </trans-unit>
1308 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1309 <source>Unblacklist</source>
1310 <target>Van zwarte lijst halen</target>
1311 <context-group name="null">
1312 <context context-type="linenumber">100</context>
1313 </context-group>
1314 </trans-unit>
1477 <trans-unit id="8e6d54c4f760d9e90518eef5334211c48c0b71e2"> 1315 <trans-unit id="8e6d54c4f760d9e90518eef5334211c48c0b71e2">
1478 <source>Publication scheduled on </source> 1316 <source>Publication scheduled on </source>
1479 <target>Publicatie uitgesteld tot</target> 1317 <target>Publicatie uitgesteld tot</target>
diff --git a/client/src/locale/target/angular_oc.xml b/client/src/locale/target/angular_oc.xml
index a6ecf7b9c..38e0c5e5c 100644
--- a/client/src/locale/target/angular_oc.xml
+++ b/client/src/locale/target/angular_oc.xml
@@ -3,16 +3,6 @@
3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1"> 3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1">
4 <file source-language="en-US" datatype="plaintext" original="" target-language="oc"> 4 <file source-language="en-US" datatype="plaintext" original="" target-language="oc">
5 <body> 5 <body>
6 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
7 <source>
8 Cancel
9 </source>
10 <target>
11 Anullar </target>
12 <context-group name="null">
13 <context context-type="linenumber">45</context>
14 </context-group>
15 </trans-unit>
16 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46"> 6 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46">
17 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source> 7 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source>
18 <target>(extensions : <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, talha max : <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target> 8 <target>(extensions : <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, talha max : <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target>
@@ -24,14 +14,21 @@
24 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 14 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
25 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visualizacions</target> 15 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visualizacions</target>
26 <context-group name="null"> 16 <context-group name="null">
27 <context context-type="linenumber">34</context> 17 <context context-type="linenumber">12</context>
18 </context-group>
19 </trans-unit>
20 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7">
21 <source>Delete</source>
22 <target>Suprimir</target>
23 <context-group name="null">
24 <context context-type="linenumber">15</context>
28 </context-group> 25 </context-group>
29 </trans-unit> 26 </trans-unit>
30 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> 27 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c">
31 <source>Edit</source> 28 <source>Edit</source>
32 <target>Modificar</target> 29 <target>Modificar</target>
33 <context-group name="null"> 30 <context-group name="null">
34 <context context-type="linenumber">3</context> 31 <context context-type="linenumber">5</context>
35 </context-group> 32 </context-group>
36 </trans-unit> 33 </trans-unit>
37 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> 34 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d">
@@ -45,7 +42,7 @@
45 <source>Complete preview</source> 42 <source>Complete preview</source>
46 <target>Apercebut complèt</target> 43 <target>Apercebut complèt</target>
47 <context-group name="null"> 44 <context-group name="null">
48 <context context-type="linenumber">10</context> 45 <context context-type="linenumber">13</context>
49 </context-group> 46 </context-group>
50 </trans-unit> 47 </trans-unit>
51 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> 48 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f">
@@ -55,6 +52,13 @@
55 <context context-type="linenumber">18</context> 52 <context context-type="linenumber">18</context>
56 </context-group> 53 </context-group>
57 </trans-unit> 54 </trans-unit>
55 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
56 <source>Video quota</source>
57 <target>Quòta vidèo</target>
58 <context-group name="null">
59 <context context-type="linenumber">19</context>
60 </context-group>
61 </trans-unit>
58 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea"> 62 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea">
59 <source> 63 <source>
60 Login 64 Login
@@ -70,14 +74,14 @@
70 <source>User</source> 74 <source>User</source>
71 <target>Utilizaire</target> 75 <target>Utilizaire</target>
72 <context-group name="null"> 76 <context-group name="null">
73 <context context-type="linenumber">11</context> 77 <context context-type="linenumber">13</context>
74 </context-group> 78 </context-group>
75 </trans-unit> 79 </trans-unit>
76 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> 80 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478">
77 <source>Username or email address</source> 81 <source>Username or email address</source>
78 <target>Nom d’utilizaire o adreça electronica</target> 82 <target>Nom d’utilizaire o adreça electronica</target>
79 <context-group name="null"> 83 <context-group name="null">
80 <context context-type="linenumber">13</context> 84 <context context-type="linenumber">15</context>
81 </context-group> 85 </context-group>
82 </trans-unit> 86 </trans-unit>
83 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87"> 87 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87">
@@ -88,7 +92,7 @@
88 o crear un compte 92 o crear un compte
89 </target> 93 </target>
90 <context-group name="null"> 94 <context-group name="null">
91 <context context-type="linenumber">16</context> 95 <context context-type="linenumber">18</context>
92 </context-group> 96 </context-group>
93 </trans-unit> 97 </trans-unit>
94 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b"> 98 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b">
@@ -99,14 +103,14 @@
99 o crear un compte sus una instància mai 103 o crear un compte sus una instància mai
100 </target> 104 </target>
101 <context-group name="null"> 105 <context-group name="null">
102 <context context-type="linenumber">20</context> 106 <context context-type="linenumber">22</context>
103 </context-group> 107 </context-group>
104 </trans-unit> 108 </trans-unit>
105 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3"> 109 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3">
106 <source>User registration is not allowed on this instance, but you can register on many others!</source> 110 <source>User registration is not allowed on this instance, but you can register on many others!</source>
107 <target>Las inscripcions son pas autorizadas sus aquesta instància, mas podètz vos marcar sus un fum d’autras !</target> 111 <target>Las inscripcions son pas autorizadas sus aquesta instància, mas podètz vos marcar sus un fum d’autras !</target>
108 <context-group name="null"> 112 <context-group name="null">
109 <context context-type="linenumber">26</context> 113 <context context-type="linenumber">28</context>
110 </context-group> 114 </context-group>
111 </trans-unit> 115 </trans-unit>
112 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> 116 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407">
@@ -120,35 +124,35 @@
120 <source>I forgot my password</source> 124 <source>I forgot my password</source>
121 <target>Ai oblidat lo senhal</target> 125 <target>Ai oblidat lo senhal</target>
122 <context-group name="null"> 126 <context-group name="null">
123 <context context-type="linenumber">42</context> 127 <context context-type="linenumber">44</context>
124 </context-group> 128 </context-group>
125 </trans-unit> 129 </trans-unit>
126 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681"> 130 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681">
127 <source>Forgot your password</source> 131 <source>Forgot your password</source>
128 <target>Senhal oblidat</target> 132 <target>Senhal oblidat</target>
129 <context-group name="null"> 133 <context-group name="null">
130 <context context-type="linenumber">59</context> 134 <context context-type="linenumber">57</context>
131 </context-group> 135 </context-group>
132 </trans-unit> 136 </trans-unit>
133 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc"> 137 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc">
134 <source>Email</source> 138 <source>Email</source>
135 <target>Corrièl</target> 139 <target>Corrièl</target>
136 <context-group name="null"> 140 <context-group name="null">
137 <context context-type="linenumber">17</context> 141 <context context-type="linenumber">8</context>
138 </context-group> 142 </context-group>
139 </trans-unit> 143 </trans-unit>
140 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529"> 144 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529">
141 <source>Email address</source> 145 <source>Email address</source>
142 <target>Adreça de corrièl</target> 146 <target>Adreça de corrièl</target>
143 <context-group name="null"> 147 <context-group name="null">
144 <context context-type="linenumber">66</context> 148 <context context-type="linenumber">10</context>
145 </context-group> 149 </context-group>
146 </trans-unit> 150 </trans-unit>
147 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55"> 151 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55">
148 <source>Send me an email to reset my password</source> 152 <source>Send me an email to reset my password</source>
149 <target>Me mandar un corrièl per reïnicializar lo senhal</target> 153 <target>Me mandar un corrièl per reïnicializar lo senhal</target>
150 <context-group name="null"> 154 <context-group name="null">
151 <context context-type="linenumber">77</context> 155 <context context-type="linenumber">75</context>
152 </context-group> 156 </context-group>
153 </trans-unit> 157 </trans-unit>
154 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa"> 158 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa">
@@ -192,24 +196,6 @@
192 <context context-type="linenumber">3</context> 196 <context context-type="linenumber">3</context>
193 </context-group> 197 </context-group>
194 </trans-unit> 198 </trans-unit>
195 <trans-unit id="a6807b834e01ce165aa61fad157b0ff4288b6bf1">
196 <source>Initial video quota:</source>
197 <target>Quota inicial de vidèo :</target>
198 <context-group name="null">
199 <context context-type="linenumber">8</context>
200 </context-group>
201 </trans-unit>
202 <trans-unit id="87b6b2c26215c5e712d3bfe4cc86ba53bc23451c">
203 <source>
204 Unlimited
205 </source>
206 <target>
207 cap de limit
208 </target>
209 <context-group name="null">
210 <context context-type="linenumber">16</context>
211 </context-group>
212 </trans-unit>
213 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> 199 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48">
214 <source>Username</source> 200 <source>Username</source>
215 <target>Nom d’utilizaire</target> 201 <target>Nom d’utilizaire</target>
@@ -221,14 +207,14 @@
221 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source> 207 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source>
222 <target>Ai legit e soi d’acòrdi amb los &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Tèrmes&lt;/a&gt; d’aquesta instància</target> 208 <target>Ai legit e soi d’acòrdi amb los &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Tèrmes&lt;/a&gt; d’aquesta instància</target>
223 <context-group name="null"> 209 <context-group name="null">
224 <context context-type="linenumber">60</context> 210 <context context-type="linenumber">54</context>
225 </context-group> 211 </context-group>
226 </trans-unit> 212 </trans-unit>
227 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4"> 213 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4">
228 <source>Signup</source> 214 <source>Signup</source>
229 <target>Inscripcion</target> 215 <target>Inscripcion</target>
230 <context-group name="null"> 216 <context-group name="null">
231 <context context-type="linenumber">86</context> 217 <context context-type="linenumber">88</context>
232 </context-group> 218 </context-group>
233 </trans-unit> 219 </trans-unit>
234 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a"> 220 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a">
@@ -271,103 +257,70 @@
271 <source>Change the language</source> 257 <source>Change the language</source>
272 <target>Cambiar la lenga</target> 258 <target>Cambiar la lenga</target>
273 <context-group name="null"> 259 <context-group name="null">
274 <context context-type="linenumber">76</context> 260 <context context-type="linenumber">88</context>
275 </context-group>
276 </trans-unit>
277 <trans-unit id="b8ccc4f1b3f839fca9bd59e072f715fd487d540f">
278 <source>
279 My public profile
280 </source>
281 <target>
282 Mon perfil public
283 </target>
284 <context-group name="null">
285 <context context-type="linenumber">19</context>
286 </context-group>
287 </trans-unit>
288 <trans-unit id="c84b721e9325c9cce20d92f4dbd66898ab5ec947">
289 <source>
290 My account
291 </source>
292 <target>
293 Mon compte
294 </target>
295 <context-group name="null">
296 <context context-type="linenumber">23</context>
297 </context-group>
298 </trans-unit>
299 <trans-unit id="ba7378cdaaa60b4fee17a551b232ad3512dac17d">
300 <source>
301 Log out
302 </source>
303 <target>
304 Se desconnectar
305 </target>
306 <context-group name="null">
307 <context context-type="linenumber">27</context>
308 </context-group> 261 </context-group>
309 </trans-unit> 262 </trans-unit>
310 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> 263 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9">
311 <source>Login</source> 264 <source>Login</source>
312 <target>Connexion</target> 265 <target>Connexion</target>
313 <context-group name="null"> 266 <context-group name="null">
314 <context context-type="linenumber">36</context> 267 <context context-type="linenumber">38</context>
315 </context-group> 268 </context-group>
316 </trans-unit> 269 </trans-unit>
317 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> 270 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87">
318 <source>Create an account</source> 271 <source>Create an account</source>
319 <target>Crear un compte</target> 272 <target>Crear un compte</target>
320 <context-group name="null"> 273 <context-group name="null">
321 <context context-type="linenumber">37</context> 274 <context context-type="linenumber">39</context>
322 </context-group> 275 </context-group>
323 </trans-unit> 276 </trans-unit>
324 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238"> 277 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238">
325 <source>Videos</source> 278 <source>Videos</source>
326 <target>Vidèos</target> 279 <target>Vidèos</target>
327 <context-group name="null"> 280 <context-group name="null">
328 <context context-type="linenumber">21</context> 281 <context context-type="linenumber">24</context>
329 </context-group> 282 </context-group>
330 </trans-unit> 283 </trans-unit>
331 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> 284 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807">
332 <source>Trending</source> 285 <source>Trending</source>
333 <target>Tendéncias</target> 286 <target>Tendéncias</target>
334 <context-group name="null"> 287 <context-group name="null">
335 <context context-type="linenumber">45</context> 288 <context context-type="linenumber">57</context>
336 </context-group> 289 </context-group>
337 </trans-unit> 290 </trans-unit>
338 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> 291 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1">
339 <source>Recently added</source> 292 <source>Recently added</source>
340 <target>Apondons recents</target> 293 <target>Apondons recents</target>
341 <context-group name="null"> 294 <context-group name="null">
342 <context context-type="linenumber">50</context> 295 <context context-type="linenumber">62</context>
343 </context-group> 296 </context-group>
344 </trans-unit> 297 </trans-unit>
345 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d"> 298 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d">
346 <source>Local</source> 299 <source>Local</source>
347 <target>Localas</target> 300 <target>Localas</target>
348 <context-group name="null"> 301 <context-group name="null">
349 <context context-type="linenumber">55</context> 302 <context context-type="linenumber">67</context>
350 </context-group> 303 </context-group>
351 </trans-unit> 304 </trans-unit>
352 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f"> 305 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f">
353 <source>More</source> 306 <source>More</source>
354 <target>Mai</target> 307 <target>Mai</target>
355 <context-group name="null"> 308 <context-group name="null">
356 <context context-type="linenumber">60</context> 309 <context context-type="linenumber">72</context>
357 </context-group> 310 </context-group>
358 </trans-unit> 311 </trans-unit>
359 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> 312 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919">
360 <source>Administration</source> 313 <source>Administration</source>
361 <target>Administracion</target> 314 <target>Administracion</target>
362 <context-group name="null"> 315 <context-group name="null">
363 <context context-type="linenumber">64</context> 316 <context context-type="linenumber">76</context>
364 </context-group> 317 </context-group>
365 </trans-unit> 318 </trans-unit>
366 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> 319 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a">
367 <source>About</source> 320 <source>About</source>
368 <target>A prepaus</target> 321 <target>A prepaus</target>
369 <context-group name="null"> 322 <context-group name="null">
370 <context context-type="linenumber">23</context> 323 <context context-type="linenumber">25</context>
371 </context-group> 324 </context-group>
372 </trans-unit> 325 </trans-unit>
373 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> 326 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599">
@@ -430,21 +383,21 @@
430 <source>Category</source> 383 <source>Category</source>
431 <target>Categoria</target> 384 <target>Categoria</target>
432 <context-group name="null"> 385 <context-group name="null">
433 <context context-type="linenumber">148</context> 386 <context context-type="linenumber">166</context>
434 </context-group> 387 </context-group>
435 </trans-unit> 388 </trans-unit>
436 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c"> 389 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c">
437 <source>Licence</source> 390 <source>Licence</source>
438 <target>Licéncia</target> 391 <target>Licéncia</target>
439 <context-group name="null"> 392 <context-group name="null">
440 <context context-type="linenumber">157</context> 393 <context context-type="linenumber">175</context>
441 </context-group> 394 </context-group>
442 </trans-unit> 395 </trans-unit>
443 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619"> 396 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619">
444 <source>Language</source> 397 <source>Language</source>
445 <target>Lenga</target> 398 <target>Lenga</target>
446 <context-group name="null"> 399 <context-group name="null">
447 <context context-type="linenumber">166</context> 400 <context context-type="linenumber">184</context>
448 </context-group> 401 </context-group>
449 </trans-unit> 402 </trans-unit>
450 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8"> 403 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8">
@@ -479,7 +432,7 @@
479 <source>Instance</source> 432 <source>Instance</source>
480 <target>Instància</target> 433 <target>Instància</target>
481 <context-group name="null"> 434 <context-group name="null">
482 <context context-type="linenumber">7</context> 435 <context context-type="linenumber">8</context>
483 </context-group> 436 </context-group>
484 </trans-unit> 437 </trans-unit>
485 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390"> 438 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390">
@@ -504,14 +457,14 @@
504 <source>Description</source> 457 <source>Description</source>
505 <target>Descripcion</target> 458 <target>Descripcion</target>
506 <context-group name="null"> 459 <context-group name="null">
507 <context context-type="linenumber">23</context> 460 <context context-type="linenumber">26</context>
508 </context-group> 461 </context-group>
509 </trans-unit> 462 </trans-unit>
510 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774"> 463 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774">
511 <source>Terms</source> 464 <source>Terms</source>
512 <target>Tèrmes</target> 465 <target>Tèrmes</target>
513 <context-group name="null"> 466 <context-group name="null">
514 <context context-type="linenumber">43</context> 467 <context context-type="linenumber">44</context>
515 </context-group> 468 </context-group>
516 </trans-unit> 469 </trans-unit>
517 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27"> 470 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27">
@@ -848,7 +801,7 @@
848 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source> 801 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source>
849 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> abonats</target> 802 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> abonats</target>
850 <context-group name="null"> 803 <context-group name="null">
851 <context context-type="linenumber">11</context> 804 <context context-type="linenumber">14</context>
852 </context-group> 805 </context-group>
853 </trans-unit> 806 </trans-unit>
854 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f"> 807 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f">
@@ -862,49 +815,49 @@
862 <source>Name</source> 815 <source>Name</source>
863 <target>Nom</target> 816 <target>Nom</target>
864 <context-group name="null"> 817 <context-group name="null">
865 <context context-type="linenumber">9</context> 818 <context context-type="linenumber">12</context>
866 </context-group> 819 </context-group>
867 </trans-unit> 820 </trans-unit>
868 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b"> 821 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b">
869 <source>Short description</source> 822 <source>Short description</source>
870 <target>Descripcion corta</target> 823 <target>Descripcion corta</target>
871 <context-group name="null"> 824 <context-group name="null">
872 <context context-type="linenumber">21</context> 825 <context context-type="linenumber">22</context>
873 </context-group> 826 </context-group>
874 </trans-unit> 827 </trans-unit>
875 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003"> 828 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003">
876 <source>Default client route</source> 829 <source>Default client route</source>
877 <target>Rota del client per defaut</target> 830 <target>Rota del client per defaut</target>
878 <context-group name="null"> 831 <context-group name="null">
879 <context context-type="linenumber">54</context> 832 <context context-type="linenumber">55</context>
880 </context-group> 833 </context-group>
881 </trans-unit> 834 </trans-unit>
882 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948"> 835 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948">
883 <source>Videos Trending</source> 836 <source>Videos Trending</source>
884 <target>Vidèos a la mòda </target> 837 <target>Vidèos a la mòda </target>
885 <context-group name="null"> 838 <context-group name="null">
886 <context context-type="linenumber">57</context> 839 <context context-type="linenumber">59</context>
887 </context-group> 840 </context-group>
888 </trans-unit> 841 </trans-unit>
889 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883"> 842 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883">
890 <source>Videos Recently Added</source> 843 <source>Videos Recently Added</source>
891 <target>Vidèos ajustadas recentament</target> 844 <target>Vidèos ajustadas recentament</target>
892 <context-group name="null"> 845 <context-group name="null">
893 <context context-type="linenumber">58</context> 846 <context context-type="linenumber">60</context>
894 </context-group> 847 </context-group>
895 </trans-unit> 848 </trans-unit>
896 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f"> 849 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f">
897 <source>Local videos</source> 850 <source>Local videos</source>
898 <target>Vidèos localas</target> 851 <target>Vidèos localas</target>
899 <context-group name="null"> 852 <context-group name="null">
900 <context context-type="linenumber">59</context> 853 <context context-type="linenumber">61</context>
901 </context-group> 854 </context-group>
902 </trans-unit> 855 </trans-unit>
903 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9"> 856 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9">
904 <source>Policy on videos containing sensitive content</source> 857 <source>Policy on videos containing sensitive content</source>
905 <target>Politica tocant las vidèos amb de contengut sensible</target> 858 <target>Politica tocant las vidèos amb de contengut sensible</target>
906 <context-group name="null"> 859 <context-group name="null">
907 <context context-type="linenumber">68</context> 860 <context context-type="linenumber">70</context>
908 </context-group> 861 </context-group>
909 </trans-unit> 862 </trans-unit>
910 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df"> 863 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df">
@@ -939,14 +892,14 @@
939 <source>Signup enabled</source> 892 <source>Signup enabled</source>
940 <target>Inscripcions activadas</target> 893 <target>Inscripcions activadas</target>
941 <context-group name="null"> 894 <context-group name="null">
942 <context context-type="linenumber">90</context> 895 <context context-type="linenumber">92</context>
943 </context-group> 896 </context-group>
944 </trans-unit> 897 </trans-unit>
945 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402"> 898 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402">
946 <source>Signup limit</source> 899 <source>Signup limit</source>
947 <target>Limit d’inscripcions</target> 900 <target>Limit d’inscripcions</target>
948 <context-group name="null"> 901 <context-group name="null">
949 <context context-type="linenumber">94</context> 902 <context context-type="linenumber">101</context>
950 </context-group> 903 </context-group>
951 </trans-unit> 904 </trans-unit>
952 <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36"> 905 <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36">
@@ -960,42 +913,42 @@
960 <source>Video import with HTTP enabled</source> 913 <source>Video import with HTTP enabled</source>
961 <target>Import vidèo amb HTTP activat</target> 914 <target>Import vidèo amb HTTP activat</target>
962 <context-group name="null"> 915 <context-group name="null">
963 <context context-type="linenumber">108</context> 916 <context context-type="linenumber">115</context>
964 </context-group> 917 </context-group>
965 </trans-unit> 918 </trans-unit>
966 <trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e"> 919 <trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e">
967 <source>Video import with a torrent file or a magnet URI enabled</source> 920 <source>Video import with a torrent file or a magnet URI enabled</source>
968 <target>Import de vidèos via un fichièr torretn o un magnet URI activat</target> 921 <target>Import de vidèos via un fichièr torretn o un magnet URI activat</target>
969 <context-group name="null"> 922 <context-group name="null">
970 <context context-type="linenumber">113</context> 923 <context context-type="linenumber">120</context>
971 </context-group> 924 </context-group>
972 </trans-unit> 925 </trans-unit>
973 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011"> 926 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011">
974 <source>Administrator</source> 927 <source>Administrator</source>
975 <target>Administrator</target> 928 <target>Administrator</target>
976 <context-group name="null"> 929 <context-group name="null">
977 <context context-type="linenumber">116</context> 930 <context context-type="linenumber">123</context>
978 </context-group> 931 </context-group>
979 </trans-unit> 932 </trans-unit>
980 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> 933 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587">
981 <source>Admin email</source> 934 <source>Admin email</source>
982 <target>Adreça de l’admin</target> 935 <target>Adreça de l’admin</target>
983 <context-group name="null"> 936 <context-group name="null">
984 <context context-type="linenumber">119</context> 937 <context context-type="linenumber">126</context>
985 </context-group> 938 </context-group>
986 </trans-unit> 939 </trans-unit>
987 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be"> 940 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be">
988 <source>Users</source> 941 <source>Users</source>
989 <target>Utilizaires</target> 942 <target>Utilizaires</target>
990 <context-group name="null"> 943 <context-group name="null">
991 <context context-type="linenumber">129</context> 944 <context context-type="linenumber">136</context>
992 </context-group> 945 </context-group>
993 </trans-unit> 946 </trans-unit>
994 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09"> 947 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09">
995 <source>User default video quota</source> 948 <source>User default video quota</source>
996 <target>Quòta per defaut per utilizaire</target> 949 <target>Quòta per defaut per utilizaire</target>
997 <context-group name="null"> 950 <context-group name="null">
998 <context context-type="linenumber">132</context> 951 <context context-type="linenumber">139</context>
999 </context-group> 952 </context-group>
1000 </trans-unit> 953 </trans-unit>
1001 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5"> 954 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5">
@@ -1009,194 +962,133 @@
1009 <source>Twitter</source> 962 <source>Twitter</source>
1010 <target>Twitter</target> 963 <target>Twitter</target>
1011 <context-group name="null"> 964 <context-group name="null">
1012 <context context-type="linenumber">148</context> 965 <context context-type="linenumber">170</context>
1013 </context-group> 966 </context-group>
1014 </trans-unit> 967 </trans-unit>
1015 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> 968 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524">
1016 <source>Your Twitter username</source> 969 <source>Your Twitter username</source>
1017 <target>Vòstre nom d’utilizaire Twitter</target> 970 <target>Vòstre nom d’utilizaire Twitter</target>
1018 <context-group name="null"> 971 <context-group name="null">
1019 <context context-type="linenumber">151</context> 972 <context context-type="linenumber">173</context>
1020 </context-group> 973 </context-group>
1021 </trans-unit> 974 </trans-unit>
1022 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c"> 975 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c">
1023 <source>Indicates the Twitter account for the website or platform on which the content was published.</source> 976 <source>Indicates the Twitter account for the website or platform on which the content was published.</source>
1024 <target>Indica lo compte Twitter del site o de la plataforma ont lo contengut foguèt publicat.</target> 977 <target>Indica lo compte Twitter del site o de la plataforma ont lo contengut foguèt publicat.</target>
1025 <context-group name="null"> 978 <context-group name="null">
1026 <context context-type="linenumber">154</context> 979 <context context-type="linenumber">176</context>
1027 </context-group> 980 </context-group>
1028 </trans-unit> 981 </trans-unit>
1029 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605"> 982 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605">
1030 <source>Instance whitelisted by Twitter</source> 983 <source>Instance whitelisted by Twitter</source>
1031 <target>Instàncias en lista blanca per Twitter</target> 984 <target>Instàncias en lista blanca per Twitter</target>
1032 <context-group name="null"> 985 <context-group name="null">
1033 <context context-type="linenumber">167</context> 986 <context context-type="linenumber">189</context>
1034 </context-group>
1035 </trans-unit>
1036 <trans-unit id="3f008a1a07ca42c6ad258fde1bbd80ed74ada19b">
1037 <source>If your instance is whitelisted by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.&lt;br /&gt;
1038If the instance is not whitelisted, we use an image link card that will redirect on your PeerTube instance.&lt;br /&gt;&lt;br /&gt;
1039Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; to see if you instance is whitelisted.</source>
1040 <target>Se vòstra instància es lista blanca en çò de Twitter, pendent un partatge de vidèo PeerTube i aurà un lector integrat pel flux Twitter.&lt;br /&gt;
1041Se l’instància es pas en lista blanca, utilizam una carta amb un imatge que mena a l’instància PeerTube.&lt;br /&gt;&lt;br /&gt;
1042Seleccionatz aquesta opcion, salvatz la configuracion e ensajatz amb una URL de vidèo de vòstra instància (https://exemple.com/videos/watch/blabla) sus &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; per veire se vòstra instància es en lista blanca.</target>
1043 <context-group name="null">
1044 <context context-type="linenumber">168</context>
1045 </context-group> 987 </context-group>
1046 </trans-unit> 988 </trans-unit>
1047 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> 989 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5">
1048 <source>Services</source> 990 <source>Services</source>
1049 <target>Servicis</target> 991 <target>Servicis</target>
1050 <context-group name="null"> 992 <context-group name="null">
1051 <context context-type="linenumber">146</context> 993 <context context-type="linenumber">168</context>
1052 </context-group> 994 </context-group>
1053 </trans-unit> 995 </trans-unit>
1054 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490"> 996 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490">
1055 <source>Transcoding</source> 997 <source>Transcoding</source>
1056 <target>Transcodatge</target> 998 <target>Transcodatge</target>
1057 <context-group name="null"> 999 <context-group name="null">
1058 <context context-type="linenumber">176</context> 1000 <context context-type="linenumber">200</context>
1059 </context-group> 1001 </context-group>
1060 </trans-unit> 1002 </trans-unit>
1061 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> 1003 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9">
1062 <source>Transcoding enabled</source> 1004 <source>Transcoding enabled</source>
1063 <target>Transcodatge activat</target> 1005 <target>Transcodatge activat</target>
1064 <context-group name="null"> 1006 <context-group name="null">
1065 <context context-type="linenumber">180</context> 1007 <context context-type="linenumber">204</context>
1066 </context-group> 1008 </context-group>
1067 </trans-unit> 1009 </trans-unit>
1068 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> 1010 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f">
1069 <source>If you disable transcoding, many videos from your users will not work!</source> 1011 <source>If you disable transcoding, many videos from your users will not work!</source>
1070 <target>Se desactivatz lo transcodatge, un fum de vidèos de vòstres utilizaires foncionaràn pas !</target> 1012 <target>Se desactivatz lo transcodatge, un fum de vidèos de vòstres utilizaires foncionaràn pas !</target>
1071 <context-group name="null"> 1013 <context-group name="null">
1072 <context context-type="linenumber">181</context> 1014 <context context-type="linenumber">205</context>
1073 </context-group> 1015 </context-group>
1074 </trans-unit> 1016 </trans-unit>
1075 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> 1017 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2">
1076 <source>Transcoding threads</source> 1018 <source>Transcoding threads</source>
1077 <target>Transcodatge dels threads</target> 1019 <target>Transcodatge dels threads</target>
1078 <context-group name="null"> 1020 <context-group name="null">
1079 <context context-type="linenumber">187</context> 1021 <context context-type="linenumber">211</context>
1080 </context-group> 1022 </context-group>
1081 </trans-unit> 1023 </trans-unit>
1082 <trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500"> 1024 <trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500">
1083 <source>Resolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> enabled</source> 1025 <source>Resolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> enabled</source>
1084 <target>Resolucion <x id="INTERPOLATION" equiv-text="{{resolution}}"/> activada</target> 1026 <target>Resolucion <x id="INTERPOLATION" equiv-text="{{resolution}}"/> activada</target>
1085 <context-group name="null"> 1027 <context-group name="null">
1086 <context context-type="linenumber">203</context> 1028 <context context-type="linenumber">227</context>
1087 </context-group>
1088 </trans-unit>
1089 <trans-unit id="f86acfe567b75b7ea85af6f1cb3efb88085dfb9a">
1090 <source>
1091 Cache
1092
1093 <x id="START_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;my-help&gt;"/><x id="CLOSE_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;/my-help&gt;"/>
1094 </source>
1095 <target>
1096 Cache
1097
1098 <x id="START_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;my-help&gt;"/><x id="CLOSE_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;/my-help&gt;"/>
1099 </target>
1100 <context-group name="null">
1101 <context context-type="linenumber">209</context>
1102 </context-group> 1029 </context-group>
1103 </trans-unit> 1030 </trans-unit>
1104 <trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0"> 1031 <trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0">
1105 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source> 1032 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source>
1106 <target>Qualques fichièrs son pas federats (apercebuts, legendas). Los recuperam de l’instància d’origina estant e los metèm en cache.</target> 1033 <target>Qualques fichièrs son pas federats (apercebuts, legendas). Los recuperam de l’instància d’origina estant e los metèm en cache.</target>
1107 <context-group name="null"> 1034 <context-group name="null">
1108 <context context-type="linenumber">214</context> 1035 <context context-type="linenumber">238</context>
1109 </context-group> 1036 </context-group>
1110 </trans-unit> 1037 </trans-unit>
1111 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7"> 1038 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7">
1112 <source>Previews cache size</source> 1039 <source>Previews cache size</source>
1113 <target>Talha del cache d’apercebut</target> 1040 <target>Talha del cache d’apercebut</target>
1114 <context-group name="null"> 1041 <context-group name="null">
1115 <context context-type="linenumber">219</context> 1042 <context context-type="linenumber">243</context>
1116 </context-group> 1043 </context-group>
1117 </trans-unit> 1044 </trans-unit>
1118 <trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607"> 1045 <trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607">
1119 <source>Video captions cache size</source> 1046 <source>Video captions cache size</source>
1120 <target>Talha del cache per las legendas de las vidèos</target> 1047 <target>Talha del cache per las legendas de las vidèos</target>
1121 <context-group name="null"> 1048 <context-group name="null">
1122 <context context-type="linenumber">230</context> 1049 <context context-type="linenumber">254</context>
1123 </context-group> 1050 </context-group>
1124 </trans-unit> 1051 </trans-unit>
1125 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c"> 1052 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c">
1126 <source>Customizations</source> 1053 <source>Customizations</source>
1127 <target>Personalizacions</target> 1054 <target>Personalizacions</target>
1128 <context-group name="null"> 1055 <context-group name="null">
1129 <context context-type="linenumber">240</context> 1056 <context context-type="linenumber">264</context>
1130 </context-group> 1057 </context-group>
1131 </trans-unit> 1058 </trans-unit>
1132 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> 1059 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c">
1133 <source>JavaScript</source> 1060 <source>JavaScript</source>
1134 <target>JavaScript</target> 1061 <target>JavaScript</target>
1135 <context-group name="null"> 1062 <context-group name="null">
1136 <context context-type="linenumber">243</context> 1063 <context context-type="linenumber">267</context>
1137 </context-group> 1064 </context-group>
1138 </trans-unit> 1065 </trans-unit>
1139 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c"> 1066 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c">
1140 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source> 1067 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source>
1141 <target>Escrivètz dirèctament de JavaScript còdi.&lt;br /&gt;Exemple : &lt;pre&gt;console.log('mon instància es tròp crana');&lt;/pre&gt;</target> 1068 <target>Escrivètz dirèctament de JavaScript còdi.&lt;br /&gt;Exemple : &lt;pre&gt;console.log('mon instància es tròp crana');&lt;/pre&gt;</target>
1142 <context-group name="null"> 1069 <context-group name="null">
1143 <context context-type="linenumber">246</context> 1070 <context context-type="linenumber">270</context>
1144 </context-group>
1145 </trans-unit>
1146 <trans-unit id="f133b08d6519081bfb8ef51cff4bf2b3af23dde6">
1147 <source>
1148 Write directly CSS code. Example:&lt;br /&gt;
1149 &lt;pre&gt;
1150 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1151 background-color: red;
1152 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1153 &lt;/pre&gt;
1154
1155 Prepend with &lt;em&gt;#custom-css&lt;/em&gt; to override styles. Example:
1156 &lt;pre&gt;
1157 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1158 color: red;
1159 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1160 &lt;/pre&gt;
1161 </source>
1162 <target>
1163 Escrivètz dirèctament de còdi CSS. Exemple :&lt;br /&gt;
1164 &lt;pre&gt;
1165 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1166 background-color: red;
1167 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1168 &lt;/pre&gt;
1169
1170 Associat amb &lt;em&gt;#custom-css&lt;/em&gt; per subrecargar los estiles. Exemple :
1171 &lt;pre&gt;
1172 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1173 color: red;
1174 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1175 &lt;/pre&gt;
1176 </target>
1177 <context-group name="null">
1178 <context context-type="linenumber">262</context>
1179 </context-group> 1071 </context-group>
1180 </trans-unit> 1072 </trans-unit>
1181 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> 1073 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab">
1182 <source>Advanced configuration</source> 1074 <source>Advanced configuration</source>
1183 <target>Configuracion avançada</target> 1075 <target>Configuracion avançada</target>
1184 <context-group name="null"> 1076 <context-group name="null">
1185 <context context-type="linenumber">174</context> 1077 <context context-type="linenumber">197</context>
1186 </context-group> 1078 </context-group>
1187 </trans-unit> 1079 </trans-unit>
1188 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> 1080 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8">
1189 <source>Update configuration</source> 1081 <source>Update configuration</source>
1190 <target>Actualizar la configuracion</target> 1082 <target>Actualizar la configuracion</target>
1191 <context-group name="null"> 1083 <context-group name="null">
1192 <context context-type="linenumber">289</context> 1084 <context context-type="linenumber">314</context>
1193 </context-group> 1085 </context-group>
1194 </trans-unit> 1086 </trans-unit>
1195 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca"> 1087 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca">
1196 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source> 1088 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source>
1197 <target>Sembla que la configuracion es invalida. Mercés de cercar d’errors possiblas pels diferents onglets.</target> 1089 <target>Sembla que la configuracion es invalida. Mercés de cercar d’errors possiblas pels diferents onglets.</target>
1198 <context-group name="null"> 1090 <context-group name="null">
1199 <context context-type="linenumber">290</context> 1091 <context context-type="linenumber">315</context>
1200 </context-group> 1092 </context-group>
1201 </trans-unit> 1093 </trans-unit>
1202 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c"> 1094 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c">
@@ -1221,28 +1113,6 @@ Seleccionatz aquesta opcion, salvatz la configuracion e ensajatz amb una URL de
1221 <context context-type="linenumber">7</context> 1113 <context context-type="linenumber">7</context>
1222 </context-group> 1114 </context-group>
1223 </trans-unit> 1115 </trans-unit>
1224 <trans-unit id="1c9406213cf05033eda4d3df678217b5eb822315">
1225 <source>
1226 Video abuses
1227 </source>
1228 <target>
1229 Senhalaments de vidèos
1230 </target>
1231 <context-group name="null">
1232 <context context-type="linenumber">11</context>
1233 </context-group>
1234 </trans-unit>
1235 <trans-unit id="96ccede058f0022f34230c3adc09e60076b6d037">
1236 <source>
1237 Video blacklist
1238 </source>
1239 <target>
1240 Lista nègra de vidèo
1241 </target>
1242 <context-group name="null">
1243 <context context-type="linenumber">15</context>
1244 </context-group>
1245 </trans-unit>
1246 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368"> 1116 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368">
1247 <source> 1117 <source>
1248 Jobs 1118 Jobs
@@ -1251,7 +1121,7 @@ Seleccionatz aquesta opcion, salvatz la configuracion e ensajatz amb una URL de
1251 Trabalhs 1121 Trabalhs
1252 </target> 1122 </target>
1253 <context-group name="null"> 1123 <context-group name="null">
1254 <context context-type="linenumber">19</context> 1124 <context context-type="linenumber">15</context>
1255 </context-group> 1125 </context-group>
1256 </trans-unit> 1126 </trans-unit>
1257 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13"> 1127 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13">
@@ -1262,7 +1132,7 @@ Seleccionatz aquesta opcion, salvatz la configuracion e ensajatz amb una URL de
1262 Configuracion 1132 Configuracion
1263 </target> 1133 </target>
1264 <context-group name="null"> 1134 <context-group name="null">
1265 <context context-type="linenumber">23</context> 1135 <context context-type="linenumber">19</context>
1266 </context-group> 1136 </context-group>
1267 </trans-unit> 1137 </trans-unit>
1268 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396"> 1138 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396">
@@ -1332,6 +1202,27 @@ Seleccionatz aquesta opcion, salvatz la configuracion e ensajatz amb una URL de
1332 <context context-type="linenumber">2</context> 1202 <context context-type="linenumber">2</context>
1333 </context-group> 1203 </context-group>
1334 </trans-unit> 1204 </trans-unit>
1205 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936">
1206 <source>Following</source>
1207 <target>Abonaments</target>
1208 <context-group name="null">
1209 <context context-type="linenumber">5</context>
1210 </context-group>
1211 </trans-unit>
1212 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
1213 <source>Follow</source>
1214 <target>Seguir</target>
1215 <context-group name="null">
1216 <context context-type="linenumber">7</context>
1217 </context-group>
1218 </trans-unit>
1219 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
1220 <source>Followers</source>
1221 <target>Seguidors</target>
1222 <context-group name="null">
1223 <context context-type="linenumber">9</context>
1224 </context-group>
1225 </trans-unit>
1335 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f"> 1226 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f">
1336 <source>Jobs list</source> 1227 <source>Jobs list</source>
1337 <target>Lista de trabalhs</target> 1228 <target>Lista de trabalhs</target>
@@ -1392,14 +1283,7 @@ Seleccionatz aquesta opcion, salvatz la configuracion e ensajatz amb una URL de
1392 <source>Role</source> 1283 <source>Role</source>
1393 <target>Ròtle</target> 1284 <target>Ròtle</target>
1394 <context-group name="null"> 1285 <context-group name="null">
1395 <context context-type="linenumber">19</context> 1286 <context context-type="linenumber">20</context>
1396 </context-group>
1397 </trans-unit>
1398 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
1399 <source>Video quota</source>
1400 <target>Quòta vidèo</target>
1401 <context-group name="null">
1402 <context context-type="linenumber">18</context>
1403 </context-group> 1287 </context-group>
1404 </trans-unit> 1288 </trans-unit>
1405 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345"> 1289 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345">
@@ -1415,6 +1299,13 @@ Seleccionatz aquesta opcion, salvatz la configuracion e ensajatz amb una URL de
1415 <context context-type="linenumber">65</context> 1299 <context context-type="linenumber">65</context>
1416 </context-group> 1300 </context-group>
1417 </trans-unit> 1301 </trans-unit>
1302 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
1303 <source>Reason...</source>
1304 <target>Rason...</target>
1305 <context-group name="null">
1306 <context context-type="linenumber">11</context>
1307 </context-group>
1308 </trans-unit>
1418 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f"> 1309 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f">
1419 <source>Users list</source> 1310 <source>Users list</source>
1420 <target>Lista d’utilizaires</target> 1311 <target>Lista d’utilizaires</target>
@@ -1426,91 +1317,42 @@ Seleccionatz aquesta opcion, salvatz la configuracion e ensajatz amb una URL de
1426 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source> 1317 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1427 <target>Nom d’utilizaire <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target> 1318 <target>Nom d’utilizaire <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1428 <context-group name="null"> 1319 <context-group name="null">
1429 <context context-type="linenumber">16</context> 1320 <context context-type="linenumber">17</context>
1430 </context-group>
1431 </trans-unit>
1432 <trans-unit id="0c7e8870481f1287af6a142f538391d8c16c2408">
1433 <source>Video abuses list</source>
1434 <target>Lista dels senhalaments de vidèos</target>
1435 <context-group name="null">
1436 <context context-type="linenumber">2</context>
1437 </context-group>
1438 </trans-unit>
1439 <trans-unit id="4ba250869daa372b54d24fafc0ea934769ee4076">
1440 <source>Reason</source>
1441 <target>Rason</target>
1442 <context-group name="null">
1443 <context context-type="linenumber">11</context>
1444 </context-group> 1321 </context-group>
1445 </trans-unit> 1322 </trans-unit>
1446 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2"> 1323 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2">
1447 <source>Reporter</source> 1324 <source>Reporter</source>
1448 <target>Senhalaire</target> 1325 <target>Senhalaire</target>
1449 <context-group name="null"> 1326 <context-group name="null">
1450 <context context-type="linenumber">12</context> 1327 <context context-type="linenumber">8</context>
1451 </context-group> 1328 </context-group>
1452 </trans-unit> 1329 </trans-unit>
1453 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4"> 1330 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4">
1454 <source>Video</source> 1331 <source>Video</source>
1455 <target>Vidèo</target> 1332 <target>Vidèo</target>
1456 <context-group name="null"> 1333 <context-group name="null">
1457 <context context-type="linenumber">9</context> 1334 <context context-type="linenumber">14</context>
1458 </context-group> 1335 </context-group>
1459 </trans-unit> 1336 </trans-unit>
1460 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7"> 1337 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7">
1461 <source>Go to the account</source> 1338 <source>Go to the account</source>
1462 <target>Anar al compte</target> 1339 <target>Anar al compte</target>
1463 <context-group name="null"> 1340 <context-group name="null">
1464 <context context-type="linenumber">22</context> 1341 <context context-type="linenumber">27</context>
1465 </context-group> 1342 </context-group>
1466 </trans-unit> 1343 </trans-unit>
1467 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5"> 1344 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5">
1468 <source>Go to the video</source> 1345 <source>Go to the video</source>
1469 <target>Anar a la vidèo</target> 1346 <target>Anar a la vidèo</target>
1470 <context-group name="null"> 1347 <context-group name="null">
1471 <context context-type="linenumber">28</context> 1348 <context context-type="linenumber">33</context>
1472 </context-group> 1349 </context-group>
1473 </trans-unit> 1350 </trans-unit>
1474 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1"> 1351 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1">
1475 <source>Blacklisted videos</source> 1352 <source>Blacklisted videos</source>
1476 <target>Vidèos en lista nègra</target> 1353 <target>Vidèos en lista nègra</target>
1477 <context-group name="null"> 1354 <context-group name="null">
1478 <context context-type="linenumber">2</context> 1355 <context context-type="linenumber">7</context>
1479 </context-group>
1480 </trans-unit>
1481 <trans-unit id="7c02d113e9b7884037834cddecf2a32a5538b35b">
1482 <source>Name <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1483 <target>Nom <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1484 <context-group name="null">
1485 <context context-type="linenumber">11</context>
1486 </context-group>
1487 </trans-unit>
1488 <trans-unit id="cd5ca5da9e2fa21571e9f86a24a5c3b45a3ddc51">
1489 <source>Views <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1490 <target>Visualizacions <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1491 <context-group name="null">
1492 <context context-type="linenumber">13</context>
1493 </context-group>
1494 </trans-unit>
1495 <trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9">
1496 <source>NSFW</source>
1497 <target>NSFW</target>
1498 <context-group name="null">
1499 <context context-type="linenumber">14</context>
1500 </context-group>
1501 </trans-unit>
1502 <trans-unit id="8c87d9527af7ff2ada84c911516a9e43a352e401">
1503 <source>UUID</source>
1504 <target>UUID</target>
1505 <context-group name="null">
1506 <context context-type="linenumber">15</context>
1507 </context-group>
1508 </trans-unit>
1509 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1510 <source>Unblacklist</source>
1511 <target>Tirar de la lista nègra</target>
1512 <context-group name="null">
1513 <context context-type="linenumber">30</context>
1514 </context-group> 1356 </context-group>
1515 </trans-unit> 1357 </trans-unit>
1516 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6"> 1358 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6">
@@ -1520,25 +1362,11 @@ Seleccionatz aquesta opcion, salvatz la configuracion e ensajatz amb una URL de
1520 <context context-type="linenumber">3</context> 1362 <context context-type="linenumber">3</context>
1521 </context-group> 1363 </context-group>
1522 </trans-unit> 1364 </trans-unit>
1523 <trans-unit id="520d68b2c9f7dacaf2a5073716cad9bd328ea7e7">
1524 <source>My video channels</source>
1525 <target>Mas cadenas vidèo</target>
1526 <context-group name="null">
1527 <context context-type="linenumber">5</context>
1528 </context-group>
1529 </trans-unit>
1530 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894"> 1365 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894">
1531 <source>My videos</source> 1366 <source>My videos</source>
1532 <target>Mas vidèos</target> 1367 <target>Mas vidèos</target>
1533 <context-group name="null"> 1368 <context-group name="null">
1534 <context context-type="linenumber">7</context> 1369 <context context-type="linenumber">14</context>
1535 </context-group>
1536 </trans-unit>
1537 <trans-unit id="0bb0c57c6d12635d26996c124248e748b666e5ad">
1538 <source>My video imports</source>
1539 <target>Mos imports de vidèos</target>
1540 <context-group name="null">
1541 <context context-type="linenumber">9</context>
1542 </context-group> 1370 </context-group>
1543 </trans-unit> 1371 </trans-unit>
1544 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48"> 1372 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48">
@@ -1569,6 +1397,13 @@ Seleccionatz aquesta opcion, salvatz la configuracion e ensajatz amb una URL de
1569 <context context-type="linenumber">18</context> 1397 <context context-type="linenumber">18</context>
1570 </context-group> 1398 </context-group>
1571 </trans-unit> 1399 </trans-unit>
1400 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
1401 <source>Submit</source>
1402 <target>Mandar</target>
1403 <context-group name="null">
1404 <context context-type="linenumber">24</context>
1405 </context-group>
1406 </trans-unit>
1572 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79"> 1407 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79">
1573 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 1408 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
1574 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> vistas</target> 1409 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> vistas</target>
@@ -1576,11 +1411,14 @@ Seleccionatz aquesta opcion, salvatz la configuracion e ensajatz amb una URL de
1576 <context context-type="linenumber">19</context> 1411 <context context-type="linenumber">19</context>
1577 </context-group> 1412 </context-group>
1578 </trans-unit> 1413 </trans-unit>
1579 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7"> 1414 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
1580 <source>Delete</source> 1415 <source>
1581 <target>Suprimir</target> 1416 Cancel
1417 </source>
1418 <target>
1419 Anullar </target>
1582 <context-group name="null"> 1420 <context-group name="null">
1583 <context context-type="linenumber">15</context> 1421 <context context-type="linenumber">30</context>
1584 </context-group> 1422 </context-group>
1585 </trans-unit> 1423 </trans-unit>
1586 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260"> 1424 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260">
@@ -1594,7 +1432,7 @@ Seleccionatz aquesta opcion, salvatz la configuracion e ensajatz amb una URL de
1594 <source>Go to the channel</source> 1432 <source>Go to the channel</source>
1595 <target>Anar a la cadena</target> 1433 <target>Anar a la cadena</target>
1596 <context-group name="null"> 1434 <context-group name="null">
1597 <context context-type="linenumber">15</context> 1435 <context context-type="linenumber">8</context>
1598 </context-group> 1436 </context-group>
1599 </trans-unit> 1437 </trans-unit>
1600 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68"> 1438 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68">
@@ -1617,7 +1455,7 @@ When you will upload a video in this channel, the video support field will be au
1617 <target>Un tèxte cort per explicar al monde cossí pòdon sosténer vòstra cadena (associacion, plataforma...).&lt;br /&gt;&lt;br /&gt; 1455 <target>Un tèxte cort per explicar al monde cossí pòdon sosténer vòstra cadena (associacion, plataforma...).&lt;br /&gt;&lt;br /&gt;
1618Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà automaticament emplenat amb aqueste tèxte.</target> 1456Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà automaticament emplenat amb aqueste tèxte.</target>
1619 <context-group name="null"> 1457 <context-group name="null">
1620 <context context-type="linenumber">36</context> 1458 <context context-type="linenumber">52</context>
1621 </context-group> 1459 </context-group>
1622 </trans-unit> 1460 </trans-unit>
1623 <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191"> 1461 <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191">
@@ -1627,11 +1465,25 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
1627 <context context-type="linenumber">8</context> 1465 <context context-type="linenumber">8</context>
1628 </context-group> 1466 </context-group>
1629 </trans-unit> 1467 </trans-unit>
1468 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1469 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1470 <target>Creat per <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1471 <context-group name="null">
1472 <context context-type="linenumber">17</context>
1473 </context-group>
1474 </trans-unit>
1475 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1476 <source>Go the owner account page</source>
1477 <target>Anar a la pagina del proprietari</target>
1478 <context-group name="null">
1479 <context context-type="linenumber">16</context>
1480 </context-group>
1481 </trans-unit>
1630 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9"> 1482 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9">
1631 <source>Change password</source> 1483 <source>Change password</source>
1632 <target>Cambiar lo senhal</target> 1484 <target>Cambiar lo senhal</target>
1633 <context-group name="null"> 1485 <context-group name="null">
1634 <context context-type="linenumber">19</context> 1486 <context context-type="linenumber">22</context>
1635 </context-group> 1487 </context-group>
1636 </trans-unit> 1488 </trans-unit>
1637 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229"> 1489 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229">
@@ -1708,20 +1560,6 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
1708 <context context-type="linenumber">1</context> 1560 <context context-type="linenumber">1</context>
1709 </context-group> 1561 </context-group>
1710 </trans-unit> 1562 </trans-unit>
1711 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1712 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1713 <target>Creat per <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1714 <context-group name="null">
1715 <context context-type="linenumber">14</context>
1716 </context-group>
1717 </trans-unit>
1718 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1719 <source>Go the owner account page</source>
1720 <target>Anar a la pagina del proprietari</target>
1721 <context-group name="null">
1722 <context context-type="linenumber">13</context>
1723 </context-group>
1724 </trans-unit>
1725 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8"> 1563 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8">
1726 <source>Support this channel</source> 1564 <source>Support this channel</source>
1727 <target>Sosténer la cadena</target> 1565 <target>Sosténer la cadena</target>
@@ -1740,7 +1578,7 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
1740 <source>URL</source> 1578 <source>URL</source>
1741 <target>URL</target> 1579 <target>URL</target>
1742 <context-group name="null"> 1580 <context-group name="null">
1743 <context context-type="linenumber">12</context> 1581 <context context-type="linenumber">17</context>
1744 </context-group> 1582 </context-group>
1745 </trans-unit> 1583 </trans-unit>
1746 <trans-unit id="bfe7f34fbd4c3afa5f84a5580e0fae942cad2333"> 1584 <trans-unit id="bfe7f34fbd4c3afa5f84a5580e0fae942cad2333">
@@ -1754,14 +1592,14 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
1754 <source>Channel</source> 1592 <source>Channel</source>
1755 <target>Cadena</target> 1593 <target>Cadena</target>
1756 <context-group name="null"> 1594 <context-group name="null">
1757 <context context-type="linenumber">35</context> 1595 <context context-type="linenumber">38</context>
1758 </context-group> 1596 </context-group>
1759 </trans-unit> 1597 </trans-unit>
1760 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427"> 1598 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427">
1761 <source>Privacy</source> 1599 <source>Privacy</source>
1762 <target>Confidencialitat</target> 1600 <target>Confidencialitat</target>
1763 <context-group name="null"> 1601 <context-group name="null">
1764 <context context-type="linenumber">143</context> 1602 <context context-type="linenumber">161</context>
1765 </context-group> 1603 </context-group>
1766 </trans-unit> 1604 </trans-unit>
1767 <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2"> 1605 <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2">
@@ -1779,7 +1617,7 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
1779 <source>Update</source> 1617 <source>Update</source>
1780 <target>Actualizar</target> 1618 <target>Actualizar</target>
1781 <context-group name="null"> 1619 <context-group name="null">
1782 <context context-type="linenumber">105</context> 1620 <context context-type="linenumber">92</context>
1783 </context-group> 1621 </context-group>
1784 </trans-unit> 1622 </trans-unit>
1785 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> 1623 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9">
@@ -1853,46 +1691,35 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
1853 <source>Upload a file</source> 1691 <source>Upload a file</source>
1854 <target>Actualizar un fichièr</target> 1692 <target>Actualizar un fichièr</target>
1855 <context-group name="null"> 1693 <context-group name="null">
1856 <context context-type="linenumber">9</context> 1694 <context context-type="linenumber">10</context>
1857 </context-group> 1695 </context-group>
1858 </trans-unit> 1696 </trans-unit>
1859 <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470"> 1697 <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470">
1860 <source>Import with URL</source> 1698 <source>Import with URL</source>
1861 <target>Importar via una URL</target> 1699 <target>Importar via una URL</target>
1862 <context-group name="null"> 1700 <context-group name="null">
1863 <context context-type="linenumber">13</context> 1701 <context context-type="linenumber">17</context>
1864 </context-group> 1702 </context-group>
1865 </trans-unit> 1703 </trans-unit>
1866 <trans-unit id="752c401d7dcd708944eef60e411187f71d882340"> 1704 <trans-unit id="752c401d7dcd708944eef60e411187f71d882340">
1867 <source>Import with torrent</source> 1705 <source>Import with torrent</source>
1868 <target>Importar via un torrent</target> 1706 <target>Importar via un torrent</target>
1869 <context-group name="null"> 1707 <context-group name="null">
1870 <context context-type="linenumber">17</context> 1708 <context context-type="linenumber">24</context>
1871 </context-group> 1709 </context-group>
1872 </trans-unit> 1710 </trans-unit>
1873 <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0"> 1711 <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0">
1874 <source>Add caption</source> 1712 <source>Add caption</source>
1875 <target>Ajustar una legenda</target> 1713 <target>Ajustar una legenda</target>
1876 <context-group name="null"> 1714 <context-group name="null">
1877 <context context-type="linenumber">7</context> 1715 <context context-type="linenumber">5</context>
1878 </context-group> 1716 </context-group>
1879 </trans-unit> 1717 </trans-unit>
1880 <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8"> 1718 <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8">
1881 <source>Select the caption file</source> 1719 <source>Select the caption file</source>
1882 <target>Seleccionar lo fichièr de legenda</target> 1720 <target>Seleccionar lo fichièr de legenda</target>
1883 <context-group name="null"> 1721 <context-group name="null">
1884 <context context-type="linenumber">25</context> 1722 <context context-type="linenumber">24</context>
1885 </context-group>
1886 </trans-unit>
1887 <trans-unit id="a40a8a9f8359eda00c6a79809e9499100fde3ffd">
1888 <source>
1889 This will replace an existing caption!
1890 </source>
1891 <target>
1892 Remplaçarà una legenda existenta !
1893 </target>
1894 <context-group name="null">
1895 <context context-type="linenumber">30</context>
1896 </context-group> 1723 </context-group>
1897 </trans-unit> 1724 </trans-unit>
1898 <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c"> 1725 <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c">
@@ -1906,70 +1733,63 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
1906 <source>Title</source> 1733 <source>Title</source>
1907 <target>Títol</target> 1734 <target>Títol</target>
1908 <context-group name="null"> 1735 <context-group name="null">
1909 <context context-type="linenumber">7</context> 1736 <context context-type="linenumber">9</context>
1910 </context-group> 1737 </context-group>
1911 </trans-unit> 1738 </trans-unit>
1912 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b"> 1739 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b">
1913 <source>Tags</source> 1740 <source>Tags</source>
1914 <target>Etiquetas</target> 1741 <target>Etiquetas</target>
1915 <context-group name="null"> 1742 <context-group name="null">
1916 <context context-type="linenumber">175</context> 1743 <context context-type="linenumber">193</context>
1917 </context-group>
1918 </trans-unit>
1919 <trans-unit id="935e7146fe6c12169abfda18536c5856935cfd82">
1920 <source>(press Enter to add)</source>
1921 <target>(quichatz Entrada per ajustar)</target>
1922 <context-group name="null">
1923 <context context-type="linenumber">15</context>
1924 </context-group> 1744 </context-group>
1925 </trans-unit> 1745 </trans-unit>
1926 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e"> 1746 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e">
1927 <source>Video descriptions are truncated by default and require manual action to expand them.</source> 1747 <source>Video descriptions are truncated by default and require manual action to expand them.</source>
1928 <target>Las descripcions de las vidèos son troncadas per defaut e demandan una accion manuala per qu’òm las alongue.</target> 1748 <target>Las descripcions de las vidèos son troncadas per defaut e demandan una accion manuala per qu’òm las alongue.</target>
1929 <context-group name="null"> 1749 <context-group name="null">
1930 <context context-type="linenumber">24</context> 1750 <context context-type="linenumber">27</context>
1931 </context-group> 1751 </context-group>
1932 </trans-unit> 1752 </trans-unit>
1933 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> 1753 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5">
1934 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source> 1754 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source>
1935 <target>Publicacion programada (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target> 1755 <target>Publicacion programada (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target>
1936 <context-group name="null"> 1756 <context-group name="null">
1937 <context context-type="linenumber">101</context> 1757 <context context-type="linenumber">104</context>
1938 </context-group> 1758 </context-group>
1939 </trans-unit> 1759 </trans-unit>
1940 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee"> 1760 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee">
1941 <source>This video contains mature or explicit content</source> 1761 <source>This video contains mature or explicit content</source>
1942 <target>Aquesta vidèo conten de contengut per adult o explicite</target> 1762 <target>Aquesta vidèo conten de contengut per adult o explicite</target>
1943 <context-group name="null"> 1763 <context-group name="null">
1944 <context context-type="linenumber">115</context> 1764 <context context-type="linenumber">118</context>
1945 </context-group> 1765 </context-group>
1946 </trans-unit> 1766 </trans-unit>
1947 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644"> 1767 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644">
1948 <source>Some instances do not list videos containing mature or explicit content by default.</source> 1768 <source>Some instances do not list videos containing mature or explicit content by default.</source>
1949 <target>Qualques instàncias listan pas las vidèos amb de contengut per adult o explicite per defaut.</target> 1769 <target>Qualques instàncias listan pas las vidèos amb de contengut per adult o explicite per defaut.</target>
1950 <context-group name="null"> 1770 <context-group name="null">
1951 <context context-type="linenumber">116</context> 1771 <context context-type="linenumber">119</context>
1952 </context-group> 1772 </context-group>
1953 </trans-unit> 1773 </trans-unit>
1954 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a"> 1774 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a">
1955 <source>Enable video comments</source> 1775 <source>Enable video comments</source>
1956 <target>Activar los comentaris</target> 1776 <target>Activar los comentaris</target>
1957 <context-group name="null"> 1777 <context-group name="null">
1958 <context context-type="linenumber">121</context> 1778 <context context-type="linenumber">124</context>
1959 </context-group> 1779 </context-group>
1960 </trans-unit> 1780 </trans-unit>
1961 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0"> 1781 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0">
1962 <source>Wait transcoding before publishing the video</source> 1782 <source>Wait transcoding before publishing the video</source>
1963 <target>Esperatz lo transcodatge abans de publicar la vidèo</target> 1783 <target>Esperatz lo transcodatge abans de publicar la vidèo</target>
1964 <context-group name="null"> 1784 <context-group name="null">
1965 <context context-type="linenumber">126</context> 1785 <context context-type="linenumber">129</context>
1966 </context-group> 1786 </context-group>
1967 </trans-unit> 1787 </trans-unit>
1968 <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63"> 1788 <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63">
1969 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source> 1789 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source>
1970 <target>Se decidissètz d’esperar pas lo transcodatge abans de publicar la vidèo, serà pas legibla fins a la fin del transcodatge.</target> 1790 <target>Se decidissètz d’esperar pas lo transcodatge abans de publicar la vidèo, serà pas legibla fins a la fin del transcodatge.</target>
1971 <context-group name="null"> 1791 <context-group name="null">
1972 <context context-type="linenumber">127</context> 1792 <context context-type="linenumber">130</context>
1973 </context-group> 1793 </context-group>
1974 </trans-unit> 1794 </trans-unit>
1975 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7"> 1795 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7">
@@ -1983,70 +1803,70 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
1983 <source>Add another caption</source> 1803 <source>Add another caption</source>
1984 <target>Ajustar una legenda mai</target> 1804 <target>Ajustar una legenda mai</target>
1985 <context-group name="null"> 1805 <context-group name="null">
1986 <context context-type="linenumber">139</context> 1806 <context context-type="linenumber">145</context>
1987 </context-group> 1807 </context-group>
1988 </trans-unit> 1808 </trans-unit>
1989 <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed"> 1809 <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed">
1990 <source>See the subtitle file</source> 1810 <source>See the subtitle file</source>
1991 <target>Veire lo fichièr de sostítols</target> 1811 <target>Veire lo fichièr de sostítols</target>
1992 <context-group name="null"> 1812 <context-group name="null">
1993 <context context-type="linenumber">148</context> 1813 <context context-type="linenumber">154</context>
1994 </context-group> 1814 </context-group>
1995 </trans-unit> 1815 </trans-unit>
1996 <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9"> 1816 <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9">
1997 <source>Cancel create</source> 1817 <source>Cancel create</source>
1998 <target>Anullar la creacion</target> 1818 <target>Anullar la creacion</target>
1999 <context-group name="null"> 1819 <context-group name="null">
2000 <context context-type="linenumber">162</context> 1820 <context context-type="linenumber">168</context>
2001 </context-group> 1821 </context-group>
2002 </trans-unit> 1822 </trans-unit>
2003 <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c"> 1823 <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c">
2004 <source>Cancel deletion</source> 1824 <source>Cancel deletion</source>
2005 <target>Anullar la supression</target> 1825 <target>Anullar la supression</target>
2006 <context-group name="null"> 1826 <context-group name="null">
2007 <context context-type="linenumber">170</context> 1827 <context context-type="linenumber">176</context>
2008 </context-group> 1828 </context-group>
2009 </trans-unit> 1829 </trans-unit>
2010 <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93"> 1830 <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93">
2011 <source>Captions</source> 1831 <source>Captions</source>
2012 <target>Legendas</target> 1832 <target>Legendas</target>
2013 <context-group name="null"> 1833 <context-group name="null">
2014 <context context-type="linenumber">133</context> 1834 <context context-type="linenumber">138</context>
2015 </context-group> 1835 </context-group>
2016 </trans-unit> 1836 </trans-unit>
2017 <trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513"> 1837 <trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513">
2018 <source>Upload thumbnail</source> 1838 <source>Upload thumbnail</source>
2019 <target>Enviar una vinheta d’apercebut</target> 1839 <target>Enviar una vinheta d’apercebut</target>
2020 <context-group name="null"> 1840 <context-group name="null">
2021 <context context-type="linenumber">186</context> 1841 <context context-type="linenumber">194</context>
2022 </context-group> 1842 </context-group>
2023 </trans-unit> 1843 </trans-unit>
2024 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639"> 1844 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639">
2025 <source>Upload preview</source> 1845 <source>Upload preview</source>
2026 <target>Enviar un apercebut</target> 1846 <target>Enviar un apercebut</target>
2027 <context-group name="null"> 1847 <context-group name="null">
2028 <context context-type="linenumber">193</context> 1848 <context context-type="linenumber">201</context>
2029 </context-group> 1849 </context-group>
2030 </trans-unit> 1850 </trans-unit>
2031 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604"> 1851 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604">
2032 <source>Support</source> 1852 <source>Support</source>
2033 <target>Sosténer</target> 1853 <target>Sosténer</target>
2034 <context-group name="null"> 1854 <context-group name="null">
2035 <context context-type="linenumber">71</context> 1855 <context context-type="linenumber">69</context>
2036 </context-group> 1856 </context-group>
2037 </trans-unit> 1857 </trans-unit>
2038 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0"> 1858 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0">
2039 <source>Short text to tell people how they can support you (membership platform...).</source> 1859 <source>Short text to tell people how they can support you (membership platform...).</source>
2040 <target>Pichon tèxte per explicar al monde cossí pòdon vos sosténer (plataforma pels sòcis...).</target> 1860 <target>Pichon tèxte per explicar al monde cossí pòdon vos sosténer (plataforma pels sòcis...).</target>
2041 <context-group name="null"> 1861 <context-group name="null">
2042 <context context-type="linenumber">200</context> 1862 <context context-type="linenumber">208</context>
2043 </context-group> 1863 </context-group>
2044 </trans-unit> 1864 </trans-unit>
2045 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1"> 1865 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1">
2046 <source>Advanced settings</source> 1866 <source>Advanced settings</source>
2047 <target>Paramètres avançats</target> 1867 <target>Paramètres avançats</target>
2048 <context-group name="null"> 1868 <context-group name="null">
2049 <context context-type="linenumber">182</context> 1869 <context context-type="linenumber">189</context>
2050 </context-group> 1870 </context-group>
2051 </trans-unit> 1871 </trans-unit>
2052 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0"> 1872 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0">
@@ -2064,99 +1884,63 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
2064 <source>Download video</source> 1884 <source>Download video</source>
2065 <target>Telecargar la vidèo</target> 1885 <target>Telecargar la vidèo</target>
2066 <context-group name="null"> 1886 <context-group name="null">
2067 <context context-type="linenumber">7</context> 1887 <context context-type="linenumber">3</context>
2068 </context-group> 1888 </context-group>
2069 </trans-unit> 1889 </trans-unit>
2070 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c"> 1890 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c">
2071 <source>Direct download</source> 1891 <source>Direct download</source>
2072 <target>Telecargament dirècte</target> 1892 <target>Telecargament dirècte</target>
2073 <context-group name="null"> 1893 <context-group name="null">
2074 <context context-type="linenumber">20</context> 1894 <context context-type="linenumber">17</context>
2075 </context-group> 1895 </context-group>
2076 </trans-unit> 1896 </trans-unit>
2077 <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d"> 1897 <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d">
2078 <source>Torrent (.torrent file)</source> 1898 <source>Torrent (.torrent file)</source>
2079 <target>Torrent (fichièr .torrent)</target> 1899 <target>Torrent (fichièr .torrent)</target>
2080 <context-group name="null"> 1900 <context-group name="null">
2081 <context context-type="linenumber">25</context> 1901 <context context-type="linenumber">22</context>
2082 </context-group> 1902 </context-group>
2083 </trans-unit> 1903 </trans-unit>
2084 <trans-unit id="2db8d7cf6a3071f4c1519ef2b5e2713d9ff4e87f"> 1904 <trans-unit id="2db8d7cf6a3071f4c1519ef2b5e2713d9ff4e87f">
2085 <source>Torrent (magnet link)</source> 1905 <source>Torrent (magnet link)</source>
2086 <target>Torrent (ligam magnet)</target> 1906 <target>Torrent (ligam magnet)</target>
2087 <context-group name="null"> 1907 <context-group name="null">
2088 <context context-type="linenumber">30</context> 1908 <context context-type="linenumber">27</context>
2089 </context-group> 1909 </context-group>
2090 </trans-unit> 1910 </trans-unit>
2091 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> 1911 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd">
2092 <source>Download</source> 1912 <source>Download</source>
2093 <target>Telecargar</target> 1913 <target>Telecargar</target>
2094 <context-group name="null"> 1914 <context-group name="null">
2095 <context context-type="linenumber">87</context> 1915 <context context-type="linenumber">84</context>
2096 </context-group> 1916 </context-group>
2097 </trans-unit> 1917 </trans-unit>
2098 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b"> 1918 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b">
2099 <source>Report video</source> 1919 <source>Report video</source>
2100 <target>Senhalar la vidèo</target> 1920 <target>Senhalar la vidèo</target>
2101 <context-group name="null"> 1921 <context-group name="null">
2102 <context context-type="linenumber">7</context> 1922 <context context-type="linenumber">3</context>
2103 </context-group>
2104 </trans-unit>
2105 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
2106 <source>Reason...</source>
2107 <target>Rason...</target>
2108 <context-group name="null">
2109 <context context-type="linenumber">14</context>
2110 </context-group>
2111 </trans-unit>
2112 <trans-unit id="0e6b8229bd65f93bc8040d0fb598967f220740c7">
2113 <source>
2114 Cancel
2115 </source>
2116 <target>
2117 Anullar
2118 </target>
2119 <context-group name="null">
2120 <context context-type="linenumber">22</context>
2121 </context-group>
2122 </trans-unit>
2123 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
2124 <source>Submit</source>
2125 <target>Mandar</target>
2126 <context-group name="null">
2127 <context context-type="linenumber">27</context>
2128 </context-group> 1923 </context-group>
2129 </trans-unit> 1924 </trans-unit>
2130 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9"> 1925 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9">
2131 <source>Share</source> 1926 <source>Share</source>
2132 <target>Partejar</target> 1927 <target>Partejar</target>
2133 <context-group name="null"> 1928 <context-group name="null">
2134 <context context-type="linenumber">76</context> 1929 <context context-type="linenumber">74</context>
2135 </context-group>
2136 </trans-unit>
2137 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
2138 <source>Embed</source>
2139 <target>Embarcar</target>
2140 <context-group name="null">
2141 <context context-type="linenumber">24</context>
2142 </context-group>
2143 </trans-unit>
2144 <trans-unit id="239fe0316cfe91aa6e1e7bf1ef19e3b7772131f8">
2145 <source>
2146 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).
2147 </source>
2148 <target>
2149 L’URL es pas segura (cap HTTPS), doncas l’integracion de la vidèo foncionarà pas suls sites en HTTPS (los navigadors web blocan lo contengut HTTP pas segur suls sites en HTTPS).
2150 </target>
2151 <context-group name="null">
2152 <context context-type="linenumber">35</context>
2153 </context-group> 1930 </context-group>
2154 </trans-unit> 1931 </trans-unit>
2155 <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f"> 1932 <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f">
2156 <source>QR-Code</source> 1933 <source>QR-Code</source>
2157 <target>QR-Còdi</target> 1934 <target>QR-Còdi</target>
2158 <context-group name="null"> 1935 <context-group name="null">
2159 <context context-type="linenumber">40</context> 1936 <context context-type="linenumber">29</context>
1937 </context-group>
1938 </trans-unit>
1939 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
1940 <source>Embed</source>
1941 <target>Embarcar</target>
1942 <context-group name="null">
1943 <context context-type="linenumber">34</context>
2160 </context-group> 1944 </context-group>
2161 </trans-unit> 1945 </trans-unit>
2162 <trans-unit id="7584313e33a66811eb10646627914a01fff0347d"> 1946 <trans-unit id="7584313e33a66811eb10646627914a01fff0347d">
@@ -2181,174 +1965,116 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
2181 <context context-type="linenumber">15</context> 1965 <context context-type="linenumber">15</context>
2182 </context-group> 1966 </context-group>
2183 </trans-unit> 1967 </trans-unit>
2184 <trans-unit id="fbc205ea3d06fa8f65973fa3b490ae172f71c087">
2185 <source>
2186 This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
2187 </source>
2188 <target>
2189 Aquesta vidèo serà publicada lo <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
2190 </target>
2191 <context-group name="null">
2192 <context context-type="linenumber">19</context>
2193 </context-group>
2194 </trans-unit>
2195 <trans-unit id="643ab402461b1169eebbe2ed790e12a9a83551aa">
2196 <source>
2197 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views
2198 </source>
2199 <target>
2200 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visualizacions
2201 </target>
2202 <context-group name="null">
2203 <context context-type="linenumber">30</context>
2204 </context-group>
2205 </trans-unit>
2206 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
2207 <source>Go the channel page</source>
2208 <target>Anar la pagina de la cadena</target>
2209 <context-group name="null">
2210 <context context-type="linenumber">35</context>
2211 </context-group>
2212 </trans-unit>
2213 <trans-unit id="ccc07df383b7a32be3e2e105faa5488caf261c1c">
2214 <source>By <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></source>
2215 <target>Per <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></target>
2216 <context-group name="null">
2217 <context context-type="linenumber">45</context>
2218 </context-group>
2219 </trans-unit>
2220 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
2221 <source>Go to the account page</source>
2222 <target>Anar a la pagina del compte</target>
2223 <context-group name="null">
2224 <context context-type="linenumber">44</context>
2225 </context-group>
2226 </trans-unit>
2227 <trans-unit id="57075c778cf28b81272df4eb17da944366c98e51">
2228 <source>You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; and subscribe there. Subscription as a PeerTube user is being worked on in &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</source>
2229 <target>Podètz vos abonar a aqueste compte via qualque que siá instància compatibla amb ActivityPub del fediverse. Per exemple amb Mastodon o Pleroma podètz picar dins la barra de recèrca &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; e vos i abonar d’enlà. Los abonaments coma utilizaire de PeerTube son en òbra aquí &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</target>
2230 <context-group name="null">
2231 <context context-type="linenumber">49</context>
2232 </context-group>
2233 </trans-unit>
2234 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced"> 1968 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced">
2235 <source>Like this video</source> 1969 <source>Like this video</source>
2236 <target>Aimar la vidèo</target> 1970 <target>Aimar la vidèo</target>
2237 <context-group name="null"> 1971 <context-group name="null">
2238 <context context-type="linenumber">59</context> 1972 <context context-type="linenumber">57</context>
2239 </context-group> 1973 </context-group>
2240 </trans-unit> 1974 </trans-unit>
2241 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509"> 1975 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509">
2242 <source>Dislike this video</source> 1976 <source>Dislike this video</source>
2243 <target>Aimar pas mai la vidèo</target> 1977 <target>Aimar pas mai la vidèo</target>
2244 <context-group name="null"> 1978 <context-group name="null">
2245 <context context-type="linenumber">66</context> 1979 <context context-type="linenumber">64</context>
2246 </context-group> 1980 </context-group>
2247 </trans-unit> 1981 </trans-unit>
2248 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2"> 1982 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2">
2249 <source>Download the video</source> 1983 <source>Download the video</source>
2250 <target>Telecargar la vidèo</target> 1984 <target>Telecargar la vidèo</target>
2251 <context-group name="null"> 1985 <context-group name="null">
2252 <context context-type="linenumber">86</context> 1986 <context context-type="linenumber">83</context>
2253 </context-group> 1987 </context-group>
2254 </trans-unit> 1988 </trans-unit>
2255 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a"> 1989 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a">
2256 <source>Report</source> 1990 <source>Report</source>
2257 <target>Senhalar</target> 1991 <target>Senhalar</target>
2258 <context-group name="null"> 1992 <context-group name="null">
2259 <context context-type="linenumber">93</context> 1993 <context context-type="linenumber">88</context>
2260 </context-group> 1994 </context-group>
2261 </trans-unit> 1995 </trans-unit>
2262 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf"> 1996 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf">
2263 <source>Report this video</source> 1997 <source>Report this video</source>
2264 <target>Senhalar aquesta vidèo</target> 1998 <target>Senhalar aquesta vidèo</target>
2265 <context-group name="null"> 1999 <context-group name="null">
2266 <context context-type="linenumber">92</context> 2000 <context context-type="linenumber">87</context>
2001 </context-group>
2002 </trans-unit>
2003 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1">
2004 <source>Update this video</source>
2005 <target>Enviar aquesta vidèo</target>
2006 <context-group name="null">
2007 <context context-type="linenumber">91</context>
2267 </context-group> 2008 </context-group>
2268 </trans-unit> 2009 </trans-unit>
2269 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61"> 2010 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61">
2270 <source>Blacklist</source> 2011 <source>Blacklist</source>
2271 <target>Lista nègra</target> 2012 <target>Lista nègra</target>
2272 <context-group name="null"> 2013 <context-group name="null">
2273 <context context-type="linenumber">99</context> 2014 <context context-type="linenumber">96</context>
2274 </context-group> 2015 </context-group>
2275 </trans-unit> 2016 </trans-unit>
2276 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037"> 2017 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037">
2277 <source>Blacklist this video</source> 2018 <source>Blacklist this video</source>
2278 <target>Metre en lista nègra</target> 2019 <target>Metre en lista nègra</target>
2279 <context-group name="null"> 2020 <context-group name="null">
2280 <context context-type="linenumber">98</context> 2021 <context context-type="linenumber">95</context>
2281 </context-group> 2022 </context-group>
2282 </trans-unit> 2023 </trans-unit>
2283 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1"> 2024 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
2284 <source>Update this video</source> 2025 <source>Unblacklist</source>
2285 <target>Enviar aquesta vidèo</target> 2026 <target>Tirar de la lista nègra</target>
2286 <context-group name="null"> 2027 <context-group name="null">
2287 <context context-type="linenumber">104</context> 2028 <context context-type="linenumber">100</context>
2288 </context-group> 2029 </context-group>
2289 </trans-unit> 2030 </trans-unit>
2290 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5"> 2031 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5">
2291 <source>Delete this video</source> 2032 <source>Delete this video</source>
2292 <target>Suprimir aquesta vidèo</target> 2033 <target>Suprimir aquesta vidèo</target>
2293 <context-group name="null"> 2034 <context-group name="null">
2294 <context context-type="linenumber">110</context> 2035 <context context-type="linenumber">103</context>
2295 </context-group>
2296 </trans-unit>
2297 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b">
2298 <source>Show more</source>
2299 <target>Ne veire mai</target>
2300 <context-group name="null">
2301 <context context-type="linenumber">130</context>
2302 </context-group> 2036 </context-group>
2303 </trans-unit> 2037 </trans-unit>
2304 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903"> 2038 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
2305 <source>Show less</source> 2039 <source>Go the channel page</source>
2306 <target>Ne veire mens</target> 2040 <target>Anar la pagina de la cadena</target>
2307 <context-group name="null"> 2041 <context-group name="null">
2308 <context context-type="linenumber">136</context> 2042 <context context-type="linenumber">123</context>
2309 </context-group> 2043 </context-group>
2310 </trans-unit> 2044 </trans-unit>
2311 <trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1"> 2045 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
2312 <source> 2046 <source>Go to the account page</source>
2313 Other videos 2047 <target>Anar a la pagina del compte</target>
2314 </source>
2315 <target>
2316 Autras vidèos
2317 </target>
2318 <context-group name="null"> 2048 <context-group name="null">
2319 <context context-type="linenumber">187</context> 2049 <context context-type="linenumber">133</context>
2320 </context-group> 2050 </context-group>
2321 </trans-unit> 2051 </trans-unit>
2322 <trans-unit id="fb779d2b25c4d0ffa7d52c823a240717e8c1fe6c"> 2052 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b">
2323 <source>Friendly Reminder:</source> 2053 <source>Show more</source>
2324 <target>Rerd amistós :</target> 2054 <target>Ne veire mai</target>
2325 <context-group name="null"> 2055 <context-group name="null">
2326 <context context-type="linenumber">199</context> 2056 <context context-type="linenumber">148</context>
2327 </context-group> 2057 </context-group>
2328 </trans-unit> 2058 </trans-unit>
2329 <trans-unit id="329900dd14bc4ca33cec3775d25c246e4cde7867"> 2059 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903">
2330 <source> 2060 <source>Show less</source>
2331 The sharing system used by this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. 2061 <target>Ne veire mens</target>
2332 </source>
2333 <target>
2334 Lo sistèma de partatge utilizat per aquesta vidèo implica que d’informacions tocant vòstre sistèma (tal coma vòstra adreça IP publica) sián enviadas als autres pars.
2335 </target>
2336 <context-group name="null"> 2062 <context-group name="null">
2337 <context context-type="linenumber">201</context> 2063 <context context-type="linenumber">154</context>
2338 </context-group> 2064 </context-group>
2339 </trans-unit> 2065 </trans-unit>
2340 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e"> 2066 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e">
2341 <source>More information</source> 2067 <source>More information</source>
2342 <target>Mai d’informacions</target> 2068 <target>Mai d’informacions</target>
2343 <context-group name="null"> 2069 <context-group name="null">
2344 <context context-type="linenumber">204</context> 2070 <context context-type="linenumber">214</context>
2345 </context-group> 2071 </context-group>
2346 </trans-unit> 2072 </trans-unit>
2347 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318"> 2073 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318">
2348 <source>Get more information</source> 2074 <source>Get more information</source>
2349 <target>Obténer mai d’informacions</target> 2075 <target>Obténer mai d’informacions</target>
2350 <context-group name="null"> 2076 <context-group name="null">
2351 <context context-type="linenumber">204</context> 2077 <context context-type="linenumber">214</context>
2352 </context-group> 2078 </context-group>
2353 </trans-unit> 2079 </trans-unit>
2354 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f"> 2080 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f">
@@ -2359,7 +2085,7 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
2359 D’acòrdi 2085 D’acòrdi
2360 </target> 2086 </target>
2361 <context-group name="null"> 2087 <context-group name="null">
2362 <context context-type="linenumber">207</context> 2088 <context context-type="linenumber">217</context>
2363 </context-group> 2089 </context-group>
2364 </trans-unit> 2090 </trans-unit>
2365 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7"> 2091 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7">
@@ -2420,7 +2146,7 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
2420 Publicar lo comentari 2146 Publicar lo comentari
2421 </target> 2147 </target>
2422 <context-group name="null"> 2148 <context-group name="null">
2423 <context context-type="linenumber">17</context> 2149 <context context-type="linenumber">18</context>
2424 </context-group> 2150 </context-group>
2425 </trans-unit> 2151 </trans-unit>
2426 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> 2152 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285">
@@ -2584,23 +2310,9 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
2584 <context context-type="linenumber">1</context> 2310 <context context-type="linenumber">1</context>
2585 </context-group> 2311 </context-group>
2586 </trans-unit> 2312 </trans-unit>
2587 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936"> 2313 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2588 <source>Following</source> 2314 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2589 <target>Abonaments</target> 2315 <target>Vidèo <x id="INTERPOLATION" equiv-text="{{name}}"/> tirada de la lista negra.</target>
2590 <context-group name="null">
2591 <context context-type="linenumber">1</context>
2592 </context-group>
2593 </trans-unit>
2594 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
2595 <source>Follow</source>
2596 <target>Seguir</target>
2597 <context-group name="null">
2598 <context context-type="linenumber">1</context>
2599 </context-group>
2600 </trans-unit>
2601 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
2602 <source>Followers</source>
2603 <target>Seguidors</target>
2604 <context-group name="null"> 2316 <context-group name="null">
2605 <context context-type="linenumber">1</context> 2317 <context context-type="linenumber">1</context>
2606 </context-group> 2318 </context-group>
@@ -2654,27 +2366,6 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
2654 <context context-type="linenumber">1</context> 2366 <context context-type="linenumber">1</context>
2655 </context-group> 2367 </context-group>
2656 </trans-unit> 2368 </trans-unit>
2657 <trans-unit id="4733ad1d7e63960438c0203b9a64f165b5fc84f2">
2658 <source>Do you really want to remove this video from the blacklist ? It will be available again in the videos list.</source>
2659 <target>Volètz vertadièrament tirar aquesta vidèo de la lista negra ? Serà tornamai disponibla dins la lista de vidèos.</target>
2660 <context-group name="null">
2661 <context context-type="linenumber">1</context>
2662 </context-group>
2663 </trans-unit>
2664 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2665 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2666 <target>Vidèo <x id="INTERPOLATION" equiv-text="{{name}}"/> tirada de la lista negra.</target>
2667 <context-group name="null">
2668 <context context-type="linenumber">1</context>
2669 </context-group>
2670 </trans-unit>
2671 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2672 <source>The new password and the confirmed password do not correspond.</source>
2673 <target>Lo novèl senhal e sa confirmacion correspondon pas.</target>
2674 <context-group name="null">
2675 <context context-type="linenumber">1</context>
2676 </context-group>
2677 </trans-unit>
2678 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc"> 2369 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc">
2679 <source>Password updated.</source> 2370 <source>Password updated.</source>
2680 <target>Senhal actualizat</target> 2371 <target>Senhal actualizat</target>
@@ -2843,6 +2534,13 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
2843 <context context-type="linenumber">1</context> 2534 <context context-type="linenumber">1</context>
2844 </context-group> 2535 </context-group>
2845 </trans-unit> 2536 </trans-unit>
2537 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2538 <source>Unable to find user id or verification string.</source>
2539 <target>Impossible de trobar l’id de l’utilizaire o la cadena de verificacion.</target>
2540 <context-group name="null">
2541 <context context-type="linenumber">1</context>
2542 </context-group>
2543 </trans-unit>
2846 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7"> 2544 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7">
2847 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>. 2545 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>.
2848</source> 2546</source>
@@ -2880,13 +2578,6 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
2880 <context context-type="linenumber">1</context> 2578 <context context-type="linenumber">1</context>
2881 </context-group> 2579 </context-group>
2882 </trans-unit> 2580 </trans-unit>
2883 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2884 <source>Unable to find user id or verification string.</source>
2885 <target>Impossible de trobar l’id de l’utilizaire o la cadena de verificacion.</target>
2886 <context-group name="null">
2887 <context context-type="linenumber">1</context>
2888 </context-group>
2889 </trans-unit>
2890 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26"> 2581 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26">
2891 <source>Your password has been successfully reset!</source> 2582 <source>Your password has been successfully reset!</source>
2892 <target>Vòstre senhal es estat corrèctament reïnicializat</target> 2583 <target>Vòstre senhal es estat corrèctament reïnicializat</target>
@@ -3076,13 +2767,6 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
3076 <context context-type="linenumber">1</context> 2767 <context context-type="linenumber">1</context>
3077 </context-group> 2768 </context-group>
3078 </trans-unit> 2769 </trans-unit>
3079 <trans-unit id="ba88636d27c1a6a7e1f75ff57ec182b30b851c2e">
3080 <source>Transcoding threads must be greater than 1.</source>
3081 <target>Los fils de transcodatge devon èsser superior a 1.</target>
3082 <context-group name="null">
3083 <context context-type="linenumber">1</context>
3084 </context-group>
3085 </trans-unit>
3086 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149"> 2770 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149">
3087 <source>Username is required.</source> 2771 <source>Username is required.</source>
3088 <target>Lo nom d’utilizaire es requesit.</target> 2772 <target>Lo nom d’utilizaire es requesit.</target>
@@ -3153,6 +2837,13 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
3153 <context context-type="linenumber">1</context> 2837 <context context-type="linenumber">1</context>
3154 </context-group> 2838 </context-group>
3155 </trans-unit> 2839 </trans-unit>
2840 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2841 <source>The new password and the confirmed password do not correspond.</source>
2842 <target>Lo novèl senhal e sa confirmacion correspondon pas.</target>
2843 <context-group name="null">
2844 <context context-type="linenumber">1</context>
2845 </context-group>
2846 </trans-unit>
3156 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf"> 2847 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf">
3157 <source>Video quota is required.</source> 2848 <source>Video quota is required.</source>
3158 <target>Lo quòta vidèo es requesit.</target> 2849 <target>Lo quòta vidèo es requesit.</target>
@@ -3720,6 +3411,41 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
3720 <context context-type="linenumber">1</context> 3411 <context context-type="linenumber">1</context>
3721 </context-group> 3412 </context-group>
3722 </trans-unit> 3413 </trans-unit>
3414 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3415 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3416 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3417 <context-group name="null">
3418 <context context-type="linenumber">1</context>
3419 </context-group>
3420 </trans-unit>
3421 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3422 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3423 <target>{VAR_PLURAL, plural, =1 {minuta} other {minutas} }</target>
3424 <context-group name="null">
3425 <context context-type="linenumber">1</context>
3426 </context-group>
3427 </trans-unit>
3428 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3429 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3430 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vidèos full HD</target>
3431 <context-group name="null">
3432 <context context-type="linenumber">1</context>
3433 </context-group>
3434 </trans-unit>
3435 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3436 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3437 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vidèos HD</target>
3438 <context-group name="null">
3439 <context context-type="linenumber">1</context>
3440 </context-group>
3441 </trans-unit>
3442 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3443 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3444 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vidèo de qualitat mejana</target>
3445 <context-group name="null">
3446 <context context-type="linenumber">1</context>
3447 </context-group>
3448 </trans-unit>
3723 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d"> 3449 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d">
3724 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source> 3450 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source>
3725 <target>Fa <x id="INTERPOLATION" equiv-text="{{interval}}"/> ans</target> 3451 <target>Fa <x id="INTERPOLATION" equiv-text="{{interval}}"/> ans</target>
@@ -3874,41 +3600,6 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
3874 <context context-type="linenumber">1</context> 3600 <context context-type="linenumber">1</context>
3875 </context-group> 3601 </context-group>
3876 </trans-unit> 3602 </trans-unit>
3877 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3878 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3879 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3880 <context-group name="null">
3881 <context context-type="linenumber">1</context>
3882 </context-group>
3883 </trans-unit>
3884 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3885 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3886 <target>{VAR_PLURAL, plural, =1 {minuta} other {minutas} }</target>
3887 <context-group name="null">
3888 <context context-type="linenumber">1</context>
3889 </context-group>
3890 </trans-unit>
3891 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3892 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3893 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vidèos full HD</target>
3894 <context-group name="null">
3895 <context context-type="linenumber">1</context>
3896 </context-group>
3897 </trans-unit>
3898 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3899 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3900 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vidèos HD</target>
3901 <context-group name="null">
3902 <context context-type="linenumber">1</context>
3903 </context-group>
3904 </trans-unit>
3905 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3906 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3907 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vidèo de qualitat mejana</target>
3908 <context-group name="null">
3909 <context context-type="linenumber">1</context>
3910 </context-group>
3911 </trans-unit>
3912 <trans-unit id="320c9c3482a0ebe46da42ce9e0cbdc5ba26ea8bb"> 3603 <trans-unit id="320c9c3482a0ebe46da42ce9e0cbdc5ba26ea8bb">
3913 <source>Video to import updated.</source> 3604 <source>Video to import updated.</source>
3914 <target>Vidèo d’importar actualizada</target> 3605 <target>Vidèo d’importar actualizada</target>
@@ -3958,13 +3649,6 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
3958 <context context-type="linenumber">1</context> 3649 <context context-type="linenumber">1</context>
3959 </context-group> 3650 </context-group>
3960 </trans-unit> 3651 </trans-unit>
3961 <trans-unit id="d31d39e8ee9b2f20bffb3468ee062eaa5409c59f">
3962 <source>Your video quota is exceeded with this video (video size: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, used: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, quota: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</source>
3963 <target>Avètz atengut lo quòta vidèo amb aquesta vidèo (talha de la vidèo : <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, utilizat : <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, quòta: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</target>
3964 <context-group name="null">
3965 <context context-type="linenumber">1</context>
3966 </context-group>
3967 </trans-unit>
3968 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce"> 3652 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce">
3969 <source>Video published.</source> 3653 <source>Video published.</source>
3970 <target>Vidèo publicada.</target> 3654 <target>Vidèo publicada.</target>
@@ -4000,20 +3684,6 @@ Quand enviaretz una vidèo dins aquesta cadena, lo camp vidèo sosten serà auto
4000 <context context-type="linenumber">1</context> 3684 <context context-type="linenumber">1</context>
4001 </context-group> 3685 </context-group>
4002 </trans-unit> 3686 </trans-unit>
4003 <trans-unit id="23b2c2f4dd69e29c3bff00469e259dcb01de5633">
4004 <source>Do you really want to blacklist this video?</source>
4005 <target>Volètz vertadièrament metre en lista negra aquesta vidèo ?</target>
4006 <context-group name="null">
4007 <context context-type="linenumber">1</context>
4008 </context-group>
4009 </trans-unit>
4010 <trans-unit id="cafd8ec6020e69f241a107b1cb7081bd9e773d4e">
4011 <source>Video <x id="INTERPOLATION" equiv-text="{{videoName}}"/> had been blacklisted.</source>
4012 <target>La vidèo <x id="INTERPOLATION" equiv-text="{{videoName}}"/> es en lista negra.</target>
4013 <context-group name="null">
4014 <context context-type="linenumber">1</context>
4015 </context-group>
4016 </trans-unit>
4017 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95"> 3687 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95">
4018 <source>Do you really want to delete this video?</source> 3688 <source>Do you really want to delete this video?</source>
4019 <target>Volètz vertadièrament suprimir aquesta vidèo ?</target> 3689 <target>Volètz vertadièrament suprimir aquesta vidèo ?</target>
diff --git a/client/src/locale/target/angular_pl_PL.xml b/client/src/locale/target/angular_pl_PL.xml
index 1f920b460..d02f8cbdc 100644
--- a/client/src/locale/target/angular_pl_PL.xml
+++ b/client/src/locale/target/angular_pl_PL.xml
@@ -3,29 +3,25 @@
3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1"> 3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1">
4 <file source-language="en-US" datatype="plaintext" original="" target-language="pl-PL"> 4 <file source-language="en-US" datatype="plaintext" original="" target-language="pl-PL">
5 <body> 5 <body>
6 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
7 <source>
8 Cancel
9 </source>
10 <target>
11 Anuluj
12 </target>
13 <context-group name="null">
14 <context context-type="linenumber">45</context>
15 </context-group>
16 </trans-unit>
17 <trans-unit id="9d5f16f0233b39fa2cd843321407a7358c323ad8"> 6 <trans-unit id="9d5f16f0233b39fa2cd843321407a7358c323ad8">
18 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 7 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
19 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> wyświetleń</target> 8 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> wyświetleń</target>
20 <context-group name="null"> 9 <context-group name="null">
21 <context context-type="linenumber">34</context> 10 <context context-type="linenumber">12</context>
11 </context-group>
12 </trans-unit>
13 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7">
14 <source>Delete</source>
15 <target>Usuń</target>
16 <context-group name="null">
17 <context context-type="linenumber">15</context>
22 </context-group> 18 </context-group>
23 </trans-unit> 19 </trans-unit>
24 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> 20 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c">
25 <source>Edit</source> 21 <source>Edit</source>
26 <target>Edytuj</target> 22 <target>Edytuj</target>
27 <context-group name="null"> 23 <context-group name="null">
28 <context context-type="linenumber">3</context> 24 <context context-type="linenumber">5</context>
29 </context-group> 25 </context-group>
30 </trans-unit> 26 </trans-unit>
31 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> 27 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d">
@@ -39,7 +35,7 @@
39 <source>Complete preview</source> 35 <source>Complete preview</source>
40 <target>Pełny podgląd</target> 36 <target>Pełny podgląd</target>
41 <context-group name="null"> 37 <context-group name="null">
42 <context context-type="linenumber">10</context> 38 <context context-type="linenumber">13</context>
43 </context-group> 39 </context-group>
44 </trans-unit> 40 </trans-unit>
45 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> 41 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f">
@@ -49,6 +45,13 @@
49 <context context-type="linenumber">18</context> 45 <context context-type="linenumber">18</context>
50 </context-group> 46 </context-group>
51 </trans-unit> 47 </trans-unit>
48 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
49 <source>Video quota</source>
50 <target>Powierzchnia na filmy</target>
51 <context-group name="null">
52 <context context-type="linenumber">19</context>
53 </context-group>
54 </trans-unit>
52 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea"> 55 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea">
53 <source> 56 <source>
54 Login 57 Login
@@ -64,14 +67,14 @@
64 <source>User</source> 67 <source>User</source>
65 <target>Użytkownik</target> 68 <target>Użytkownik</target>
66 <context-group name="null"> 69 <context-group name="null">
67 <context context-type="linenumber">11</context> 70 <context context-type="linenumber">13</context>
68 </context-group> 71 </context-group>
69 </trans-unit> 72 </trans-unit>
70 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> 73 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478">
71 <source>Username or email address</source> 74 <source>Username or email address</source>
72 <target>Nazwa użytkownika lub adres e-mail</target> 75 <target>Nazwa użytkownika lub adres e-mail</target>
73 <context-group name="null"> 76 <context-group name="null">
74 <context context-type="linenumber">13</context> 77 <context context-type="linenumber">15</context>
75 </context-group> 78 </context-group>
76 </trans-unit> 79 </trans-unit>
77 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87"> 80 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87">
@@ -82,7 +85,7 @@
82 lub utwórz konto 85 lub utwórz konto
83 </target> 86 </target>
84 <context-group name="null"> 87 <context-group name="null">
85 <context context-type="linenumber">16</context> 88 <context context-type="linenumber">18</context>
86 </context-group> 89 </context-group>
87 </trans-unit> 90 </trans-unit>
88 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b"> 91 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b">
@@ -93,14 +96,14 @@
93 lub utwórz konto na innej instancji 96 lub utwórz konto na innej instancji
94 </target> 97 </target>
95 <context-group name="null"> 98 <context-group name="null">
96 <context context-type="linenumber">20</context> 99 <context context-type="linenumber">22</context>
97 </context-group> 100 </context-group>
98 </trans-unit> 101 </trans-unit>
99 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3"> 102 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3">
100 <source>User registration is not allowed on this instance, but you can register on many others!</source> 103 <source>User registration is not allowed on this instance, but you can register on many others!</source>
101 <target>Rejestracja nie jest dozwolona na tej instancji, ale możesz założyć konto na wielu innych!</target> 104 <target>Rejestracja nie jest dozwolona na tej instancji, ale możesz założyć konto na wielu innych!</target>
102 <context-group name="null"> 105 <context-group name="null">
103 <context context-type="linenumber">26</context> 106 <context context-type="linenumber">28</context>
104 </context-group> 107 </context-group>
105 </trans-unit> 108 </trans-unit>
106 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> 109 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407">
@@ -114,35 +117,35 @@
114 <source>I forgot my password</source> 117 <source>I forgot my password</source>
115 <target>Zapomniałem hasła</target> 118 <target>Zapomniałem hasła</target>
116 <context-group name="null"> 119 <context-group name="null">
117 <context context-type="linenumber">42</context> 120 <context context-type="linenumber">44</context>
118 </context-group> 121 </context-group>
119 </trans-unit> 122 </trans-unit>
120 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681"> 123 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681">
121 <source>Forgot your password</source> 124 <source>Forgot your password</source>
122 <target>Zapomniałem hasła</target> 125 <target>Zapomniałem hasła</target>
123 <context-group name="null"> 126 <context-group name="null">
124 <context context-type="linenumber">59</context> 127 <context context-type="linenumber">57</context>
125 </context-group> 128 </context-group>
126 </trans-unit> 129 </trans-unit>
127 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc"> 130 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc">
128 <source>Email</source> 131 <source>Email</source>
129 <target>E-mail</target> 132 <target>E-mail</target>
130 <context-group name="null"> 133 <context-group name="null">
131 <context context-type="linenumber">17</context> 134 <context context-type="linenumber">8</context>
132 </context-group> 135 </context-group>
133 </trans-unit> 136 </trans-unit>
134 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529"> 137 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529">
135 <source>Email address</source> 138 <source>Email address</source>
136 <target>Adres e-mail</target> 139 <target>Adres e-mail</target>
137 <context-group name="null"> 140 <context-group name="null">
138 <context context-type="linenumber">66</context> 141 <context context-type="linenumber">10</context>
139 </context-group> 142 </context-group>
140 </trans-unit> 143 </trans-unit>
141 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55"> 144 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55">
142 <source>Send me an email to reset my password</source> 145 <source>Send me an email to reset my password</source>
143 <target>Wyślij mi wiadomość e-mail przywracającą hasło</target> 146 <target>Wyślij mi wiadomość e-mail przywracającą hasło</target>
144 <context-group name="null"> 147 <context-group name="null">
145 <context context-type="linenumber">77</context> 148 <context context-type="linenumber">75</context>
146 </context-group> 149 </context-group>
147 </trans-unit> 150 </trans-unit>
148 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa"> 151 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa">
@@ -188,24 +191,6 @@
188 <context context-type="linenumber">3</context> 191 <context context-type="linenumber">3</context>
189 </context-group> 192 </context-group>
190 </trans-unit> 193 </trans-unit>
191 <trans-unit id="a6807b834e01ce165aa61fad157b0ff4288b6bf1">
192 <source>Initial video quota:</source>
193 <target>Domyślna powierzchnia na filmy:</target>
194 <context-group name="null">
195 <context context-type="linenumber">8</context>
196 </context-group>
197 </trans-unit>
198 <trans-unit id="87b6b2c26215c5e712d3bfe4cc86ba53bc23451c">
199 <source>
200 Unlimited
201 </source>
202 <target>
203 Nieograniczona
204 </target>
205 <context-group name="null">
206 <context context-type="linenumber">16</context>
207 </context-group>
208 </trans-unit>
209 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> 194 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48">
210 <source>Username</source> 195 <source>Username</source>
211 <target>Nazwa użytkownika</target> 196 <target>Nazwa użytkownika</target>
@@ -217,103 +202,70 @@
217 <source>Signup</source> 202 <source>Signup</source>
218 <target>Zarejestruj się</target> 203 <target>Zarejestruj się</target>
219 <context-group name="null"> 204 <context-group name="null">
220 <context context-type="linenumber">86</context> 205 <context context-type="linenumber">88</context>
221 </context-group> 206 </context-group>
222 </trans-unit> 207 </trans-unit>
223 <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96"> 208 <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96">
224 <source>Change the language</source> 209 <source>Change the language</source>
225 <target>Zmień język</target> 210 <target>Zmień język</target>
226 <context-group name="null"> 211 <context-group name="null">
227 <context context-type="linenumber">76</context> 212 <context context-type="linenumber">88</context>
228 </context-group>
229 </trans-unit>
230 <trans-unit id="b8ccc4f1b3f839fca9bd59e072f715fd487d540f">
231 <source>
232 My public profile
233 </source>
234 <target>
235 Mój profil publiczny
236 </target>
237 <context-group name="null">
238 <context context-type="linenumber">19</context>
239 </context-group>
240 </trans-unit>
241 <trans-unit id="c84b721e9325c9cce20d92f4dbd66898ab5ec947">
242 <source>
243 My account
244 </source>
245 <target>
246 Moje konto
247 </target>
248 <context-group name="null">
249 <context context-type="linenumber">23</context>
250 </context-group>
251 </trans-unit>
252 <trans-unit id="ba7378cdaaa60b4fee17a551b232ad3512dac17d">
253 <source>
254 Log out
255 </source>
256 <target>
257 Wyloguj się
258 </target>
259 <context-group name="null">
260 <context context-type="linenumber">27</context>
261 </context-group> 213 </context-group>
262 </trans-unit> 214 </trans-unit>
263 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> 215 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9">
264 <source>Login</source> 216 <source>Login</source>
265 <target>Zaloguj się</target> 217 <target>Zaloguj się</target>
266 <context-group name="null"> 218 <context-group name="null">
267 <context context-type="linenumber">36</context> 219 <context context-type="linenumber">38</context>
268 </context-group> 220 </context-group>
269 </trans-unit> 221 </trans-unit>
270 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> 222 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87">
271 <source>Create an account</source> 223 <source>Create an account</source>
272 <target>Utwórz konto</target> 224 <target>Utwórz konto</target>
273 <context-group name="null"> 225 <context-group name="null">
274 <context context-type="linenumber">37</context> 226 <context context-type="linenumber">39</context>
275 </context-group> 227 </context-group>
276 </trans-unit> 228 </trans-unit>
277 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238"> 229 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238">
278 <source>Videos</source> 230 <source>Videos</source>
279 <target>Filmy</target> 231 <target>Filmy</target>
280 <context-group name="null"> 232 <context-group name="null">
281 <context context-type="linenumber">21</context> 233 <context context-type="linenumber">24</context>
282 </context-group> 234 </context-group>
283 </trans-unit> 235 </trans-unit>
284 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> 236 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807">
285 <source>Trending</source> 237 <source>Trending</source>
286 <target>Na czasie</target> 238 <target>Na czasie</target>
287 <context-group name="null"> 239 <context-group name="null">
288 <context context-type="linenumber">45</context> 240 <context context-type="linenumber">57</context>
289 </context-group> 241 </context-group>
290 </trans-unit> 242 </trans-unit>
291 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> 243 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1">
292 <source>Recently added</source> 244 <source>Recently added</source>
293 <target>Ostatnio dodane</target> 245 <target>Ostatnio dodane</target>
294 <context-group name="null"> 246 <context-group name="null">
295 <context context-type="linenumber">50</context> 247 <context context-type="linenumber">62</context>
296 </context-group> 248 </context-group>
297 </trans-unit> 249 </trans-unit>
298 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d"> 250 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d">
299 <source>Local</source> 251 <source>Local</source>
300 <target>Lokalne</target> 252 <target>Lokalne</target>
301 <context-group name="null"> 253 <context-group name="null">
302 <context context-type="linenumber">55</context> 254 <context context-type="linenumber">67</context>
303 </context-group> 255 </context-group>
304 </trans-unit> 256 </trans-unit>
305 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> 257 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919">
306 <source>Administration</source> 258 <source>Administration</source>
307 <target>Administracja</target> 259 <target>Administracja</target>
308 <context-group name="null"> 260 <context-group name="null">
309 <context context-type="linenumber">64</context> 261 <context context-type="linenumber">76</context>
310 </context-group> 262 </context-group>
311 </trans-unit> 263 </trans-unit>
312 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> 264 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a">
313 <source>About</source> 265 <source>About</source>
314 <target>O nas</target> 266 <target>O nas</target>
315 <context-group name="null"> 267 <context-group name="null">
316 <context context-type="linenumber">23</context> 268 <context context-type="linenumber">25</context>
317 </context-group> 269 </context-group>
318 </trans-unit> 270 </trans-unit>
319 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> 271 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599">
@@ -341,21 +293,21 @@
341 <source>Category</source> 293 <source>Category</source>
342 <target>Kategoria</target> 294 <target>Kategoria</target>
343 <context-group name="null"> 295 <context-group name="null">
344 <context context-type="linenumber">148</context> 296 <context context-type="linenumber">166</context>
345 </context-group> 297 </context-group>
346 </trans-unit> 298 </trans-unit>
347 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c"> 299 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c">
348 <source>Licence</source> 300 <source>Licence</source>
349 <target>Licencja</target> 301 <target>Licencja</target>
350 <context-group name="null"> 302 <context-group name="null">
351 <context context-type="linenumber">157</context> 303 <context context-type="linenumber">175</context>
352 </context-group> 304 </context-group>
353 </trans-unit> 305 </trans-unit>
354 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619"> 306 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619">
355 <source>Language</source> 307 <source>Language</source>
356 <target>Język</target> 308 <target>Język</target>
357 <context-group name="null"> 309 <context-group name="null">
358 <context context-type="linenumber">166</context> 310 <context context-type="linenumber">184</context>
359 </context-group> 311 </context-group>
360 </trans-unit> 312 </trans-unit>
361 <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e"> 313 <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e">
@@ -369,7 +321,7 @@
369 <source>Instance</source> 321 <source>Instance</source>
370 <target>Instancja</target> 322 <target>Instancja</target>
371 <context-group name="null"> 323 <context-group name="null">
372 <context context-type="linenumber">7</context> 324 <context context-type="linenumber">8</context>
373 </context-group> 325 </context-group>
374 </trans-unit> 326 </trans-unit>
375 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390"> 327 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390">
@@ -394,14 +346,14 @@
394 <source>Description</source> 346 <source>Description</source>
395 <target>Opis</target> 347 <target>Opis</target>
396 <context-group name="null"> 348 <context-group name="null">
397 <context context-type="linenumber">23</context> 349 <context context-type="linenumber">26</context>
398 </context-group> 350 </context-group>
399 </trans-unit> 351 </trans-unit>
400 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774"> 352 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774">
401 <source>Terms</source> 353 <source>Terms</source>
402 <target>Zasady</target> 354 <target>Zasady</target>
403 <context-group name="null"> 355 <context-group name="null">
404 <context context-type="linenumber">43</context> 356 <context context-type="linenumber">44</context>
405 </context-group> 357 </context-group>
406 </trans-unit> 358 </trans-unit>
407 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27"> 359 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27">
@@ -719,7 +671,7 @@
719 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source> 671 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source>
720 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subskrybentów</target> 672 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subskrybentów</target>
721 <context-group name="null"> 673 <context-group name="null">
722 <context context-type="linenumber">11</context> 674 <context context-type="linenumber">14</context>
723 </context-group> 675 </context-group>
724 </trans-unit> 676 </trans-unit>
725 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f"> 677 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f">
@@ -733,48 +685,48 @@
733 <source>Name</source> 685 <source>Name</source>
734 <target>Nazwa</target> 686 <target>Nazwa</target>
735 <context-group name="null"> 687 <context-group name="null">
736 <context context-type="linenumber">9</context> 688 <context context-type="linenumber">12</context>
737 </context-group> 689 </context-group>
738 </trans-unit> 690 </trans-unit>
739 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b"> 691 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b">
740 <source>Short description</source> 692 <source>Short description</source>
741 <target>Krótki opis</target> 693 <target>Krótki opis</target>
742 <context-group name="null"> 694 <context-group name="null">
743 <context context-type="linenumber">21</context> 695 <context context-type="linenumber">22</context>
744 </context-group> 696 </context-group>
745 </trans-unit> 697 </trans-unit>
746 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003"> 698 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003">
747 <source>Default client route</source> 699 <source>Default client route</source>
748 <context-group name="null"> 700 <context-group name="null">
749 <context context-type="linenumber">54</context> 701 <context context-type="linenumber">55</context>
750 </context-group> 702 </context-group>
751 </trans-unit> 703 </trans-unit>
752 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948"> 704 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948">
753 <source>Videos Trending</source> 705 <source>Videos Trending</source>
754 <target>Filmy na czasie</target> 706 <target>Filmy na czasie</target>
755 <context-group name="null"> 707 <context-group name="null">
756 <context context-type="linenumber">57</context> 708 <context context-type="linenumber">59</context>
757 </context-group> 709 </context-group>
758 </trans-unit> 710 </trans-unit>
759 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883"> 711 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883">
760 <source>Videos Recently Added</source> 712 <source>Videos Recently Added</source>
761 <target>Ostatnio dodane filmy</target> 713 <target>Ostatnio dodane filmy</target>
762 <context-group name="null"> 714 <context-group name="null">
763 <context context-type="linenumber">58</context> 715 <context context-type="linenumber">60</context>
764 </context-group> 716 </context-group>
765 </trans-unit> 717 </trans-unit>
766 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f"> 718 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f">
767 <source>Local videos</source> 719 <source>Local videos</source>
768 <target>Lokalne filmy</target> 720 <target>Lokalne filmy</target>
769 <context-group name="null"> 721 <context-group name="null">
770 <context context-type="linenumber">59</context> 722 <context context-type="linenumber">61</context>
771 </context-group> 723 </context-group>
772 </trans-unit> 724 </trans-unit>
773 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9"> 725 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9">
774 <source>Policy on videos containing sensitive content</source> 726 <source>Policy on videos containing sensitive content</source>
775 <target>Polityka dotycząca filmów zawierających wrażliwą zawartość</target> 727 <target>Polityka dotycząca filmów zawierających wrażliwą zawartość</target>
776 <context-group name="null"> 728 <context-group name="null">
777 <context context-type="linenumber">68</context> 729 <context context-type="linenumber">70</context>
778 </context-group> 730 </context-group>
779 </trans-unit> 731 </trans-unit>
780 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df"> 732 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df">
@@ -809,42 +761,42 @@
809 <source>Signup enabled</source> 761 <source>Signup enabled</source>
810 <target>Wymagana rejestracja</target> 762 <target>Wymagana rejestracja</target>
811 <context-group name="null"> 763 <context-group name="null">
812 <context context-type="linenumber">90</context> 764 <context context-type="linenumber">92</context>
813 </context-group> 765 </context-group>
814 </trans-unit> 766 </trans-unit>
815 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402"> 767 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402">
816 <source>Signup limit</source> 768 <source>Signup limit</source>
817 <target>Limit rejestracji</target> 769 <target>Limit rejestracji</target>
818 <context-group name="null"> 770 <context-group name="null">
819 <context context-type="linenumber">94</context> 771 <context context-type="linenumber">101</context>
820 </context-group> 772 </context-group>
821 </trans-unit> 773 </trans-unit>
822 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011"> 774 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011">
823 <source>Administrator</source> 775 <source>Administrator</source>
824 <target>Administrator</target> 776 <target>Administrator</target>
825 <context-group name="null"> 777 <context-group name="null">
826 <context context-type="linenumber">116</context> 778 <context context-type="linenumber">123</context>
827 </context-group> 779 </context-group>
828 </trans-unit> 780 </trans-unit>
829 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> 781 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587">
830 <source>Admin email</source> 782 <source>Admin email</source>
831 <target>E-mail administratora</target> 783 <target>E-mail administratora</target>
832 <context-group name="null"> 784 <context-group name="null">
833 <context context-type="linenumber">119</context> 785 <context context-type="linenumber">126</context>
834 </context-group> 786 </context-group>
835 </trans-unit> 787 </trans-unit>
836 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be"> 788 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be">
837 <source>Users</source> 789 <source>Users</source>
838 <target>Użytkownicy</target> 790 <target>Użytkownicy</target>
839 <context-group name="null"> 791 <context-group name="null">
840 <context context-type="linenumber">129</context> 792 <context context-type="linenumber">136</context>
841 </context-group> 793 </context-group>
842 </trans-unit> 794 </trans-unit>
843 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09"> 795 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09">
844 <source>User default video quota</source> 796 <source>User default video quota</source>
845 <target>Domyślna powierzchnia na filmy dla użytkownika</target> 797 <target>Domyślna powierzchnia na filmy dla użytkownika</target>
846 <context-group name="null"> 798 <context-group name="null">
847 <context context-type="linenumber">132</context> 799 <context context-type="linenumber">139</context>
848 </context-group> 800 </context-group>
849 </trans-unit> 801 </trans-unit>
850 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5"> 802 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5">
@@ -858,158 +810,112 @@
858 <source>Twitter</source> 810 <source>Twitter</source>
859 <target>Twitter</target> 811 <target>Twitter</target>
860 <context-group name="null"> 812 <context-group name="null">
861 <context context-type="linenumber">148</context> 813 <context context-type="linenumber">170</context>
862 </context-group> 814 </context-group>
863 </trans-unit> 815 </trans-unit>
864 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> 816 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524">
865 <source>Your Twitter username</source> 817 <source>Your Twitter username</source>
866 <target>Twoja nazwa użytkownika na Twitterze</target> 818 <target>Twoja nazwa użytkownika na Twitterze</target>
867 <context-group name="null"> 819 <context-group name="null">
868 <context context-type="linenumber">151</context> 820 <context context-type="linenumber">173</context>
869 </context-group> 821 </context-group>
870 </trans-unit> 822 </trans-unit>
871 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c"> 823 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c">
872 <source>Indicates the Twitter account for the website or platform on which the content was published.</source> 824 <source>Indicates the Twitter account for the website or platform on which the content was published.</source>
873 <target>Oznacza konto Twittera dla strony lub platformy na której została opublikowana zawartość.</target> 825 <target>Oznacza konto Twittera dla strony lub platformy na której została opublikowana zawartość.</target>
874 <context-group name="null"> 826 <context-group name="null">
875 <context context-type="linenumber">154</context> 827 <context context-type="linenumber">176</context>
876 </context-group> 828 </context-group>
877 </trans-unit> 829 </trans-unit>
878 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605"> 830 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605">
879 <source>Instance whitelisted by Twitter</source> 831 <source>Instance whitelisted by Twitter</source>
880 <target>Instancja jest na białej liście Twittera</target> 832 <target>Instancja jest na białej liście Twittera</target>
881 <context-group name="null"> 833 <context-group name="null">
882 <context context-type="linenumber">167</context> 834 <context context-type="linenumber">189</context>
883 </context-group>
884 </trans-unit>
885 <trans-unit id="3f008a1a07ca42c6ad258fde1bbd80ed74ada19b">
886 <source>If your instance is whitelisted by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.&lt;br /&gt;
887If the instance is not whitelisted, we use an image link card that will redirect on your PeerTube instance.&lt;br /&gt;&lt;br /&gt;
888Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; to see if you instance is whitelisted.</source>
889 <target>Jeżeli Twoja instancja znajduje się na białej liście Twittera, odtwarzacz wideo będzie umieszczony na strumieniu Twittera po udostępnieniu filmu.&lt;br /&gt;
890Jeżeli instancja nie znajduje się na białej liście, będzie widoczna karta z miniaturą filmu, która przekieruje na instancję PeerTube.&lt;br /&gt;&lt;br /&gt;
891Zaznacz ten element, zapisz konfigurację i przetestuj odnośnik do filmu z tej instancji (np. https://example.com/videos/watch/blabla) na &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt;, aby sprawdzić czy instancja jest na białej liście.</target>
892 <context-group name="null">
893 <context context-type="linenumber">168</context>
894 </context-group> 835 </context-group>
895 </trans-unit> 836 </trans-unit>
896 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> 837 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5">
897 <source>Services</source> 838 <source>Services</source>
898 <target>Usługi</target> 839 <target>Usługi</target>
899 <context-group name="null"> 840 <context-group name="null">
900 <context context-type="linenumber">146</context> 841 <context context-type="linenumber">168</context>
901 </context-group> 842 </context-group>
902 </trans-unit> 843 </trans-unit>
903 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490"> 844 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490">
904 <source>Transcoding</source> 845 <source>Transcoding</source>
905 <target>Transkodowanie</target> 846 <target>Transkodowanie</target>
906 <context-group name="null"> 847 <context-group name="null">
907 <context context-type="linenumber">176</context> 848 <context context-type="linenumber">200</context>
908 </context-group> 849 </context-group>
909 </trans-unit> 850 </trans-unit>
910 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> 851 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9">
911 <source>Transcoding enabled</source> 852 <source>Transcoding enabled</source>
912 <target>Transkodowanie jest włączone</target> 853 <target>Transkodowanie jest włączone</target>
913 <context-group name="null"> 854 <context-group name="null">
914 <context context-type="linenumber">180</context> 855 <context context-type="linenumber">204</context>
915 </context-group> 856 </context-group>
916 </trans-unit> 857 </trans-unit>
917 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> 858 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f">
918 <source>If you disable transcoding, many videos from your users will not work!</source> 859 <source>If you disable transcoding, many videos from your users will not work!</source>
919 <target>Jeżeli wyłączysz transkodowanie, wiele filmów od użytkowników może nie działać!</target> 860 <target>Jeżeli wyłączysz transkodowanie, wiele filmów od użytkowników może nie działać!</target>
920 <context-group name="null"> 861 <context-group name="null">
921 <context context-type="linenumber">181</context> 862 <context context-type="linenumber">205</context>
922 </context-group> 863 </context-group>
923 </trans-unit> 864 </trans-unit>
924 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> 865 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2">
925 <source>Transcoding threads</source> 866 <source>Transcoding threads</source>
926 <target>Wątki transkodowania</target> 867 <target>Wątki transkodowania</target>
927 <context-group name="null"> 868 <context-group name="null">
928 <context context-type="linenumber">187</context> 869 <context context-type="linenumber">211</context>
929 </context-group> 870 </context-group>
930 </trans-unit> 871 </trans-unit>
931 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7"> 872 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7">
932 <source>Previews cache size</source> 873 <source>Previews cache size</source>
933 <target>Rozmiar pamięci podręcznej podglądu</target> 874 <target>Rozmiar pamięci podręcznej podglądu</target>
934 <context-group name="null"> 875 <context-group name="null">
935 <context context-type="linenumber">219</context> 876 <context context-type="linenumber">243</context>
936 </context-group> 877 </context-group>
937 </trans-unit> 878 </trans-unit>
938 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c"> 879 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c">
939 <source>Customizations</source> 880 <source>Customizations</source>
940 <target>Dostosowywanie</target> 881 <target>Dostosowywanie</target>
941 <context-group name="null"> 882 <context-group name="null">
942 <context context-type="linenumber">240</context> 883 <context context-type="linenumber">264</context>
943 </context-group> 884 </context-group>
944 </trans-unit> 885 </trans-unit>
945 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> 886 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c">
946 <source>JavaScript</source> 887 <source>JavaScript</source>
947 <target>JavaScript</target> 888 <target>JavaScript</target>
948 <context-group name="null"> 889 <context-group name="null">
949 <context context-type="linenumber">243</context> 890 <context context-type="linenumber">267</context>
950 </context-group> 891 </context-group>
951 </trans-unit> 892 </trans-unit>
952 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c"> 893 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c">
953 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source> 894 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source>
954 <target>Wprowadź kod JavaScript.&lt;br /&gt;Przykład: &lt;pre&gt;console.log('moja instancja jest świetna');&lt;/pre&gt;</target> 895 <target>Wprowadź kod JavaScript.&lt;br /&gt;Przykład: &lt;pre&gt;console.log('moja instancja jest świetna');&lt;/pre&gt;</target>
955 <context-group name="null"> 896 <context-group name="null">
956 <context context-type="linenumber">246</context> 897 <context context-type="linenumber">270</context>
957 </context-group>
958 </trans-unit>
959 <trans-unit id="f133b08d6519081bfb8ef51cff4bf2b3af23dde6">
960 <source>
961 Write directly CSS code. Example:&lt;br /&gt;
962 &lt;pre&gt;
963 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
964 background-color: red;
965 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
966 &lt;/pre&gt;
967
968 Prepend with &lt;em&gt;#custom-css&lt;/em&gt; to override styles. Example:
969 &lt;pre&gt;
970 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
971 color: red;
972 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
973 &lt;/pre&gt;
974 </source>
975 <target>
976 Wprowadź kod CSS. Przykład:&lt;br /&gt;
977 &lt;pre&gt;
978 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
979 background-color: red;
980 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
981 &lt;/pre&gt;
982
983 Poprzedź &lt;em&gt;#custom-css&lt;/em&gt; aby nadpisać style. Na przykład:
984 &lt;pre&gt;
985 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
986 color: red;
987 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
988 &lt;/pre&gt;
989 </target>
990 <context-group name="null">
991 <context context-type="linenumber">262</context>
992 </context-group> 898 </context-group>
993 </trans-unit> 899 </trans-unit>
994 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> 900 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab">
995 <source>Advanced configuration</source> 901 <source>Advanced configuration</source>
996 <target>Zaawansowana konfiguracja</target> 902 <target>Zaawansowana konfiguracja</target>
997 <context-group name="null"> 903 <context-group name="null">
998 <context context-type="linenumber">174</context> 904 <context context-type="linenumber">197</context>
999 </context-group> 905 </context-group>
1000 </trans-unit> 906 </trans-unit>
1001 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> 907 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8">
1002 <source>Update configuration</source> 908 <source>Update configuration</source>
1003 <target>Aktualizuj konfigurację</target> 909 <target>Aktualizuj konfigurację</target>
1004 <context-group name="null"> 910 <context-group name="null">
1005 <context context-type="linenumber">289</context> 911 <context context-type="linenumber">314</context>
1006 </context-group> 912 </context-group>
1007 </trans-unit> 913 </trans-unit>
1008 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca"> 914 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca">
1009 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source> 915 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source>
1010 <target>Wygląda na to, że konfiguracja jest nieprawidłowa. Poszukaj możliwych błędów w innych kartach.</target> 916 <target>Wygląda na to, że konfiguracja jest nieprawidłowa. Poszukaj możliwych błędów w innych kartach.</target>
1011 <context-group name="null"> 917 <context-group name="null">
1012 <context context-type="linenumber">290</context> 918 <context context-type="linenumber">315</context>
1013 </context-group> 919 </context-group>
1014 </trans-unit> 920 </trans-unit>
1015 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c"> 921 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c">
@@ -1034,28 +940,6 @@ Zaznacz ten element, zapisz konfigurację i przetestuj odnośnik do filmu z tej
1034 <context context-type="linenumber">7</context> 940 <context context-type="linenumber">7</context>
1035 </context-group> 941 </context-group>
1036 </trans-unit> 942 </trans-unit>
1037 <trans-unit id="1c9406213cf05033eda4d3df678217b5eb822315">
1038 <source>
1039 Video abuses
1040 </source>
1041 <target>
1042 Nadużycia filmów
1043 </target>
1044 <context-group name="null">
1045 <context context-type="linenumber">11</context>
1046 </context-group>
1047 </trans-unit>
1048 <trans-unit id="96ccede058f0022f34230c3adc09e60076b6d037">
1049 <source>
1050 Video blacklist
1051 </source>
1052 <target>
1053 Czarna lista filmów
1054 </target>
1055 <context-group name="null">
1056 <context context-type="linenumber">15</context>
1057 </context-group>
1058 </trans-unit>
1059 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368"> 943 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368">
1060 <source> 944 <source>
1061 Jobs 945 Jobs
@@ -1064,7 +948,7 @@ Zaznacz ten element, zapisz konfigurację i przetestuj odnośnik do filmu z tej
1064 Działania 948 Działania
1065 </target> 949 </target>
1066 <context-group name="null"> 950 <context-group name="null">
1067 <context context-type="linenumber">19</context> 951 <context context-type="linenumber">15</context>
1068 </context-group> 952 </context-group>
1069 </trans-unit> 953 </trans-unit>
1070 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13"> 954 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13">
@@ -1075,7 +959,7 @@ Zaznacz ten element, zapisz konfigurację i przetestuj odnośnik do filmu z tej
1075 Konfiguracja 959 Konfiguracja
1076 </target> 960 </target>
1077 <context-group name="null"> 961 <context-group name="null">
1078 <context context-type="linenumber">23</context> 962 <context context-type="linenumber">19</context>
1079 </context-group> 963 </context-group>
1080 </trans-unit> 964 </trans-unit>
1081 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396"> 965 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396">
@@ -1144,6 +1028,27 @@ Zaznacz ten element, zapisz konfigurację i przetestuj odnośnik do filmu z tej
1144 <context context-type="linenumber">2</context> 1028 <context context-type="linenumber">2</context>
1145 </context-group> 1029 </context-group>
1146 </trans-unit> 1030 </trans-unit>
1031 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936">
1032 <source>Following</source>
1033 <target>Śledzisz</target>
1034 <context-group name="null">
1035 <context context-type="linenumber">5</context>
1036 </context-group>
1037 </trans-unit>
1038 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
1039 <source>Follow</source>
1040 <target>Śledź</target>
1041 <context-group name="null">
1042 <context context-type="linenumber">7</context>
1043 </context-group>
1044 </trans-unit>
1045 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
1046 <source>Followers</source>
1047 <target>Śledzący</target>
1048 <context-group name="null">
1049 <context context-type="linenumber">9</context>
1050 </context-group>
1051 </trans-unit>
1147 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f"> 1052 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f">
1148 <source>Jobs list</source> 1053 <source>Jobs list</source>
1149 <target>Lista zadań</target> 1054 <target>Lista zadań</target>
@@ -1190,14 +1095,7 @@ Zaznacz ten element, zapisz konfigurację i przetestuj odnośnik do filmu z tej
1190 <source>Role</source> 1095 <source>Role</source>
1191 <target>Rola</target> 1096 <target>Rola</target>
1192 <context-group name="null"> 1097 <context-group name="null">
1193 <context context-type="linenumber">19</context> 1098 <context context-type="linenumber">20</context>
1194 </context-group>
1195 </trans-unit>
1196 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
1197 <source>Video quota</source>
1198 <target>Powierzchnia na filmy</target>
1199 <context-group name="null">
1200 <context context-type="linenumber">18</context>
1201 </context-group> 1099 </context-group>
1202 </trans-unit> 1100 </trans-unit>
1203 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345"> 1101 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345">
@@ -1209,6 +1107,13 @@ Zaznacz ten element, zapisz konfigurację i przetestuj odnośnik do filmu z tej
1209 <context context-type="linenumber">65</context> 1107 <context context-type="linenumber">65</context>
1210 </context-group> 1108 </context-group>
1211 </trans-unit> 1109 </trans-unit>
1110 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
1111 <source>Reason...</source>
1112 <target>Przyczyna…</target>
1113 <context-group name="null">
1114 <context context-type="linenumber">11</context>
1115 </context-group>
1116 </trans-unit>
1212 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f"> 1117 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f">
1213 <source>Users list</source> 1118 <source>Users list</source>
1214 <target>Lista użytkowników</target> 1119 <target>Lista użytkowników</target>
@@ -1220,91 +1125,42 @@ Zaznacz ten element, zapisz konfigurację i przetestuj odnośnik do filmu z tej
1220 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source> 1125 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1221 <target>Nazwa użytkownika <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target> 1126 <target>Nazwa użytkownika <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1222 <context-group name="null"> 1127 <context-group name="null">
1223 <context context-type="linenumber">16</context> 1128 <context context-type="linenumber">17</context>
1224 </context-group>
1225 </trans-unit>
1226 <trans-unit id="0c7e8870481f1287af6a142f538391d8c16c2408">
1227 <source>Video abuses list</source>
1228 <target>Lista nadużyć wideo</target>
1229 <context-group name="null">
1230 <context context-type="linenumber">2</context>
1231 </context-group>
1232 </trans-unit>
1233 <trans-unit id="4ba250869daa372b54d24fafc0ea934769ee4076">
1234 <source>Reason</source>
1235 <target>Przyczyna</target>
1236 <context-group name="null">
1237 <context context-type="linenumber">11</context>
1238 </context-group> 1129 </context-group>
1239 </trans-unit> 1130 </trans-unit>
1240 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2"> 1131 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2">
1241 <source>Reporter</source> 1132 <source>Reporter</source>
1242 <target>Zgłaszający</target> 1133 <target>Zgłaszający</target>
1243 <context-group name="null"> 1134 <context-group name="null">
1244 <context context-type="linenumber">12</context> 1135 <context context-type="linenumber">8</context>
1245 </context-group> 1136 </context-group>
1246 </trans-unit> 1137 </trans-unit>
1247 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4"> 1138 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4">
1248 <source>Video</source> 1139 <source>Video</source>
1249 <target>Film</target> 1140 <target>Film</target>
1250 <context-group name="null"> 1141 <context-group name="null">
1251 <context context-type="linenumber">9</context> 1142 <context context-type="linenumber">14</context>
1252 </context-group> 1143 </context-group>
1253 </trans-unit> 1144 </trans-unit>
1254 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7"> 1145 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7">
1255 <source>Go to the account</source> 1146 <source>Go to the account</source>
1256 <target>Przejdź na konto</target> 1147 <target>Przejdź na konto</target>
1257 <context-group name="null"> 1148 <context-group name="null">
1258 <context context-type="linenumber">22</context> 1149 <context context-type="linenumber">27</context>
1259 </context-group> 1150 </context-group>
1260 </trans-unit> 1151 </trans-unit>
1261 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5"> 1152 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5">
1262 <source>Go to the video</source> 1153 <source>Go to the video</source>
1263 <target>Przejdź do filmu</target> 1154 <target>Przejdź do filmu</target>
1264 <context-group name="null"> 1155 <context-group name="null">
1265 <context context-type="linenumber">28</context> 1156 <context context-type="linenumber">33</context>
1266 </context-group> 1157 </context-group>
1267 </trans-unit> 1158 </trans-unit>
1268 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1"> 1159 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1">
1269 <source>Blacklisted videos</source> 1160 <source>Blacklisted videos</source>
1270 <target>Filmy na czarnej liście</target> 1161 <target>Filmy na czarnej liście</target>
1271 <context-group name="null"> 1162 <context-group name="null">
1272 <context context-type="linenumber">2</context> 1163 <context context-type="linenumber">7</context>
1273 </context-group>
1274 </trans-unit>
1275 <trans-unit id="7c02d113e9b7884037834cddecf2a32a5538b35b">
1276 <source>Name <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1277 <target>Nazwa <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1278 <context-group name="null">
1279 <context context-type="linenumber">11</context>
1280 </context-group>
1281 </trans-unit>
1282 <trans-unit id="cd5ca5da9e2fa21571e9f86a24a5c3b45a3ddc51">
1283 <source>Views <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1284 <target>Wyświetlenia <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1285 <context-group name="null">
1286 <context context-type="linenumber">13</context>
1287 </context-group>
1288 </trans-unit>
1289 <trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9">
1290 <source>NSFW</source>
1291 <target>NSFW</target>
1292 <context-group name="null">
1293 <context context-type="linenumber">14</context>
1294 </context-group>
1295 </trans-unit>
1296 <trans-unit id="8c87d9527af7ff2ada84c911516a9e43a352e401">
1297 <source>UUID</source>
1298 <target>UUID</target>
1299 <context-group name="null">
1300 <context context-type="linenumber">15</context>
1301 </context-group>
1302 </trans-unit>
1303 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1304 <source>Unblacklist</source>
1305 <target>Usuń z czarnej listy</target>
1306 <context-group name="null">
1307 <context context-type="linenumber">30</context>
1308 </context-group> 1164 </context-group>
1309 </trans-unit> 1165 </trans-unit>
1310 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6"> 1166 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6">
@@ -1314,18 +1170,11 @@ Zaznacz ten element, zapisz konfigurację i przetestuj odnośnik do filmu z tej
1314 <context context-type="linenumber">3</context> 1170 <context context-type="linenumber">3</context>
1315 </context-group> 1171 </context-group>
1316 </trans-unit> 1172 </trans-unit>
1317 <trans-unit id="520d68b2c9f7dacaf2a5073716cad9bd328ea7e7">
1318 <source>My video channels</source>
1319 <target>Moje kanały wideo</target>
1320 <context-group name="null">
1321 <context context-type="linenumber">5</context>
1322 </context-group>
1323 </trans-unit>
1324 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894"> 1173 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894">
1325 <source>My videos</source> 1174 <source>My videos</source>
1326 <target>Moje filmy</target> 1175 <target>Moje filmy</target>
1327 <context-group name="null"> 1176 <context-group name="null">
1328 <context context-type="linenumber">7</context> 1177 <context context-type="linenumber">14</context>
1329 </context-group> 1178 </context-group>
1330 </trans-unit> 1179 </trans-unit>
1331 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48"> 1180 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48">
@@ -1349,6 +1198,13 @@ Zaznacz ten element, zapisz konfigurację i przetestuj odnośnik do filmu z tej
1349 <context context-type="linenumber">15</context> 1198 <context context-type="linenumber">15</context>
1350 </context-group> 1199 </context-group>
1351 </trans-unit> 1200 </trans-unit>
1201 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
1202 <source>Submit</source>
1203 <target>Wyślij</target>
1204 <context-group name="null">
1205 <context context-type="linenumber">24</context>
1206 </context-group>
1207 </trans-unit>
1352 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79"> 1208 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79">
1353 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 1209 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
1354 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> wyświetlenia</target> 1210 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> wyświetlenia</target>
@@ -1356,11 +1212,15 @@ Zaznacz ten element, zapisz konfigurację i przetestuj odnośnik do filmu z tej
1356 <context context-type="linenumber">19</context> 1212 <context context-type="linenumber">19</context>
1357 </context-group> 1213 </context-group>
1358 </trans-unit> 1214 </trans-unit>
1359 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7"> 1215 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
1360 <source>Delete</source> 1216 <source>
1361 <target>Usuń</target> 1217 Cancel
1218 </source>
1219 <target>
1220 Anuluj
1221 </target>
1362 <context-group name="null"> 1222 <context-group name="null">
1363 <context context-type="linenumber">15</context> 1223 <context context-type="linenumber">30</context>
1364 </context-group> 1224 </context-group>
1365 </trans-unit> 1225 </trans-unit>
1366 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260"> 1226 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260">
@@ -1374,7 +1234,7 @@ Zaznacz ten element, zapisz konfigurację i przetestuj odnośnik do filmu z tej
1374 <source>Go to the channel</source> 1234 <source>Go to the channel</source>
1375 <target>Przejdź na kanał</target> 1235 <target>Przejdź na kanał</target>
1376 <context-group name="null"> 1236 <context-group name="null">
1377 <context context-type="linenumber">15</context> 1237 <context context-type="linenumber">8</context>
1378 </context-group> 1238 </context-group>
1379 </trans-unit> 1239 </trans-unit>
1380 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68"> 1240 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68">
@@ -1397,14 +1257,28 @@ When you will upload a video in this channel, the video support field will be au
1397 <target>Krótki tekst informujący o tym, jak można wspomóc Twój kanał (platforma członkowska…).&lt;br /&gt;&lt;br /&gt; 1257 <target>Krótki tekst informujący o tym, jak można wspomóc Twój kanał (platforma członkowska…).&lt;br /&gt;&lt;br /&gt;
1398Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia zostanie nim wypełnione.</target> 1258Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia zostanie nim wypełnione.</target>
1399 <context-group name="null"> 1259 <context-group name="null">
1400 <context context-type="linenumber">36</context> 1260 <context context-type="linenumber">52</context>
1261 </context-group>
1262 </trans-unit>
1263 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1264 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1265 <target>Utworzony przez <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1266 <context-group name="null">
1267 <context context-type="linenumber">17</context>
1268 </context-group>
1269 </trans-unit>
1270 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1271 <source>Go the owner account page</source>
1272 <target>Przejdź na stronę konta właściciela</target>
1273 <context-group name="null">
1274 <context context-type="linenumber">16</context>
1401 </context-group> 1275 </context-group>
1402 </trans-unit> 1276 </trans-unit>
1403 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9"> 1277 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9">
1404 <source>Change password</source> 1278 <source>Change password</source>
1405 <target>Zmień hasło</target> 1279 <target>Zmień hasło</target>
1406 <context-group name="null"> 1280 <context-group name="null">
1407 <context context-type="linenumber">19</context> 1281 <context context-type="linenumber">22</context>
1408 </context-group> 1282 </context-group>
1409 </trans-unit> 1283 </trans-unit>
1410 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229"> 1284 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229">
@@ -1467,20 +1341,6 @@ Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia
1467 <context context-type="linenumber">1</context> 1341 <context context-type="linenumber">1</context>
1468 </context-group> 1342 </context-group>
1469 </trans-unit> 1343 </trans-unit>
1470 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1471 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1472 <target>Utworzony przez <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1473 <context-group name="null">
1474 <context context-type="linenumber">14</context>
1475 </context-group>
1476 </trans-unit>
1477 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1478 <source>Go the owner account page</source>
1479 <target>Przejdź na stronę konta właściciela</target>
1480 <context-group name="null">
1481 <context context-type="linenumber">13</context>
1482 </context-group>
1483 </trans-unit>
1484 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8"> 1344 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8">
1485 <source>Support this channel</source> 1345 <source>Support this channel</source>
1486 <target>Wesprzyj ten kanał</target> 1346 <target>Wesprzyj ten kanał</target>
@@ -1499,28 +1359,28 @@ Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia
1499 <source>URL</source> 1359 <source>URL</source>
1500 <target>Adres URL</target> 1360 <target>Adres URL</target>
1501 <context-group name="null"> 1361 <context-group name="null">
1502 <context context-type="linenumber">12</context> 1362 <context context-type="linenumber">17</context>
1503 </context-group> 1363 </context-group>
1504 </trans-unit> 1364 </trans-unit>
1505 <trans-unit id="0cc554f4d7bb6a87515d2d95438e183b50702071"> 1365 <trans-unit id="0cc554f4d7bb6a87515d2d95438e183b50702071">
1506 <source>Channel</source> 1366 <source>Channel</source>
1507 <target>Kanał</target> 1367 <target>Kanał</target>
1508 <context-group name="null"> 1368 <context-group name="null">
1509 <context context-type="linenumber">35</context> 1369 <context context-type="linenumber">38</context>
1510 </context-group> 1370 </context-group>
1511 </trans-unit> 1371 </trans-unit>
1512 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427"> 1372 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427">
1513 <source>Privacy</source> 1373 <source>Privacy</source>
1514 <target>Prywatność</target> 1374 <target>Prywatność</target>
1515 <context-group name="null"> 1375 <context-group name="null">
1516 <context context-type="linenumber">143</context> 1376 <context context-type="linenumber">161</context>
1517 </context-group> 1377 </context-group>
1518 </trans-unit> 1378 </trans-unit>
1519 <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb"> 1379 <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb">
1520 <source>Update</source> 1380 <source>Update</source>
1521 <target>Aktualizacja</target> 1381 <target>Aktualizacja</target>
1522 <context-group name="null"> 1382 <context-group name="null">
1523 <context context-type="linenumber">105</context> 1383 <context context-type="linenumber">92</context>
1524 </context-group> 1384 </context-group>
1525 </trans-unit> 1385 </trans-unit>
1526 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> 1386 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9">
@@ -1548,63 +1408,56 @@ Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia
1548 <source>Title</source> 1408 <source>Title</source>
1549 <target>Tytuł</target> 1409 <target>Tytuł</target>
1550 <context-group name="null"> 1410 <context-group name="null">
1551 <context context-type="linenumber">7</context> 1411 <context context-type="linenumber">9</context>
1552 </context-group> 1412 </context-group>
1553 </trans-unit> 1413 </trans-unit>
1554 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b"> 1414 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b">
1555 <source>Tags</source> 1415 <source>Tags</source>
1556 <target>Tagi</target> 1416 <target>Tagi</target>
1557 <context-group name="null"> 1417 <context-group name="null">
1558 <context context-type="linenumber">175</context> 1418 <context context-type="linenumber">193</context>
1559 </context-group>
1560 </trans-unit>
1561 <trans-unit id="935e7146fe6c12169abfda18536c5856935cfd82">
1562 <source>(press Enter to add)</source>
1563 <target>(naciśnij Enter aby dodać)</target>
1564 <context-group name="null">
1565 <context context-type="linenumber">15</context>
1566 </context-group> 1419 </context-group>
1567 </trans-unit> 1420 </trans-unit>
1568 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e"> 1421 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e">
1569 <source>Video descriptions are truncated by default and require manual action to expand them.</source> 1422 <source>Video descriptions are truncated by default and require manual action to expand them.</source>
1570 <target>Opisy filmów są automatycznie skracane i wymagają ręcznego działania, aby je rozwinąć.</target> 1423 <target>Opisy filmów są automatycznie skracane i wymagają ręcznego działania, aby je rozwinąć.</target>
1571 <context-group name="null"> 1424 <context-group name="null">
1572 <context context-type="linenumber">24</context> 1425 <context context-type="linenumber">27</context>
1573 </context-group> 1426 </context-group>
1574 </trans-unit> 1427 </trans-unit>
1575 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> 1428 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5">
1576 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source> 1429 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source>
1577 <target>Zaplanuj publikację (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target> 1430 <target>Zaplanuj publikację (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target>
1578 <context-group name="null"> 1431 <context-group name="null">
1579 <context context-type="linenumber">101</context> 1432 <context context-type="linenumber">104</context>
1580 </context-group> 1433 </context-group>
1581 </trans-unit> 1434 </trans-unit>
1582 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee"> 1435 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee">
1583 <source>This video contains mature or explicit content</source> 1436 <source>This video contains mature or explicit content</source>
1584 <target>Ten film zawiera zawartość niecenzuralną lub dla dorosłych</target> 1437 <target>Ten film zawiera zawartość niecenzuralną lub dla dorosłych</target>
1585 <context-group name="null"> 1438 <context-group name="null">
1586 <context context-type="linenumber">115</context> 1439 <context context-type="linenumber">118</context>
1587 </context-group> 1440 </context-group>
1588 </trans-unit> 1441 </trans-unit>
1589 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644"> 1442 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644">
1590 <source>Some instances do not list videos containing mature or explicit content by default.</source> 1443 <source>Some instances do not list videos containing mature or explicit content by default.</source>
1591 <target>Niektóre instancje domyślnie nie wyświetlają filmów zawierających taką zawartość.</target> 1444 <target>Niektóre instancje domyślnie nie wyświetlają filmów zawierających taką zawartość.</target>
1592 <context-group name="null"> 1445 <context-group name="null">
1593 <context context-type="linenumber">116</context> 1446 <context context-type="linenumber">119</context>
1594 </context-group> 1447 </context-group>
1595 </trans-unit> 1448 </trans-unit>
1596 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a"> 1449 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a">
1597 <source>Enable video comments</source> 1450 <source>Enable video comments</source>
1598 <target>Włącz komentarze do filmu</target> 1451 <target>Włącz komentarze do filmu</target>
1599 <context-group name="null"> 1452 <context-group name="null">
1600 <context context-type="linenumber">121</context> 1453 <context context-type="linenumber">124</context>
1601 </context-group> 1454 </context-group>
1602 </trans-unit> 1455 </trans-unit>
1603 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0"> 1456 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0">
1604 <source>Wait transcoding before publishing the video</source> 1457 <source>Wait transcoding before publishing the video</source>
1605 <target>Poczekaj na transkodowanie przed opublikowaniem filmu</target> 1458 <target>Poczekaj na transkodowanie przed opublikowaniem filmu</target>
1606 <context-group name="null"> 1459 <context-group name="null">
1607 <context context-type="linenumber">126</context> 1460 <context context-type="linenumber">129</context>
1608 </context-group> 1461 </context-group>
1609 </trans-unit> 1462 </trans-unit>
1610 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7"> 1463 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7">
@@ -1618,35 +1471,35 @@ Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia
1618 <source>Upload thumbnail</source> 1471 <source>Upload thumbnail</source>
1619 <target>Wyślij miniaturę</target> 1472 <target>Wyślij miniaturę</target>
1620 <context-group name="null"> 1473 <context-group name="null">
1621 <context context-type="linenumber">186</context> 1474 <context context-type="linenumber">194</context>
1622 </context-group> 1475 </context-group>
1623 </trans-unit> 1476 </trans-unit>
1624 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639"> 1477 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639">
1625 <source>Upload preview</source> 1478 <source>Upload preview</source>
1626 <target>Podgląd wysyłania</target> 1479 <target>Podgląd wysyłania</target>
1627 <context-group name="null"> 1480 <context-group name="null">
1628 <context context-type="linenumber">193</context> 1481 <context context-type="linenumber">201</context>
1629 </context-group> 1482 </context-group>
1630 </trans-unit> 1483 </trans-unit>
1631 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604"> 1484 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604">
1632 <source>Support</source> 1485 <source>Support</source>
1633 <target>Wsparcie</target> 1486 <target>Wsparcie</target>
1634 <context-group name="null"> 1487 <context-group name="null">
1635 <context context-type="linenumber">71</context> 1488 <context context-type="linenumber">69</context>
1636 </context-group> 1489 </context-group>
1637 </trans-unit> 1490 </trans-unit>
1638 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0"> 1491 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0">
1639 <source>Short text to tell people how they can support you (membership platform...).</source> 1492 <source>Short text to tell people how they can support you (membership platform...).</source>
1640 <target>Krótki tekst informujący innych, jak mogą Cię wesprzeć (platforma członkowska…).</target> 1493 <target>Krótki tekst informujący innych, jak mogą Cię wesprzeć (platforma członkowska…).</target>
1641 <context-group name="null"> 1494 <context-group name="null">
1642 <context context-type="linenumber">200</context> 1495 <context context-type="linenumber">208</context>
1643 </context-group> 1496 </context-group>
1644 </trans-unit> 1497 </trans-unit>
1645 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1"> 1498 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1">
1646 <source>Advanced settings</source> 1499 <source>Advanced settings</source>
1647 <target>Ustawienia zaawansowane</target> 1500 <target>Ustawienia zaawansowane</target>
1648 <context-group name="null"> 1501 <context-group name="null">
1649 <context context-type="linenumber">182</context> 1502 <context context-type="linenumber">189</context>
1650 </context-group> 1503 </context-group>
1651 </trans-unit> 1504 </trans-unit>
1652 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0"> 1505 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0">
@@ -1664,78 +1517,42 @@ Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia
1664 <source>Download video</source> 1517 <source>Download video</source>
1665 <target>Pobierz film</target> 1518 <target>Pobierz film</target>
1666 <context-group name="null"> 1519 <context-group name="null">
1667 <context context-type="linenumber">7</context> 1520 <context context-type="linenumber">3</context>
1668 </context-group> 1521 </context-group>
1669 </trans-unit> 1522 </trans-unit>
1670 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c"> 1523 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c">
1671 <source>Direct download</source> 1524 <source>Direct download</source>
1672 <target>Pobieranie bezpośrednie</target> 1525 <target>Pobieranie bezpośrednie</target>
1673 <context-group name="null"> 1526 <context-group name="null">
1674 <context context-type="linenumber">20</context> 1527 <context context-type="linenumber">17</context>
1675 </context-group> 1528 </context-group>
1676 </trans-unit> 1529 </trans-unit>
1677 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> 1530 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd">
1678 <source>Download</source> 1531 <source>Download</source>
1679 <target>Pobierz</target> 1532 <target>Pobierz</target>
1680 <context-group name="null"> 1533 <context-group name="null">
1681 <context context-type="linenumber">87</context> 1534 <context context-type="linenumber">84</context>
1682 </context-group> 1535 </context-group>
1683 </trans-unit> 1536 </trans-unit>
1684 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b"> 1537 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b">
1685 <source>Report video</source> 1538 <source>Report video</source>
1686 <target>Zgłoś film</target> 1539 <target>Zgłoś film</target>
1687 <context-group name="null"> 1540 <context-group name="null">
1688 <context context-type="linenumber">7</context> 1541 <context context-type="linenumber">3</context>
1689 </context-group>
1690 </trans-unit>
1691 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
1692 <source>Reason...</source>
1693 <target>Przyczyna…</target>
1694 <context-group name="null">
1695 <context context-type="linenumber">14</context>
1696 </context-group>
1697 </trans-unit>
1698 <trans-unit id="0e6b8229bd65f93bc8040d0fb598967f220740c7">
1699 <source>
1700 Cancel
1701 </source>
1702 <target>
1703 Anuluj
1704 </target>
1705 <context-group name="null">
1706 <context context-type="linenumber">22</context>
1707 </context-group>
1708 </trans-unit>
1709 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
1710 <source>Submit</source>
1711 <target>Wyślij</target>
1712 <context-group name="null">
1713 <context context-type="linenumber">27</context>
1714 </context-group> 1542 </context-group>
1715 </trans-unit> 1543 </trans-unit>
1716 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9"> 1544 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9">
1717 <source>Share</source> 1545 <source>Share</source>
1718 <target>Udostępnij</target> 1546 <target>Udostępnij</target>
1719 <context-group name="null"> 1547 <context-group name="null">
1720 <context context-type="linenumber">76</context> 1548 <context context-type="linenumber">74</context>
1721 </context-group> 1549 </context-group>
1722 </trans-unit> 1550 </trans-unit>
1723 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c"> 1551 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
1724 <source>Embed</source> 1552 <source>Embed</source>
1725 <target>Umieść</target> 1553 <target>Umieść</target>
1726 <context-group name="null"> 1554 <context-group name="null">
1727 <context context-type="linenumber">24</context> 1555 <context context-type="linenumber">34</context>
1728 </context-group>
1729 </trans-unit>
1730 <trans-unit id="239fe0316cfe91aa6e1e7bf1ef19e3b7772131f8">
1731 <source>
1732 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).
1733 </source>
1734 <target>
1735 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).
1736 </target>
1737 <context-group name="null">
1738 <context context-type="linenumber">35</context>
1739 </context-group> 1556 </context-group>
1740 </trans-unit> 1557 </trans-unit>
1741 <trans-unit id="9ed65ae88f6c982bc44d6fed2796e55f47dbf304"> 1558 <trans-unit id="9ed65ae88f6c982bc44d6fed2796e55f47dbf304">
@@ -1749,162 +1566,115 @@ Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia
1749 <context context-type="linenumber">15</context> 1566 <context context-type="linenumber">15</context>
1750 </context-group> 1567 </context-group>
1751 </trans-unit> 1568 </trans-unit>
1752 <trans-unit id="fbc205ea3d06fa8f65973fa3b490ae172f71c087">
1753 <source>
1754 This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
1755 </source>
1756 <target>
1757 Ten film zostanie opublikowany <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
1758 </target>
1759 <context-group name="null">
1760 <context context-type="linenumber">19</context>
1761 </context-group>
1762 </trans-unit>
1763 <trans-unit id="643ab402461b1169eebbe2ed790e12a9a83551aa">
1764 <source>
1765 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views
1766 </source>
1767 <target>
1768 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> wyświetlenia
1769 </target>
1770 <context-group name="null">
1771 <context context-type="linenumber">30</context>
1772 </context-group>
1773 </trans-unit>
1774 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
1775 <source>Go the channel page</source>
1776 <target>Przejdź na stronę kanału</target>
1777 <context-group name="null">
1778 <context context-type="linenumber">35</context>
1779 </context-group>
1780 </trans-unit>
1781 <trans-unit id="ccc07df383b7a32be3e2e105faa5488caf261c1c">
1782 <source>By <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></source>
1783 <target>Od <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></target>
1784 <context-group name="null">
1785 <context context-type="linenumber">45</context>
1786 </context-group>
1787 </trans-unit>
1788 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
1789 <source>Go to the account page</source>
1790 <target>Przejdź na stronę konta</target>
1791 <context-group name="null">
1792 <context context-type="linenumber">44</context>
1793 </context-group>
1794 </trans-unit>
1795 <trans-unit id="57075c778cf28b81272df4eb17da944366c98e51">
1796 <source>You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; and subscribe there. Subscription as a PeerTube user is being worked on in &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</source>
1797 <target>Możesz zasubskrybować to konto na każdej instancji należącej do Fediwersum obsługującej ActivityPub. Na przykład, na Mastodonie lub Pleromie możesz wprowadzić w pole wyszukiwania &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; i zasubskrybować je. Subskrybowanie jako użytkownik PeerTube jest przygotowywane w &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</target>
1798 <context-group name="null">
1799 <context context-type="linenumber">49</context>
1800 </context-group>
1801 </trans-unit>
1802 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced"> 1569 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced">
1803 <source>Like this video</source> 1570 <source>Like this video</source>
1804 <target>Polub ten film</target> 1571 <target>Polub ten film</target>
1805 <context-group name="null"> 1572 <context-group name="null">
1806 <context context-type="linenumber">59</context> 1573 <context context-type="linenumber">57</context>
1807 </context-group> 1574 </context-group>
1808 </trans-unit> 1575 </trans-unit>
1809 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509"> 1576 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509">
1810 <source>Dislike this video</source> 1577 <source>Dislike this video</source>
1811 <context-group name="null"> 1578 <context-group name="null">
1812 <context context-type="linenumber">66</context> 1579 <context context-type="linenumber">64</context>
1813 </context-group> 1580 </context-group>
1814 </trans-unit> 1581 </trans-unit>
1815 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2"> 1582 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2">
1816 <source>Download the video</source> 1583 <source>Download the video</source>
1817 <target>Pobierz ten film</target> 1584 <target>Pobierz ten film</target>
1818 <context-group name="null"> 1585 <context-group name="null">
1819 <context context-type="linenumber">86</context> 1586 <context context-type="linenumber">83</context>
1820 </context-group> 1587 </context-group>
1821 </trans-unit> 1588 </trans-unit>
1822 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a"> 1589 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a">
1823 <source>Report</source> 1590 <source>Report</source>
1824 <target>Zgłoś</target> 1591 <target>Zgłoś</target>
1825 <context-group name="null"> 1592 <context-group name="null">
1826 <context context-type="linenumber">93</context> 1593 <context context-type="linenumber">88</context>
1827 </context-group> 1594 </context-group>
1828 </trans-unit> 1595 </trans-unit>
1829 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf"> 1596 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf">
1830 <source>Report this video</source> 1597 <source>Report this video</source>
1831 <target>Zgłoś ten film</target> 1598 <target>Zgłoś ten film</target>
1832 <context-group name="null"> 1599 <context-group name="null">
1833 <context context-type="linenumber">92</context> 1600 <context context-type="linenumber">87</context>
1601 </context-group>
1602 </trans-unit>
1603 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1">
1604 <source>Update this video</source>
1605 <target>Zaktualizuj ten film</target>
1606 <context-group name="null">
1607 <context context-type="linenumber">91</context>
1834 </context-group> 1608 </context-group>
1835 </trans-unit> 1609 </trans-unit>
1836 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61"> 1610 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61">
1837 <source>Blacklist</source> 1611 <source>Blacklist</source>
1838 <target>Czarna lista</target> 1612 <target>Czarna lista</target>
1839 <context-group name="null"> 1613 <context-group name="null">
1840 <context context-type="linenumber">99</context> 1614 <context context-type="linenumber">96</context>
1841 </context-group> 1615 </context-group>
1842 </trans-unit> 1616 </trans-unit>
1843 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037"> 1617 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037">
1844 <source>Blacklist this video</source> 1618 <source>Blacklist this video</source>
1845 <target>Dodaj ten film na czarną listę</target> 1619 <target>Dodaj ten film na czarną listę</target>
1846 <context-group name="null"> 1620 <context-group name="null">
1847 <context context-type="linenumber">98</context> 1621 <context context-type="linenumber">95</context>
1848 </context-group> 1622 </context-group>
1849 </trans-unit> 1623 </trans-unit>
1850 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1"> 1624 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1851 <source>Update this video</source> 1625 <source>Unblacklist</source>
1852 <target>Zaktualizuj ten film</target> 1626 <target>Usuń z czarnej listy</target>
1853 <context-group name="null"> 1627 <context-group name="null">
1854 <context context-type="linenumber">104</context> 1628 <context context-type="linenumber">100</context>
1855 </context-group> 1629 </context-group>
1856 </trans-unit> 1630 </trans-unit>
1857 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5"> 1631 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5">
1858 <source>Delete this video</source> 1632 <source>Delete this video</source>
1859 <target>Usuń ten film</target> 1633 <target>Usuń ten film</target>
1860 <context-group name="null"> 1634 <context-group name="null">
1861 <context context-type="linenumber">110</context> 1635 <context context-type="linenumber">103</context>
1862 </context-group> 1636 </context-group>
1863 </trans-unit> 1637 </trans-unit>
1864 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b"> 1638 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
1865 <source>Show more</source> 1639 <source>Go the channel page</source>
1866 <target>Poka więcej</target> 1640 <target>Przejd na stronę kanału</target>
1867 <context-group name="null"> 1641 <context-group name="null">
1868 <context context-type="linenumber">130</context> 1642 <context context-type="linenumber">123</context>
1869 </context-group> 1643 </context-group>
1870 </trans-unit> 1644 </trans-unit>
1871 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903"> 1645 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
1872 <source>Show less</source> 1646 <source>Go to the account page</source>
1873 <target>Poka mniej</target> 1647 <target>Przejd na stronę konta</target>
1874 <context-group name="null"> 1648 <context-group name="null">
1875 <context context-type="linenumber">136</context> 1649 <context context-type="linenumber">133</context>
1876 </context-group> 1650 </context-group>
1877 </trans-unit> 1651 </trans-unit>
1878 <trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1"> 1652 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b">
1879 <source> 1653 <source>Show more</source>
1880 Other videos 1654 <target>Pokaż więcej</target>
1881 </source>
1882 <target>
1883 Inne filmy
1884 </target>
1885 <context-group name="null"> 1655 <context-group name="null">
1886 <context context-type="linenumber">187</context> 1656 <context context-type="linenumber">148</context>
1887 </context-group> 1657 </context-group>
1888 </trans-unit> 1658 </trans-unit>
1889 <trans-unit id="fb779d2b25c4d0ffa7d52c823a240717e8c1fe6c"> 1659 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903">
1890 <source>Friendly Reminder:</source> 1660 <source>Show less</source>
1891 <target>Przypomnienie:</target> 1661 <target>Pokaż mniej</target>
1892 <context-group name="null"> 1662 <context-group name="null">
1893 <context context-type="linenumber">199</context> 1663 <context context-type="linenumber">154</context>
1894 </context-group> 1664 </context-group>
1895 </trans-unit> 1665 </trans-unit>
1896 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e"> 1666 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e">
1897 <source>More information</source> 1667 <source>More information</source>
1898 <target>Więcej informacji</target> 1668 <target>Więcej informacji</target>
1899 <context-group name="null"> 1669 <context-group name="null">
1900 <context context-type="linenumber">204</context> 1670 <context context-type="linenumber">214</context>
1901 </context-group> 1671 </context-group>
1902 </trans-unit> 1672 </trans-unit>
1903 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318"> 1673 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318">
1904 <source>Get more information</source> 1674 <source>Get more information</source>
1905 <target>Uzyskaj więcej informacji</target> 1675 <target>Uzyskaj więcej informacji</target>
1906 <context-group name="null"> 1676 <context-group name="null">
1907 <context context-type="linenumber">204</context> 1677 <context context-type="linenumber">214</context>
1908 </context-group> 1678 </context-group>
1909 </trans-unit> 1679 </trans-unit>
1910 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f"> 1680 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f">
@@ -1915,7 +1685,7 @@ Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia
1915 OK 1685 OK
1916 </target> 1686 </target>
1917 <context-group name="null"> 1687 <context-group name="null">
1918 <context context-type="linenumber">207</context> 1688 <context context-type="linenumber">217</context>
1919 </context-group> 1689 </context-group>
1920 </trans-unit> 1690 </trans-unit>
1921 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7"> 1691 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7">
@@ -1975,7 +1745,7 @@ Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia
1975 Wyślij komentarz 1745 Wyślij komentarz
1976 </target> 1746 </target>
1977 <context-group name="null"> 1747 <context-group name="null">
1978 <context context-type="linenumber">17</context> 1748 <context context-type="linenumber">18</context>
1979 </context-group> 1749 </context-group>
1980 </trans-unit> 1750 </trans-unit>
1981 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> 1751 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285">
@@ -2139,23 +1909,9 @@ Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia
2139 <context context-type="linenumber">1</context> 1909 <context context-type="linenumber">1</context>
2140 </context-group> 1910 </context-group>
2141 </trans-unit> 1911 </trans-unit>
2142 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936"> 1912 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2143 <source>Following</source> 1913 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2144 <target>Śledzisz</target> 1914 <target>Usunięto film <x id="INTERPOLATION" equiv-text="{{name}}"/> z czarnej listy.</target>
2145 <context-group name="null">
2146 <context context-type="linenumber">1</context>
2147 </context-group>
2148 </trans-unit>
2149 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
2150 <source>Follow</source>
2151 <target>Śledź</target>
2152 <context-group name="null">
2153 <context context-type="linenumber">1</context>
2154 </context-group>
2155 </trans-unit>
2156 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
2157 <source>Followers</source>
2158 <target>Śledzący</target>
2159 <context-group name="null"> 1915 <context-group name="null">
2160 <context context-type="linenumber">1</context> 1916 <context context-type="linenumber">1</context>
2161 </context-group> 1917 </context-group>
@@ -2209,27 +1965,6 @@ Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia
2209 <context context-type="linenumber">1</context> 1965 <context context-type="linenumber">1</context>
2210 </context-group> 1966 </context-group>
2211 </trans-unit> 1967 </trans-unit>
2212 <trans-unit id="4733ad1d7e63960438c0203b9a64f165b5fc84f2">
2213 <source>Do you really want to remove this video from the blacklist ? It will be available again in the videos list.</source>
2214 <target>Czy na pewno chcesz usunąć ten film z czarnej listy? Będzie on ponownie dostępny na liście filmów.</target>
2215 <context-group name="null">
2216 <context context-type="linenumber">1</context>
2217 </context-group>
2218 </trans-unit>
2219 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2220 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2221 <target>Usunięto film <x id="INTERPOLATION" equiv-text="{{name}}"/> z czarnej listy.</target>
2222 <context-group name="null">
2223 <context context-type="linenumber">1</context>
2224 </context-group>
2225 </trans-unit>
2226 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2227 <source>The new password and the confirmed password do not correspond.</source>
2228 <target>Nowe hasło i potwierdzenie hasła nie pasują do siebie.</target>
2229 <context-group name="null">
2230 <context context-type="linenumber">1</context>
2231 </context-group>
2232 </trans-unit>
2233 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc"> 1968 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc">
2234 <source>Password updated.</source> 1969 <source>Password updated.</source>
2235 <target>Zmieniono hasło.</target> 1970 <target>Zmieniono hasło.</target>
@@ -2356,6 +2091,13 @@ Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia
2356 <context context-type="linenumber">1</context> 2091 <context context-type="linenumber">1</context>
2357 </context-group> 2092 </context-group>
2358 </trans-unit> 2093 </trans-unit>
2094 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2095 <source>Unable to find user id or verification string.</source>
2096 <target>Nie można znaleźć ID użytkownika lub kodu weryfikującego.</target>
2097 <context-group name="null">
2098 <context context-type="linenumber">1</context>
2099 </context-group>
2100 </trans-unit>
2359 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7"> 2101 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7">
2360 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>. 2102 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>.
2361</source> 2103</source>
@@ -2386,13 +2128,6 @@ Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia
2386 <context context-type="linenumber">1</context> 2128 <context context-type="linenumber">1</context>
2387 </context-group> 2129 </context-group>
2388 </trans-unit> 2130 </trans-unit>
2389 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2390 <source>Unable to find user id or verification string.</source>
2391 <target>Nie można znaleźć ID użytkownika lub kodu weryfikującego.</target>
2392 <context-group name="null">
2393 <context context-type="linenumber">1</context>
2394 </context-group>
2395 </trans-unit>
2396 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26"> 2131 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26">
2397 <source>Your password has been successfully reset!</source> 2132 <source>Your password has been successfully reset!</source>
2398 <target>Pomyślnie zresetowano hasło!</target> 2133 <target>Pomyślnie zresetowano hasło!</target>
@@ -2498,13 +2233,6 @@ Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia
2498 <context context-type="linenumber">1</context> 2233 <context context-type="linenumber">1</context>
2499 </context-group> 2234 </context-group>
2500 </trans-unit> 2235 </trans-unit>
2501 <trans-unit id="ba88636d27c1a6a7e1f75ff57ec182b30b851c2e">
2502 <source>Transcoding threads must be greater than 1.</source>
2503 <target>Liczba wątków transkodowania musi być większa niż 1.</target>
2504 <context-group name="null">
2505 <context context-type="linenumber">1</context>
2506 </context-group>
2507 </trans-unit>
2508 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149"> 2236 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149">
2509 <source>Username is required.</source> 2237 <source>Username is required.</source>
2510 <target>Nazwa użytkownika jest wymagana.</target> 2238 <target>Nazwa użytkownika jest wymagana.</target>
@@ -2575,6 +2303,13 @@ Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia
2575 <context context-type="linenumber">1</context> 2303 <context context-type="linenumber">1</context>
2576 </context-group> 2304 </context-group>
2577 </trans-unit> 2305 </trans-unit>
2306 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2307 <source>The new password and the confirmed password do not correspond.</source>
2308 <target>Nowe hasło i potwierdzenie hasła nie pasują do siebie.</target>
2309 <context-group name="null">
2310 <context context-type="linenumber">1</context>
2311 </context-group>
2312 </trans-unit>
2578 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf"> 2313 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf">
2579 <source>Video quota is required.</source> 2314 <source>Video quota is required.</source>
2580 <target>Powierzchnia na filmy jest wymagana.</target> 2315 <target>Powierzchnia na filmy jest wymagana.</target>
@@ -3112,6 +2847,41 @@ Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia
3112 <context context-type="linenumber">1</context> 2847 <context context-type="linenumber">1</context>
3113 </context-group> 2848 </context-group>
3114 </trans-unit> 2849 </trans-unit>
2850 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
2851 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
2852 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
2853 <context-group name="null">
2854 <context context-type="linenumber">1</context>
2855 </context-group>
2856 </trans-unit>
2857 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
2858 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
2859 <target>{VAR_PLURAL, plural, =1 {minuta} few {minuty} other {minut} }</target>
2860 <context-group name="null">
2861 <context context-type="linenumber">1</context>
2862 </context-group>
2863 </trans-unit>
2864 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
2865 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
2866 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> filmów full HD</target>
2867 <context-group name="null">
2868 <context context-type="linenumber">1</context>
2869 </context-group>
2870 </trans-unit>
2871 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
2872 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
2873 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> filmów HD</target>
2874 <context-group name="null">
2875 <context context-type="linenumber">1</context>
2876 </context-group>
2877 </trans-unit>
2878 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
2879 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
2880 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> filmów średniej jakości</target>
2881 <context-group name="null">
2882 <context context-type="linenumber">1</context>
2883 </context-group>
2884 </trans-unit>
3115 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d"> 2885 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d">
3116 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source> 2886 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source>
3117 <target><x id="INTERPOLATION" equiv-text="{{interval}}"/> lat temu</target> 2887 <target><x id="INTERPOLATION" equiv-text="{{interval}}"/> lat temu</target>
@@ -3266,41 +3036,6 @@ Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia
3266 <context context-type="linenumber">1</context> 3036 <context context-type="linenumber">1</context>
3267 </context-group> 3037 </context-group>
3268 </trans-unit> 3038 </trans-unit>
3269 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3270 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3271 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3272 <context-group name="null">
3273 <context context-type="linenumber">1</context>
3274 </context-group>
3275 </trans-unit>
3276 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3277 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3278 <target>{VAR_PLURAL, plural, =1 {minuta} few {minuty} other {minut} }</target>
3279 <context-group name="null">
3280 <context context-type="linenumber">1</context>
3281 </context-group>
3282 </trans-unit>
3283 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3284 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3285 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> filmów full HD</target>
3286 <context-group name="null">
3287 <context context-type="linenumber">1</context>
3288 </context-group>
3289 </trans-unit>
3290 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3291 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3292 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> filmów HD</target>
3293 <context-group name="null">
3294 <context context-type="linenumber">1</context>
3295 </context-group>
3296 </trans-unit>
3297 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3298 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3299 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> filmów średniej jakości</target>
3300 <context-group name="null">
3301 <context context-type="linenumber">1</context>
3302 </context-group>
3303 </trans-unit>
3304 <trans-unit id="24840228f2826b66252cfcaab9820b1c7e0da264"> 3039 <trans-unit id="24840228f2826b66252cfcaab9820b1c7e0da264">
3305 <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> 3040 <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source>
3306 <target>Powiązane dane (tagi, opis…) zostaną utracone, czy na pewno chcesz opuścić tą stronę?</target> 3041 <target>Powiązane dane (tagi, opis…) zostaną utracone, czy na pewno chcesz opuścić tą stronę?</target>
@@ -3329,13 +3064,6 @@ Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia
3329 <context context-type="linenumber">1</context> 3064 <context context-type="linenumber">1</context>
3330 </context-group> 3065 </context-group>
3331 </trans-unit> 3066 </trans-unit>
3332 <trans-unit id="d31d39e8ee9b2f20bffb3468ee062eaa5409c59f">
3333 <source>Your video quota is exceeded with this video (video size: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, used: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, quota: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</source>
3334 <target>Twoja powierzchnia na filmy została przekroczona tym filmem (rozmiar filmu: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, used: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, powierzchnia: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</target>
3335 <context-group name="null">
3336 <context context-type="linenumber">1</context>
3337 </context-group>
3338 </trans-unit>
3339 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce"> 3067 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce">
3340 <source>Video published.</source> 3068 <source>Video published.</source>
3341 <target>Opublikowano film.</target> 3069 <target>Opublikowano film.</target>
@@ -3371,20 +3099,6 @@ Jeżeli umieścisz film na ten kanał, pole informujące o możliwości wsparcia
3371 <context context-type="linenumber">1</context> 3099 <context context-type="linenumber">1</context>
3372 </context-group> 3100 </context-group>
3373 </trans-unit> 3101 </trans-unit>
3374 <trans-unit id="23b2c2f4dd69e29c3bff00469e259dcb01de5633">
3375 <source>Do you really want to blacklist this video?</source>
3376 <target>Czy na pewno chcesz dodać ten film na czarną listę?</target>
3377 <context-group name="null">
3378 <context context-type="linenumber">1</context>
3379 </context-group>
3380 </trans-unit>
3381 <trans-unit id="cafd8ec6020e69f241a107b1cb7081bd9e773d4e">
3382 <source>Video <x id="INTERPOLATION" equiv-text="{{videoName}}"/> had been blacklisted.</source>
3383 <target>Dodano film <x id="INTERPOLATION" equiv-text="{{videoName}}"/> na czarną listę.</target>
3384 <context-group name="null">
3385 <context context-type="linenumber">1</context>
3386 </context-group>
3387 </trans-unit>
3388 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95"> 3102 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95">
3389 <source>Do you really want to delete this video?</source> 3103 <source>Do you really want to delete this video?</source>
3390 <target>Czy na pewno chcesz usunąć ten film?</target> 3104 <target>Czy na pewno chcesz usunąć ten film?</target>
diff --git a/client/src/locale/target/angular_pt_BR.xml b/client/src/locale/target/angular_pt_BR.xml
index 9797722d4..c19bb801e 100644
--- a/client/src/locale/target/angular_pt_BR.xml
+++ b/client/src/locale/target/angular_pt_BR.xml
@@ -3,17 +3,6 @@
3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1"> 3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1">
4 <file source-language="en-US" datatype="plaintext" original="" target-language="pt-BR"> 4 <file source-language="en-US" datatype="plaintext" original="" target-language="pt-BR">
5 <body> 5 <body>
6 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
7 <source>
8 Cancel
9 </source>
10 <target>
11 Cancelar
12 </target>
13 <context-group name="null">
14 <context context-type="linenumber">45</context>
15 </context-group>
16 </trans-unit>
17 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46"> 6 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46">
18 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source> 7 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source>
19 <target>(extensões: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, tamanho máximo: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target> 8 <target>(extensões: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, tamanho máximo: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target>
@@ -25,14 +14,21 @@
25 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 14 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
26 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visualizações</target> 15 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visualizações</target>
27 <context-group name="null"> 16 <context-group name="null">
28 <context context-type="linenumber">34</context> 17 <context context-type="linenumber">12</context>
18 </context-group>
19 </trans-unit>
20 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7">
21 <source>Delete</source>
22 <target>Excluir</target>
23 <context-group name="null">
24 <context context-type="linenumber">15</context>
29 </context-group> 25 </context-group>
30 </trans-unit> 26 </trans-unit>
31 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> 27 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c">
32 <source>Edit</source> 28 <source>Edit</source>
33 <target>Editar</target> 29 <target>Editar</target>
34 <context-group name="null"> 30 <context-group name="null">
35 <context context-type="linenumber">3</context> 31 <context context-type="linenumber">5</context>
36 </context-group> 32 </context-group>
37 </trans-unit> 33 </trans-unit>
38 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> 34 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d">
@@ -46,7 +42,7 @@
46 <source>Complete preview</source> 42 <source>Complete preview</source>
47 <target>Pré-visualização completa</target> 43 <target>Pré-visualização completa</target>
48 <context-group name="null"> 44 <context-group name="null">
49 <context context-type="linenumber">10</context> 45 <context context-type="linenumber">13</context>
50 </context-group> 46 </context-group>
51 </trans-unit> 47 </trans-unit>
52 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> 48 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f">
@@ -56,6 +52,13 @@
56 <context context-type="linenumber">18</context> 52 <context context-type="linenumber">18</context>
57 </context-group> 53 </context-group>
58 </trans-unit> 54 </trans-unit>
55 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
56 <source>Video quota</source>
57 <target>Cota de vídeo</target>
58 <context-group name="null">
59 <context context-type="linenumber">19</context>
60 </context-group>
61 </trans-unit>
59 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea"> 62 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea">
60 <source> 63 <source>
61 Login 64 Login
@@ -71,14 +74,14 @@
71 <source>User</source> 74 <source>User</source>
72 <target>Usuário</target> 75 <target>Usuário</target>
73 <context-group name="null"> 76 <context-group name="null">
74 <context context-type="linenumber">11</context> 77 <context context-type="linenumber">13</context>
75 </context-group> 78 </context-group>
76 </trans-unit> 79 </trans-unit>
77 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> 80 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478">
78 <source>Username or email address</source> 81 <source>Username or email address</source>
79 <target>Nome de usuário ou endereço de e-mail</target> 82 <target>Nome de usuário ou endereço de e-mail</target>
80 <context-group name="null"> 83 <context-group name="null">
81 <context context-type="linenumber">13</context> 84 <context context-type="linenumber">15</context>
82 </context-group> 85 </context-group>
83 </trans-unit> 86 </trans-unit>
84 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87"> 87 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87">
@@ -89,7 +92,7 @@
89 ou crie uma conta 92 ou crie uma conta
90 </target> 93 </target>
91 <context-group name="null"> 94 <context-group name="null">
92 <context context-type="linenumber">16</context> 95 <context context-type="linenumber">18</context>
93 </context-group> 96 </context-group>
94 </trans-unit> 97 </trans-unit>
95 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b"> 98 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b">
@@ -100,14 +103,14 @@
100 ou crie uma conta em outra instância 103 ou crie uma conta em outra instância
101 </target> 104 </target>
102 <context-group name="null"> 105 <context-group name="null">
103 <context context-type="linenumber">20</context> 106 <context context-type="linenumber">22</context>
104 </context-group> 107 </context-group>
105 </trans-unit> 108 </trans-unit>
106 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3"> 109 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3">
107 <source>User registration is not allowed on this instance, but you can register on many others!</source> 110 <source>User registration is not allowed on this instance, but you can register on many others!</source>
108 <target>Registro de novos usuários não está permitida nesta instância, porém você pode registrar em muitas outras!</target> 111 <target>Registro de novos usuários não está permitida nesta instância, porém você pode registrar em muitas outras!</target>
109 <context-group name="null"> 112 <context-group name="null">
110 <context context-type="linenumber">26</context> 113 <context context-type="linenumber">28</context>
111 </context-group> 114 </context-group>
112 </trans-unit> 115 </trans-unit>
113 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> 116 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407">
@@ -121,35 +124,35 @@
121 <source>I forgot my password</source> 124 <source>I forgot my password</source>
122 <target>Esqueci minha senha</target> 125 <target>Esqueci minha senha</target>
123 <context-group name="null"> 126 <context-group name="null">
124 <context context-type="linenumber">42</context> 127 <context context-type="linenumber">44</context>
125 </context-group> 128 </context-group>
126 </trans-unit> 129 </trans-unit>
127 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681"> 130 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681">
128 <source>Forgot your password</source> 131 <source>Forgot your password</source>
129 <target>Esqueceu sua senha</target> 132 <target>Esqueceu sua senha</target>
130 <context-group name="null"> 133 <context-group name="null">
131 <context context-type="linenumber">59</context> 134 <context context-type="linenumber">57</context>
132 </context-group> 135 </context-group>
133 </trans-unit> 136 </trans-unit>
134 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc"> 137 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc">
135 <source>Email</source> 138 <source>Email</source>
136 <target>E-mail</target> 139 <target>E-mail</target>
137 <context-group name="null"> 140 <context-group name="null">
138 <context context-type="linenumber">17</context> 141 <context context-type="linenumber">8</context>
139 </context-group> 142 </context-group>
140 </trans-unit> 143 </trans-unit>
141 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529"> 144 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529">
142 <source>Email address</source> 145 <source>Email address</source>
143 <target>Endereço de e-mail</target> 146 <target>Endereço de e-mail</target>
144 <context-group name="null"> 147 <context-group name="null">
145 <context context-type="linenumber">66</context> 148 <context context-type="linenumber">10</context>
146 </context-group> 149 </context-group>
147 </trans-unit> 150 </trans-unit>
148 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55"> 151 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55">
149 <source>Send me an email to reset my password</source> 152 <source>Send me an email to reset my password</source>
150 <target>Me envie um e-mail para redefinir minha senha</target> 153 <target>Me envie um e-mail para redefinir minha senha</target>
151 <context-group name="null"> 154 <context-group name="null">
152 <context context-type="linenumber">77</context> 155 <context context-type="linenumber">75</context>
153 </context-group> 156 </context-group>
154 </trans-unit> 157 </trans-unit>
155 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa"> 158 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa">
@@ -195,24 +198,6 @@
195 <context context-type="linenumber">3</context> 198 <context context-type="linenumber">3</context>
196 </context-group> 199 </context-group>
197 </trans-unit> 200 </trans-unit>
198 <trans-unit id="a6807b834e01ce165aa61fad157b0ff4288b6bf1">
199 <source>Initial video quota:</source>
200 <target>Cota de vídeo inicial:</target>
201 <context-group name="null">
202 <context context-type="linenumber">8</context>
203 </context-group>
204 </trans-unit>
205 <trans-unit id="87b6b2c26215c5e712d3bfe4cc86ba53bc23451c">
206 <source>
207 Unlimited
208 </source>
209 <target>
210 Ilimitada
211 </target>
212 <context-group name="null">
213 <context context-type="linenumber">16</context>
214 </context-group>
215 </trans-unit>
216 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> 201 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48">
217 <source>Username</source> 202 <source>Username</source>
218 <target>Nome de usuário</target> 203 <target>Nome de usuário</target>
@@ -224,14 +209,14 @@
224 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source> 209 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source>
225 <target>Eu li e concordo com os &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Termos&lt;/a&gt; desta instância</target> 210 <target>Eu li e concordo com os &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Termos&lt;/a&gt; desta instância</target>
226 <context-group name="null"> 211 <context-group name="null">
227 <context context-type="linenumber">60</context> 212 <context context-type="linenumber">54</context>
228 </context-group> 213 </context-group>
229 </trans-unit> 214 </trans-unit>
230 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4"> 215 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4">
231 <source>Signup</source> 216 <source>Signup</source>
232 <target>Inscrever-se</target> 217 <target>Inscrever-se</target>
233 <context-group name="null"> 218 <context-group name="null">
234 <context context-type="linenumber">86</context> 219 <context context-type="linenumber">88</context>
235 </context-group> 220 </context-group>
236 </trans-unit> 221 </trans-unit>
237 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a"> 222 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a">
@@ -274,103 +259,70 @@
274 <source>Change the language</source> 259 <source>Change the language</source>
275 <target>Alterar o idioma</target> 260 <target>Alterar o idioma</target>
276 <context-group name="null"> 261 <context-group name="null">
277 <context context-type="linenumber">76</context> 262 <context context-type="linenumber">88</context>
278 </context-group>
279 </trans-unit>
280 <trans-unit id="b8ccc4f1b3f839fca9bd59e072f715fd487d540f">
281 <source>
282 My public profile
283 </source>
284 <target>
285 Meu perfil público
286 </target>
287 <context-group name="null">
288 <context context-type="linenumber">19</context>
289 </context-group>
290 </trans-unit>
291 <trans-unit id="c84b721e9325c9cce20d92f4dbd66898ab5ec947">
292 <source>
293 My account
294 </source>
295 <target>
296 Minha conta
297 </target>
298 <context-group name="null">
299 <context context-type="linenumber">23</context>
300 </context-group>
301 </trans-unit>
302 <trans-unit id="ba7378cdaaa60b4fee17a551b232ad3512dac17d">
303 <source>
304 Log out
305 </source>
306 <target>
307 Sair
308 </target>
309 <context-group name="null">
310 <context context-type="linenumber">27</context>
311 </context-group> 263 </context-group>
312 </trans-unit> 264 </trans-unit>
313 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> 265 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9">
314 <source>Login</source> 266 <source>Login</source>
315 <target>Entrar</target> 267 <target>Entrar</target>
316 <context-group name="null"> 268 <context-group name="null">
317 <context context-type="linenumber">36</context> 269 <context context-type="linenumber">38</context>
318 </context-group> 270 </context-group>
319 </trans-unit> 271 </trans-unit>
320 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> 272 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87">
321 <source>Create an account</source> 273 <source>Create an account</source>
322 <target>Criar uma conta</target> 274 <target>Criar uma conta</target>
323 <context-group name="null"> 275 <context-group name="null">
324 <context context-type="linenumber">37</context> 276 <context context-type="linenumber">39</context>
325 </context-group> 277 </context-group>
326 </trans-unit> 278 </trans-unit>
327 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238"> 279 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238">
328 <source>Videos</source> 280 <source>Videos</source>
329 <target>Vídeos</target> 281 <target>Vídeos</target>
330 <context-group name="null"> 282 <context-group name="null">
331 <context context-type="linenumber">21</context> 283 <context context-type="linenumber">24</context>
332 </context-group> 284 </context-group>
333 </trans-unit> 285 </trans-unit>
334 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> 286 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807">
335 <source>Trending</source> 287 <source>Trending</source>
336 <target>Tendências</target> 288 <target>Tendências</target>
337 <context-group name="null"> 289 <context-group name="null">
338 <context context-type="linenumber">45</context> 290 <context context-type="linenumber">57</context>
339 </context-group> 291 </context-group>
340 </trans-unit> 292 </trans-unit>
341 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> 293 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1">
342 <source>Recently added</source> 294 <source>Recently added</source>
343 <target>Adicionado recentemente</target> 295 <target>Adicionado recentemente</target>
344 <context-group name="null"> 296 <context-group name="null">
345 <context context-type="linenumber">50</context> 297 <context context-type="linenumber">62</context>
346 </context-group> 298 </context-group>
347 </trans-unit> 299 </trans-unit>
348 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d"> 300 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d">
349 <source>Local</source> 301 <source>Local</source>
350 <target>Local</target> 302 <target>Local</target>
351 <context-group name="null"> 303 <context-group name="null">
352 <context context-type="linenumber">55</context> 304 <context context-type="linenumber">67</context>
353 </context-group> 305 </context-group>
354 </trans-unit> 306 </trans-unit>
355 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f"> 307 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f">
356 <source>More</source> 308 <source>More</source>
357 <target>Mais</target> 309 <target>Mais</target>
358 <context-group name="null"> 310 <context-group name="null">
359 <context context-type="linenumber">60</context> 311 <context context-type="linenumber">72</context>
360 </context-group> 312 </context-group>
361 </trans-unit> 313 </trans-unit>
362 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> 314 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919">
363 <source>Administration</source> 315 <source>Administration</source>
364 <target>Administração</target> 316 <target>Administração</target>
365 <context-group name="null"> 317 <context-group name="null">
366 <context context-type="linenumber">64</context> 318 <context context-type="linenumber">76</context>
367 </context-group> 319 </context-group>
368 </trans-unit> 320 </trans-unit>
369 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> 321 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a">
370 <source>About</source> 322 <source>About</source>
371 <target>Sobre</target> 323 <target>Sobre</target>
372 <context-group name="null"> 324 <context-group name="null">
373 <context context-type="linenumber">23</context> 325 <context context-type="linenumber">25</context>
374 </context-group> 326 </context-group>
375 </trans-unit> 327 </trans-unit>
376 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> 328 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599">
@@ -433,21 +385,21 @@
433 <source>Category</source> 385 <source>Category</source>
434 <target>Categoria</target> 386 <target>Categoria</target>
435 <context-group name="null"> 387 <context-group name="null">
436 <context context-type="linenumber">148</context> 388 <context context-type="linenumber">166</context>
437 </context-group> 389 </context-group>
438 </trans-unit> 390 </trans-unit>
439 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c"> 391 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c">
440 <source>Licence</source> 392 <source>Licence</source>
441 <target>Licença</target> 393 <target>Licença</target>
442 <context-group name="null"> 394 <context-group name="null">
443 <context context-type="linenumber">157</context> 395 <context context-type="linenumber">175</context>
444 </context-group> 396 </context-group>
445 </trans-unit> 397 </trans-unit>
446 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619"> 398 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619">
447 <source>Language</source> 399 <source>Language</source>
448 <target>Idioma</target> 400 <target>Idioma</target>
449 <context-group name="null"> 401 <context-group name="null">
450 <context context-type="linenumber">166</context> 402 <context context-type="linenumber">184</context>
451 </context-group> 403 </context-group>
452 </trans-unit> 404 </trans-unit>
453 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8"> 405 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8">
@@ -482,7 +434,7 @@
482 <source>Instance</source> 434 <source>Instance</source>
483 <target>Instância</target> 435 <target>Instância</target>
484 <context-group name="null"> 436 <context-group name="null">
485 <context context-type="linenumber">7</context> 437 <context context-type="linenumber">8</context>
486 </context-group> 438 </context-group>
487 </trans-unit> 439 </trans-unit>
488 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390"> 440 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390">
@@ -507,14 +459,14 @@
507 <source>Description</source> 459 <source>Description</source>
508 <target>Descrição</target> 460 <target>Descrição</target>
509 <context-group name="null"> 461 <context-group name="null">
510 <context context-type="linenumber">23</context> 462 <context context-type="linenumber">26</context>
511 </context-group> 463 </context-group>
512 </trans-unit> 464 </trans-unit>
513 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774"> 465 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774">
514 <source>Terms</source> 466 <source>Terms</source>
515 <target>Termos</target> 467 <target>Termos</target>
516 <context-group name="null"> 468 <context-group name="null">
517 <context context-type="linenumber">43</context> 469 <context context-type="linenumber">44</context>
518 </context-group> 470 </context-group>
519 </trans-unit> 471 </trans-unit>
520 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27"> 472 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27">
@@ -855,7 +807,7 @@
855 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source> 807 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source>
856 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> inscritos</target> 808 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> inscritos</target>
857 <context-group name="null"> 809 <context-group name="null">
858 <context context-type="linenumber">11</context> 810 <context context-type="linenumber">14</context>
859 </context-group> 811 </context-group>
860 </trans-unit> 812 </trans-unit>
861 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f"> 813 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f">
@@ -869,49 +821,49 @@
869 <source>Name</source> 821 <source>Name</source>
870 <target>Nome</target> 822 <target>Nome</target>
871 <context-group name="null"> 823 <context-group name="null">
872 <context context-type="linenumber">9</context> 824 <context context-type="linenumber">12</context>
873 </context-group> 825 </context-group>
874 </trans-unit> 826 </trans-unit>
875 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b"> 827 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b">
876 <source>Short description</source> 828 <source>Short description</source>
877 <target>Descrição curta</target> 829 <target>Descrição curta</target>
878 <context-group name="null"> 830 <context-group name="null">
879 <context context-type="linenumber">21</context> 831 <context context-type="linenumber">22</context>
880 </context-group> 832 </context-group>
881 </trans-unit> 833 </trans-unit>
882 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003"> 834 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003">
883 <source>Default client route</source> 835 <source>Default client route</source>
884 <target>Rota padrão do cliente</target> 836 <target>Rota padrão do cliente</target>
885 <context-group name="null"> 837 <context-group name="null">
886 <context context-type="linenumber">54</context> 838 <context context-type="linenumber">55</context>
887 </context-group> 839 </context-group>
888 </trans-unit> 840 </trans-unit>
889 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948"> 841 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948">
890 <source>Videos Trending</source> 842 <source>Videos Trending</source>
891 <target>Vídeos em Tendência</target> 843 <target>Vídeos em Tendência</target>
892 <context-group name="null"> 844 <context-group name="null">
893 <context context-type="linenumber">57</context> 845 <context context-type="linenumber">59</context>
894 </context-group> 846 </context-group>
895 </trans-unit> 847 </trans-unit>
896 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883"> 848 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883">
897 <source>Videos Recently Added</source> 849 <source>Videos Recently Added</source>
898 <target>Vídeos Adicionados Recentemente</target> 850 <target>Vídeos Adicionados Recentemente</target>
899 <context-group name="null"> 851 <context-group name="null">
900 <context context-type="linenumber">58</context> 852 <context context-type="linenumber">60</context>
901 </context-group> 853 </context-group>
902 </trans-unit> 854 </trans-unit>
903 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f"> 855 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f">
904 <source>Local videos</source> 856 <source>Local videos</source>
905 <target>Vídeos locais</target> 857 <target>Vídeos locais</target>
906 <context-group name="null"> 858 <context-group name="null">
907 <context context-type="linenumber">59</context> 859 <context context-type="linenumber">61</context>
908 </context-group> 860 </context-group>
909 </trans-unit> 861 </trans-unit>
910 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9"> 862 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9">
911 <source>Policy on videos containing sensitive content</source> 863 <source>Policy on videos containing sensitive content</source>
912 <target>Política sobre vídeos que possuem conteúdo sensível</target> 864 <target>Política sobre vídeos que possuem conteúdo sensível</target>
913 <context-group name="null"> 865 <context-group name="null">
914 <context context-type="linenumber">68</context> 866 <context context-type="linenumber">70</context>
915 </context-group> 867 </context-group>
916 </trans-unit> 868 </trans-unit>
917 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df"> 869 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df">
@@ -946,14 +898,14 @@
946 <source>Signup enabled</source> 898 <source>Signup enabled</source>
947 <target>Inscrição permitida</target> 899 <target>Inscrição permitida</target>
948 <context-group name="null"> 900 <context-group name="null">
949 <context context-type="linenumber">90</context> 901 <context context-type="linenumber">92</context>
950 </context-group> 902 </context-group>
951 </trans-unit> 903 </trans-unit>
952 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402"> 904 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402">
953 <source>Signup limit</source> 905 <source>Signup limit</source>
954 <target>Limite de inscrições</target> 906 <target>Limite de inscrições</target>
955 <context-group name="null"> 907 <context-group name="null">
956 <context context-type="linenumber">94</context> 908 <context context-type="linenumber">101</context>
957 </context-group> 909 </context-group>
958 </trans-unit> 910 </trans-unit>
959 <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36"> 911 <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36">
@@ -967,42 +919,42 @@
967 <source>Video import with HTTP enabled</source> 919 <source>Video import with HTTP enabled</source>
968 <target>Importação de vídeo com HTTP habilitada</target> 920 <target>Importação de vídeo com HTTP habilitada</target>
969 <context-group name="null"> 921 <context-group name="null">
970 <context context-type="linenumber">108</context> 922 <context context-type="linenumber">115</context>
971 </context-group> 923 </context-group>
972 </trans-unit> 924 </trans-unit>
973 <trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e"> 925 <trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e">
974 <source>Video import with a torrent file or a magnet URI enabled</source> 926 <source>Video import with a torrent file or a magnet URI enabled</source>
975 <target>Importação de vídeo com um arquivo torrent ou URI magnética habilitada</target> 927 <target>Importação de vídeo com um arquivo torrent ou URI magnética habilitada</target>
976 <context-group name="null"> 928 <context-group name="null">
977 <context context-type="linenumber">113</context> 929 <context context-type="linenumber">120</context>
978 </context-group> 930 </context-group>
979 </trans-unit> 931 </trans-unit>
980 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011"> 932 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011">
981 <source>Administrator</source> 933 <source>Administrator</source>
982 <target>Administrador</target> 934 <target>Administrador</target>
983 <context-group name="null"> 935 <context-group name="null">
984 <context context-type="linenumber">116</context> 936 <context context-type="linenumber">123</context>
985 </context-group> 937 </context-group>
986 </trans-unit> 938 </trans-unit>
987 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> 939 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587">
988 <source>Admin email</source> 940 <source>Admin email</source>
989 <target>Email de administrador</target> 941 <target>Email de administrador</target>
990 <context-group name="null"> 942 <context-group name="null">
991 <context context-type="linenumber">119</context> 943 <context context-type="linenumber">126</context>
992 </context-group> 944 </context-group>
993 </trans-unit> 945 </trans-unit>
994 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be"> 946 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be">
995 <source>Users</source> 947 <source>Users</source>
996 <target>Usuários</target> 948 <target>Usuários</target>
997 <context-group name="null"> 949 <context-group name="null">
998 <context context-type="linenumber">129</context> 950 <context context-type="linenumber">136</context>
999 </context-group> 951 </context-group>
1000 </trans-unit> 952 </trans-unit>
1001 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09"> 953 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09">
1002 <source>User default video quota</source> 954 <source>User default video quota</source>
1003 <target>Cota padrão de vídeos do usuário</target> 955 <target>Cota padrão de vídeos do usuário</target>
1004 <context-group name="null"> 956 <context-group name="null">
1005 <context context-type="linenumber">132</context> 957 <context context-type="linenumber">139</context>
1006 </context-group> 958 </context-group>
1007 </trans-unit> 959 </trans-unit>
1008 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5"> 960 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5">
@@ -1016,194 +968,133 @@
1016 <source>Twitter</source> 968 <source>Twitter</source>
1017 <target>Twitter</target> 969 <target>Twitter</target>
1018 <context-group name="null"> 970 <context-group name="null">
1019 <context context-type="linenumber">148</context> 971 <context context-type="linenumber">170</context>
1020 </context-group> 972 </context-group>
1021 </trans-unit> 973 </trans-unit>
1022 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> 974 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524">
1023 <source>Your Twitter username</source> 975 <source>Your Twitter username</source>
1024 <target>Seu nome de usuário no Twitter</target> 976 <target>Seu nome de usuário no Twitter</target>
1025 <context-group name="null"> 977 <context-group name="null">
1026 <context context-type="linenumber">151</context> 978 <context context-type="linenumber">173</context>
1027 </context-group> 979 </context-group>
1028 </trans-unit> 980 </trans-unit>
1029 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c"> 981 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c">
1030 <source>Indicates the Twitter account for the website or platform on which the content was published.</source> 982 <source>Indicates the Twitter account for the website or platform on which the content was published.</source>
1031 <target>Indica a conta Twitter do sítio web ou plataforma em que o conteúdo foi publicado.</target> 983 <target>Indica a conta Twitter do sítio web ou plataforma em que o conteúdo foi publicado.</target>
1032 <context-group name="null"> 984 <context-group name="null">
1033 <context context-type="linenumber">154</context> 985 <context context-type="linenumber">176</context>
1034 </context-group> 986 </context-group>
1035 </trans-unit> 987 </trans-unit>
1036 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605"> 988 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605">
1037 <source>Instance whitelisted by Twitter</source> 989 <source>Instance whitelisted by Twitter</source>
1038 <target>Instância listada como permitida pelo Twitter</target> 990 <target>Instância listada como permitida pelo Twitter</target>
1039 <context-group name="null"> 991 <context-group name="null">
1040 <context context-type="linenumber">167</context> 992 <context context-type="linenumber">189</context>
1041 </context-group>
1042 </trans-unit>
1043 <trans-unit id="3f008a1a07ca42c6ad258fde1bbd80ed74ada19b">
1044 <source>If your instance is whitelisted by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.&lt;br /&gt;
1045If the instance is not whitelisted, we use an image link card that will redirect on your PeerTube instance.&lt;br /&gt;&lt;br /&gt;
1046Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; to see if you instance is whitelisted.</source>
1047 <target>Se a sua instância está listada como permitida pelo Twitter, um player de vídeo será embutido no feed do Twitter no compartilhador do vídeo do PeerTube.&lt;br /&gt;
1048Se a instância não está listada como permitida, nós utilizamos um cartão de imagem com link que redirecionará à sua instância PeerTube.&lt;br /&gt;&lt;br /&gt;
1049Marque esta opção, salve as configurações e teste com uma URL de vídeo da sua instância (https://example.com/videos/watch/blabla) em &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; para ver se sua instância está listada como permitida.</target>
1050 <context-group name="null">
1051 <context context-type="linenumber">168</context>
1052 </context-group> 993 </context-group>
1053 </trans-unit> 994 </trans-unit>
1054 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> 995 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5">
1055 <source>Services</source> 996 <source>Services</source>
1056 <target>Serviços</target> 997 <target>Serviços</target>
1057 <context-group name="null"> 998 <context-group name="null">
1058 <context context-type="linenumber">146</context> 999 <context context-type="linenumber">168</context>
1059 </context-group> 1000 </context-group>
1060 </trans-unit> 1001 </trans-unit>
1061 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490"> 1002 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490">
1062 <source>Transcoding</source> 1003 <source>Transcoding</source>
1063 <target>Transcodificação</target> 1004 <target>Transcodificação</target>
1064 <context-group name="null"> 1005 <context-group name="null">
1065 <context context-type="linenumber">176</context> 1006 <context context-type="linenumber">200</context>
1066 </context-group> 1007 </context-group>
1067 </trans-unit> 1008 </trans-unit>
1068 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> 1009 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9">
1069 <source>Transcoding enabled</source> 1010 <source>Transcoding enabled</source>
1070 <target>Transcodificação ativada</target> 1011 <target>Transcodificação ativada</target>
1071 <context-group name="null"> 1012 <context-group name="null">
1072 <context context-type="linenumber">180</context> 1013 <context context-type="linenumber">204</context>
1073 </context-group> 1014 </context-group>
1074 </trans-unit> 1015 </trans-unit>
1075 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> 1016 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f">
1076 <source>If you disable transcoding, many videos from your users will not work!</source> 1017 <source>If you disable transcoding, many videos from your users will not work!</source>
1077 <target>Se você desativar a transcodificação, muitos vídeos dos seus usuários não funcionarão!</target> 1018 <target>Se você desativar a transcodificação, muitos vídeos dos seus usuários não funcionarão!</target>
1078 <context-group name="null"> 1019 <context-group name="null">
1079 <context context-type="linenumber">181</context> 1020 <context context-type="linenumber">205</context>
1080 </context-group> 1021 </context-group>
1081 </trans-unit> 1022 </trans-unit>
1082 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> 1023 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2">
1083 <source>Transcoding threads</source> 1024 <source>Transcoding threads</source>
1084 <target>Threads de transcodificação</target> 1025 <target>Threads de transcodificação</target>
1085 <context-group name="null"> 1026 <context-group name="null">
1086 <context context-type="linenumber">187</context> 1027 <context context-type="linenumber">211</context>
1087 </context-group> 1028 </context-group>
1088 </trans-unit> 1029 </trans-unit>
1089 <trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500"> 1030 <trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500">
1090 <source>Resolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> enabled</source> 1031 <source>Resolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> enabled</source>
1091 <target>Resolução <x id="INTERPOLATION" equiv-text="{{resolution}}"/> habilitada</target> 1032 <target>Resolução <x id="INTERPOLATION" equiv-text="{{resolution}}"/> habilitada</target>
1092 <context-group name="null"> 1033 <context-group name="null">
1093 <context context-type="linenumber">203</context> 1034 <context context-type="linenumber">227</context>
1094 </context-group>
1095 </trans-unit>
1096 <trans-unit id="f86acfe567b75b7ea85af6f1cb3efb88085dfb9a">
1097 <source>
1098 Cache
1099
1100 <x id="START_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;my-help&gt;"/><x id="CLOSE_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;/my-help&gt;"/>
1101 </source>
1102 <target>
1103 Cache
1104
1105 <x id="START_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;my-help&gt;"/><x id="CLOSE_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;/my-help&gt;"/>
1106 </target>
1107 <context-group name="null">
1108 <context context-type="linenumber">209</context>
1109 </context-group> 1035 </context-group>
1110 </trans-unit> 1036 </trans-unit>
1111 <trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0"> 1037 <trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0">
1112 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source> 1038 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source>
1113 <target>Alguns arquivos não são federados (pré-visualizações, legendas ocultas). Nós as obtivemos diretamente da instância de origem e a colocamos em cache.</target> 1039 <target>Alguns arquivos não são federados (pré-visualizações, legendas ocultas). Nós as obtivemos diretamente da instância de origem e a colocamos em cache.</target>
1114 <context-group name="null"> 1040 <context-group name="null">
1115 <context context-type="linenumber">214</context> 1041 <context context-type="linenumber">238</context>
1116 </context-group> 1042 </context-group>
1117 </trans-unit> 1043 </trans-unit>
1118 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7"> 1044 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7">
1119 <source>Previews cache size</source> 1045 <source>Previews cache size</source>
1120 <target>Tamanho do cache de pré-visualizações</target> 1046 <target>Tamanho do cache de pré-visualizações</target>
1121 <context-group name="null"> 1047 <context-group name="null">
1122 <context context-type="linenumber">219</context> 1048 <context context-type="linenumber">243</context>
1123 </context-group> 1049 </context-group>
1124 </trans-unit> 1050 </trans-unit>
1125 <trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607"> 1051 <trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607">
1126 <source>Video captions cache size</source> 1052 <source>Video captions cache size</source>
1127 <target>Tamanho do cache de legendas ocultas de vídeos</target> 1053 <target>Tamanho do cache de legendas ocultas de vídeos</target>
1128 <context-group name="null"> 1054 <context-group name="null">
1129 <context context-type="linenumber">230</context> 1055 <context context-type="linenumber">254</context>
1130 </context-group> 1056 </context-group>
1131 </trans-unit> 1057 </trans-unit>
1132 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c"> 1058 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c">
1133 <source>Customizations</source> 1059 <source>Customizations</source>
1134 <target>Personalizações</target> 1060 <target>Personalizações</target>
1135 <context-group name="null"> 1061 <context-group name="null">
1136 <context context-type="linenumber">240</context> 1062 <context context-type="linenumber">264</context>
1137 </context-group> 1063 </context-group>
1138 </trans-unit> 1064 </trans-unit>
1139 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> 1065 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c">
1140 <source>JavaScript</source> 1066 <source>JavaScript</source>
1141 <target>JavaScript</target> 1067 <target>JavaScript</target>
1142 <context-group name="null"> 1068 <context-group name="null">
1143 <context context-type="linenumber">243</context> 1069 <context context-type="linenumber">267</context>
1144 </context-group> 1070 </context-group>
1145 </trans-unit> 1071 </trans-unit>
1146 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c"> 1072 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c">
1147 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source> 1073 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source>
1148 <target>Escreva diretamente código JavaScript.&lt;br /&gt;Exemplo: &lt;pre&gt;console.log('minha instância é demais');&lt;/pre&gt;</target> 1074 <target>Escreva diretamente código JavaScript.&lt;br /&gt;Exemplo: &lt;pre&gt;console.log('minha instância é demais');&lt;/pre&gt;</target>
1149 <context-group name="null"> 1075 <context-group name="null">
1150 <context context-type="linenumber">246</context> 1076 <context context-type="linenumber">270</context>
1151 </context-group>
1152 </trans-unit>
1153 <trans-unit id="f133b08d6519081bfb8ef51cff4bf2b3af23dde6">
1154 <source>
1155 Write directly CSS code. Example:&lt;br /&gt;
1156 &lt;pre&gt;
1157 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1158 background-color: red;
1159 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1160 &lt;/pre&gt;
1161
1162 Prepend with &lt;em&gt;#custom-css&lt;/em&gt; to override styles. Example:
1163 &lt;pre&gt;
1164 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1165 color: red;
1166 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1167 &lt;/pre&gt;
1168 </source>
1169 <target>
1170 Escreva código CSS diretamente. Exemplo:&lt;br /&gt;
1171 &lt;pre&gt;
1172 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1173 background-color: red;
1174 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1175 &lt;/pre&gt;
1176
1177 Prefixe com &lt;em&gt;#custom-css&lt;/em&gt; para sobrescrever estilos. Exemplo:
1178 &lt;pre&gt;
1179 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1180 color: red;
1181 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1182 &lt;/pre&gt;
1183 </target>
1184 <context-group name="null">
1185 <context context-type="linenumber">262</context>
1186 </context-group> 1077 </context-group>
1187 </trans-unit> 1078 </trans-unit>
1188 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> 1079 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab">
1189 <source>Advanced configuration</source> 1080 <source>Advanced configuration</source>
1190 <target>Configurações avançadas</target> 1081 <target>Configurações avançadas</target>
1191 <context-group name="null"> 1082 <context-group name="null">
1192 <context context-type="linenumber">174</context> 1083 <context context-type="linenumber">197</context>
1193 </context-group> 1084 </context-group>
1194 </trans-unit> 1085 </trans-unit>
1195 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> 1086 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8">
1196 <source>Update configuration</source> 1087 <source>Update configuration</source>
1197 <target>Atualizar configuração</target> 1088 <target>Atualizar configuração</target>
1198 <context-group name="null"> 1089 <context-group name="null">
1199 <context context-type="linenumber">289</context> 1090 <context context-type="linenumber">314</context>
1200 </context-group> 1091 </context-group>
1201 </trans-unit> 1092 </trans-unit>
1202 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca"> 1093 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca">
1203 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source> 1094 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source>
1204 <target>Aparentemente a configuração está valida. Por favor procure potenciais erros nas diferentes abas.</target> 1095 <target>Aparentemente a configuração está valida. Por favor procure potenciais erros nas diferentes abas.</target>
1205 <context-group name="null"> 1096 <context-group name="null">
1206 <context context-type="linenumber">290</context> 1097 <context context-type="linenumber">315</context>
1207 </context-group> 1098 </context-group>
1208 </trans-unit> 1099 </trans-unit>
1209 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c"> 1100 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c">
@@ -1228,28 +1119,6 @@ Marque esta opção, salve as configurações e teste com uma URL de vídeo da s
1228 <context context-type="linenumber">7</context> 1119 <context context-type="linenumber">7</context>
1229 </context-group> 1120 </context-group>
1230 </trans-unit> 1121 </trans-unit>
1231 <trans-unit id="1c9406213cf05033eda4d3df678217b5eb822315">
1232 <source>
1233 Video abuses
1234 </source>
1235 <target>
1236 Abusos de vídeos
1237 </target>
1238 <context-group name="null">
1239 <context context-type="linenumber">11</context>
1240 </context-group>
1241 </trans-unit>
1242 <trans-unit id="96ccede058f0022f34230c3adc09e60076b6d037">
1243 <source>
1244 Video blacklist
1245 </source>
1246 <target>
1247 Lista de bloqueio de vídeos
1248 </target>
1249 <context-group name="null">
1250 <context context-type="linenumber">15</context>
1251 </context-group>
1252 </trans-unit>
1253 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368"> 1122 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368">
1254 <source> 1123 <source>
1255 Jobs 1124 Jobs
@@ -1258,7 +1127,7 @@ Marque esta opção, salve as configurações e teste com uma URL de vídeo da s
1258 Empregos 1127 Empregos
1259 </target> 1128 </target>
1260 <context-group name="null"> 1129 <context-group name="null">
1261 <context context-type="linenumber">19</context> 1130 <context context-type="linenumber">15</context>
1262 </context-group> 1131 </context-group>
1263 </trans-unit> 1132 </trans-unit>
1264 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13"> 1133 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13">
@@ -1269,7 +1138,7 @@ Marque esta opção, salve as configurações e teste com uma URL de vídeo da s
1269 Configurações 1138 Configurações
1270 </target> 1139 </target>
1271 <context-group name="null"> 1140 <context-group name="null">
1272 <context context-type="linenumber">23</context> 1141 <context context-type="linenumber">19</context>
1273 </context-group> 1142 </context-group>
1274 </trans-unit> 1143 </trans-unit>
1275 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396"> 1144 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396">
@@ -1339,6 +1208,27 @@ Marque esta opção, salve as configurações e teste com uma URL de vídeo da s
1339 <context context-type="linenumber">2</context> 1208 <context context-type="linenumber">2</context>
1340 </context-group> 1209 </context-group>
1341 </trans-unit> 1210 </trans-unit>
1211 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936">
1212 <source>Following</source>
1213 <target>Seguindo</target>
1214 <context-group name="null">
1215 <context context-type="linenumber">5</context>
1216 </context-group>
1217 </trans-unit>
1218 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
1219 <source>Follow</source>
1220 <target>Seguir</target>
1221 <context-group name="null">
1222 <context context-type="linenumber">7</context>
1223 </context-group>
1224 </trans-unit>
1225 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
1226 <source>Followers</source>
1227 <target>Seguidores</target>
1228 <context-group name="null">
1229 <context context-type="linenumber">9</context>
1230 </context-group>
1231 </trans-unit>
1342 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f"> 1232 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f">
1343 <source>Jobs list</source> 1233 <source>Jobs list</source>
1344 <target>Lista de trabalhos</target> 1234 <target>Lista de trabalhos</target>
@@ -1399,14 +1289,7 @@ Marque esta opção, salve as configurações e teste com uma URL de vídeo da s
1399 <source>Role</source> 1289 <source>Role</source>
1400 <target>Papel</target> 1290 <target>Papel</target>
1401 <context-group name="null"> 1291 <context-group name="null">
1402 <context context-type="linenumber">19</context> 1292 <context context-type="linenumber">20</context>
1403 </context-group>
1404 </trans-unit>
1405 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
1406 <source>Video quota</source>
1407 <target>Cota de vídeo</target>
1408 <context-group name="null">
1409 <context context-type="linenumber">18</context>
1410 </context-group> 1293 </context-group>
1411 </trans-unit> 1294 </trans-unit>
1412 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345"> 1295 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345">
@@ -1422,6 +1305,13 @@ Marque esta opção, salve as configurações e teste com uma URL de vídeo da s
1422 <context context-type="linenumber">65</context> 1305 <context context-type="linenumber">65</context>
1423 </context-group> 1306 </context-group>
1424 </trans-unit> 1307 </trans-unit>
1308 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
1309 <source>Reason...</source>
1310 <target>Motivo...</target>
1311 <context-group name="null">
1312 <context context-type="linenumber">11</context>
1313 </context-group>
1314 </trans-unit>
1425 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f"> 1315 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f">
1426 <source>Users list</source> 1316 <source>Users list</source>
1427 <target>Lista de usuários</target> 1317 <target>Lista de usuários</target>
@@ -1433,91 +1323,42 @@ Marque esta opção, salve as configurações e teste com uma URL de vídeo da s
1433 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source> 1323 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1434 <target>Nome de usuário <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target> 1324 <target>Nome de usuário <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1435 <context-group name="null"> 1325 <context-group name="null">
1436 <context context-type="linenumber">16</context> 1326 <context context-type="linenumber">17</context>
1437 </context-group>
1438 </trans-unit>
1439 <trans-unit id="0c7e8870481f1287af6a142f538391d8c16c2408">
1440 <source>Video abuses list</source>
1441 <target>Lista de abusos de vídeo</target>
1442 <context-group name="null">
1443 <context context-type="linenumber">2</context>
1444 </context-group>
1445 </trans-unit>
1446 <trans-unit id="4ba250869daa372b54d24fafc0ea934769ee4076">
1447 <source>Reason</source>
1448 <target>Motivo</target>
1449 <context-group name="null">
1450 <context context-type="linenumber">11</context>
1451 </context-group> 1327 </context-group>
1452 </trans-unit> 1328 </trans-unit>
1453 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2"> 1329 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2">
1454 <source>Reporter</source> 1330 <source>Reporter</source>
1455 <target>Denunciante</target> 1331 <target>Denunciante</target>
1456 <context-group name="null"> 1332 <context-group name="null">
1457 <context context-type="linenumber">12</context> 1333 <context context-type="linenumber">8</context>
1458 </context-group> 1334 </context-group>
1459 </trans-unit> 1335 </trans-unit>
1460 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4"> 1336 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4">
1461 <source>Video</source> 1337 <source>Video</source>
1462 <target>Vídeo</target> 1338 <target>Vídeo</target>
1463 <context-group name="null"> 1339 <context-group name="null">
1464 <context context-type="linenumber">9</context> 1340 <context context-type="linenumber">14</context>
1465 </context-group> 1341 </context-group>
1466 </trans-unit> 1342 </trans-unit>
1467 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7"> 1343 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7">
1468 <source>Go to the account</source> 1344 <source>Go to the account</source>
1469 <target>Ir para a conta</target> 1345 <target>Ir para a conta</target>
1470 <context-group name="null"> 1346 <context-group name="null">
1471 <context context-type="linenumber">22</context> 1347 <context context-type="linenumber">27</context>
1472 </context-group> 1348 </context-group>
1473 </trans-unit> 1349 </trans-unit>
1474 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5"> 1350 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5">
1475 <source>Go to the video</source> 1351 <source>Go to the video</source>
1476 <target>Ir para o vídeo</target> 1352 <target>Ir para o vídeo</target>
1477 <context-group name="null"> 1353 <context-group name="null">
1478 <context context-type="linenumber">28</context> 1354 <context context-type="linenumber">33</context>
1479 </context-group> 1355 </context-group>
1480 </trans-unit> 1356 </trans-unit>
1481 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1"> 1357 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1">
1482 <source>Blacklisted videos</source> 1358 <source>Blacklisted videos</source>
1483 <target>Vídeos na lista negra</target> 1359 <target>Vídeos na lista negra</target>
1484 <context-group name="null"> 1360 <context-group name="null">
1485 <context context-type="linenumber">2</context> 1361 <context context-type="linenumber">7</context>
1486 </context-group>
1487 </trans-unit>
1488 <trans-unit id="7c02d113e9b7884037834cddecf2a32a5538b35b">
1489 <source>Name <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1490 <target>Nome <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1491 <context-group name="null">
1492 <context context-type="linenumber">11</context>
1493 </context-group>
1494 </trans-unit>
1495 <trans-unit id="cd5ca5da9e2fa21571e9f86a24a5c3b45a3ddc51">
1496 <source>Views <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1497 <target>Visualizações <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1498 <context-group name="null">
1499 <context context-type="linenumber">13</context>
1500 </context-group>
1501 </trans-unit>
1502 <trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9">
1503 <source>NSFW</source>
1504 <target>NSFW</target>
1505 <context-group name="null">
1506 <context context-type="linenumber">14</context>
1507 </context-group>
1508 </trans-unit>
1509 <trans-unit id="8c87d9527af7ff2ada84c911516a9e43a352e401">
1510 <source>UUID</source>
1511 <target>UUID</target>
1512 <context-group name="null">
1513 <context context-type="linenumber">15</context>
1514 </context-group>
1515 </trans-unit>
1516 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1517 <source>Unblacklist</source>
1518 <target>Retirar da lista negra</target>
1519 <context-group name="null">
1520 <context context-type="linenumber">30</context>
1521 </context-group> 1362 </context-group>
1522 </trans-unit> 1363 </trans-unit>
1523 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6"> 1364 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6">
@@ -1527,25 +1368,11 @@ Marque esta opção, salve as configurações e teste com uma URL de vídeo da s
1527 <context context-type="linenumber">3</context> 1368 <context context-type="linenumber">3</context>
1528 </context-group> 1369 </context-group>
1529 </trans-unit> 1370 </trans-unit>
1530 <trans-unit id="520d68b2c9f7dacaf2a5073716cad9bd328ea7e7">
1531 <source>My video channels</source>
1532 <target>Meus canais de vídeo</target>
1533 <context-group name="null">
1534 <context context-type="linenumber">5</context>
1535 </context-group>
1536 </trans-unit>
1537 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894"> 1371 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894">
1538 <source>My videos</source> 1372 <source>My videos</source>
1539 <target>Meus vídeos</target> 1373 <target>Meus vídeos</target>
1540 <context-group name="null"> 1374 <context-group name="null">
1541 <context context-type="linenumber">7</context> 1375 <context context-type="linenumber">14</context>
1542 </context-group>
1543 </trans-unit>
1544 <trans-unit id="0bb0c57c6d12635d26996c124248e748b666e5ad">
1545 <source>My video imports</source>
1546 <target>Minhas importações de vídeo</target>
1547 <context-group name="null">
1548 <context context-type="linenumber">9</context>
1549 </context-group> 1376 </context-group>
1550 </trans-unit> 1377 </trans-unit>
1551 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48"> 1378 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48">
@@ -1576,6 +1403,13 @@ Marque esta opção, salve as configurações e teste com uma URL de vídeo da s
1576 <context context-type="linenumber">18</context> 1403 <context context-type="linenumber">18</context>
1577 </context-group> 1404 </context-group>
1578 </trans-unit> 1405 </trans-unit>
1406 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
1407 <source>Submit</source>
1408 <target>Enviar</target>
1409 <context-group name="null">
1410 <context context-type="linenumber">24</context>
1411 </context-group>
1412 </trans-unit>
1579 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79"> 1413 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79">
1580 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 1414 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
1581 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visualizações</target> 1415 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visualizações</target>
@@ -1583,11 +1417,15 @@ Marque esta opção, salve as configurações e teste com uma URL de vídeo da s
1583 <context context-type="linenumber">19</context> 1417 <context context-type="linenumber">19</context>
1584 </context-group> 1418 </context-group>
1585 </trans-unit> 1419 </trans-unit>
1586 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7"> 1420 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
1587 <source>Delete</source> 1421 <source>
1588 <target>Excluir</target> 1422 Cancel
1423 </source>
1424 <target>
1425 Cancelar
1426 </target>
1589 <context-group name="null"> 1427 <context-group name="null">
1590 <context context-type="linenumber">15</context> 1428 <context context-type="linenumber">30</context>
1591 </context-group> 1429 </context-group>
1592 </trans-unit> 1430 </trans-unit>
1593 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260"> 1431 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260">
@@ -1601,7 +1439,7 @@ Marque esta opção, salve as configurações e teste com uma URL de vídeo da s
1601 <source>Go to the channel</source> 1439 <source>Go to the channel</source>
1602 <target>Ir para o canal</target> 1440 <target>Ir para o canal</target>
1603 <context-group name="null"> 1441 <context-group name="null">
1604 <context context-type="linenumber">15</context> 1442 <context context-type="linenumber">8</context>
1605 </context-group> 1443 </context-group>
1606 </trans-unit> 1444 </trans-unit>
1607 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68"> 1445 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68">
@@ -1624,7 +1462,7 @@ When you will upload a video in this channel, the video support field will be au
1624 <target>Texto curto para dizer às pessoas como elas podem apoiar o seu canal (plataforma de membros, etc.).&lt;br /&gt;&lt;br /&gt; 1462 <target>Texto curto para dizer às pessoas como elas podem apoiar o seu canal (plataforma de membros, etc.).&lt;br /&gt;&lt;br /&gt;
1625Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preenchido automaticamente com esse texto.</target> 1463Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preenchido automaticamente com esse texto.</target>
1626 <context-group name="null"> 1464 <context-group name="null">
1627 <context context-type="linenumber">36</context> 1465 <context context-type="linenumber">52</context>
1628 </context-group> 1466 </context-group>
1629 </trans-unit> 1467 </trans-unit>
1630 <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191"> 1468 <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191">
@@ -1634,11 +1472,25 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
1634 <context context-type="linenumber">8</context> 1472 <context context-type="linenumber">8</context>
1635 </context-group> 1473 </context-group>
1636 </trans-unit> 1474 </trans-unit>
1475 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1476 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1477 <target>Criado por <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1478 <context-group name="null">
1479 <context context-type="linenumber">17</context>
1480 </context-group>
1481 </trans-unit>
1482 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1483 <source>Go the owner account page</source>
1484 <target>Ir para a página da conta do dono</target>
1485 <context-group name="null">
1486 <context context-type="linenumber">16</context>
1487 </context-group>
1488 </trans-unit>
1637 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9"> 1489 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9">
1638 <source>Change password</source> 1490 <source>Change password</source>
1639 <target>Alterar senha</target> 1491 <target>Alterar senha</target>
1640 <context-group name="null"> 1492 <context-group name="null">
1641 <context context-type="linenumber">19</context> 1493 <context context-type="linenumber">22</context>
1642 </context-group> 1494 </context-group>
1643 </trans-unit> 1495 </trans-unit>
1644 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229"> 1496 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229">
@@ -1715,20 +1567,6 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
1715 <context context-type="linenumber">1</context> 1567 <context context-type="linenumber">1</context>
1716 </context-group> 1568 </context-group>
1717 </trans-unit> 1569 </trans-unit>
1718 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1719 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1720 <target>Criado por <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1721 <context-group name="null">
1722 <context context-type="linenumber">14</context>
1723 </context-group>
1724 </trans-unit>
1725 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1726 <source>Go the owner account page</source>
1727 <target>Ir para a página da conta do dono</target>
1728 <context-group name="null">
1729 <context context-type="linenumber">13</context>
1730 </context-group>
1731 </trans-unit>
1732 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8"> 1570 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8">
1733 <source>Support this channel</source> 1571 <source>Support this channel</source>
1734 <target>Apoie esse canal</target> 1572 <target>Apoie esse canal</target>
@@ -1747,7 +1585,7 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
1747 <source>URL</source> 1585 <source>URL</source>
1748 <target>URL</target> 1586 <target>URL</target>
1749 <context-group name="null"> 1587 <context-group name="null">
1750 <context context-type="linenumber">12</context> 1588 <context context-type="linenumber">17</context>
1751 </context-group> 1589 </context-group>
1752 </trans-unit> 1590 </trans-unit>
1753 <trans-unit id="bfe7f34fbd4c3afa5f84a5580e0fae942cad2333"> 1591 <trans-unit id="bfe7f34fbd4c3afa5f84a5580e0fae942cad2333">
@@ -1761,14 +1599,14 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
1761 <source>Channel</source> 1599 <source>Channel</source>
1762 <target>Canal</target> 1600 <target>Canal</target>
1763 <context-group name="null"> 1601 <context-group name="null">
1764 <context context-type="linenumber">35</context> 1602 <context context-type="linenumber">38</context>
1765 </context-group> 1603 </context-group>
1766 </trans-unit> 1604 </trans-unit>
1767 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427"> 1605 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427">
1768 <source>Privacy</source> 1606 <source>Privacy</source>
1769 <target>Privacidade</target> 1607 <target>Privacidade</target>
1770 <context-group name="null"> 1608 <context-group name="null">
1771 <context context-type="linenumber">143</context> 1609 <context context-type="linenumber">161</context>
1772 </context-group> 1610 </context-group>
1773 </trans-unit> 1611 </trans-unit>
1774 <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2"> 1612 <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2">
@@ -1786,7 +1624,7 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
1786 <source>Update</source> 1624 <source>Update</source>
1787 <target>Atualizar</target> 1625 <target>Atualizar</target>
1788 <context-group name="null"> 1626 <context-group name="null">
1789 <context context-type="linenumber">105</context> 1627 <context context-type="linenumber">92</context>
1790 </context-group> 1628 </context-group>
1791 </trans-unit> 1629 </trans-unit>
1792 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> 1630 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9">
@@ -1860,46 +1698,35 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
1860 <source>Upload a file</source> 1698 <source>Upload a file</source>
1861 <target>Enviar um arquivo</target> 1699 <target>Enviar um arquivo</target>
1862 <context-group name="null"> 1700 <context-group name="null">
1863 <context context-type="linenumber">9</context> 1701 <context context-type="linenumber">10</context>
1864 </context-group> 1702 </context-group>
1865 </trans-unit> 1703 </trans-unit>
1866 <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470"> 1704 <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470">
1867 <source>Import with URL</source> 1705 <source>Import with URL</source>
1868 <target>Importar com URL</target> 1706 <target>Importar com URL</target>
1869 <context-group name="null"> 1707 <context-group name="null">
1870 <context context-type="linenumber">13</context> 1708 <context context-type="linenumber">17</context>
1871 </context-group> 1709 </context-group>
1872 </trans-unit> 1710 </trans-unit>
1873 <trans-unit id="752c401d7dcd708944eef60e411187f71d882340"> 1711 <trans-unit id="752c401d7dcd708944eef60e411187f71d882340">
1874 <source>Import with torrent</source> 1712 <source>Import with torrent</source>
1875 <target>Importar com torrent</target> 1713 <target>Importar com torrent</target>
1876 <context-group name="null"> 1714 <context-group name="null">
1877 <context context-type="linenumber">17</context> 1715 <context context-type="linenumber">24</context>
1878 </context-group> 1716 </context-group>
1879 </trans-unit> 1717 </trans-unit>
1880 <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0"> 1718 <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0">
1881 <source>Add caption</source> 1719 <source>Add caption</source>
1882 <target>Adicionar legenda oculta</target> 1720 <target>Adicionar legenda oculta</target>
1883 <context-group name="null"> 1721 <context-group name="null">
1884 <context context-type="linenumber">7</context> 1722 <context context-type="linenumber">5</context>
1885 </context-group> 1723 </context-group>
1886 </trans-unit> 1724 </trans-unit>
1887 <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8"> 1725 <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8">
1888 <source>Select the caption file</source> 1726 <source>Select the caption file</source>
1889 <target>Selecionar um arquivo de legenda oculta</target> 1727 <target>Selecionar um arquivo de legenda oculta</target>
1890 <context-group name="null"> 1728 <context-group name="null">
1891 <context context-type="linenumber">25</context> 1729 <context context-type="linenumber">24</context>
1892 </context-group>
1893 </trans-unit>
1894 <trans-unit id="a40a8a9f8359eda00c6a79809e9499100fde3ffd">
1895 <source>
1896 This will replace an existing caption!
1897 </source>
1898 <target>
1899 Isso vai substituir uma legenda oculta existente!
1900 </target>
1901 <context-group name="null">
1902 <context context-type="linenumber">30</context>
1903 </context-group> 1730 </context-group>
1904 </trans-unit> 1731 </trans-unit>
1905 <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c"> 1732 <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c">
@@ -1913,70 +1740,63 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
1913 <source>Title</source> 1740 <source>Title</source>
1914 <target>Título</target> 1741 <target>Título</target>
1915 <context-group name="null"> 1742 <context-group name="null">
1916 <context context-type="linenumber">7</context> 1743 <context context-type="linenumber">9</context>
1917 </context-group> 1744 </context-group>
1918 </trans-unit> 1745 </trans-unit>
1919 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b"> 1746 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b">
1920 <source>Tags</source> 1747 <source>Tags</source>
1921 <target>Tags</target> 1748 <target>Tags</target>
1922 <context-group name="null"> 1749 <context-group name="null">
1923 <context context-type="linenumber">175</context> 1750 <context context-type="linenumber">193</context>
1924 </context-group>
1925 </trans-unit>
1926 <trans-unit id="935e7146fe6c12169abfda18536c5856935cfd82">
1927 <source>(press Enter to add)</source>
1928 <target>(pressione Enter para adicionar)</target>
1929 <context-group name="null">
1930 <context context-type="linenumber">15</context>
1931 </context-group> 1751 </context-group>
1932 </trans-unit> 1752 </trans-unit>
1933 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e"> 1753 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e">
1934 <source>Video descriptions are truncated by default and require manual action to expand them.</source> 1754 <source>Video descriptions are truncated by default and require manual action to expand them.</source>
1935 <target>Descrições de vídeo são truncadas por padrão e exigem ação manual para expandi-las.</target> 1755 <target>Descrições de vídeo são truncadas por padrão e exigem ação manual para expandi-las.</target>
1936 <context-group name="null"> 1756 <context-group name="null">
1937 <context context-type="linenumber">24</context> 1757 <context context-type="linenumber">27</context>
1938 </context-group> 1758 </context-group>
1939 </trans-unit> 1759 </trans-unit>
1940 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> 1760 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5">
1941 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source> 1761 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source>
1942 <target>Agendar publicação (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target> 1762 <target>Agendar publicação (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target>
1943 <context-group name="null"> 1763 <context-group name="null">
1944 <context context-type="linenumber">101</context> 1764 <context context-type="linenumber">104</context>
1945 </context-group> 1765 </context-group>
1946 </trans-unit> 1766 </trans-unit>
1947 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee"> 1767 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee">
1948 <source>This video contains mature or explicit content</source> 1768 <source>This video contains mature or explicit content</source>
1949 <target>Esse vídeo contém conteúdo adulto e explícito</target> 1769 <target>Esse vídeo contém conteúdo adulto e explícito</target>
1950 <context-group name="null"> 1770 <context-group name="null">
1951 <context context-type="linenumber">115</context> 1771 <context context-type="linenumber">118</context>
1952 </context-group> 1772 </context-group>
1953 </trans-unit> 1773 </trans-unit>
1954 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644"> 1774 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644">
1955 <source>Some instances do not list videos containing mature or explicit content by default.</source> 1775 <source>Some instances do not list videos containing mature or explicit content by default.</source>
1956 <target>Algumas instâncias não listam vídeos contendo conteúdo adulto e explícito por padrão.</target> 1776 <target>Algumas instâncias não listam vídeos contendo conteúdo adulto e explícito por padrão.</target>
1957 <context-group name="null"> 1777 <context-group name="null">
1958 <context context-type="linenumber">116</context> 1778 <context context-type="linenumber">119</context>
1959 </context-group> 1779 </context-group>
1960 </trans-unit> 1780 </trans-unit>
1961 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a"> 1781 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a">
1962 <source>Enable video comments</source> 1782 <source>Enable video comments</source>
1963 <target>Habilitar comentários de vídeos</target> 1783 <target>Habilitar comentários de vídeos</target>
1964 <context-group name="null"> 1784 <context-group name="null">
1965 <context context-type="linenumber">121</context> 1785 <context context-type="linenumber">124</context>
1966 </context-group> 1786 </context-group>
1967 </trans-unit> 1787 </trans-unit>
1968 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0"> 1788 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0">
1969 <source>Wait transcoding before publishing the video</source> 1789 <source>Wait transcoding before publishing the video</source>
1970 <target>Aguarde a transcodificação antes de publicar o vídeo</target> 1790 <target>Aguarde a transcodificação antes de publicar o vídeo</target>
1971 <context-group name="null"> 1791 <context-group name="null">
1972 <context context-type="linenumber">126</context> 1792 <context context-type="linenumber">129</context>
1973 </context-group> 1793 </context-group>
1974 </trans-unit> 1794 </trans-unit>
1975 <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63"> 1795 <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63">
1976 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source> 1796 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source>
1977 <target>Se você decidir não aguardar a transcodificação antes de publicar o vídeo, ele poderá não ser reproduzido até que a transcodificação termine.</target> 1797 <target>Se você decidir não aguardar a transcodificação antes de publicar o vídeo, ele poderá não ser reproduzido até que a transcodificação termine.</target>
1978 <context-group name="null"> 1798 <context-group name="null">
1979 <context context-type="linenumber">127</context> 1799 <context context-type="linenumber">130</context>
1980 </context-group> 1800 </context-group>
1981 </trans-unit> 1801 </trans-unit>
1982 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7"> 1802 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7">
@@ -1990,70 +1810,70 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
1990 <source>Add another caption</source> 1810 <source>Add another caption</source>
1991 <target>Adicionar outra legenda oculta</target> 1811 <target>Adicionar outra legenda oculta</target>
1992 <context-group name="null"> 1812 <context-group name="null">
1993 <context context-type="linenumber">139</context> 1813 <context context-type="linenumber">145</context>
1994 </context-group> 1814 </context-group>
1995 </trans-unit> 1815 </trans-unit>
1996 <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed"> 1816 <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed">
1997 <source>See the subtitle file</source> 1817 <source>See the subtitle file</source>
1998 <target>Veja o arquivo de legenda</target> 1818 <target>Veja o arquivo de legenda</target>
1999 <context-group name="null"> 1819 <context-group name="null">
2000 <context context-type="linenumber">148</context> 1820 <context context-type="linenumber">154</context>
2001 </context-group> 1821 </context-group>
2002 </trans-unit> 1822 </trans-unit>
2003 <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9"> 1823 <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9">
2004 <source>Cancel create</source> 1824 <source>Cancel create</source>
2005 <target>Cancelar criação</target> 1825 <target>Cancelar criação</target>
2006 <context-group name="null"> 1826 <context-group name="null">
2007 <context context-type="linenumber">162</context> 1827 <context context-type="linenumber">168</context>
2008 </context-group> 1828 </context-group>
2009 </trans-unit> 1829 </trans-unit>
2010 <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c"> 1830 <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c">
2011 <source>Cancel deletion</source> 1831 <source>Cancel deletion</source>
2012 <target>Cancelar exclusão</target> 1832 <target>Cancelar exclusão</target>
2013 <context-group name="null"> 1833 <context-group name="null">
2014 <context context-type="linenumber">170</context> 1834 <context context-type="linenumber">176</context>
2015 </context-group> 1835 </context-group>
2016 </trans-unit> 1836 </trans-unit>
2017 <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93"> 1837 <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93">
2018 <source>Captions</source> 1838 <source>Captions</source>
2019 <target>Legendas ocultas</target> 1839 <target>Legendas ocultas</target>
2020 <context-group name="null"> 1840 <context-group name="null">
2021 <context context-type="linenumber">133</context> 1841 <context context-type="linenumber">138</context>
2022 </context-group> 1842 </context-group>
2023 </trans-unit> 1843 </trans-unit>
2024 <trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513"> 1844 <trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513">
2025 <source>Upload thumbnail</source> 1845 <source>Upload thumbnail</source>
2026 <target>Enviar miniatura</target> 1846 <target>Enviar miniatura</target>
2027 <context-group name="null"> 1847 <context-group name="null">
2028 <context context-type="linenumber">186</context> 1848 <context context-type="linenumber">194</context>
2029 </context-group> 1849 </context-group>
2030 </trans-unit> 1850 </trans-unit>
2031 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639"> 1851 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639">
2032 <source>Upload preview</source> 1852 <source>Upload preview</source>
2033 <target>Enviar pré-visualização</target> 1853 <target>Enviar pré-visualização</target>
2034 <context-group name="null"> 1854 <context-group name="null">
2035 <context context-type="linenumber">193</context> 1855 <context context-type="linenumber">201</context>
2036 </context-group> 1856 </context-group>
2037 </trans-unit> 1857 </trans-unit>
2038 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604"> 1858 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604">
2039 <source>Support</source> 1859 <source>Support</source>
2040 <target>Apoiar</target> 1860 <target>Apoiar</target>
2041 <context-group name="null"> 1861 <context-group name="null">
2042 <context context-type="linenumber">71</context> 1862 <context context-type="linenumber">69</context>
2043 </context-group> 1863 </context-group>
2044 </trans-unit> 1864 </trans-unit>
2045 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0"> 1865 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0">
2046 <source>Short text to tell people how they can support you (membership platform...).</source> 1866 <source>Short text to tell people how they can support you (membership platform...).</source>
2047 <target>Texto curto para dizer às pessoas como elas podem apoiar você (plataforma de membros, etc.).</target> 1867 <target>Texto curto para dizer às pessoas como elas podem apoiar você (plataforma de membros, etc.).</target>
2048 <context-group name="null"> 1868 <context-group name="null">
2049 <context context-type="linenumber">200</context> 1869 <context context-type="linenumber">208</context>
2050 </context-group> 1870 </context-group>
2051 </trans-unit> 1871 </trans-unit>
2052 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1"> 1872 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1">
2053 <source>Advanced settings</source> 1873 <source>Advanced settings</source>
2054 <target>Configurações avançadas</target> 1874 <target>Configurações avançadas</target>
2055 <context-group name="null"> 1875 <context-group name="null">
2056 <context context-type="linenumber">182</context> 1876 <context context-type="linenumber">189</context>
2057 </context-group> 1877 </context-group>
2058 </trans-unit> 1878 </trans-unit>
2059 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0"> 1879 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0">
@@ -2071,99 +1891,63 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
2071 <source>Download video</source> 1891 <source>Download video</source>
2072 <target>Baixar vídeo</target> 1892 <target>Baixar vídeo</target>
2073 <context-group name="null"> 1893 <context-group name="null">
2074 <context context-type="linenumber">7</context> 1894 <context context-type="linenumber">3</context>
2075 </context-group> 1895 </context-group>
2076 </trans-unit> 1896 </trans-unit>
2077 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c"> 1897 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c">
2078 <source>Direct download</source> 1898 <source>Direct download</source>
2079 <target>Download direto</target> 1899 <target>Download direto</target>
2080 <context-group name="null"> 1900 <context-group name="null">
2081 <context context-type="linenumber">20</context> 1901 <context context-type="linenumber">17</context>
2082 </context-group> 1902 </context-group>
2083 </trans-unit> 1903 </trans-unit>
2084 <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d"> 1904 <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d">
2085 <source>Torrent (.torrent file)</source> 1905 <source>Torrent (.torrent file)</source>
2086 <target>Torrent (arquivo .torrent)</target> 1906 <target>Torrent (arquivo .torrent)</target>
2087 <context-group name="null"> 1907 <context-group name="null">
2088 <context context-type="linenumber">25</context> 1908 <context context-type="linenumber">22</context>
2089 </context-group> 1909 </context-group>
2090 </trans-unit> 1910 </trans-unit>
2091 <trans-unit id="2db8d7cf6a3071f4c1519ef2b5e2713d9ff4e87f"> 1911 <trans-unit id="2db8d7cf6a3071f4c1519ef2b5e2713d9ff4e87f">
2092 <source>Torrent (magnet link)</source> 1912 <source>Torrent (magnet link)</source>
2093 <target>Torrent (link magnético)</target> 1913 <target>Torrent (link magnético)</target>
2094 <context-group name="null"> 1914 <context-group name="null">
2095 <context context-type="linenumber">30</context> 1915 <context context-type="linenumber">27</context>
2096 </context-group> 1916 </context-group>
2097 </trans-unit> 1917 </trans-unit>
2098 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> 1918 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd">
2099 <source>Download</source> 1919 <source>Download</source>
2100 <target>Download</target> 1920 <target>Download</target>
2101 <context-group name="null"> 1921 <context-group name="null">
2102 <context context-type="linenumber">87</context> 1922 <context context-type="linenumber">84</context>
2103 </context-group> 1923 </context-group>
2104 </trans-unit> 1924 </trans-unit>
2105 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b"> 1925 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b">
2106 <source>Report video</source> 1926 <source>Report video</source>
2107 <target>Denunciar vídeo</target> 1927 <target>Denunciar vídeo</target>
2108 <context-group name="null"> 1928 <context-group name="null">
2109 <context context-type="linenumber">7</context> 1929 <context context-type="linenumber">3</context>
2110 </context-group>
2111 </trans-unit>
2112 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
2113 <source>Reason...</source>
2114 <target>Motivo...</target>
2115 <context-group name="null">
2116 <context context-type="linenumber">14</context>
2117 </context-group>
2118 </trans-unit>
2119 <trans-unit id="0e6b8229bd65f93bc8040d0fb598967f220740c7">
2120 <source>
2121 Cancel
2122 </source>
2123 <target>
2124 Cancelar
2125 </target>
2126 <context-group name="null">
2127 <context context-type="linenumber">22</context>
2128 </context-group>
2129 </trans-unit>
2130 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
2131 <source>Submit</source>
2132 <target>Enviar</target>
2133 <context-group name="null">
2134 <context context-type="linenumber">27</context>
2135 </context-group> 1930 </context-group>
2136 </trans-unit> 1931 </trans-unit>
2137 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9"> 1932 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9">
2138 <source>Share</source> 1933 <source>Share</source>
2139 <target>Compartilhar</target> 1934 <target>Compartilhar</target>
2140 <context-group name="null"> 1935 <context-group name="null">
2141 <context context-type="linenumber">76</context> 1936 <context context-type="linenumber">74</context>
2142 </context-group>
2143 </trans-unit>
2144 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
2145 <source>Embed</source>
2146 <target>Embutir</target>
2147 <context-group name="null">
2148 <context context-type="linenumber">24</context>
2149 </context-group>
2150 </trans-unit>
2151 <trans-unit id="239fe0316cfe91aa6e1e7bf1ef19e3b7772131f8">
2152 <source>
2153 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).
2154 </source>
2155 <target>
2156 A URL não é segura (sem HTTPS), portanto, o vídeo incorporado não funcionará em sites HTTPS (os navegadores da qeb bloqueiam solicitações HTTP não seguras em sites HTTPS).
2157 </target>
2158 <context-group name="null">
2159 <context context-type="linenumber">35</context>
2160 </context-group> 1937 </context-group>
2161 </trans-unit> 1938 </trans-unit>
2162 <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f"> 1939 <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f">
2163 <source>QR-Code</source> 1940 <source>QR-Code</source>
2164 <target>Código QR</target> 1941 <target>Código QR</target>
2165 <context-group name="null"> 1942 <context-group name="null">
2166 <context context-type="linenumber">40</context> 1943 <context context-type="linenumber">29</context>
1944 </context-group>
1945 </trans-unit>
1946 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
1947 <source>Embed</source>
1948 <target>Embutir</target>
1949 <context-group name="null">
1950 <context context-type="linenumber">34</context>
2167 </context-group> 1951 </context-group>
2168 </trans-unit> 1952 </trans-unit>
2169 <trans-unit id="7584313e33a66811eb10646627914a01fff0347d"> 1953 <trans-unit id="7584313e33a66811eb10646627914a01fff0347d">
@@ -2188,174 +1972,116 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
2188 <context context-type="linenumber">15</context> 1972 <context context-type="linenumber">15</context>
2189 </context-group> 1973 </context-group>
2190 </trans-unit> 1974 </trans-unit>
2191 <trans-unit id="fbc205ea3d06fa8f65973fa3b490ae172f71c087">
2192 <source>
2193 This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
2194 </source>
2195 <target>
2196 Esse vídeo será publicado em <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
2197 </target>
2198 <context-group name="null">
2199 <context context-type="linenumber">19</context>
2200 </context-group>
2201 </trans-unit>
2202 <trans-unit id="643ab402461b1169eebbe2ed790e12a9a83551aa">
2203 <source>
2204 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views
2205 </source>
2206 <target>
2207 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visualizações
2208 </target>
2209 <context-group name="null">
2210 <context context-type="linenumber">30</context>
2211 </context-group>
2212 </trans-unit>
2213 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
2214 <source>Go the channel page</source>
2215 <target>Ir para a página do canal</target>
2216 <context-group name="null">
2217 <context context-type="linenumber">35</context>
2218 </context-group>
2219 </trans-unit>
2220 <trans-unit id="ccc07df383b7a32be3e2e105faa5488caf261c1c">
2221 <source>By <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></source>
2222 <target>Por <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></target>
2223 <context-group name="null">
2224 <context context-type="linenumber">45</context>
2225 </context-group>
2226 </trans-unit>
2227 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
2228 <source>Go to the account page</source>
2229 <target>Ir para a página da conta</target>
2230 <context-group name="null">
2231 <context context-type="linenumber">44</context>
2232 </context-group>
2233 </trans-unit>
2234 <trans-unit id="57075c778cf28b81272df4eb17da944366c98e51">
2235 <source>You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; and subscribe there. Subscription as a PeerTube user is being worked on in &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</source>
2236 <target>Você pode se inscrever nesta conta através de qualquer instância fediverse com capacidade para ActivityPub. Por exemplo, com Mastodon ou Pleroma, você pode digitar na caixa de pesquisa &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; e se inscrever lá. A assinatura como um usuário do PeerTube está sendo trabalhada em &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</target>
2237 <context-group name="null">
2238 <context context-type="linenumber">49</context>
2239 </context-group>
2240 </trans-unit>
2241 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced"> 1975 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced">
2242 <source>Like this video</source> 1976 <source>Like this video</source>
2243 <target>Curtir esse vídeo</target> 1977 <target>Curtir esse vídeo</target>
2244 <context-group name="null"> 1978 <context-group name="null">
2245 <context context-type="linenumber">59</context> 1979 <context context-type="linenumber">57</context>
2246 </context-group> 1980 </context-group>
2247 </trans-unit> 1981 </trans-unit>
2248 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509"> 1982 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509">
2249 <source>Dislike this video</source> 1983 <source>Dislike this video</source>
2250 <target>Descurtir esse vídeo</target> 1984 <target>Descurtir esse vídeo</target>
2251 <context-group name="null"> 1985 <context-group name="null">
2252 <context context-type="linenumber">66</context> 1986 <context context-type="linenumber">64</context>
2253 </context-group> 1987 </context-group>
2254 </trans-unit> 1988 </trans-unit>
2255 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2"> 1989 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2">
2256 <source>Download the video</source> 1990 <source>Download the video</source>
2257 <target>Baixar o vídeo</target> 1991 <target>Baixar o vídeo</target>
2258 <context-group name="null"> 1992 <context-group name="null">
2259 <context context-type="linenumber">86</context> 1993 <context context-type="linenumber">83</context>
2260 </context-group> 1994 </context-group>
2261 </trans-unit> 1995 </trans-unit>
2262 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a"> 1996 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a">
2263 <source>Report</source> 1997 <source>Report</source>
2264 <target>Denunciar</target> 1998 <target>Denunciar</target>
2265 <context-group name="null"> 1999 <context-group name="null">
2266 <context context-type="linenumber">93</context> 2000 <context context-type="linenumber">88</context>
2267 </context-group> 2001 </context-group>
2268 </trans-unit> 2002 </trans-unit>
2269 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf"> 2003 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf">
2270 <source>Report this video</source> 2004 <source>Report this video</source>
2271 <target>Denuncie esse vídeo</target> 2005 <target>Denuncie esse vídeo</target>
2272 <context-group name="null"> 2006 <context-group name="null">
2273 <context context-type="linenumber">92</context> 2007 <context context-type="linenumber">87</context>
2008 </context-group>
2009 </trans-unit>
2010 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1">
2011 <source>Update this video</source>
2012 <target>Atualizar esse vídeo</target>
2013 <context-group name="null">
2014 <context context-type="linenumber">91</context>
2274 </context-group> 2015 </context-group>
2275 </trans-unit> 2016 </trans-unit>
2276 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61"> 2017 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61">
2277 <source>Blacklist</source> 2018 <source>Blacklist</source>
2278 <target>Lista negra</target> 2019 <target>Lista negra</target>
2279 <context-group name="null"> 2020 <context-group name="null">
2280 <context context-type="linenumber">99</context> 2021 <context context-type="linenumber">96</context>
2281 </context-group> 2022 </context-group>
2282 </trans-unit> 2023 </trans-unit>
2283 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037"> 2024 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037">
2284 <source>Blacklist this video</source> 2025 <source>Blacklist this video</source>
2285 <target>Coloque esse vídeo na lista negra</target> 2026 <target>Coloque esse vídeo na lista negra</target>
2286 <context-group name="null"> 2027 <context-group name="null">
2287 <context context-type="linenumber">98</context> 2028 <context context-type="linenumber">95</context>
2288 </context-group> 2029 </context-group>
2289 </trans-unit> 2030 </trans-unit>
2290 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1"> 2031 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
2291 <source>Update this video</source> 2032 <source>Unblacklist</source>
2292 <target>Atualizar esse vídeo</target> 2033 <target>Retirar da lista negra</target>
2293 <context-group name="null"> 2034 <context-group name="null">
2294 <context context-type="linenumber">104</context> 2035 <context context-type="linenumber">100</context>
2295 </context-group> 2036 </context-group>
2296 </trans-unit> 2037 </trans-unit>
2297 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5"> 2038 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5">
2298 <source>Delete this video</source> 2039 <source>Delete this video</source>
2299 <target>Excluir esse vídeo</target> 2040 <target>Excluir esse vídeo</target>
2300 <context-group name="null"> 2041 <context-group name="null">
2301 <context context-type="linenumber">110</context> 2042 <context context-type="linenumber">103</context>
2302 </context-group>
2303 </trans-unit>
2304 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b">
2305 <source>Show more</source>
2306 <target>Mostrar mais</target>
2307 <context-group name="null">
2308 <context context-type="linenumber">130</context>
2309 </context-group> 2043 </context-group>
2310 </trans-unit> 2044 </trans-unit>
2311 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903"> 2045 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
2312 <source>Show less</source> 2046 <source>Go the channel page</source>
2313 <target>Mostrar menos</target> 2047 <target>Ir para a página do canal</target>
2314 <context-group name="null"> 2048 <context-group name="null">
2315 <context context-type="linenumber">136</context> 2049 <context context-type="linenumber">123</context>
2316 </context-group> 2050 </context-group>
2317 </trans-unit> 2051 </trans-unit>
2318 <trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1"> 2052 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
2319 <source> 2053 <source>Go to the account page</source>
2320 Other videos 2054 <target>Ir para a página da conta</target>
2321 </source>
2322 <target>
2323 Outros vídeos
2324 </target>
2325 <context-group name="null"> 2055 <context-group name="null">
2326 <context context-type="linenumber">187</context> 2056 <context context-type="linenumber">133</context>
2327 </context-group> 2057 </context-group>
2328 </trans-unit> 2058 </trans-unit>
2329 <trans-unit id="fb779d2b25c4d0ffa7d52c823a240717e8c1fe6c"> 2059 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b">
2330 <source>Friendly Reminder:</source> 2060 <source>Show more</source>
2331 <target>Lembrete amigável:</target> 2061 <target>Mostrar mais</target>
2332 <context-group name="null"> 2062 <context-group name="null">
2333 <context context-type="linenumber">199</context> 2063 <context context-type="linenumber">148</context>
2334 </context-group> 2064 </context-group>
2335 </trans-unit> 2065 </trans-unit>
2336 <trans-unit id="329900dd14bc4ca33cec3775d25c246e4cde7867"> 2066 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903">
2337 <source> 2067 <source>Show less</source>
2338 The sharing system used by this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. 2068 <target>Mostrar menos</target>
2339 </source>
2340 <target>
2341 O sistema de compartilhamento usado por este vídeo implica que algumas informações técnicas sobre o seu sistema (como um endereço IP público) podem ser enviadas para outros usuários.
2342 </target>
2343 <context-group name="null"> 2069 <context-group name="null">
2344 <context context-type="linenumber">201</context> 2070 <context context-type="linenumber">154</context>
2345 </context-group> 2071 </context-group>
2346 </trans-unit> 2072 </trans-unit>
2347 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e"> 2073 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e">
2348 <source>More information</source> 2074 <source>More information</source>
2349 <target>Mais informações</target> 2075 <target>Mais informações</target>
2350 <context-group name="null"> 2076 <context-group name="null">
2351 <context context-type="linenumber">204</context> 2077 <context context-type="linenumber">214</context>
2352 </context-group> 2078 </context-group>
2353 </trans-unit> 2079 </trans-unit>
2354 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318"> 2080 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318">
2355 <source>Get more information</source> 2081 <source>Get more information</source>
2356 <target>Obtenha mais informações</target> 2082 <target>Obtenha mais informações</target>
2357 <context-group name="null"> 2083 <context-group name="null">
2358 <context context-type="linenumber">204</context> 2084 <context context-type="linenumber">214</context>
2359 </context-group> 2085 </context-group>
2360 </trans-unit> 2086 </trans-unit>
2361 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f"> 2087 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f">
@@ -2366,7 +2092,7 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
2366 OK 2092 OK
2367 </target> 2093 </target>
2368 <context-group name="null"> 2094 <context-group name="null">
2369 <context context-type="linenumber">207</context> 2095 <context context-type="linenumber">217</context>
2370 </context-group> 2096 </context-group>
2371 </trans-unit> 2097 </trans-unit>
2372 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7"> 2098 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7">
@@ -2427,7 +2153,7 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
2427 Publicar comentário 2153 Publicar comentário
2428 </target> 2154 </target>
2429 <context-group name="null"> 2155 <context-group name="null">
2430 <context context-type="linenumber">17</context> 2156 <context context-type="linenumber">18</context>
2431 </context-group> 2157 </context-group>
2432 </trans-unit> 2158 </trans-unit>
2433 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> 2159 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285">
@@ -2591,23 +2317,9 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
2591 <context context-type="linenumber">1</context> 2317 <context context-type="linenumber">1</context>
2592 </context-group> 2318 </context-group>
2593 </trans-unit> 2319 </trans-unit>
2594 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936"> 2320 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2595 <source>Following</source> 2321 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2596 <target>Seguindo</target> 2322 <target>Vídeo <x id="INTERPOLATION" equiv-text="{{name}}"/> removido da lista negra.</target>
2597 <context-group name="null">
2598 <context context-type="linenumber">1</context>
2599 </context-group>
2600 </trans-unit>
2601 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
2602 <source>Follow</source>
2603 <target>Seguir</target>
2604 <context-group name="null">
2605 <context context-type="linenumber">1</context>
2606 </context-group>
2607 </trans-unit>
2608 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
2609 <source>Followers</source>
2610 <target>Seguidores</target>
2611 <context-group name="null"> 2323 <context-group name="null">
2612 <context context-type="linenumber">1</context> 2324 <context context-type="linenumber">1</context>
2613 </context-group> 2325 </context-group>
@@ -2661,27 +2373,6 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
2661 <context context-type="linenumber">1</context> 2373 <context context-type="linenumber">1</context>
2662 </context-group> 2374 </context-group>
2663 </trans-unit> 2375 </trans-unit>
2664 <trans-unit id="4733ad1d7e63960438c0203b9a64f165b5fc84f2">
2665 <source>Do you really want to remove this video from the blacklist ? It will be available again in the videos list.</source>
2666 <target>Você realmente quer remover este vídeo da lista negra? Ele estará disponível novamente na lista de vídeos.</target>
2667 <context-group name="null">
2668 <context context-type="linenumber">1</context>
2669 </context-group>
2670 </trans-unit>
2671 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2672 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2673 <target>Vídeo <x id="INTERPOLATION" equiv-text="{{name}}"/> removido da lista negra.</target>
2674 <context-group name="null">
2675 <context context-type="linenumber">1</context>
2676 </context-group>
2677 </trans-unit>
2678 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2679 <source>The new password and the confirmed password do not correspond.</source>
2680 <target>A nova senha e a senha confirmada não são iguais.</target>
2681 <context-group name="null">
2682 <context context-type="linenumber">1</context>
2683 </context-group>
2684 </trans-unit>
2685 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc"> 2376 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc">
2686 <source>Password updated.</source> 2377 <source>Password updated.</source>
2687 <target>Senha atualizada.</target> 2378 <target>Senha atualizada.</target>
@@ -2850,6 +2541,13 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
2850 <context context-type="linenumber">1</context> 2541 <context context-type="linenumber">1</context>
2851 </context-group> 2542 </context-group>
2852 </trans-unit> 2543 </trans-unit>
2544 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2545 <source>Unable to find user id or verification string.</source>
2546 <target>Não foi possível localizar o id de usuário ou string de verificação.</target>
2547 <context-group name="null">
2548 <context context-type="linenumber">1</context>
2549 </context-group>
2550 </trans-unit>
2853 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7"> 2551 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7">
2854 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>. 2552 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>.
2855</source> 2553</source>
@@ -2887,13 +2585,6 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
2887 <context context-type="linenumber">1</context> 2585 <context context-type="linenumber">1</context>
2888 </context-group> 2586 </context-group>
2889 </trans-unit> 2587 </trans-unit>
2890 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2891 <source>Unable to find user id or verification string.</source>
2892 <target>Não foi possível localizar o id de usuário ou string de verificação.</target>
2893 <context-group name="null">
2894 <context context-type="linenumber">1</context>
2895 </context-group>
2896 </trans-unit>
2897 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26"> 2588 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26">
2898 <source>Your password has been successfully reset!</source> 2589 <source>Your password has been successfully reset!</source>
2899 <target>Sua senha foi redefinida com sucesso!</target> 2590 <target>Sua senha foi redefinida com sucesso!</target>
@@ -3083,13 +2774,6 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
3083 <context context-type="linenumber">1</context> 2774 <context context-type="linenumber">1</context>
3084 </context-group> 2775 </context-group>
3085 </trans-unit> 2776 </trans-unit>
3086 <trans-unit id="ba88636d27c1a6a7e1f75ff57ec182b30b851c2e">
3087 <source>Transcoding threads must be greater than 1.</source>
3088 <target>Threads de transcodificação deve ser maior que 1.</target>
3089 <context-group name="null">
3090 <context context-type="linenumber">1</context>
3091 </context-group>
3092 </trans-unit>
3093 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149"> 2777 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149">
3094 <source>Username is required.</source> 2778 <source>Username is required.</source>
3095 <target>Nome de usuário é necessário.</target> 2779 <target>Nome de usuário é necessário.</target>
@@ -3160,6 +2844,13 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
3160 <context context-type="linenumber">1</context> 2844 <context context-type="linenumber">1</context>
3161 </context-group> 2845 </context-group>
3162 </trans-unit> 2846 </trans-unit>
2847 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2848 <source>The new password and the confirmed password do not correspond.</source>
2849 <target>A nova senha e a senha confirmada não são iguais.</target>
2850 <context-group name="null">
2851 <context context-type="linenumber">1</context>
2852 </context-group>
2853 </trans-unit>
3163 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf"> 2854 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf">
3164 <source>Video quota is required.</source> 2855 <source>Video quota is required.</source>
3165 <target>Cota de vídeo é necessária.</target> 2856 <target>Cota de vídeo é necessária.</target>
@@ -3727,6 +3418,41 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
3727 <context context-type="linenumber">1</context> 3418 <context context-type="linenumber">1</context>
3728 </context-group> 3419 </context-group>
3729 </trans-unit> 3420 </trans-unit>
3421 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3422 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3423 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3424 <context-group name="null">
3425 <context context-type="linenumber">1</context>
3426 </context-group>
3427 </trans-unit>
3428 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3429 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3430 <target>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</target>
3431 <context-group name="null">
3432 <context context-type="linenumber">1</context>
3433 </context-group>
3434 </trans-unit>
3435 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3436 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3437 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vídeos em FullHD</target>
3438 <context-group name="null">
3439 <context context-type="linenumber">1</context>
3440 </context-group>
3441 </trans-unit>
3442 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3443 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3444 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vídeo em HD</target>
3445 <context-group name="null">
3446 <context context-type="linenumber">1</context>
3447 </context-group>
3448 </trans-unit>
3449 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3450 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3451 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vídeos de qualidade média</target>
3452 <context-group name="null">
3453 <context context-type="linenumber">1</context>
3454 </context-group>
3455 </trans-unit>
3730 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d"> 3456 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d">
3731 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source> 3457 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source>
3732 <target><x id="INTERPOLATION" equiv-text="{{interval}}"/> anos atrás</target> 3458 <target><x id="INTERPOLATION" equiv-text="{{interval}}"/> anos atrás</target>
@@ -3881,41 +3607,6 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
3881 <context context-type="linenumber">1</context> 3607 <context context-type="linenumber">1</context>
3882 </context-group> 3608 </context-group>
3883 </trans-unit> 3609 </trans-unit>
3884 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3885 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3886 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3887 <context-group name="null">
3888 <context context-type="linenumber">1</context>
3889 </context-group>
3890 </trans-unit>
3891 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3892 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3893 <target>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</target>
3894 <context-group name="null">
3895 <context context-type="linenumber">1</context>
3896 </context-group>
3897 </trans-unit>
3898 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3899 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3900 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vídeos em FullHD</target>
3901 <context-group name="null">
3902 <context context-type="linenumber">1</context>
3903 </context-group>
3904 </trans-unit>
3905 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3906 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3907 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vídeo em HD</target>
3908 <context-group name="null">
3909 <context context-type="linenumber">1</context>
3910 </context-group>
3911 </trans-unit>
3912 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3913 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3914 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> de vídeos de qualidade média</target>
3915 <context-group name="null">
3916 <context context-type="linenumber">1</context>
3917 </context-group>
3918 </trans-unit>
3919 <trans-unit id="320c9c3482a0ebe46da42ce9e0cbdc5ba26ea8bb"> 3610 <trans-unit id="320c9c3482a0ebe46da42ce9e0cbdc5ba26ea8bb">
3920 <source>Video to import updated.</source> 3611 <source>Video to import updated.</source>
3921 <target>Vídeo para importar atualizado.</target> 3612 <target>Vídeo para importar atualizado.</target>
@@ -3965,13 +3656,6 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
3965 <context context-type="linenumber">1</context> 3656 <context context-type="linenumber">1</context>
3966 </context-group> 3657 </context-group>
3967 </trans-unit> 3658 </trans-unit>
3968 <trans-unit id="d31d39e8ee9b2f20bffb3468ee062eaa5409c59f">
3969 <source>Your video quota is exceeded with this video (video size: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, used: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, quota: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</source>
3970 <target>Sua cota de vídeo é excedida com esse vídeo (tamanho do vídeo: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, usado: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, cota: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</target>
3971 <context-group name="null">
3972 <context context-type="linenumber">1</context>
3973 </context-group>
3974 </trans-unit>
3975 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce"> 3659 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce">
3976 <source>Video published.</source> 3660 <source>Video published.</source>
3977 <target>Vídeo publicado.</target> 3661 <target>Vídeo publicado.</target>
@@ -4007,20 +3691,6 @@ Quando você enviar um vídeo neste canal, o campo de apoio a vídeo será preen
4007 <context context-type="linenumber">1</context> 3691 <context context-type="linenumber">1</context>
4008 </context-group> 3692 </context-group>
4009 </trans-unit> 3693 </trans-unit>
4010 <trans-unit id="23b2c2f4dd69e29c3bff00469e259dcb01de5633">
4011 <source>Do you really want to blacklist this video?</source>
4012 <target>Você realmente deseja acrescentar esse vídeo à lista negra?</target>
4013 <context-group name="null">
4014 <context context-type="linenumber">1</context>
4015 </context-group>
4016 </trans-unit>
4017 <trans-unit id="cafd8ec6020e69f241a107b1cb7081bd9e773d4e">
4018 <source>Video <x id="INTERPOLATION" equiv-text="{{videoName}}"/> had been blacklisted.</source>
4019 <target>Vídeo <x id="INTERPOLATION" equiv-text="{{videoName}}"/> foi incluído à lista negra.</target>
4020 <context-group name="null">
4021 <context context-type="linenumber">1</context>
4022 </context-group>
4023 </trans-unit>
4024 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95"> 3694 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95">
4025 <source>Do you really want to delete this video?</source> 3695 <source>Do you really want to delete this video?</source>
4026 <target>Você realmente deseja excluir esse vídeo?</target> 3696 <target>Você realmente deseja excluir esse vídeo?</target>
diff --git a/client/src/locale/target/angular_ru_RU.xml b/client/src/locale/target/angular_ru_RU.xml
new file mode 100644
index 000000000..fc1798fdc
--- /dev/null
+++ b/client/src/locale/target/angular_ru_RU.xml
@@ -0,0 +1,14 @@
1<?xml version="1.0" encoding="utf-8"?>
2<!--XLIFF document generated by Zanata. Visit http://zanata.org for more infomation.-->
3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1">
4 <file source-language="en-US" datatype="plaintext" original="" target-language="ru-RU">
5 <body>
6 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390">
7 <source>PeerTube</source>
8 <target>PeerTube</target>
9 <context-group name="null">
10 <context context-type="linenumber">7</context>
11 </context-group>
12 </trans-unit>
13 </body>
14 </file></xliff> \ No newline at end of file
diff --git a/client/src/locale/target/angular_sv_SE.xml b/client/src/locale/target/angular_sv_SE.xml
index 512cd722a..23bc4b864 100644
--- a/client/src/locale/target/angular_sv_SE.xml
+++ b/client/src/locale/target/angular_sv_SE.xml
@@ -3,17 +3,6 @@
3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1"> 3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1">
4 <file source-language="en-US" datatype="plaintext" original="" target-language="sv-SE"> 4 <file source-language="en-US" datatype="plaintext" original="" target-language="sv-SE">
5 <body> 5 <body>
6 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
7 <source>
8 Cancel
9 </source>
10 <target>
11 Avbryt
12 </target>
13 <context-group name="null">
14 <context context-type="linenumber">45</context>
15 </context-group>
16 </trans-unit>
17 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46"> 6 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46">
18 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source> 7 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source>
19 <target>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target> 8 <target>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target>
@@ -25,14 +14,21 @@
25 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 14 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
26 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visningar</target> 15 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visningar</target>
27 <context-group name="null"> 16 <context-group name="null">
28 <context context-type="linenumber">34</context> 17 <context context-type="linenumber">12</context>
18 </context-group>
19 </trans-unit>
20 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7">
21 <source>Delete</source>
22 <target>Ta bort</target>
23 <context-group name="null">
24 <context context-type="linenumber">15</context>
29 </context-group> 25 </context-group>
30 </trans-unit> 26 </trans-unit>
31 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> 27 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c">
32 <source>Edit</source> 28 <source>Edit</source>
33 <target>Redigera</target> 29 <target>Redigera</target>
34 <context-group name="null"> 30 <context-group name="null">
35 <context context-type="linenumber">3</context> 31 <context context-type="linenumber">5</context>
36 </context-group> 32 </context-group>
37 </trans-unit> 33 </trans-unit>
38 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> 34 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d">
@@ -46,7 +42,7 @@
46 <source>Complete preview</source> 42 <source>Complete preview</source>
47 <target>Full förhandsvisning</target> 43 <target>Full förhandsvisning</target>
48 <context-group name="null"> 44 <context-group name="null">
49 <context context-type="linenumber">10</context> 45 <context context-type="linenumber">13</context>
50 </context-group> 46 </context-group>
51 </trans-unit> 47 </trans-unit>
52 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> 48 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f">
@@ -56,6 +52,13 @@
56 <context context-type="linenumber">18</context> 52 <context context-type="linenumber">18</context>
57 </context-group> 53 </context-group>
58 </trans-unit> 54 </trans-unit>
55 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
56 <source>Video quota</source>
57 <target>Videokvot</target>
58 <context-group name="null">
59 <context context-type="linenumber">19</context>
60 </context-group>
61 </trans-unit>
59 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea"> 62 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea">
60 <source> 63 <source>
61 Login 64 Login
@@ -71,14 +74,14 @@
71 <source>User</source> 74 <source>User</source>
72 <target>Användare</target> 75 <target>Användare</target>
73 <context-group name="null"> 76 <context-group name="null">
74 <context context-type="linenumber">11</context> 77 <context context-type="linenumber">13</context>
75 </context-group> 78 </context-group>
76 </trans-unit> 79 </trans-unit>
77 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> 80 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478">
78 <source>Username or email address</source> 81 <source>Username or email address</source>
79 <target>Användarnamn eller epostadress</target> 82 <target>Användarnamn eller epostadress</target>
80 <context-group name="null"> 83 <context-group name="null">
81 <context context-type="linenumber">13</context> 84 <context context-type="linenumber">15</context>
82 </context-group> 85 </context-group>
83 </trans-unit> 86 </trans-unit>
84 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87"> 87 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87">
@@ -89,7 +92,7 @@
89 eller skapa ett konto 92 eller skapa ett konto
90 </target> 93 </target>
91 <context-group name="null"> 94 <context-group name="null">
92 <context context-type="linenumber">16</context> 95 <context context-type="linenumber">18</context>
93 </context-group> 96 </context-group>
94 </trans-unit> 97 </trans-unit>
95 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b"> 98 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b">
@@ -100,14 +103,14 @@
100 eller skapa ett konto på en annan instans 103 eller skapa ett konto på en annan instans
101 </target> 104 </target>
102 <context-group name="null"> 105 <context-group name="null">
103 <context context-type="linenumber">20</context> 106 <context context-type="linenumber">22</context>
104 </context-group> 107 </context-group>
105 </trans-unit> 108 </trans-unit>
106 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3"> 109 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3">
107 <source>User registration is not allowed on this instance, but you can register on many others!</source> 110 <source>User registration is not allowed on this instance, but you can register on many others!</source>
108 <target>Användarregistrering är inte tillåten på den här instansen, men du kan registrera på många andra!</target> 111 <target>Användarregistrering är inte tillåten på den här instansen, men du kan registrera på många andra!</target>
109 <context-group name="null"> 112 <context-group name="null">
110 <context context-type="linenumber">26</context> 113 <context context-type="linenumber">28</context>
111 </context-group> 114 </context-group>
112 </trans-unit> 115 </trans-unit>
113 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> 116 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407">
@@ -121,35 +124,35 @@
121 <source>I forgot my password</source> 124 <source>I forgot my password</source>
122 <target>Jag har glömt mitt lösenord</target> 125 <target>Jag har glömt mitt lösenord</target>
123 <context-group name="null"> 126 <context-group name="null">
124 <context context-type="linenumber">42</context> 127 <context context-type="linenumber">44</context>
125 </context-group> 128 </context-group>
126 </trans-unit> 129 </trans-unit>
127 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681"> 130 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681">
128 <source>Forgot your password</source> 131 <source>Forgot your password</source>
129 <target>Glömt ditt lösenord</target> 132 <target>Glömt ditt lösenord</target>
130 <context-group name="null"> 133 <context-group name="null">
131 <context context-type="linenumber">59</context> 134 <context context-type="linenumber">57</context>
132 </context-group> 135 </context-group>
133 </trans-unit> 136 </trans-unit>
134 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc"> 137 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc">
135 <source>Email</source> 138 <source>Email</source>
136 <target>E-post</target> 139 <target>E-post</target>
137 <context-group name="null"> 140 <context-group name="null">
138 <context context-type="linenumber">17</context> 141 <context context-type="linenumber">8</context>
139 </context-group> 142 </context-group>
140 </trans-unit> 143 </trans-unit>
141 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529"> 144 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529">
142 <source>Email address</source> 145 <source>Email address</source>
143 <target>E-postadress</target> 146 <target>E-postadress</target>
144 <context-group name="null"> 147 <context-group name="null">
145 <context context-type="linenumber">66</context> 148 <context context-type="linenumber">10</context>
146 </context-group> 149 </context-group>
147 </trans-unit> 150 </trans-unit>
148 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55"> 151 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55">
149 <source>Send me an email to reset my password</source> 152 <source>Send me an email to reset my password</source>
150 <target>Skicka ett e-postmeddelande för att återställa mit lösenord</target> 153 <target>Skicka ett e-postmeddelande för att återställa mit lösenord</target>
151 <context-group name="null"> 154 <context-group name="null">
152 <context context-type="linenumber">77</context> 155 <context context-type="linenumber">75</context>
153 </context-group> 156 </context-group>
154 </trans-unit> 157 </trans-unit>
155 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa"> 158 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa">
@@ -195,24 +198,6 @@
195 <context context-type="linenumber">3</context> 198 <context context-type="linenumber">3</context>
196 </context-group> 199 </context-group>
197 </trans-unit> 200 </trans-unit>
198 <trans-unit id="a6807b834e01ce165aa61fad157b0ff4288b6bf1">
199 <source>Initial video quota:</source>
200 <target>Inledande lagringsutrymme</target>
201 <context-group name="null">
202 <context context-type="linenumber">8</context>
203 </context-group>
204 </trans-unit>
205 <trans-unit id="87b6b2c26215c5e712d3bfe4cc86ba53bc23451c">
206 <source>
207 Unlimited
208 </source>
209 <target>
210 Obegränsad
211 </target>
212 <context-group name="null">
213 <context context-type="linenumber">16</context>
214 </context-group>
215 </trans-unit>
216 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> 201 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48">
217 <source>Username</source> 202 <source>Username</source>
218 <target>Användarnamn</target> 203 <target>Användarnamn</target>
@@ -224,14 +209,14 @@
224 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source> 209 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source>
225 <target>Jag har läst och godkänner den här &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;instansens villkor&lt;/a&gt;</target> 210 <target>Jag har läst och godkänner den här &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;instansens villkor&lt;/a&gt;</target>
226 <context-group name="null"> 211 <context-group name="null">
227 <context context-type="linenumber">60</context> 212 <context context-type="linenumber">54</context>
228 </context-group> 213 </context-group>
229 </trans-unit> 214 </trans-unit>
230 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4"> 215 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4">
231 <source>Signup</source> 216 <source>Signup</source>
232 <target>Registrering</target> 217 <target>Registrering</target>
233 <context-group name="null"> 218 <context-group name="null">
234 <context context-type="linenumber">86</context> 219 <context context-type="linenumber">88</context>
235 </context-group> 220 </context-group>
236 </trans-unit> 221 </trans-unit>
237 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a"> 222 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a">
@@ -274,103 +259,70 @@
274 <source>Change the language</source> 259 <source>Change the language</source>
275 <target>Ändra språk</target> 260 <target>Ändra språk</target>
276 <context-group name="null"> 261 <context-group name="null">
277 <context context-type="linenumber">76</context> 262 <context context-type="linenumber">88</context>
278 </context-group>
279 </trans-unit>
280 <trans-unit id="b8ccc4f1b3f839fca9bd59e072f715fd487d540f">
281 <source>
282 My public profile
283 </source>
284 <target>
285 Min offentliga profil
286 </target>
287 <context-group name="null">
288 <context context-type="linenumber">19</context>
289 </context-group>
290 </trans-unit>
291 <trans-unit id="c84b721e9325c9cce20d92f4dbd66898ab5ec947">
292 <source>
293 My account
294 </source>
295 <target>
296 Mitt konto
297 </target>
298 <context-group name="null">
299 <context context-type="linenumber">23</context>
300 </context-group>
301 </trans-unit>
302 <trans-unit id="ba7378cdaaa60b4fee17a551b232ad3512dac17d">
303 <source>
304 Log out
305 </source>
306 <target>
307 Logga ut
308 </target>
309 <context-group name="null">
310 <context context-type="linenumber">27</context>
311 </context-group> 263 </context-group>
312 </trans-unit> 264 </trans-unit>
313 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> 265 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9">
314 <source>Login</source> 266 <source>Login</source>
315 <target>Logga in</target> 267 <target>Logga in</target>
316 <context-group name="null"> 268 <context-group name="null">
317 <context context-type="linenumber">36</context> 269 <context context-type="linenumber">38</context>
318 </context-group> 270 </context-group>
319 </trans-unit> 271 </trans-unit>
320 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> 272 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87">
321 <source>Create an account</source> 273 <source>Create an account</source>
322 <target>Skapa ett konto</target> 274 <target>Skapa ett konto</target>
323 <context-group name="null"> 275 <context-group name="null">
324 <context context-type="linenumber">37</context> 276 <context context-type="linenumber">39</context>
325 </context-group> 277 </context-group>
326 </trans-unit> 278 </trans-unit>
327 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238"> 279 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238">
328 <source>Videos</source> 280 <source>Videos</source>
329 <target>Videor</target> 281 <target>Videor</target>
330 <context-group name="null"> 282 <context-group name="null">
331 <context context-type="linenumber">21</context> 283 <context context-type="linenumber">24</context>
332 </context-group> 284 </context-group>
333 </trans-unit> 285 </trans-unit>
334 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> 286 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807">
335 <source>Trending</source> 287 <source>Trending</source>
336 <target>Populärt</target> 288 <target>Populärt</target>
337 <context-group name="null"> 289 <context-group name="null">
338 <context context-type="linenumber">45</context> 290 <context context-type="linenumber">57</context>
339 </context-group> 291 </context-group>
340 </trans-unit> 292 </trans-unit>
341 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> 293 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1">
342 <source>Recently added</source> 294 <source>Recently added</source>
343 <target>Nyligen tillagt</target> 295 <target>Nyligen tillagt</target>
344 <context-group name="null"> 296 <context-group name="null">
345 <context context-type="linenumber">50</context> 297 <context context-type="linenumber">62</context>
346 </context-group> 298 </context-group>
347 </trans-unit> 299 </trans-unit>
348 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d"> 300 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d">
349 <source>Local</source> 301 <source>Local</source>
350 <target>Lokalt</target> 302 <target>Lokalt</target>
351 <context-group name="null"> 303 <context-group name="null">
352 <context context-type="linenumber">55</context> 304 <context context-type="linenumber">67</context>
353 </context-group> 305 </context-group>
354 </trans-unit> 306 </trans-unit>
355 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f"> 307 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f">
356 <source>More</source> 308 <source>More</source>
357 <target>Mer</target> 309 <target>Mer</target>
358 <context-group name="null"> 310 <context-group name="null">
359 <context context-type="linenumber">60</context> 311 <context context-type="linenumber">72</context>
360 </context-group> 312 </context-group>
361 </trans-unit> 313 </trans-unit>
362 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> 314 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919">
363 <source>Administration</source> 315 <source>Administration</source>
364 <target>Administration</target> 316 <target>Administration</target>
365 <context-group name="null"> 317 <context-group name="null">
366 <context context-type="linenumber">64</context> 318 <context context-type="linenumber">76</context>
367 </context-group> 319 </context-group>
368 </trans-unit> 320 </trans-unit>
369 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> 321 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a">
370 <source>About</source> 322 <source>About</source>
371 <target>Om</target> 323 <target>Om</target>
372 <context-group name="null"> 324 <context-group name="null">
373 <context context-type="linenumber">23</context> 325 <context context-type="linenumber">25</context>
374 </context-group> 326 </context-group>
375 </trans-unit> 327 </trans-unit>
376 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> 328 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599">
@@ -433,21 +385,21 @@
433 <source>Category</source> 385 <source>Category</source>
434 <target>Kategori</target> 386 <target>Kategori</target>
435 <context-group name="null"> 387 <context-group name="null">
436 <context context-type="linenumber">148</context> 388 <context context-type="linenumber">166</context>
437 </context-group> 389 </context-group>
438 </trans-unit> 390 </trans-unit>
439 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c"> 391 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c">
440 <source>Licence</source> 392 <source>Licence</source>
441 <target>Licens</target> 393 <target>Licens</target>
442 <context-group name="null"> 394 <context-group name="null">
443 <context context-type="linenumber">157</context> 395 <context context-type="linenumber">175</context>
444 </context-group> 396 </context-group>
445 </trans-unit> 397 </trans-unit>
446 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619"> 398 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619">
447 <source>Language</source> 399 <source>Language</source>
448 <target>Språk</target> 400 <target>Språk</target>
449 <context-group name="null"> 401 <context-group name="null">
450 <context context-type="linenumber">166</context> 402 <context context-type="linenumber">184</context>
451 </context-group> 403 </context-group>
452 </trans-unit> 404 </trans-unit>
453 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8"> 405 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8">
@@ -482,7 +434,7 @@
482 <source>Instance</source> 434 <source>Instance</source>
483 <target>Instans</target> 435 <target>Instans</target>
484 <context-group name="null"> 436 <context-group name="null">
485 <context context-type="linenumber">7</context> 437 <context context-type="linenumber">8</context>
486 </context-group> 438 </context-group>
487 </trans-unit> 439 </trans-unit>
488 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390"> 440 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390">
@@ -507,14 +459,14 @@
507 <source>Description</source> 459 <source>Description</source>
508 <target>Beskrivning</target> 460 <target>Beskrivning</target>
509 <context-group name="null"> 461 <context-group name="null">
510 <context context-type="linenumber">23</context> 462 <context context-type="linenumber">26</context>
511 </context-group> 463 </context-group>
512 </trans-unit> 464 </trans-unit>
513 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774"> 465 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774">
514 <source>Terms</source> 466 <source>Terms</source>
515 <target>Villkor</target> 467 <target>Villkor</target>
516 <context-group name="null"> 468 <context-group name="null">
517 <context context-type="linenumber">43</context> 469 <context context-type="linenumber">44</context>
518 </context-group> 470 </context-group>
519 </trans-unit> 471 </trans-unit>
520 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27"> 472 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27">
@@ -855,7 +807,7 @@
855 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source> 807 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source>
856 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> prenumeranter</target> 808 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> prenumeranter</target>
857 <context-group name="null"> 809 <context-group name="null">
858 <context context-type="linenumber">11</context> 810 <context context-type="linenumber">14</context>
859 </context-group> 811 </context-group>
860 </trans-unit> 812 </trans-unit>
861 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f"> 813 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f">
@@ -869,49 +821,49 @@
869 <source>Name</source> 821 <source>Name</source>
870 <target>Namn</target> 822 <target>Namn</target>
871 <context-group name="null"> 823 <context-group name="null">
872 <context context-type="linenumber">9</context> 824 <context context-type="linenumber">12</context>
873 </context-group> 825 </context-group>
874 </trans-unit> 826 </trans-unit>
875 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b"> 827 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b">
876 <source>Short description</source> 828 <source>Short description</source>
877 <target>Kort beskrivning</target> 829 <target>Kort beskrivning</target>
878 <context-group name="null"> 830 <context-group name="null">
879 <context context-type="linenumber">21</context> 831 <context context-type="linenumber">22</context>
880 </context-group> 832 </context-group>
881 </trans-unit> 833 </trans-unit>
882 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003"> 834 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003">
883 <source>Default client route</source> 835 <source>Default client route</source>
884 <target>Klientens standardrouting</target> 836 <target>Klientens standardrouting</target>
885 <context-group name="null"> 837 <context-group name="null">
886 <context context-type="linenumber">54</context> 838 <context context-type="linenumber">55</context>
887 </context-group> 839 </context-group>
888 </trans-unit> 840 </trans-unit>
889 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948"> 841 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948">
890 <source>Videos Trending</source> 842 <source>Videos Trending</source>
891 <target>Populära videor</target> 843 <target>Populära videor</target>
892 <context-group name="null"> 844 <context-group name="null">
893 <context context-type="linenumber">57</context> 845 <context context-type="linenumber">59</context>
894 </context-group> 846 </context-group>
895 </trans-unit> 847 </trans-unit>
896 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883"> 848 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883">
897 <source>Videos Recently Added</source> 849 <source>Videos Recently Added</source>
898 <target>Nyligen tillagda videor</target> 850 <target>Nyligen tillagda videor</target>
899 <context-group name="null"> 851 <context-group name="null">
900 <context context-type="linenumber">58</context> 852 <context context-type="linenumber">60</context>
901 </context-group> 853 </context-group>
902 </trans-unit> 854 </trans-unit>
903 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f"> 855 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f">
904 <source>Local videos</source> 856 <source>Local videos</source>
905 <target>Lokala videor</target> 857 <target>Lokala videor</target>
906 <context-group name="null"> 858 <context-group name="null">
907 <context context-type="linenumber">59</context> 859 <context context-type="linenumber">61</context>
908 </context-group> 860 </context-group>
909 </trans-unit> 861 </trans-unit>
910 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9"> 862 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9">
911 <source>Policy on videos containing sensitive content</source> 863 <source>Policy on videos containing sensitive content</source>
912 <target>Policy för videor med känsligt innehåll</target> 864 <target>Policy för videor med känsligt innehåll</target>
913 <context-group name="null"> 865 <context-group name="null">
914 <context context-type="linenumber">68</context> 866 <context context-type="linenumber">70</context>
915 </context-group> 867 </context-group>
916 </trans-unit> 868 </trans-unit>
917 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df"> 869 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df">
@@ -946,14 +898,14 @@
946 <source>Signup enabled</source> 898 <source>Signup enabled</source>
947 <target>Registrering aktiverat</target> 899 <target>Registrering aktiverat</target>
948 <context-group name="null"> 900 <context-group name="null">
949 <context context-type="linenumber">90</context> 901 <context context-type="linenumber">92</context>
950 </context-group> 902 </context-group>
951 </trans-unit> 903 </trans-unit>
952 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402"> 904 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402">
953 <source>Signup limit</source> 905 <source>Signup limit</source>
954 <target>Registreringsgräns</target> 906 <target>Registreringsgräns</target>
955 <context-group name="null"> 907 <context-group name="null">
956 <context context-type="linenumber">94</context> 908 <context context-type="linenumber">101</context>
957 </context-group> 909 </context-group>
958 </trans-unit> 910 </trans-unit>
959 <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36"> 911 <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36">
@@ -967,42 +919,42 @@
967 <source>Video import with HTTP enabled</source> 919 <source>Video import with HTTP enabled</source>
968 <target>Videoimport med HTTP aktiverad</target> 920 <target>Videoimport med HTTP aktiverad</target>
969 <context-group name="null"> 921 <context-group name="null">
970 <context context-type="linenumber">108</context> 922 <context context-type="linenumber">115</context>
971 </context-group> 923 </context-group>
972 </trans-unit> 924 </trans-unit>
973 <trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e"> 925 <trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e">
974 <source>Video import with a torrent file or a magnet URI enabled</source> 926 <source>Video import with a torrent file or a magnet URI enabled</source>
975 <target>Videoimport med torrentfil eller magnet-URI är tillåten</target> 927 <target>Videoimport med torrentfil eller magnet-URI är tillåten</target>
976 <context-group name="null"> 928 <context-group name="null">
977 <context context-type="linenumber">113</context> 929 <context context-type="linenumber">120</context>
978 </context-group> 930 </context-group>
979 </trans-unit> 931 </trans-unit>
980 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011"> 932 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011">
981 <source>Administrator</source> 933 <source>Administrator</source>
982 <target>Administratörs</target> 934 <target>Administratörs</target>
983 <context-group name="null"> 935 <context-group name="null">
984 <context context-type="linenumber">116</context> 936 <context context-type="linenumber">123</context>
985 </context-group> 937 </context-group>
986 </trans-unit> 938 </trans-unit>
987 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> 939 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587">
988 <source>Admin email</source> 940 <source>Admin email</source>
989 <target>Admin e-post</target> 941 <target>Admin e-post</target>
990 <context-group name="null"> 942 <context-group name="null">
991 <context context-type="linenumber">119</context> 943 <context context-type="linenumber">126</context>
992 </context-group> 944 </context-group>
993 </trans-unit> 945 </trans-unit>
994 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be"> 946 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be">
995 <source>Users</source> 947 <source>Users</source>
996 <target>Användare</target> 948 <target>Användare</target>
997 <context-group name="null"> 949 <context-group name="null">
998 <context context-type="linenumber">129</context> 950 <context context-type="linenumber">136</context>
999 </context-group> 951 </context-group>
1000 </trans-unit> 952 </trans-unit>
1001 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09"> 953 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09">
1002 <source>User default video quota</source> 954 <source>User default video quota</source>
1003 <target>Standardkvot för användares videor</target> 955 <target>Standardkvot för användares videor</target>
1004 <context-group name="null"> 956 <context-group name="null">
1005 <context context-type="linenumber">132</context> 957 <context context-type="linenumber">139</context>
1006 </context-group> 958 </context-group>
1007 </trans-unit> 959 </trans-unit>
1008 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5"> 960 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5">
@@ -1016,194 +968,133 @@
1016 <source>Twitter</source> 968 <source>Twitter</source>
1017 <target>Twitter</target> 969 <target>Twitter</target>
1018 <context-group name="null"> 970 <context-group name="null">
1019 <context context-type="linenumber">148</context> 971 <context context-type="linenumber">170</context>
1020 </context-group> 972 </context-group>
1021 </trans-unit> 973 </trans-unit>
1022 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> 974 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524">
1023 <source>Your Twitter username</source> 975 <source>Your Twitter username</source>
1024 <target>Ditt Twitter-användarnamn</target> 976 <target>Ditt Twitter-användarnamn</target>
1025 <context-group name="null"> 977 <context-group name="null">
1026 <context context-type="linenumber">151</context> 978 <context context-type="linenumber">173</context>
1027 </context-group> 979 </context-group>
1028 </trans-unit> 980 </trans-unit>
1029 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c"> 981 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c">
1030 <source>Indicates the Twitter account for the website or platform on which the content was published.</source> 982 <source>Indicates the Twitter account for the website or platform on which the content was published.</source>
1031 <target>Anger webbplatsens eller plattformens Twitterkonto, på vilken innehållet publicerades.</target> 983 <target>Anger webbplatsens eller plattformens Twitterkonto, på vilken innehållet publicerades.</target>
1032 <context-group name="null"> 984 <context-group name="null">
1033 <context context-type="linenumber">154</context> 985 <context context-type="linenumber">176</context>
1034 </context-group> 986 </context-group>
1035 </trans-unit> 987 </trans-unit>
1036 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605"> 988 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605">
1037 <source>Instance whitelisted by Twitter</source> 989 <source>Instance whitelisted by Twitter</source>
1038 <target>Instans vitlistad av Twitter</target> 990 <target>Instans vitlistad av Twitter</target>
1039 <context-group name="null"> 991 <context-group name="null">
1040 <context context-type="linenumber">167</context> 992 <context context-type="linenumber">189</context>
1041 </context-group>
1042 </trans-unit>
1043 <trans-unit id="3f008a1a07ca42c6ad258fde1bbd80ed74ada19b">
1044 <source>If your instance is whitelisted by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.&lt;br /&gt;
1045If the instance is not whitelisted, we use an image link card that will redirect on your PeerTube instance.&lt;br /&gt;&lt;br /&gt;
1046Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; to see if you instance is whitelisted.</source>
1047 <target>Om din instans är vitlistad av Twitter kommer en videospelare bäddas in i Twitterflödet när en PeerTube-video delas.&lt;br /&gt;
1048Om instansen inte är vitlistad kommer vi använda en bildlänk som omdirigerar till din PeerTube-instans.&lt;br /&gt;&lt;br /&gt;
1049Kryssa i rutan,spara konfigureringen och testa med en videolänk från din instans (https://example.com/videos/watch/blabla) till &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; för att se om din instans är vitlistad.</target>
1050 <context-group name="null">
1051 <context context-type="linenumber">168</context>
1052 </context-group> 993 </context-group>
1053 </trans-unit> 994 </trans-unit>
1054 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> 995 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5">
1055 <source>Services</source> 996 <source>Services</source>
1056 <target>Tjänster</target> 997 <target>Tjänster</target>
1057 <context-group name="null"> 998 <context-group name="null">
1058 <context context-type="linenumber">146</context> 999 <context context-type="linenumber">168</context>
1059 </context-group> 1000 </context-group>
1060 </trans-unit> 1001 </trans-unit>
1061 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490"> 1002 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490">
1062 <source>Transcoding</source> 1003 <source>Transcoding</source>
1063 <target>Omkodning</target> 1004 <target>Omkodning</target>
1064 <context-group name="null"> 1005 <context-group name="null">
1065 <context context-type="linenumber">176</context> 1006 <context context-type="linenumber">200</context>
1066 </context-group> 1007 </context-group>
1067 </trans-unit> 1008 </trans-unit>
1068 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> 1009 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9">
1069 <source>Transcoding enabled</source> 1010 <source>Transcoding enabled</source>
1070 <target>Omkodning aktiverad</target> 1011 <target>Omkodning aktiverad</target>
1071 <context-group name="null"> 1012 <context-group name="null">
1072 <context context-type="linenumber">180</context> 1013 <context context-type="linenumber">204</context>
1073 </context-group> 1014 </context-group>
1074 </trans-unit> 1015 </trans-unit>
1075 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> 1016 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f">
1076 <source>If you disable transcoding, many videos from your users will not work!</source> 1017 <source>If you disable transcoding, many videos from your users will not work!</source>
1077 <target>Om du avaktiverar omkodning, kommer många av dina användares videor inte fungera!</target> 1018 <target>Om du avaktiverar omkodning, kommer många av dina användares videor inte fungera!</target>
1078 <context-group name="null"> 1019 <context-group name="null">
1079 <context context-type="linenumber">181</context> 1020 <context context-type="linenumber">205</context>
1080 </context-group> 1021 </context-group>
1081 </trans-unit> 1022 </trans-unit>
1082 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> 1023 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2">
1083 <source>Transcoding threads</source> 1024 <source>Transcoding threads</source>
1084 <target>Omkodningstrådar</target> 1025 <target>Omkodningstrådar</target>
1085 <context-group name="null"> 1026 <context-group name="null">
1086 <context context-type="linenumber">187</context> 1027 <context context-type="linenumber">211</context>
1087 </context-group> 1028 </context-group>
1088 </trans-unit> 1029 </trans-unit>
1089 <trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500"> 1030 <trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500">
1090 <source>Resolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> enabled</source> 1031 <source>Resolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> enabled</source>
1091 <target>Upplösningen <x id="INTERPOLATION" equiv-text="{{resolution}}"/> tillåten</target> 1032 <target>Upplösningen <x id="INTERPOLATION" equiv-text="{{resolution}}"/> tillåten</target>
1092 <context-group name="null"> 1033 <context-group name="null">
1093 <context context-type="linenumber">203</context> 1034 <context context-type="linenumber">227</context>
1094 </context-group>
1095 </trans-unit>
1096 <trans-unit id="f86acfe567b75b7ea85af6f1cb3efb88085dfb9a">
1097 <source>
1098 Cache
1099
1100 <x id="START_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;my-help&gt;"/><x id="CLOSE_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;/my-help&gt;"/>
1101 </source>
1102 <target>
1103 Cache
1104
1105 <x id="START_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;my-help&gt;"/><x id="CLOSE_TAG_MY-HELP" ctype="x-my-help" equiv-text="&lt;/my-help&gt;"/>
1106 </target>
1107 <context-group name="null">
1108 <context context-type="linenumber">209</context>
1109 </context-group> 1035 </context-group>
1110 </trans-unit> 1036 </trans-unit>
1111 <trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0"> 1037 <trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0">
1112 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source> 1038 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source>
1113 <target>Vissa filer är inte federerade (till exempel förhandsvisningar och undertexter). Vi kan hämta dem direkt från ursprungsinstansen och cachelagra dem.</target> 1039 <target>Vissa filer är inte federerade (till exempel förhandsvisningar och undertexter). Vi kan hämta dem direkt från ursprungsinstansen och cachelagra dem.</target>
1114 <context-group name="null"> 1040 <context-group name="null">
1115 <context context-type="linenumber">214</context> 1041 <context context-type="linenumber">238</context>
1116 </context-group> 1042 </context-group>
1117 </trans-unit> 1043 </trans-unit>
1118 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7"> 1044 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7">
1119 <source>Previews cache size</source> 1045 <source>Previews cache size</source>
1120 <target>Förhandsvisningens cachestorlek</target> 1046 <target>Förhandsvisningens cachestorlek</target>
1121 <context-group name="null"> 1047 <context-group name="null">
1122 <context context-type="linenumber">219</context> 1048 <context context-type="linenumber">243</context>
1123 </context-group> 1049 </context-group>
1124 </trans-unit> 1050 </trans-unit>
1125 <trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607"> 1051 <trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607">
1126 <source>Video captions cache size</source> 1052 <source>Video captions cache size</source>
1127 <target>Undertexternas cachestorlek</target> 1053 <target>Undertexternas cachestorlek</target>
1128 <context-group name="null"> 1054 <context-group name="null">
1129 <context context-type="linenumber">230</context> 1055 <context context-type="linenumber">254</context>
1130 </context-group> 1056 </context-group>
1131 </trans-unit> 1057 </trans-unit>
1132 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c"> 1058 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c">
1133 <source>Customizations</source> 1059 <source>Customizations</source>
1134 <target>Anpassningar</target> 1060 <target>Anpassningar</target>
1135 <context-group name="null"> 1061 <context-group name="null">
1136 <context context-type="linenumber">240</context> 1062 <context context-type="linenumber">264</context>
1137 </context-group> 1063 </context-group>
1138 </trans-unit> 1064 </trans-unit>
1139 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> 1065 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c">
1140 <source>JavaScript</source> 1066 <source>JavaScript</source>
1141 <target>JavaScript</target> 1067 <target>JavaScript</target>
1142 <context-group name="null"> 1068 <context-group name="null">
1143 <context context-type="linenumber">243</context> 1069 <context context-type="linenumber">267</context>
1144 </context-group> 1070 </context-group>
1145 </trans-unit> 1071 </trans-unit>
1146 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c"> 1072 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c">
1147 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source> 1073 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source>
1148 <target>Skriv direkt med JavaScript-kod.&lt;br /&gt;Exempel: &lt;pre&gt;console.log('min instans är fantastisk');&lt;/pre&gt;</target> 1074 <target>Skriv direkt med JavaScript-kod.&lt;br /&gt;Exempel: &lt;pre&gt;console.log('min instans är fantastisk');&lt;/pre&gt;</target>
1149 <context-group name="null"> 1075 <context-group name="null">
1150 <context context-type="linenumber">246</context> 1076 <context context-type="linenumber">270</context>
1151 </context-group>
1152 </trans-unit>
1153 <trans-unit id="f133b08d6519081bfb8ef51cff4bf2b3af23dde6">
1154 <source>
1155 Write directly CSS code. Example:&lt;br /&gt;
1156 &lt;pre&gt;
1157 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1158 background-color: red;
1159 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1160 &lt;/pre&gt;
1161
1162 Prepend with &lt;em&gt;#custom-css&lt;/em&gt; to override styles. Example:
1163 &lt;pre&gt;
1164 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1165 color: red;
1166 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1167 &lt;/pre&gt;
1168 </source>
1169 <target>
1170 Skriv direkt med CSS-kod. Exempel:&lt;br /&gt;
1171 &lt;pre&gt;
1172 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1173 background-color: red;
1174 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1175 &lt;/pre&gt;
1176
1177 Lägg till &lt;em&gt;#custom-css&lt;/em&gt; först för att åsidosätta stilmallarna. Exempel:
1178 &lt;pre&gt;
1179 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
1180 color: red;
1181 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
1182 &lt;/pre&gt;
1183 </target>
1184 <context-group name="null">
1185 <context context-type="linenumber">262</context>
1186 </context-group> 1077 </context-group>
1187 </trans-unit> 1078 </trans-unit>
1188 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> 1079 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab">
1189 <source>Advanced configuration</source> 1080 <source>Advanced configuration</source>
1190 <target>Avancerad konfiguration</target> 1081 <target>Avancerad konfiguration</target>
1191 <context-group name="null"> 1082 <context-group name="null">
1192 <context context-type="linenumber">174</context> 1083 <context context-type="linenumber">197</context>
1193 </context-group> 1084 </context-group>
1194 </trans-unit> 1085 </trans-unit>
1195 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> 1086 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8">
1196 <source>Update configuration</source> 1087 <source>Update configuration</source>
1197 <target>Uppdatera konfiguration</target> 1088 <target>Uppdatera konfiguration</target>
1198 <context-group name="null"> 1089 <context-group name="null">
1199 <context context-type="linenumber">289</context> 1090 <context context-type="linenumber">314</context>
1200 </context-group> 1091 </context-group>
1201 </trans-unit> 1092 </trans-unit>
1202 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca"> 1093 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca">
1203 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source> 1094 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source>
1204 <target>Det verkar som att konfigurationen inte stämmer. Sök efter tänkbara fel i de olika flikarna.</target> 1095 <target>Det verkar som att konfigurationen inte stämmer. Sök efter tänkbara fel i de olika flikarna.</target>
1205 <context-group name="null"> 1096 <context-group name="null">
1206 <context context-type="linenumber">290</context> 1097 <context context-type="linenumber">315</context>
1207 </context-group> 1098 </context-group>
1208 </trans-unit> 1099 </trans-unit>
1209 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c"> 1100 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c">
@@ -1226,26 +1117,6 @@ Hantera följare</target>
1226 <context context-type="linenumber">7</context> 1117 <context context-type="linenumber">7</context>
1227 </context-group> 1118 </context-group>
1228 </trans-unit> 1119 </trans-unit>
1229 <trans-unit id="1c9406213cf05033eda4d3df678217b5eb822315">
1230 <source>
1231 Video abuses
1232 </source>
1233 <target>
1234Videomissbruk</target>
1235 <context-group name="null">
1236 <context context-type="linenumber">11</context>
1237 </context-group>
1238 </trans-unit>
1239 <trans-unit id="96ccede058f0022f34230c3adc09e60076b6d037">
1240 <source>
1241 Video blacklist
1242 </source>
1243 <target>
1244Videosvartlista</target>
1245 <context-group name="null">
1246 <context context-type="linenumber">15</context>
1247 </context-group>
1248 </trans-unit>
1249 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368"> 1120 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368">
1250 <source> 1121 <source>
1251 Jobs 1122 Jobs
@@ -1253,7 +1124,7 @@ Videosvartlista</target>
1253 <target> 1124 <target>
1254Jobb</target> 1125Jobb</target>
1255 <context-group name="null"> 1126 <context-group name="null">
1256 <context context-type="linenumber">19</context> 1127 <context context-type="linenumber">15</context>
1257 </context-group> 1128 </context-group>
1258 </trans-unit> 1129 </trans-unit>
1259 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13"> 1130 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13">
@@ -1263,7 +1134,7 @@ Jobb</target>
1263 <target> 1134 <target>
1264Konfiguration</target> 1135Konfiguration</target>
1265 <context-group name="null"> 1136 <context-group name="null">
1266 <context context-type="linenumber">23</context> 1137 <context context-type="linenumber">19</context>
1267 </context-group> 1138 </context-group>
1268 </trans-unit> 1139 </trans-unit>
1269 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396"> 1140 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396">
@@ -1332,6 +1203,27 @@ Det verkar som du inte är på en HTTPS-server. Din webbserver behöver ha TLS a
1332 <context context-type="linenumber">2</context> 1203 <context context-type="linenumber">2</context>
1333 </context-group> 1204 </context-group>
1334 </trans-unit> 1205 </trans-unit>
1206 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936">
1207 <source>Following</source>
1208 <target>Följer</target>
1209 <context-group name="null">
1210 <context context-type="linenumber">5</context>
1211 </context-group>
1212 </trans-unit>
1213 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
1214 <source>Follow</source>
1215 <target>Följ</target>
1216 <context-group name="null">
1217 <context context-type="linenumber">7</context>
1218 </context-group>
1219 </trans-unit>
1220 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
1221 <source>Followers</source>
1222 <target>Följare</target>
1223 <context-group name="null">
1224 <context context-type="linenumber">9</context>
1225 </context-group>
1226 </trans-unit>
1335 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f"> 1227 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f">
1336 <source>Jobs list</source> 1228 <source>Jobs list</source>
1337 <target>Jobblista</target> 1229 <target>Jobblista</target>
@@ -1392,14 +1284,7 @@ Det verkar som du inte är på en HTTPS-server. Din webbserver behöver ha TLS a
1392 <source>Role</source> 1284 <source>Role</source>
1393 <target>Roll</target> 1285 <target>Roll</target>
1394 <context-group name="null"> 1286 <context-group name="null">
1395 <context context-type="linenumber">19</context> 1287 <context context-type="linenumber">20</context>
1396 </context-group>
1397 </trans-unit>
1398 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
1399 <source>Video quota</source>
1400 <target>Videokvot</target>
1401 <context-group name="null">
1402 <context context-type="linenumber">18</context>
1403 </context-group> 1288 </context-group>
1404 </trans-unit> 1289 </trans-unit>
1405 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345"> 1290 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345">
@@ -1415,6 +1300,13 @@ Det verkar som du inte är på en HTTPS-server. Din webbserver behöver ha TLS a
1415 <context context-type="linenumber">65</context> 1300 <context context-type="linenumber">65</context>
1416 </context-group> 1301 </context-group>
1417 </trans-unit> 1302 </trans-unit>
1303 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
1304 <source>Reason...</source>
1305 <target>Anledning …</target>
1306 <context-group name="null">
1307 <context context-type="linenumber">11</context>
1308 </context-group>
1309 </trans-unit>
1418 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f"> 1310 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f">
1419 <source>Users list</source> 1311 <source>Users list</source>
1420 <target>Användarlista</target> 1312 <target>Användarlista</target>
@@ -1426,91 +1318,42 @@ Det verkar som du inte är på en HTTPS-server. Din webbserver behöver ha TLS a
1426 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source> 1318 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1427 <target>Användarnamn <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target> 1319 <target>Användarnamn <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1428 <context-group name="null"> 1320 <context-group name="null">
1429 <context context-type="linenumber">16</context> 1321 <context context-type="linenumber">17</context>
1430 </context-group>
1431 </trans-unit>
1432 <trans-unit id="0c7e8870481f1287af6a142f538391d8c16c2408">
1433 <source>Video abuses list</source>
1434 <target>Missbrukslita över videor</target>
1435 <context-group name="null">
1436 <context context-type="linenumber">2</context>
1437 </context-group>
1438 </trans-unit>
1439 <trans-unit id="4ba250869daa372b54d24fafc0ea934769ee4076">
1440 <source>Reason</source>
1441 <target>Anledning</target>
1442 <context-group name="null">
1443 <context context-type="linenumber">11</context>
1444 </context-group> 1322 </context-group>
1445 </trans-unit> 1323 </trans-unit>
1446 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2"> 1324 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2">
1447 <source>Reporter</source> 1325 <source>Reporter</source>
1448 <target>Anmälare</target> 1326 <target>Anmälare</target>
1449 <context-group name="null"> 1327 <context-group name="null">
1450 <context context-type="linenumber">12</context> 1328 <context context-type="linenumber">8</context>
1451 </context-group> 1329 </context-group>
1452 </trans-unit> 1330 </trans-unit>
1453 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4"> 1331 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4">
1454 <source>Video</source> 1332 <source>Video</source>
1455 <target>Video</target> 1333 <target>Video</target>
1456 <context-group name="null"> 1334 <context-group name="null">
1457 <context context-type="linenumber">9</context> 1335 <context context-type="linenumber">14</context>
1458 </context-group> 1336 </context-group>
1459 </trans-unit> 1337 </trans-unit>
1460 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7"> 1338 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7">
1461 <source>Go to the account</source> 1339 <source>Go to the account</source>
1462 <target>Gå till kontot</target> 1340 <target>Gå till kontot</target>
1463 <context-group name="null"> 1341 <context-group name="null">
1464 <context context-type="linenumber">22</context> 1342 <context context-type="linenumber">27</context>
1465 </context-group> 1343 </context-group>
1466 </trans-unit> 1344 </trans-unit>
1467 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5"> 1345 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5">
1468 <source>Go to the video</source> 1346 <source>Go to the video</source>
1469 <target>Gå till videon</target> 1347 <target>Gå till videon</target>
1470 <context-group name="null"> 1348 <context-group name="null">
1471 <context context-type="linenumber">28</context> 1349 <context context-type="linenumber">33</context>
1472 </context-group> 1350 </context-group>
1473 </trans-unit> 1351 </trans-unit>
1474 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1"> 1352 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1">
1475 <source>Blacklisted videos</source> 1353 <source>Blacklisted videos</source>
1476 <target>Svartlistade videor</target> 1354 <target>Svartlistade videor</target>
1477 <context-group name="null"> 1355 <context-group name="null">
1478 <context context-type="linenumber">2</context> 1356 <context context-type="linenumber">7</context>
1479 </context-group>
1480 </trans-unit>
1481 <trans-unit id="7c02d113e9b7884037834cddecf2a32a5538b35b">
1482 <source>Name <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1483 <target>Namn <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1484 <context-group name="null">
1485 <context context-type="linenumber">11</context>
1486 </context-group>
1487 </trans-unit>
1488 <trans-unit id="cd5ca5da9e2fa21571e9f86a24a5c3b45a3ddc51">
1489 <source>Views <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1490 <target>Visningar <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1491 <context-group name="null">
1492 <context context-type="linenumber">13</context>
1493 </context-group>
1494 </trans-unit>
1495 <trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9">
1496 <source>NSFW</source>
1497 <target>NSFW</target>
1498 <context-group name="null">
1499 <context context-type="linenumber">14</context>
1500 </context-group>
1501 </trans-unit>
1502 <trans-unit id="8c87d9527af7ff2ada84c911516a9e43a352e401">
1503 <source>UUID</source>
1504 <target>UUID</target>
1505 <context-group name="null">
1506 <context context-type="linenumber">15</context>
1507 </context-group>
1508 </trans-unit>
1509 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1510 <source>Unblacklist</source>
1511 <target>Ta bort från svartlista</target>
1512 <context-group name="null">
1513 <context context-type="linenumber">30</context>
1514 </context-group> 1357 </context-group>
1515 </trans-unit> 1358 </trans-unit>
1516 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6"> 1359 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6">
@@ -1520,25 +1363,11 @@ Det verkar som du inte är på en HTTPS-server. Din webbserver behöver ha TLS a
1520 <context context-type="linenumber">3</context> 1363 <context context-type="linenumber">3</context>
1521 </context-group> 1364 </context-group>
1522 </trans-unit> 1365 </trans-unit>
1523 <trans-unit id="520d68b2c9f7dacaf2a5073716cad9bd328ea7e7">
1524 <source>My video channels</source>
1525 <target>Mina videokanaler</target>
1526 <context-group name="null">
1527 <context context-type="linenumber">5</context>
1528 </context-group>
1529 </trans-unit>
1530 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894"> 1366 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894">
1531 <source>My videos</source> 1367 <source>My videos</source>
1532 <target>Mina videor</target> 1368 <target>Mina videor</target>
1533 <context-group name="null"> 1369 <context-group name="null">
1534 <context context-type="linenumber">7</context> 1370 <context context-type="linenumber">14</context>
1535 </context-group>
1536 </trans-unit>
1537 <trans-unit id="0bb0c57c6d12635d26996c124248e748b666e5ad">
1538 <source>My video imports</source>
1539 <target>Mina importerade videor</target>
1540 <context-group name="null">
1541 <context context-type="linenumber">9</context>
1542 </context-group> 1371 </context-group>
1543 </trans-unit> 1372 </trans-unit>
1544 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48"> 1373 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48">
@@ -1569,6 +1398,13 @@ Det verkar som du inte är på en HTTPS-server. Din webbserver behöver ha TLS a
1569 <context context-type="linenumber">18</context> 1398 <context context-type="linenumber">18</context>
1570 </context-group> 1399 </context-group>
1571 </trans-unit> 1400 </trans-unit>
1401 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
1402 <source>Submit</source>
1403 <target>Skicka</target>
1404 <context-group name="null">
1405 <context context-type="linenumber">24</context>
1406 </context-group>
1407 </trans-unit>
1572 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79"> 1408 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79">
1573 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 1409 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
1574 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visningar</target> 1410 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visningar</target>
@@ -1576,11 +1412,15 @@ Det verkar som du inte är på en HTTPS-server. Din webbserver behöver ha TLS a
1576 <context context-type="linenumber">19</context> 1412 <context context-type="linenumber">19</context>
1577 </context-group> 1413 </context-group>
1578 </trans-unit> 1414 </trans-unit>
1579 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7"> 1415 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
1580 <source>Delete</source> 1416 <source>
1581 <target>Ta bort</target> 1417 Cancel
1418 </source>
1419 <target>
1420 Avbryt
1421 </target>
1582 <context-group name="null"> 1422 <context-group name="null">
1583 <context context-type="linenumber">15</context> 1423 <context context-type="linenumber">30</context>
1584 </context-group> 1424 </context-group>
1585 </trans-unit> 1425 </trans-unit>
1586 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260"> 1426 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260">
@@ -1594,7 +1434,7 @@ Det verkar som du inte är på en HTTPS-server. Din webbserver behöver ha TLS a
1594 <source>Go to the channel</source> 1434 <source>Go to the channel</source>
1595 <target>Gå till kanalen</target> 1435 <target>Gå till kanalen</target>
1596 <context-group name="null"> 1436 <context-group name="null">
1597 <context context-type="linenumber">15</context> 1437 <context context-type="linenumber">8</context>
1598 </context-group> 1438 </context-group>
1599 </trans-unit> 1439 </trans-unit>
1600 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68"> 1440 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68">
@@ -1617,7 +1457,7 @@ When you will upload a video in this channel, the video support field will be au
1617 <target>Kort text som berättar hur andra kan stödja din kanal (medlemsplattform …).&lt;br /&gt;&lt;br /&gt; 1457 <target>Kort text som berättar hur andra kan stödja din kanal (medlemsplattform …).&lt;br /&gt;&lt;br /&gt;
1618När du laddar upp en video i den här kanalen kommer supportfältet automatiskt fyllas in med den här texten.</target> 1458När du laddar upp en video i den här kanalen kommer supportfältet automatiskt fyllas in med den här texten.</target>
1619 <context-group name="null"> 1459 <context-group name="null">
1620 <context context-type="linenumber">36</context> 1460 <context context-type="linenumber">52</context>
1621 </context-group> 1461 </context-group>
1622 </trans-unit> 1462 </trans-unit>
1623 <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191"> 1463 <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191">
@@ -1627,11 +1467,25 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
1627 <context context-type="linenumber">8</context> 1467 <context context-type="linenumber">8</context>
1628 </context-group> 1468 </context-group>
1629 </trans-unit> 1469 </trans-unit>
1470 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1471 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1472 <target>Skapad av <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1473 <context-group name="null">
1474 <context context-type="linenumber">17</context>
1475 </context-group>
1476 </trans-unit>
1477 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1478 <source>Go the owner account page</source>
1479 <target>Gå till ägarens kontosida</target>
1480 <context-group name="null">
1481 <context context-type="linenumber">16</context>
1482 </context-group>
1483 </trans-unit>
1630 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9"> 1484 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9">
1631 <source>Change password</source> 1485 <source>Change password</source>
1632 <target>Ändra lösenord</target> 1486 <target>Ändra lösenord</target>
1633 <context-group name="null"> 1487 <context-group name="null">
1634 <context context-type="linenumber">19</context> 1488 <context context-type="linenumber">22</context>
1635 </context-group> 1489 </context-group>
1636 </trans-unit> 1490 </trans-unit>
1637 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229"> 1491 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229">
@@ -1708,20 +1562,6 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
1708 <context context-type="linenumber">1</context> 1562 <context context-type="linenumber">1</context>
1709 </context-group> 1563 </context-group>
1710 </trans-unit> 1564 </trans-unit>
1711 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1712 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1713 <target>Skapad av <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target>
1714 <context-group name="null">
1715 <context context-type="linenumber">14</context>
1716 </context-group>
1717 </trans-unit>
1718 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1719 <source>Go the owner account page</source>
1720 <target>Gå till ägarens kontosida</target>
1721 <context-group name="null">
1722 <context context-type="linenumber">13</context>
1723 </context-group>
1724 </trans-unit>
1725 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8"> 1565 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8">
1726 <source>Support this channel</source> 1566 <source>Support this channel</source>
1727 <target>Stöd den här kanalen</target> 1567 <target>Stöd den här kanalen</target>
@@ -1740,7 +1580,7 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
1740 <source>URL</source> 1580 <source>URL</source>
1741 <target>URL</target> 1581 <target>URL</target>
1742 <context-group name="null"> 1582 <context-group name="null">
1743 <context context-type="linenumber">12</context> 1583 <context context-type="linenumber">17</context>
1744 </context-group> 1584 </context-group>
1745 </trans-unit> 1585 </trans-unit>
1746 <trans-unit id="bfe7f34fbd4c3afa5f84a5580e0fae942cad2333"> 1586 <trans-unit id="bfe7f34fbd4c3afa5f84a5580e0fae942cad2333">
@@ -1754,14 +1594,14 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
1754 <source>Channel</source> 1594 <source>Channel</source>
1755 <target>Kanal</target> 1595 <target>Kanal</target>
1756 <context-group name="null"> 1596 <context-group name="null">
1757 <context context-type="linenumber">35</context> 1597 <context context-type="linenumber">38</context>
1758 </context-group> 1598 </context-group>
1759 </trans-unit> 1599 </trans-unit>
1760 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427"> 1600 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427">
1761 <source>Privacy</source> 1601 <source>Privacy</source>
1762 <target>Offentlighetsstatus</target> 1602 <target>Offentlighetsstatus</target>
1763 <context-group name="null"> 1603 <context-group name="null">
1764 <context context-type="linenumber">143</context> 1604 <context context-type="linenumber">161</context>
1765 </context-group> 1605 </context-group>
1766 </trans-unit> 1606 </trans-unit>
1767 <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2"> 1607 <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2">
@@ -1779,7 +1619,7 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
1779 <source>Update</source> 1619 <source>Update</source>
1780 <target>Uppdatera</target> 1620 <target>Uppdatera</target>
1781 <context-group name="null"> 1621 <context-group name="null">
1782 <context context-type="linenumber">105</context> 1622 <context context-type="linenumber">92</context>
1783 </context-group> 1623 </context-group>
1784 </trans-unit> 1624 </trans-unit>
1785 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> 1625 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9">
@@ -1853,46 +1693,35 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
1853 <source>Upload a file</source> 1693 <source>Upload a file</source>
1854 <target>Lada upp en fil</target> 1694 <target>Lada upp en fil</target>
1855 <context-group name="null"> 1695 <context-group name="null">
1856 <context context-type="linenumber">9</context> 1696 <context context-type="linenumber">10</context>
1857 </context-group> 1697 </context-group>
1858 </trans-unit> 1698 </trans-unit>
1859 <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470"> 1699 <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470">
1860 <source>Import with URL</source> 1700 <source>Import with URL</source>
1861 <target>Importera med URL</target> 1701 <target>Importera med URL</target>
1862 <context-group name="null"> 1702 <context-group name="null">
1863 <context context-type="linenumber">13</context> 1703 <context context-type="linenumber">17</context>
1864 </context-group> 1704 </context-group>
1865 </trans-unit> 1705 </trans-unit>
1866 <trans-unit id="752c401d7dcd708944eef60e411187f71d882340"> 1706 <trans-unit id="752c401d7dcd708944eef60e411187f71d882340">
1867 <source>Import with torrent</source> 1707 <source>Import with torrent</source>
1868 <target>Importera med torrent</target> 1708 <target>Importera med torrent</target>
1869 <context-group name="null"> 1709 <context-group name="null">
1870 <context context-type="linenumber">17</context> 1710 <context context-type="linenumber">24</context>
1871 </context-group> 1711 </context-group>
1872 </trans-unit> 1712 </trans-unit>
1873 <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0"> 1713 <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0">
1874 <source>Add caption</source> 1714 <source>Add caption</source>
1875 <target>Lägg till bildtext</target> 1715 <target>Lägg till bildtext</target>
1876 <context-group name="null"> 1716 <context-group name="null">
1877 <context context-type="linenumber">7</context> 1717 <context context-type="linenumber">5</context>
1878 </context-group> 1718 </context-group>
1879 </trans-unit> 1719 </trans-unit>
1880 <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8"> 1720 <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8">
1881 <source>Select the caption file</source> 1721 <source>Select the caption file</source>
1882 <target>Välj en undertextfil</target> 1722 <target>Välj en undertextfil</target>
1883 <context-group name="null"> 1723 <context-group name="null">
1884 <context context-type="linenumber">25</context> 1724 <context context-type="linenumber">24</context>
1885 </context-group>
1886 </trans-unit>
1887 <trans-unit id="a40a8a9f8359eda00c6a79809e9499100fde3ffd">
1888 <source>
1889 This will replace an existing caption!
1890 </source>
1891 <target>
1892 Detta kommer ersätta en befintlig text!
1893 </target>
1894 <context-group name="null">
1895 <context context-type="linenumber">30</context>
1896 </context-group> 1725 </context-group>
1897 </trans-unit> 1726 </trans-unit>
1898 <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c"> 1727 <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c">
@@ -1906,63 +1735,63 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
1906 <source>Title</source> 1735 <source>Title</source>
1907 <target>Titel</target> 1736 <target>Titel</target>
1908 <context-group name="null"> 1737 <context-group name="null">
1909 <context context-type="linenumber">7</context> 1738 <context context-type="linenumber">9</context>
1910 </context-group> 1739 </context-group>
1911 </trans-unit> 1740 </trans-unit>
1912 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b"> 1741 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b">
1913 <source>Tags</source> 1742 <source>Tags</source>
1914 <target>Taggar</target> 1743 <target>Taggar</target>
1915 <context-group name="null"> 1744 <context-group name="null">
1916 <context context-type="linenumber">175</context> 1745 <context context-type="linenumber">193</context>
1917 </context-group>
1918 </trans-unit>
1919 <trans-unit id="935e7146fe6c12169abfda18536c5856935cfd82">
1920 <source>(press Enter to add)</source>
1921 <target>(tryck Enter för att lägga till)</target>
1922 <context-group name="null">
1923 <context context-type="linenumber">15</context>
1924 </context-group> 1746 </context-group>
1925 </trans-unit> 1747 </trans-unit>
1926 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e"> 1748 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e">
1927 <source>Video descriptions are truncated by default and require manual action to expand them.</source> 1749 <source>Video descriptions are truncated by default and require manual action to expand them.</source>
1928 <target>Videobeskrivningar kortas ner som standard och manuell åtgärd krävs för att visa hela.</target> 1750 <target>Videobeskrivningar kortas ner som standard och manuell åtgärd krävs för att visa hela.</target>
1929 <context-group name="null"> 1751 <context-group name="null">
1930 <context context-type="linenumber">24</context> 1752 <context context-type="linenumber">27</context>
1931 </context-group> 1753 </context-group>
1932 </trans-unit> 1754 </trans-unit>
1933 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> 1755 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5">
1934 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source> 1756 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source>
1935 <target>Schemalägg publicering (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target> 1757 <target>Schemalägg publicering (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target>
1936 <context-group name="null"> 1758 <context-group name="null">
1937 <context context-type="linenumber">101</context> 1759 <context context-type="linenumber">104</context>
1938 </context-group> 1760 </context-group>
1939 </trans-unit> 1761 </trans-unit>
1940 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee"> 1762 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee">
1941 <source>This video contains mature or explicit content</source> 1763 <source>This video contains mature or explicit content</source>
1942 <target>Den här videon innehåller oförbehållsamt innehåll eller innehåll skapat för vuxna</target> 1764 <target>Den här videon innehåller oförbehållsamt innehåll eller innehåll skapat för vuxna</target>
1943 <context-group name="null"> 1765 <context-group name="null">
1944 <context context-type="linenumber">115</context> 1766 <context context-type="linenumber">118</context>
1945 </context-group> 1767 </context-group>
1946 </trans-unit> 1768 </trans-unit>
1947 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644"> 1769 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644">
1948 <source>Some instances do not list videos containing mature or explicit content by default.</source> 1770 <source>Some instances do not list videos containing mature or explicit content by default.</source>
1949 <target>Vissa instanser listar inte videor med oförbehållsamt innehåll eller innehåll skapat för vuxna</target> 1771 <target>Vissa instanser listar inte videor med oförbehållsamt innehåll eller innehåll skapat för vuxna</target>
1950 <context-group name="null"> 1772 <context-group name="null">
1951 <context context-type="linenumber">116</context> 1773 <context context-type="linenumber">119</context>
1952 </context-group> 1774 </context-group>
1953 </trans-unit> 1775 </trans-unit>
1954 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a"> 1776 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a">
1955 <source>Enable video comments</source> 1777 <source>Enable video comments</source>
1956 <target>Tillåt videokommentarer</target> 1778 <target>Tillåt videokommentarer</target>
1957 <context-group name="null"> 1779 <context-group name="null">
1958 <context context-type="linenumber">121</context> 1780 <context context-type="linenumber">124</context>
1781 </context-group>
1782 </trans-unit>
1783 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0">
1784 <source>Wait transcoding before publishing the video</source>
1785 <target>Publicera video när omkodningen är avklarad</target>
1786 <context-group name="null">
1787 <context context-type="linenumber">129</context>
1959 </context-group> 1788 </context-group>
1960 </trans-unit> 1789 </trans-unit>
1961 <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63"> 1790 <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63">
1962 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source> 1791 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source>
1963 <target>Om du väljer att inte vänta på omkodningen innan publicering, kommer videon inte gå att spela förrän omkodningen är färdig.</target> 1792 <target>Om du väljer att inte vänta på omkodningen innan publicering, kommer videon inte gå att spela förrän omkodningen är färdig.</target>
1964 <context-group name="null"> 1793 <context-group name="null">
1965 <context context-type="linenumber">127</context> 1794 <context context-type="linenumber">130</context>
1966 </context-group> 1795 </context-group>
1967 </trans-unit> 1796 </trans-unit>
1968 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7"> 1797 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7">
@@ -1976,70 +1805,70 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
1976 <source>Add another caption</source> 1805 <source>Add another caption</source>
1977 <target>Lägg till ännu en text</target> 1806 <target>Lägg till ännu en text</target>
1978 <context-group name="null"> 1807 <context-group name="null">
1979 <context context-type="linenumber">139</context> 1808 <context context-type="linenumber">145</context>
1980 </context-group> 1809 </context-group>
1981 </trans-unit> 1810 </trans-unit>
1982 <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed"> 1811 <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed">
1983 <source>See the subtitle file</source> 1812 <source>See the subtitle file</source>
1984 <target>Se undertextfilen</target> 1813 <target>Se undertextfilen</target>
1985 <context-group name="null"> 1814 <context-group name="null">
1986 <context context-type="linenumber">148</context> 1815 <context context-type="linenumber">154</context>
1987 </context-group> 1816 </context-group>
1988 </trans-unit> 1817 </trans-unit>
1989 <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9"> 1818 <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9">
1990 <source>Cancel create</source> 1819 <source>Cancel create</source>
1991 <target>Avbryt skapande</target> 1820 <target>Avbryt skapande</target>
1992 <context-group name="null"> 1821 <context-group name="null">
1993 <context context-type="linenumber">162</context> 1822 <context context-type="linenumber">168</context>
1994 </context-group> 1823 </context-group>
1995 </trans-unit> 1824 </trans-unit>
1996 <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c"> 1825 <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c">
1997 <source>Cancel deletion</source> 1826 <source>Cancel deletion</source>
1998 <target>Avbryt radering</target> 1827 <target>Avbryt radering</target>
1999 <context-group name="null"> 1828 <context-group name="null">
2000 <context context-type="linenumber">170</context> 1829 <context context-type="linenumber">176</context>
2001 </context-group> 1830 </context-group>
2002 </trans-unit> 1831 </trans-unit>
2003 <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93"> 1832 <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93">
2004 <source>Captions</source> 1833 <source>Captions</source>
2005 <target>Texter</target> 1834 <target>Texter</target>
2006 <context-group name="null"> 1835 <context-group name="null">
2007 <context context-type="linenumber">133</context> 1836 <context context-type="linenumber">138</context>
2008 </context-group> 1837 </context-group>
2009 </trans-unit> 1838 </trans-unit>
2010 <trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513"> 1839 <trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513">
2011 <source>Upload thumbnail</source> 1840 <source>Upload thumbnail</source>
2012 <target>Ladda upp miniatyrbild</target> 1841 <target>Ladda upp miniatyrbild</target>
2013 <context-group name="null"> 1842 <context-group name="null">
2014 <context context-type="linenumber">186</context> 1843 <context context-type="linenumber">194</context>
2015 </context-group> 1844 </context-group>
2016 </trans-unit> 1845 </trans-unit>
2017 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639"> 1846 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639">
2018 <source>Upload preview</source> 1847 <source>Upload preview</source>
2019 <target>Ladda upp förhandsvisning</target> 1848 <target>Ladda upp förhandsvisning</target>
2020 <context-group name="null"> 1849 <context-group name="null">
2021 <context context-type="linenumber">193</context> 1850 <context context-type="linenumber">201</context>
2022 </context-group> 1851 </context-group>
2023 </trans-unit> 1852 </trans-unit>
2024 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604"> 1853 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604">
2025 <source>Support</source> 1854 <source>Support</source>
2026 <target>Stötta</target> 1855 <target>Stötta</target>
2027 <context-group name="null"> 1856 <context-group name="null">
2028 <context context-type="linenumber">71</context> 1857 <context context-type="linenumber">69</context>
2029 </context-group> 1858 </context-group>
2030 </trans-unit> 1859 </trans-unit>
2031 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0"> 1860 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0">
2032 <source>Short text to tell people how they can support you (membership platform...).</source> 1861 <source>Short text to tell people how they can support you (membership platform...).</source>
2033 <target>Kort text för att berätta hur andra kan stödja dig (medlemsplattform …).</target> 1862 <target>Kort text för att berätta hur andra kan stödja dig (medlemsplattform …).</target>
2034 <context-group name="null"> 1863 <context-group name="null">
2035 <context context-type="linenumber">200</context> 1864 <context context-type="linenumber">208</context>
2036 </context-group> 1865 </context-group>
2037 </trans-unit> 1866 </trans-unit>
2038 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1"> 1867 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1">
2039 <source>Advanced settings</source> 1868 <source>Advanced settings</source>
2040 <target>Avancerade inställningar</target> 1869 <target>Avancerade inställningar</target>
2041 <context-group name="null"> 1870 <context-group name="null">
2042 <context context-type="linenumber">182</context> 1871 <context context-type="linenumber">189</context>
2043 </context-group> 1872 </context-group>
2044 </trans-unit> 1873 </trans-unit>
2045 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0"> 1874 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0">
@@ -2057,99 +1886,63 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
2057 <source>Download video</source> 1886 <source>Download video</source>
2058 <target>Ladda ner video</target> 1887 <target>Ladda ner video</target>
2059 <context-group name="null"> 1888 <context-group name="null">
2060 <context context-type="linenumber">7</context> 1889 <context context-type="linenumber">3</context>
2061 </context-group> 1890 </context-group>
2062 </trans-unit> 1891 </trans-unit>
2063 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c"> 1892 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c">
2064 <source>Direct download</source> 1893 <source>Direct download</source>
2065 <target>Direktnerladdning</target> 1894 <target>Direktnerladdning</target>
2066 <context-group name="null"> 1895 <context-group name="null">
2067 <context context-type="linenumber">20</context> 1896 <context context-type="linenumber">17</context>
2068 </context-group> 1897 </context-group>
2069 </trans-unit> 1898 </trans-unit>
2070 <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d"> 1899 <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d">
2071 <source>Torrent (.torrent file)</source> 1900 <source>Torrent (.torrent file)</source>
2072 <target>Torrent (.torrent-fil)</target> 1901 <target>Torrent (.torrent-fil)</target>
2073 <context-group name="null"> 1902 <context-group name="null">
2074 <context context-type="linenumber">25</context> 1903 <context context-type="linenumber">22</context>
2075 </context-group> 1904 </context-group>
2076 </trans-unit> 1905 </trans-unit>
2077 <trans-unit id="2db8d7cf6a3071f4c1519ef2b5e2713d9ff4e87f"> 1906 <trans-unit id="2db8d7cf6a3071f4c1519ef2b5e2713d9ff4e87f">
2078 <source>Torrent (magnet link)</source> 1907 <source>Torrent (magnet link)</source>
2079 <target>Torrent (magnet-länk)</target> 1908 <target>Torrent (magnet-länk)</target>
2080 <context-group name="null"> 1909 <context-group name="null">
2081 <context context-type="linenumber">30</context> 1910 <context context-type="linenumber">27</context>
2082 </context-group> 1911 </context-group>
2083 </trans-unit> 1912 </trans-unit>
2084 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> 1913 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd">
2085 <source>Download</source> 1914 <source>Download</source>
2086 <target>Ladda ner</target> 1915 <target>Ladda ner</target>
2087 <context-group name="null"> 1916 <context-group name="null">
2088 <context context-type="linenumber">87</context> 1917 <context context-type="linenumber">84</context>
2089 </context-group> 1918 </context-group>
2090 </trans-unit> 1919 </trans-unit>
2091 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b"> 1920 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b">
2092 <source>Report video</source> 1921 <source>Report video</source>
2093 <target>Anmäl video</target> 1922 <target>Anmäl video</target>
2094 <context-group name="null"> 1923 <context-group name="null">
2095 <context context-type="linenumber">7</context> 1924 <context context-type="linenumber">3</context>
2096 </context-group>
2097 </trans-unit>
2098 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
2099 <source>Reason...</source>
2100 <target>Anledning …</target>
2101 <context-group name="null">
2102 <context context-type="linenumber">14</context>
2103 </context-group>
2104 </trans-unit>
2105 <trans-unit id="0e6b8229bd65f93bc8040d0fb598967f220740c7">
2106 <source>
2107 Cancel
2108 </source>
2109 <target>
2110 Avbryt
2111 </target>
2112 <context-group name="null">
2113 <context context-type="linenumber">22</context>
2114 </context-group>
2115 </trans-unit>
2116 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
2117 <source>Submit</source>
2118 <target>Skicka</target>
2119 <context-group name="null">
2120 <context context-type="linenumber">27</context>
2121 </context-group> 1925 </context-group>
2122 </trans-unit> 1926 </trans-unit>
2123 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9"> 1927 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9">
2124 <source>Share</source> 1928 <source>Share</source>
2125 <target>Dela</target> 1929 <target>Dela</target>
2126 <context-group name="null"> 1930 <context-group name="null">
2127 <context context-type="linenumber">76</context> 1931 <context context-type="linenumber">74</context>
2128 </context-group>
2129 </trans-unit>
2130 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
2131 <source>Embed</source>
2132 <target>Bädda in</target>
2133 <context-group name="null">
2134 <context context-type="linenumber">24</context>
2135 </context-group>
2136 </trans-unit>
2137 <trans-unit id="239fe0316cfe91aa6e1e7bf1ef19e3b7772131f8">
2138 <source>
2139 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).
2140 </source>
2141 <target>
2142 URL:en är inte säker (utan HTTPS), så inbäddade videor kommer inte fungera på webbplatser med HTTPS (webbläsare stoppar osäkra HTTP-förfrågningar på webbplatser med HTTPS ).
2143 </target>
2144 <context-group name="null">
2145 <context context-type="linenumber">35</context>
2146 </context-group> 1932 </context-group>
2147 </trans-unit> 1933 </trans-unit>
2148 <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f"> 1934 <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f">
2149 <source>QR-Code</source> 1935 <source>QR-Code</source>
2150 <target>QR-kod</target> 1936 <target>QR-kod</target>
2151 <context-group name="null"> 1937 <context-group name="null">
2152 <context context-type="linenumber">40</context> 1938 <context context-type="linenumber">29</context>
1939 </context-group>
1940 </trans-unit>
1941 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
1942 <source>Embed</source>
1943 <target>Bädda in</target>
1944 <context-group name="null">
1945 <context context-type="linenumber">34</context>
2153 </context-group> 1946 </context-group>
2154 </trans-unit> 1947 </trans-unit>
2155 <trans-unit id="7584313e33a66811eb10646627914a01fff0347d"> 1948 <trans-unit id="7584313e33a66811eb10646627914a01fff0347d">
@@ -2174,174 +1967,116 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
2174 <context context-type="linenumber">15</context> 1967 <context context-type="linenumber">15</context>
2175 </context-group> 1968 </context-group>
2176 </trans-unit> 1969 </trans-unit>
2177 <trans-unit id="fbc205ea3d06fa8f65973fa3b490ae172f71c087">
2178 <source>
2179 This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
2180 </source>
2181 <target>
2182 Videon kommer publiceras <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
2183 </target>
2184 <context-group name="null">
2185 <context context-type="linenumber">19</context>
2186 </context-group>
2187 </trans-unit>
2188 <trans-unit id="643ab402461b1169eebbe2ed790e12a9a83551aa">
2189 <source>
2190 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views
2191 </source>
2192 <target>
2193 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> visningar
2194 </target>
2195 <context-group name="null">
2196 <context context-type="linenumber">30</context>
2197 </context-group>
2198 </trans-unit>
2199 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
2200 <source>Go the channel page</source>
2201 <target>Gå till kanalens sida</target>
2202 <context-group name="null">
2203 <context context-type="linenumber">35</context>
2204 </context-group>
2205 </trans-unit>
2206 <trans-unit id="ccc07df383b7a32be3e2e105faa5488caf261c1c">
2207 <source>By <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></source>
2208 <target>Av <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></target>
2209 <context-group name="null">
2210 <context context-type="linenumber">45</context>
2211 </context-group>
2212 </trans-unit>
2213 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
2214 <source>Go to the account page</source>
2215 <target>Gå till kontots sida</target>
2216 <context-group name="null">
2217 <context context-type="linenumber">44</context>
2218 </context-group>
2219 </trans-unit>
2220 <trans-unit id="57075c778cf28b81272df4eb17da944366c98e51">
2221 <source>You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; and subscribe there. Subscription as a PeerTube user is being worked on in &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</source>
2222 <target>Du kan prenumerera på det här kontot via valfri fediverse-instans med stöd för ActivityPub. Med till exempel Mastodon eller Pleroma kan du skriva &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; i sökrutan och bli prenumerant där. Prenumeration som PeerTube-användare är en funktion vi arbetar på i &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</target>
2223 <context-group name="null">
2224 <context context-type="linenumber">49</context>
2225 </context-group>
2226 </trans-unit>
2227 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced"> 1970 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced">
2228 <source>Like this video</source> 1971 <source>Like this video</source>
2229 <target>Gilla den här videon</target> 1972 <target>Gilla den här videon</target>
2230 <context-group name="null"> 1973 <context-group name="null">
2231 <context context-type="linenumber">59</context> 1974 <context context-type="linenumber">57</context>
2232 </context-group> 1975 </context-group>
2233 </trans-unit> 1976 </trans-unit>
2234 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509"> 1977 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509">
2235 <source>Dislike this video</source> 1978 <source>Dislike this video</source>
2236 <target>Ogilla den här videon</target> 1979 <target>Ogilla den här videon</target>
2237 <context-group name="null"> 1980 <context-group name="null">
2238 <context context-type="linenumber">66</context> 1981 <context context-type="linenumber">64</context>
2239 </context-group> 1982 </context-group>
2240 </trans-unit> 1983 </trans-unit>
2241 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2"> 1984 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2">
2242 <source>Download the video</source> 1985 <source>Download the video</source>
2243 <target>Ladda ner videon</target> 1986 <target>Ladda ner videon</target>
2244 <context-group name="null"> 1987 <context-group name="null">
2245 <context context-type="linenumber">86</context> 1988 <context context-type="linenumber">83</context>
2246 </context-group> 1989 </context-group>
2247 </trans-unit> 1990 </trans-unit>
2248 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a"> 1991 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a">
2249 <source>Report</source> 1992 <source>Report</source>
2250 <target>Rapportera</target> 1993 <target>Rapportera</target>
2251 <context-group name="null"> 1994 <context-group name="null">
2252 <context context-type="linenumber">93</context> 1995 <context context-type="linenumber">88</context>
2253 </context-group> 1996 </context-group>
2254 </trans-unit> 1997 </trans-unit>
2255 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf"> 1998 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf">
2256 <source>Report this video</source> 1999 <source>Report this video</source>
2257 <target>Rapportera den här videon</target> 2000 <target>Rapportera den här videon</target>
2258 <context-group name="null"> 2001 <context-group name="null">
2259 <context context-type="linenumber">92</context> 2002 <context context-type="linenumber">87</context>
2003 </context-group>
2004 </trans-unit>
2005 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1">
2006 <source>Update this video</source>
2007 <target>Uppdatera den här videon</target>
2008 <context-group name="null">
2009 <context context-type="linenumber">91</context>
2260 </context-group> 2010 </context-group>
2261 </trans-unit> 2011 </trans-unit>
2262 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61"> 2012 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61">
2263 <source>Blacklist</source> 2013 <source>Blacklist</source>
2264 <target>Svartlista</target> 2014 <target>Svartlista</target>
2265 <context-group name="null"> 2015 <context-group name="null">
2266 <context context-type="linenumber">99</context> 2016 <context context-type="linenumber">96</context>
2267 </context-group> 2017 </context-group>
2268 </trans-unit> 2018 </trans-unit>
2269 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037"> 2019 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037">
2270 <source>Blacklist this video</source> 2020 <source>Blacklist this video</source>
2271 <target>Svartlista den här videon</target> 2021 <target>Svartlista den här videon</target>
2272 <context-group name="null"> 2022 <context-group name="null">
2273 <context context-type="linenumber">98</context> 2023 <context context-type="linenumber">95</context>
2274 </context-group> 2024 </context-group>
2275 </trans-unit> 2025 </trans-unit>
2276 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1"> 2026 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
2277 <source>Update this video</source> 2027 <source>Unblacklist</source>
2278 <target>Uppdatera den r videon</target> 2028 <target>Ta bort från svartlista</target>
2279 <context-group name="null"> 2029 <context-group name="null">
2280 <context context-type="linenumber">104</context> 2030 <context context-type="linenumber">100</context>
2281 </context-group> 2031 </context-group>
2282 </trans-unit> 2032 </trans-unit>
2283 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5"> 2033 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5">
2284 <source>Delete this video</source> 2034 <source>Delete this video</source>
2285 <target>Radera den här videon</target> 2035 <target>Radera den här videon</target>
2286 <context-group name="null"> 2036 <context-group name="null">
2287 <context context-type="linenumber">110</context> 2037 <context context-type="linenumber">103</context>
2288 </context-group> 2038 </context-group>
2289 </trans-unit> 2039 </trans-unit>
2290 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b"> 2040 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
2291 <source>Show more</source> 2041 <source>Go the channel page</source>
2292 <target>Visa mer</target> 2042 <target>Gå till kanalens sida</target>
2293 <context-group name="null">
2294 <context context-type="linenumber">130</context>
2295 </context-group>
2296 </trans-unit>
2297 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903">
2298 <source>Show less</source>
2299 <target>Visa mindre</target>
2300 <context-group name="null"> 2043 <context-group name="null">
2301 <context context-type="linenumber">136</context> 2044 <context context-type="linenumber">123</context>
2302 </context-group> 2045 </context-group>
2303 </trans-unit> 2046 </trans-unit>
2304 <trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1"> 2047 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
2305 <source> 2048 <source>Go to the account page</source>
2306 Other videos 2049 <target>Gå till kontots sida</target>
2307 </source>
2308 <target>
2309 Andra videor
2310 </target>
2311 <context-group name="null"> 2050 <context-group name="null">
2312 <context context-type="linenumber">187</context> 2051 <context context-type="linenumber">133</context>
2313 </context-group> 2052 </context-group>
2314 </trans-unit> 2053 </trans-unit>
2315 <trans-unit id="fb779d2b25c4d0ffa7d52c823a240717e8c1fe6c"> 2054 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b">
2316 <source>Friendly Reminder:</source> 2055 <source>Show more</source>
2317 <target>Vänlig minnelse:</target> 2056 <target>Visa mer</target>
2318 <context-group name="null"> 2057 <context-group name="null">
2319 <context context-type="linenumber">199</context> 2058 <context context-type="linenumber">148</context>
2320 </context-group> 2059 </context-group>
2321 </trans-unit> 2060 </trans-unit>
2322 <trans-unit id="329900dd14bc4ca33cec3775d25c246e4cde7867"> 2061 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903">
2323 <source> 2062 <source>Show less</source>
2324 The sharing system used by this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. 2063 <target>Visa mindre</target>
2325 </source>
2326 <target>
2327 Delningssystemet den här videon använder medför att en del teknisk information om ditt system (såsom publik IP-adress) kan skickas till andra serventer.
2328 </target>
2329 <context-group name="null"> 2064 <context-group name="null">
2330 <context context-type="linenumber">201</context> 2065 <context context-type="linenumber">154</context>
2331 </context-group> 2066 </context-group>
2332 </trans-unit> 2067 </trans-unit>
2333 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e"> 2068 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e">
2334 <source>More information</source> 2069 <source>More information</source>
2335 <target>Mer information</target> 2070 <target>Mer information</target>
2336 <context-group name="null"> 2071 <context-group name="null">
2337 <context context-type="linenumber">204</context> 2072 <context context-type="linenumber">214</context>
2338 </context-group> 2073 </context-group>
2339 </trans-unit> 2074 </trans-unit>
2340 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318"> 2075 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318">
2341 <source>Get more information</source> 2076 <source>Get more information</source>
2342 <target>Visa mer information</target> 2077 <target>Visa mer information</target>
2343 <context-group name="null"> 2078 <context-group name="null">
2344 <context context-type="linenumber">204</context> 2079 <context context-type="linenumber">214</context>
2345 </context-group> 2080 </context-group>
2346 </trans-unit> 2081 </trans-unit>
2347 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f"> 2082 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f">
@@ -2352,7 +2087,7 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
2352 OK 2087 OK
2353 </target> 2088 </target>
2354 <context-group name="null"> 2089 <context-group name="null">
2355 <context context-type="linenumber">207</context> 2090 <context context-type="linenumber">217</context>
2356 </context-group> 2091 </context-group>
2357 </trans-unit> 2092 </trans-unit>
2358 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7"> 2093 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7">
@@ -2413,7 +2148,7 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
2413 Publicera kommentar 2148 Publicera kommentar
2414 </target> 2149 </target>
2415 <context-group name="null"> 2150 <context-group name="null">
2416 <context context-type="linenumber">17</context> 2151 <context context-type="linenumber">18</context>
2417 </context-group> 2152 </context-group>
2418 </trans-unit> 2153 </trans-unit>
2419 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> 2154 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285">
@@ -2430,6 +2165,13 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
2430 <context context-type="linenumber">14</context> 2165 <context context-type="linenumber">14</context>
2431 </context-group> 2166 </context-group>
2432 </trans-unit> 2167 </trans-unit>
2168 <trans-unit id="814d28bf9dcbd3122254e664b446ac8e0442bc08">
2169 <source>Error getting about from server</source>
2170 <target>Kan inte hämta information om instansen från servern</target>
2171 <context-group name="null">
2172 <context context-type="linenumber">1</context>
2173 </context-group>
2174 </trans-unit>
2433 <trans-unit id="37b56526e384f843a15323dc730b484a97b4c968"> 2175 <trans-unit id="37b56526e384f843a15323dc730b484a97b4c968">
2434 <source>No description</source> 2176 <source>No description</source>
2435 <target>Ingen beskrivning</target> 2177 <target>Ingen beskrivning</target>
@@ -2570,23 +2312,9 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
2570 <context context-type="linenumber">1</context> 2312 <context context-type="linenumber">1</context>
2571 </context-group> 2313 </context-group>
2572 </trans-unit> 2314 </trans-unit>
2573 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936"> 2315 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2574 <source>Following</source> 2316 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2575 <target>Följer</target> 2317 <target>Videon <x id="INTERPOLATION" equiv-text="{{name}}"/> har tagits bort från svartlistan.</target>
2576 <context-group name="null">
2577 <context context-type="linenumber">1</context>
2578 </context-group>
2579 </trans-unit>
2580 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
2581 <source>Follow</source>
2582 <target>Följ</target>
2583 <context-group name="null">
2584 <context context-type="linenumber">1</context>
2585 </context-group>
2586 </trans-unit>
2587 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
2588 <source>Followers</source>
2589 <target>Följare</target>
2590 <context-group name="null"> 2318 <context-group name="null">
2591 <context context-type="linenumber">1</context> 2319 <context context-type="linenumber">1</context>
2592 </context-group> 2320 </context-group>
@@ -2640,27 +2368,6 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
2640 <context context-type="linenumber">1</context> 2368 <context context-type="linenumber">1</context>
2641 </context-group> 2369 </context-group>
2642 </trans-unit> 2370 </trans-unit>
2643 <trans-unit id="4733ad1d7e63960438c0203b9a64f165b5fc84f2">
2644 <source>Do you really want to remove this video from the blacklist ? It will be available again in the videos list.</source>
2645 <target>Vill du verkligen ta bort den här videon från svartlistan? Den kommer läggas in i videolistan på nytt.</target>
2646 <context-group name="null">
2647 <context context-type="linenumber">1</context>
2648 </context-group>
2649 </trans-unit>
2650 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2651 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2652 <target>Videon <x id="INTERPOLATION" equiv-text="{{name}}"/> har tagits bort från svartlistan.</target>
2653 <context-group name="null">
2654 <context context-type="linenumber">1</context>
2655 </context-group>
2656 </trans-unit>
2657 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2658 <source>The new password and the confirmed password do not correspond.</source>
2659 <target>Det nya lösenordet och det bekräftade lösenordet stämmer inte överens.</target>
2660 <context-group name="null">
2661 <context context-type="linenumber">1</context>
2662 </context-group>
2663 </trans-unit>
2664 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc"> 2371 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc">
2665 <source>Password updated.</source> 2372 <source>Password updated.</source>
2666 <target>Lösenordet har uppdaterats.</target> 2373 <target>Lösenordet har uppdaterats.</target>
@@ -2808,6 +2515,13 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
2808 <context context-type="linenumber">1</context> 2515 <context context-type="linenumber">1</context>
2809 </context-group> 2516 </context-group>
2810 </trans-unit> 2517 </trans-unit>
2518 <trans-unit id="4a7e91ebe1cf184db5f2bfecf9c16ff81c9e2c02">
2519 <source>Waiting transcoding</source>
2520 <target>Inväntar omkodning</target>
2521 <context-group name="null">
2522 <context context-type="linenumber">1</context>
2523 </context-group>
2524 </trans-unit>
2811 <trans-unit id="21f1c9d5c67346c830aced4f670045fcf0aeb83a"> 2525 <trans-unit id="21f1c9d5c67346c830aced4f670045fcf0aeb83a">
2812 <source>To transcode</source> 2526 <source>To transcode</source>
2813 <target>Att omkoda</target> 2527 <target>Att omkoda</target>
@@ -2822,6 +2536,13 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
2822 <context context-type="linenumber">1</context> 2536 <context context-type="linenumber">1</context>
2823 </context-group> 2537 </context-group>
2824 </trans-unit> 2538 </trans-unit>
2539 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2540 <source>Unable to find user id or verification string.</source>
2541 <target>Kan inte hitta användar-id eller verifikationssträng.</target>
2542 <context-group name="null">
2543 <context context-type="linenumber">1</context>
2544 </context-group>
2545 </trans-unit>
2825 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7"> 2546 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7">
2826 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>. 2547 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>.
2827</source> 2548</source>
@@ -2859,13 +2580,6 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
2859 <context context-type="linenumber">1</context> 2580 <context context-type="linenumber">1</context>
2860 </context-group> 2581 </context-group>
2861 </trans-unit> 2582 </trans-unit>
2862 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2863 <source>Unable to find user id or verification string.</source>
2864 <target>Kan inte hitta användar-id eller verifikationssträng.</target>
2865 <context-group name="null">
2866 <context context-type="linenumber">1</context>
2867 </context-group>
2868 </trans-unit>
2869 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26"> 2583 <trans-unit id="b0f24b7136e551a0deba831f1525711245b31a26">
2870 <source>Your password has been successfully reset!</source> 2584 <source>Your password has been successfully reset!</source>
2871 <target>Ditt lösenord har återställts!</target> 2585 <target>Ditt lösenord har återställts!</target>
@@ -3055,13 +2769,6 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
3055 <context context-type="linenumber">1</context> 2769 <context context-type="linenumber">1</context>
3056 </context-group> 2770 </context-group>
3057 </trans-unit> 2771 </trans-unit>
3058 <trans-unit id="ba88636d27c1a6a7e1f75ff57ec182b30b851c2e">
3059 <source>Transcoding threads must be greater than 1.</source>
3060 <target>Antalet omkodningstrådar måste vara större än 1.</target>
3061 <context-group name="null">
3062 <context context-type="linenumber">1</context>
3063 </context-group>
3064 </trans-unit>
3065 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149"> 2772 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149">
3066 <source>Username is required.</source> 2773 <source>Username is required.</source>
3067 <target>Användarnamn måste fyllas i.</target> 2774 <target>Användarnamn måste fyllas i.</target>
@@ -3132,6 +2839,13 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
3132 <context context-type="linenumber">1</context> 2839 <context context-type="linenumber">1</context>
3133 </context-group> 2840 </context-group>
3134 </trans-unit> 2841 </trans-unit>
2842 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2843 <source>The new password and the confirmed password do not correspond.</source>
2844 <target>Det nya lösenordet och det bekräftade lösenordet stämmer inte överens.</target>
2845 <context-group name="null">
2846 <context context-type="linenumber">1</context>
2847 </context-group>
2848 </trans-unit>
3135 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf"> 2849 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf">
3136 <source>Video quota is required.</source> 2850 <source>Video quota is required.</source>
3137 <target>Videokvot måste anges.</target> 2851 <target>Videokvot måste anges.</target>
@@ -3699,6 +3413,41 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
3699 <context context-type="linenumber">1</context> 3413 <context context-type="linenumber">1</context>
3700 </context-group> 3414 </context-group>
3701 </trans-unit> 3415 </trans-unit>
3416 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3417 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3418 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3419 <context-group name="null">
3420 <context context-type="linenumber">1</context>
3421 </context-group>
3422 </trans-unit>
3423 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3424 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3425 <target>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</target>
3426 <context-group name="null">
3427 <context context-type="linenumber">1</context>
3428 </context-group>
3429 </trans-unit>
3430 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3431 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3432 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> video i full HD</target>
3433 <context-group name="null">
3434 <context context-type="linenumber">1</context>
3435 </context-group>
3436 </trans-unit>
3437 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3438 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3439 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> video i HD</target>
3440 <context-group name="null">
3441 <context context-type="linenumber">1</context>
3442 </context-group>
3443 </trans-unit>
3444 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3445 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3446 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> video i standardupplösning</target>
3447 <context-group name="null">
3448 <context context-type="linenumber">1</context>
3449 </context-group>
3450 </trans-unit>
3702 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d"> 3451 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d">
3703 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source> 3452 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source>
3704 <target><x id="INTERPOLATION" equiv-text="{{interval}}"/> år sedan</target> 3453 <target><x id="INTERPOLATION" equiv-text="{{interval}}"/> år sedan</target>
@@ -3853,41 +3602,6 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
3853 <context context-type="linenumber">1</context> 3602 <context context-type="linenumber">1</context>
3854 </context-group> 3603 </context-group>
3855 </trans-unit> 3604 </trans-unit>
3856 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3857 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3858 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3859 <context-group name="null">
3860 <context context-type="linenumber">1</context>
3861 </context-group>
3862 </trans-unit>
3863 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3864 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3865 <target>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</target>
3866 <context-group name="null">
3867 <context context-type="linenumber">1</context>
3868 </context-group>
3869 </trans-unit>
3870 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3871 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3872 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> video i full HD</target>
3873 <context-group name="null">
3874 <context context-type="linenumber">1</context>
3875 </context-group>
3876 </trans-unit>
3877 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3878 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3879 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> video i HD</target>
3880 <context-group name="null">
3881 <context context-type="linenumber">1</context>
3882 </context-group>
3883 </trans-unit>
3884 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3885 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3886 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> video i standardupplösning</target>
3887 <context-group name="null">
3888 <context context-type="linenumber">1</context>
3889 </context-group>
3890 </trans-unit>
3891 <trans-unit id="320c9c3482a0ebe46da42ce9e0cbdc5ba26ea8bb"> 3605 <trans-unit id="320c9c3482a0ebe46da42ce9e0cbdc5ba26ea8bb">
3892 <source>Video to import updated.</source> 3606 <source>Video to import updated.</source>
3893 <target>Videon att importera har uppdaterats.</target> 3607 <target>Videon att importera har uppdaterats.</target>
@@ -3937,13 +3651,6 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
3937 <context context-type="linenumber">1</context> 3651 <context context-type="linenumber">1</context>
3938 </context-group> 3652 </context-group>
3939 </trans-unit> 3653 </trans-unit>
3940 <trans-unit id="d31d39e8ee9b2f20bffb3468ee062eaa5409c59f">
3941 <source>Your video quota is exceeded with this video (video size: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, used: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, quota: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</source>
3942 <target>Den här videon överskrider din lagringskvot (videostorlek: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, used: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, quota: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</target>
3943 <context-group name="null">
3944 <context context-type="linenumber">1</context>
3945 </context-group>
3946 </trans-unit>
3947 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce"> 3654 <trans-unit id="972fc644f847cf84e4732ec012915c4cdaf865ce">
3948 <source>Video published.</source> 3655 <source>Video published.</source>
3949 <target>Videon har publicerats.</target> 3656 <target>Videon har publicerats.</target>
@@ -3979,20 +3686,6 @@ När du laddar upp en video i den här kanalen kommer supportfältet automatiskt
3979 <context context-type="linenumber">1</context> 3686 <context context-type="linenumber">1</context>
3980 </context-group> 3687 </context-group>
3981 </trans-unit> 3688 </trans-unit>
3982 <trans-unit id="23b2c2f4dd69e29c3bff00469e259dcb01de5633">
3983 <source>Do you really want to blacklist this video?</source>
3984 <target>Vill du verkligen svartlista den här videon?</target>
3985 <context-group name="null">
3986 <context context-type="linenumber">1</context>
3987 </context-group>
3988 </trans-unit>
3989 <trans-unit id="cafd8ec6020e69f241a107b1cb7081bd9e773d4e">
3990 <source>Video <x id="INTERPOLATION" equiv-text="{{videoName}}"/> had been blacklisted.</source>
3991 <target>Videon <x id="INTERPOLATION" equiv-text="{{videoName}}"/> har svartlistats.</target>
3992 <context-group name="null">
3993 <context context-type="linenumber">1</context>
3994 </context-group>
3995 </trans-unit>
3996 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95"> 3689 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95">
3997 <source>Do you really want to delete this video?</source> 3690 <source>Do you really want to delete this video?</source>
3998 <target>Vill du verkligen radera den här videon?</target> 3691 <target>Vill du verkligen radera den här videon?</target>
diff --git a/client/src/locale/target/angular_zh_Hans_CN.xml b/client/src/locale/target/angular_zh_Hans_CN.xml
index 8f1c25694..eb560141c 100644
--- a/client/src/locale/target/angular_zh_Hans_CN.xml
+++ b/client/src/locale/target/angular_zh_Hans_CN.xml
@@ -3,29 +3,25 @@
3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1"> 3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1">
4 <file source-language="en-US" datatype="plaintext" original="" target-language="zh-Hans-CN"> 4 <file source-language="en-US" datatype="plaintext" original="" target-language="zh-Hans-CN">
5 <body> 5 <body>
6 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
7 <source>
8 Cancel
9 </source>
10 <target>
11 取消
12 </target>
13 <context-group name="null">
14 <context context-type="linenumber">45</context>
15 </context-group>
16 </trans-unit>
17 <trans-unit id="9d5f16f0233b39fa2cd843321407a7358c323ad8"> 6 <trans-unit id="9d5f16f0233b39fa2cd843321407a7358c323ad8">
18 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 7 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
19 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> 次观看</target> 8 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> 次观看</target>
20 <context-group name="null"> 9 <context-group name="null">
21 <context context-type="linenumber">34</context> 10 <context context-type="linenumber">12</context>
11 </context-group>
12 </trans-unit>
13 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7">
14 <source>Delete</source>
15 <target>删除</target>
16 <context-group name="null">
17 <context context-type="linenumber">15</context>
22 </context-group> 18 </context-group>
23 </trans-unit> 19 </trans-unit>
24 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> 20 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c">
25 <source>Edit</source> 21 <source>Edit</source>
26 <target>编辑</target> 22 <target>编辑</target>
27 <context-group name="null"> 23 <context-group name="null">
28 <context context-type="linenumber">3</context> 24 <context context-type="linenumber">5</context>
29 </context-group> 25 </context-group>
30 </trans-unit> 26 </trans-unit>
31 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> 27 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d">
@@ -39,7 +35,7 @@
39 <source>Complete preview</source> 35 <source>Complete preview</source>
40 <target>完成预览</target> 36 <target>完成预览</target>
41 <context-group name="null"> 37 <context-group name="null">
42 <context context-type="linenumber">10</context> 38 <context context-type="linenumber">13</context>
43 </context-group> 39 </context-group>
44 </trans-unit> 40 </trans-unit>
45 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> 41 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f">
@@ -49,6 +45,13 @@
49 <context context-type="linenumber">18</context> 45 <context context-type="linenumber">18</context>
50 </context-group> 46 </context-group>
51 </trans-unit> 47 </trans-unit>
48 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
49 <source>Video quota</source>
50 <target>视频存储空间</target>
51 <context-group name="null">
52 <context context-type="linenumber">19</context>
53 </context-group>
54 </trans-unit>
52 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea"> 55 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea">
53 <source> 56 <source>
54 Login 57 Login
@@ -64,14 +67,14 @@
64 <source>User</source> 67 <source>User</source>
65 <target>用户</target> 68 <target>用户</target>
66 <context-group name="null"> 69 <context-group name="null">
67 <context context-type="linenumber">11</context> 70 <context context-type="linenumber">13</context>
68 </context-group> 71 </context-group>
69 </trans-unit> 72 </trans-unit>
70 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> 73 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478">
71 <source>Username or email address</source> 74 <source>Username or email address</source>
72 <target>用户名或电子邮件地址</target> 75 <target>用户名或电子邮件地址</target>
73 <context-group name="null"> 76 <context-group name="null">
74 <context context-type="linenumber">13</context> 77 <context context-type="linenumber">15</context>
75 </context-group> 78 </context-group>
76 </trans-unit> 79 </trans-unit>
77 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87"> 80 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87">
@@ -81,7 +84,7 @@
81 <target> 84 <target>
82或创建一个帐户 </target> 85或创建一个帐户 </target>
83 <context-group name="null"> 86 <context-group name="null">
84 <context context-type="linenumber">16</context> 87 <context context-type="linenumber">18</context>
85 </context-group> 88 </context-group>
86 </trans-unit> 89 </trans-unit>
87 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b"> 90 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b">
@@ -91,14 +94,14 @@
91 <target> 94 <target>
92或在另一个机器上创建一个帐户 </target> 95或在另一个机器上创建一个帐户 </target>
93 <context-group name="null"> 96 <context-group name="null">
94 <context context-type="linenumber">20</context> 97 <context context-type="linenumber">22</context>
95 </context-group> 98 </context-group>
96 </trans-unit> 99 </trans-unit>
97 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3"> 100 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3">
98 <source>User registration is not allowed on this instance, but you can register on many others!</source> 101 <source>User registration is not allowed on this instance, but you can register on many others!</source>
99 <target>此实例不允许用户注册,但您可以在其它的许多实例上注册!</target> 102 <target>此实例不允许用户注册,但您可以在其它的许多实例上注册!</target>
100 <context-group name="null"> 103 <context-group name="null">
101 <context context-type="linenumber">26</context> 104 <context context-type="linenumber">28</context>
102 </context-group> 105 </context-group>
103 </trans-unit> 106 </trans-unit>
104 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> 107 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407">
@@ -112,35 +115,35 @@
112 <source>I forgot my password</source> 115 <source>I forgot my password</source>
113 <target>我忘记了我的密码</target> 116 <target>我忘记了我的密码</target>
114 <context-group name="null"> 117 <context-group name="null">
115 <context context-type="linenumber">42</context> 118 <context context-type="linenumber">44</context>
116 </context-group> 119 </context-group>
117 </trans-unit> 120 </trans-unit>
118 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681"> 121 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681">
119 <source>Forgot your password</source> 122 <source>Forgot your password</source>
120 <target>忘记密码</target> 123 <target>忘记密码</target>
121 <context-group name="null"> 124 <context-group name="null">
122 <context context-type="linenumber">59</context> 125 <context context-type="linenumber">57</context>
123 </context-group> 126 </context-group>
124 </trans-unit> 127 </trans-unit>
125 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc"> 128 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc">
126 <source>Email</source> 129 <source>Email</source>
127 <target>电子邮件地址</target> 130 <target>电子邮件地址</target>
128 <context-group name="null"> 131 <context-group name="null">
129 <context context-type="linenumber">17</context> 132 <context context-type="linenumber">8</context>
130 </context-group> 133 </context-group>
131 </trans-unit> 134 </trans-unit>
132 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529"> 135 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529">
133 <source>Email address</source> 136 <source>Email address</source>
134 <target>电子邮件地址</target> 137 <target>电子邮件地址</target>
135 <context-group name="null"> 138 <context-group name="null">
136 <context context-type="linenumber">66</context> 139 <context context-type="linenumber">10</context>
137 </context-group> 140 </context-group>
138 </trans-unit> 141 </trans-unit>
139 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55"> 142 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55">
140 <source>Send me an email to reset my password</source> 143 <source>Send me an email to reset my password</source>
141 <target>输入电子邮件 重置密码</target> 144 <target>输入电子邮件 重置密码</target>
142 <context-group name="null"> 145 <context-group name="null">
143 <context context-type="linenumber">77</context> 146 <context context-type="linenumber">75</context>
144 </context-group> 147 </context-group>
145 </trans-unit> 148 </trans-unit>
146 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa"> 149 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa">
@@ -184,24 +187,6 @@
184 <context context-type="linenumber">3</context> 187 <context context-type="linenumber">3</context>
185 </context-group> 188 </context-group>
186 </trans-unit> 189 </trans-unit>
187 <trans-unit id="a6807b834e01ce165aa61fad157b0ff4288b6bf1">
188 <source>Initial video quota:</source>
189 <target>初始视频大小限制:</target>
190 <context-group name="null">
191 <context context-type="linenumber">8</context>
192 </context-group>
193 </trans-unit>
194 <trans-unit id="87b6b2c26215c5e712d3bfe4cc86ba53bc23451c">
195 <source>
196 Unlimited
197 </source>
198 <target>
199 无限制
200 </target>
201 <context-group name="null">
202 <context context-type="linenumber">16</context>
203 </context-group>
204 </trans-unit>
205 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> 190 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48">
206 <source>Username</source> 191 <source>Username</source>
207 <target>用户名</target> 192 <target>用户名</target>
@@ -213,103 +198,70 @@
213 <source>Signup</source> 198 <source>Signup</source>
214 <target>注册</target> 199 <target>注册</target>
215 <context-group name="null"> 200 <context-group name="null">
216 <context context-type="linenumber">86</context> 201 <context context-type="linenumber">88</context>
217 </context-group> 202 </context-group>
218 </trans-unit> 203 </trans-unit>
219 <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96"> 204 <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96">
220 <source>Change the language</source> 205 <source>Change the language</source>
221 <target>更改语音</target> 206 <target>更改语音</target>
222 <context-group name="null"> 207 <context-group name="null">
223 <context context-type="linenumber">76</context> 208 <context context-type="linenumber">88</context>
224 </context-group>
225 </trans-unit>
226 <trans-unit id="b8ccc4f1b3f839fca9bd59e072f715fd487d540f">
227 <source>
228 My public profile
229 </source>
230 <target>
231 我的公开资料
232 </target>
233 <context-group name="null">
234 <context context-type="linenumber">19</context>
235 </context-group>
236 </trans-unit>
237 <trans-unit id="c84b721e9325c9cce20d92f4dbd66898ab5ec947">
238 <source>
239 My account
240 </source>
241 <target>
242 我的账号
243 </target>
244 <context-group name="null">
245 <context context-type="linenumber">23</context>
246 </context-group>
247 </trans-unit>
248 <trans-unit id="ba7378cdaaa60b4fee17a551b232ad3512dac17d">
249 <source>
250 Log out
251 </source>
252 <target>
253 注销
254 </target>
255 <context-group name="null">
256 <context context-type="linenumber">27</context>
257 </context-group> 209 </context-group>
258 </trans-unit> 210 </trans-unit>
259 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> 211 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9">
260 <source>Login</source> 212 <source>Login</source>
261 <target>登录</target> 213 <target>登录</target>
262 <context-group name="null"> 214 <context-group name="null">
263 <context context-type="linenumber">36</context> 215 <context context-type="linenumber">38</context>
264 </context-group> 216 </context-group>
265 </trans-unit> 217 </trans-unit>
266 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> 218 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87">
267 <source>Create an account</source> 219 <source>Create an account</source>
268 <target>创建账号</target> 220 <target>创建账号</target>
269 <context-group name="null"> 221 <context-group name="null">
270 <context context-type="linenumber">37</context> 222 <context context-type="linenumber">39</context>
271 </context-group> 223 </context-group>
272 </trans-unit> 224 </trans-unit>
273 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238"> 225 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238">
274 <source>Videos</source> 226 <source>Videos</source>
275 <target>视频</target> 227 <target>视频</target>
276 <context-group name="null"> 228 <context-group name="null">
277 <context context-type="linenumber">21</context> 229 <context context-type="linenumber">24</context>
278 </context-group> 230 </context-group>
279 </trans-unit> 231 </trans-unit>
280 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> 232 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807">
281 <source>Trending</source> 233 <source>Trending</source>
282 <target>趋势</target> 234 <target>趋势</target>
283 <context-group name="null"> 235 <context-group name="null">
284 <context context-type="linenumber">45</context> 236 <context context-type="linenumber">57</context>
285 </context-group> 237 </context-group>
286 </trans-unit> 238 </trans-unit>
287 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> 239 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1">
288 <source>Recently added</source> 240 <source>Recently added</source>
289 <target>最近添加</target> 241 <target>最近添加</target>
290 <context-group name="null"> 242 <context-group name="null">
291 <context context-type="linenumber">50</context> 243 <context context-type="linenumber">62</context>
292 </context-group> 244 </context-group>
293 </trans-unit> 245 </trans-unit>
294 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d"> 246 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d">
295 <source>Local</source> 247 <source>Local</source>
296 <target>本地</target> 248 <target>本地</target>
297 <context-group name="null"> 249 <context-group name="null">
298 <context context-type="linenumber">55</context> 250 <context context-type="linenumber">67</context>
299 </context-group> 251 </context-group>
300 </trans-unit> 252 </trans-unit>
301 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> 253 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919">
302 <source>Administration</source> 254 <source>Administration</source>
303 <target>管理</target> 255 <target>管理</target>
304 <context-group name="null"> 256 <context-group name="null">
305 <context context-type="linenumber">64</context> 257 <context context-type="linenumber">76</context>
306 </context-group> 258 </context-group>
307 </trans-unit> 259 </trans-unit>
308 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> 260 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a">
309 <source>About</source> 261 <source>About</source>
310 <target>关于</target> 262 <target>关于</target>
311 <context-group name="null"> 263 <context-group name="null">
312 <context context-type="linenumber">23</context> 264 <context context-type="linenumber">25</context>
313 </context-group> 265 </context-group>
314 </trans-unit> 266 </trans-unit>
315 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> 267 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599">
@@ -330,21 +282,21 @@
330 <source>Category</source> 282 <source>Category</source>
331 <target>分类</target> 283 <target>分类</target>
332 <context-group name="null"> 284 <context-group name="null">
333 <context context-type="linenumber">148</context> 285 <context context-type="linenumber">166</context>
334 </context-group> 286 </context-group>
335 </trans-unit> 287 </trans-unit>
336 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c"> 288 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c">
337 <source>Licence</source> 289 <source>Licence</source>
338 <target>协议</target> 290 <target>协议</target>
339 <context-group name="null"> 291 <context-group name="null">
340 <context context-type="linenumber">157</context> 292 <context context-type="linenumber">175</context>
341 </context-group> 293 </context-group>
342 </trans-unit> 294 </trans-unit>
343 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619"> 295 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619">
344 <source>Language</source> 296 <source>Language</source>
345 <target>语言</target> 297 <target>语言</target>
346 <context-group name="null"> 298 <context-group name="null">
347 <context context-type="linenumber">166</context> 299 <context context-type="linenumber">184</context>
348 </context-group> 300 </context-group>
349 </trans-unit> 301 </trans-unit>
350 <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e"> 302 <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e">
@@ -358,7 +310,7 @@
358 <source>Instance</source> 310 <source>Instance</source>
359 <target>例</target> 311 <target>例</target>
360 <context-group name="null"> 312 <context-group name="null">
361 <context context-type="linenumber">7</context> 313 <context context-type="linenumber">8</context>
362 </context-group> 314 </context-group>
363 </trans-unit> 315 </trans-unit>
364 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390"> 316 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390">
@@ -382,14 +334,14 @@
382 <source>Description</source> 334 <source>Description</source>
383 <target>描述</target> 335 <target>描述</target>
384 <context-group name="null"> 336 <context-group name="null">
385 <context context-type="linenumber">23</context> 337 <context context-type="linenumber">26</context>
386 </context-group> 338 </context-group>
387 </trans-unit> 339 </trans-unit>
388 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774"> 340 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774">
389 <source>Terms</source> 341 <source>Terms</source>
390 <target>条款</target> 342 <target>条款</target>
391 <context-group name="null"> 343 <context-group name="null">
392 <context context-type="linenumber">43</context> 344 <context context-type="linenumber">44</context>
393 </context-group> 345 </context-group>
394 </trans-unit> 346 </trans-unit>
395 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27"> 347 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27">
@@ -554,28 +506,28 @@
554 <source>Short description</source> 506 <source>Short description</source>
555 <target>简单说明</target> 507 <target>简单说明</target>
556 <context-group name="null"> 508 <context-group name="null">
557 <context context-type="linenumber">21</context> 509 <context context-type="linenumber">22</context>
558 </context-group> 510 </context-group>
559 </trans-unit> 511 </trans-unit>
560 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948"> 512 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948">
561 <source>Videos Trending</source> 513 <source>Videos Trending</source>
562 <target>视频</target> 514 <target>视频</target>
563 <context-group name="null"> 515 <context-group name="null">
564 <context context-type="linenumber">57</context> 516 <context context-type="linenumber">59</context>
565 </context-group> 517 </context-group>
566 </trans-unit> 518 </trans-unit>
567 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f"> 519 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f">
568 <source>Local videos</source> 520 <source>Local videos</source>
569 <target>本地视频</target> 521 <target>本地视频</target>
570 <context-group name="null"> 522 <context-group name="null">
571 <context context-type="linenumber">59</context> 523 <context context-type="linenumber">61</context>
572 </context-group> 524 </context-group>
573 </trans-unit> 525 </trans-unit>
574 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9"> 526 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9">
575 <source>Policy on videos containing sensitive content</source> 527 <source>Policy on videos containing sensitive content</source>
576 <target>关于包含敏感内容视频的方针</target> 528 <target>关于包含敏感内容视频的方针</target>
577 <context-group name="null"> 529 <context-group name="null">
578 <context context-type="linenumber">68</context> 530 <context context-type="linenumber">70</context>
579 </context-group> 531 </context-group>
580 </trans-unit> 532 </trans-unit>
581 <trans-unit id="5e155c34fb3ed8159bf0a486a366cfbc6874f9fe"> 533 <trans-unit id="5e155c34fb3ed8159bf0a486a366cfbc6874f9fe">
@@ -603,42 +555,42 @@
603 <source>Signup enabled</source> 555 <source>Signup enabled</source>
604 <target>开放注册</target> 556 <target>开放注册</target>
605 <context-group name="null"> 557 <context-group name="null">
606 <context context-type="linenumber">90</context> 558 <context context-type="linenumber">92</context>
607 </context-group> 559 </context-group>
608 </trans-unit> 560 </trans-unit>
609 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402"> 561 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402">
610 <source>Signup limit</source> 562 <source>Signup limit</source>
611 <target>注册限制</target> 563 <target>注册限制</target>
612 <context-group name="null"> 564 <context-group name="null">
613 <context context-type="linenumber">94</context> 565 <context context-type="linenumber">101</context>
614 </context-group> 566 </context-group>
615 </trans-unit> 567 </trans-unit>
616 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011"> 568 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011">
617 <source>Administrator</source> 569 <source>Administrator</source>
618 <target>管理员</target> 570 <target>管理员</target>
619 <context-group name="null"> 571 <context-group name="null">
620 <context context-type="linenumber">116</context> 572 <context context-type="linenumber">123</context>
621 </context-group> 573 </context-group>
622 </trans-unit> 574 </trans-unit>
623 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> 575 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587">
624 <source>Admin email</source> 576 <source>Admin email</source>
625 <target>管理员邮箱</target> 577 <target>管理员邮箱</target>
626 <context-group name="null"> 578 <context-group name="null">
627 <context context-type="linenumber">119</context> 579 <context context-type="linenumber">126</context>
628 </context-group> 580 </context-group>
629 </trans-unit> 581 </trans-unit>
630 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be"> 582 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be">
631 <source>Users</source> 583 <source>Users</source>
632 <target>用户</target> 584 <target>用户</target>
633 <context-group name="null"> 585 <context-group name="null">
634 <context context-type="linenumber">129</context> 586 <context context-type="linenumber">136</context>
635 </context-group> 587 </context-group>
636 </trans-unit> 588 </trans-unit>
637 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09"> 589 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09">
638 <source>User default video quota</source> 590 <source>User default video quota</source>
639 <target>用户的默认视频存储空间大小</target> 591 <target>用户的默认视频存储空间大小</target>
640 <context-group name="null"> 592 <context-group name="null">
641 <context context-type="linenumber">132</context> 593 <context context-type="linenumber">139</context>
642 </context-group> 594 </context-group>
643 </trans-unit> 595 </trans-unit>
644 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5"> 596 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5">
@@ -652,95 +604,84 @@
652 <source>Twitter</source> 604 <source>Twitter</source>
653 <target>Twitter</target> 605 <target>Twitter</target>
654 <context-group name="null"> 606 <context-group name="null">
655 <context context-type="linenumber">148</context> 607 <context context-type="linenumber">170</context>
656 </context-group> 608 </context-group>
657 </trans-unit> 609 </trans-unit>
658 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> 610 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524">
659 <source>Your Twitter username</source> 611 <source>Your Twitter username</source>
660 <target>你的 Twitter 用户名</target> 612 <target>你的 Twitter 用户名</target>
661 <context-group name="null"> 613 <context-group name="null">
662 <context context-type="linenumber">151</context> 614 <context context-type="linenumber">173</context>
663 </context-group> 615 </context-group>
664 </trans-unit> 616 </trans-unit>
665 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490"> 617 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490">
666 <source>Transcoding</source> 618 <source>Transcoding</source>
667 <target>正在转码</target> 619 <target>正在转码</target>
668 <context-group name="null"> 620 <context-group name="null">
669 <context context-type="linenumber">176</context> 621 <context context-type="linenumber">200</context>
670 </context-group> 622 </context-group>
671 </trans-unit> 623 </trans-unit>
672 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> 624 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9">
673 <source>Transcoding enabled</source> 625 <source>Transcoding enabled</source>
674 <target>转码被启用</target> 626 <target>转码被启用</target>
675 <context-group name="null"> 627 <context-group name="null">
676 <context context-type="linenumber">180</context> 628 <context context-type="linenumber">204</context>
677 </context-group> 629 </context-group>
678 </trans-unit> 630 </trans-unit>
679 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> 631 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f">
680 <source>If you disable transcoding, many videos from your users will not work!</source> 632 <source>If you disable transcoding, many videos from your users will not work!</source>
681 <target>如果禁用转码,许多你的用户上传的视频将不可用!</target> 633 <target>如果禁用转码,许多你的用户上传的视频将不可用!</target>
682 <context-group name="null"> 634 <context-group name="null">
683 <context context-type="linenumber">181</context> 635 <context context-type="linenumber">205</context>
684 </context-group> 636 </context-group>
685 </trans-unit> 637 </trans-unit>
686 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> 638 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2">
687 <source>Transcoding threads</source> 639 <source>Transcoding threads</source>
688 <target>转码线程数</target> 640 <target>转码线程数</target>
689 <context-group name="null"> 641 <context-group name="null">
690 <context context-type="linenumber">187</context> 642 <context context-type="linenumber">211</context>
691 </context-group> 643 </context-group>
692 </trans-unit> 644 </trans-unit>
693 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7"> 645 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7">
694 <source>Previews cache size</source> 646 <source>Previews cache size</source>
695 <target>预览缓存大小</target> 647 <target>预览缓存大小</target>
696 <context-group name="null"> 648 <context-group name="null">
697 <context context-type="linenumber">219</context> 649 <context context-type="linenumber">243</context>
698 </context-group> 650 </context-group>
699 </trans-unit> 651 </trans-unit>
700 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c"> 652 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c">
701 <source>Customizations</source> 653 <source>Customizations</source>
702 <target>个性化</target> 654 <target>个性化</target>
703 <context-group name="null"> 655 <context-group name="null">
704 <context context-type="linenumber">240</context> 656 <context context-type="linenumber">264</context>
705 </context-group> 657 </context-group>
706 </trans-unit> 658 </trans-unit>
707 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> 659 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c">
708 <source>JavaScript</source> 660 <source>JavaScript</source>
709 <target>JavaScript</target> 661 <target>JavaScript</target>
710 <context-group name="null"> 662 <context-group name="null">
711 <context context-type="linenumber">243</context> 663 <context context-type="linenumber">267</context>
712 </context-group> 664 </context-group>
713 </trans-unit> 665 </trans-unit>
714 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c"> 666 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c">
715 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source> 667 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source>
716 <target>直接写入 JavaScript 代码。&lt;br /&gt;例如: &lt;pre&gt;console.log('我的实例太棒了!');&lt;/pre&gt;</target> 668 <target>直接写入 JavaScript 代码。&lt;br /&gt;例如: &lt;pre&gt;console.log('我的实例太棒了!');&lt;/pre&gt;</target>
717 <context-group name="null"> 669 <context-group name="null">
718 <context context-type="linenumber">246</context> 670 <context context-type="linenumber">270</context>
719 </context-group> 671 </context-group>
720 </trans-unit> 672 </trans-unit>
721 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> 673 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab">
722 <source>Advanced configuration</source> 674 <source>Advanced configuration</source>
723 <target>高级配置</target> 675 <target>高级配置</target>
724 <context-group name="null"> 676 <context-group name="null">
725 <context context-type="linenumber">174</context> 677 <context context-type="linenumber">197</context>
726 </context-group> 678 </context-group>
727 </trans-unit> 679 </trans-unit>
728 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> 680 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8">
729 <source>Update configuration</source> 681 <source>Update configuration</source>
730 <target>更新配置</target> 682 <target>更新配置</target>
731 <context-group name="null"> 683 <context-group name="null">
732 <context context-type="linenumber">289</context> 684 <context context-type="linenumber">314</context>
733 </context-group>
734 </trans-unit>
735 <trans-unit id="1c9406213cf05033eda4d3df678217b5eb822315">
736 <source>
737 Video abuses
738 </source>
739 <target>
740 视频滥用
741 </target>
742 <context-group name="null">
743 <context context-type="linenumber">11</context>
744 </context-group> 685 </context-group>
745 </trans-unit> 686 </trans-unit>
746 <trans-unit id="873b72903b1858a9cd6c8967521030b4d7d1435b"> 687 <trans-unit id="873b72903b1858a9cd6c8967521030b4d7d1435b">
@@ -775,14 +716,14 @@
775 <source>Role</source> 716 <source>Role</source>
776 <target>角色</target> 717 <target>角色</target>
777 <context-group name="null"> 718 <context-group name="null">
778 <context context-type="linenumber">19</context> 719 <context context-type="linenumber">20</context>
779 </context-group> 720 </context-group>
780 </trans-unit> 721 </trans-unit>
781 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b"> 722 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
782 <source>Video quota</source> 723 <source>Reason...</source>
783 <target>视频空间</target> 724 <target>...</target>
784 <context-group name="null"> 725 <context-group name="null">
785 <context context-type="linenumber">18</context> 726 <context context-type="linenumber">11</context>
786 </context-group> 727 </context-group>
787 </trans-unit> 728 </trans-unit>
788 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f"> 729 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f">
@@ -792,74 +733,39 @@
792 <context context-type="linenumber">2</context> 733 <context context-type="linenumber">2</context>
793 </context-group> 734 </context-group>
794 </trans-unit> 735 </trans-unit>
795 <trans-unit id="0c7e8870481f1287af6a142f538391d8c16c2408">
796 <source>Video abuses list</source>
797 <target>视频滥用列表</target>
798 <context-group name="null">
799 <context context-type="linenumber">2</context>
800 </context-group>
801 </trans-unit>
802 <trans-unit id="4ba250869daa372b54d24fafc0ea934769ee4076">
803 <source>Reason</source>
804 <target>原因</target>
805 <context-group name="null">
806 <context context-type="linenumber">11</context>
807 </context-group>
808 </trans-unit>
809 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2"> 736 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2">
810 <source>Reporter</source> 737 <source>Reporter</source>
811 <target>报告者</target> 738 <target>报告者</target>
812 <context-group name="null"> 739 <context-group name="null">
813 <context context-type="linenumber">12</context> 740 <context context-type="linenumber">8</context>
814 </context-group> 741 </context-group>
815 </trans-unit> 742 </trans-unit>
816 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4"> 743 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4">
817 <source>Video</source> 744 <source>Video</source>
818 <target>视频</target> 745 <target>视频</target>
819 <context-group name="null"> 746 <context-group name="null">
820 <context context-type="linenumber">9</context> 747 <context context-type="linenumber">14</context>
821 </context-group> 748 </context-group>
822 </trans-unit> 749 </trans-unit>
823 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7"> 750 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7">
824 <source>Go to the account</source> 751 <source>Go to the account</source>
825 <target>转到账号</target> 752 <target>转到账号</target>
826 <context-group name="null"> 753 <context-group name="null">
827 <context context-type="linenumber">22</context> 754 <context context-type="linenumber">27</context>
828 </context-group> 755 </context-group>
829 </trans-unit> 756 </trans-unit>
830 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5"> 757 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5">
831 <source>Go to the video</source> 758 <source>Go to the video</source>
832 <target>转到视频</target> 759 <target>转到视频</target>
833 <context-group name="null"> 760 <context-group name="null">
834 <context context-type="linenumber">28</context> 761 <context context-type="linenumber">33</context>
835 </context-group> 762 </context-group>
836 </trans-unit> 763 </trans-unit>
837 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1"> 764 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1">
838 <source>Blacklisted videos</source> 765 <source>Blacklisted videos</source>
839 <target>被拉黑的视频</target> 766 <target>被拉黑的视频</target>
840 <context-group name="null"> 767 <context-group name="null">
841 <context context-type="linenumber">2</context> 768 <context context-type="linenumber">7</context>
842 </context-group>
843 </trans-unit>
844 <trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9">
845 <source>NSFW</source>
846 <target>不适宜于工作场所播放(NSFW)</target>
847 <context-group name="null">
848 <context context-type="linenumber">14</context>
849 </context-group>
850 </trans-unit>
851 <trans-unit id="8c87d9527af7ff2ada84c911516a9e43a352e401">
852 <source>UUID</source>
853 <target>唯一ID</target>
854 <context-group name="null">
855 <context context-type="linenumber">15</context>
856 </context-group>
857 </trans-unit>
858 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
859 <source>Unblacklist</source>
860 <target>取消黑名单</target>
861 <context-group name="null">
862 <context context-type="linenumber">30</context>
863 </context-group> 769 </context-group>
864 </trans-unit> 770 </trans-unit>
865 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6"> 771 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6">
@@ -869,18 +775,11 @@
869 <context context-type="linenumber">3</context> 775 <context context-type="linenumber">3</context>
870 </context-group> 776 </context-group>
871 </trans-unit> 777 </trans-unit>
872 <trans-unit id="520d68b2c9f7dacaf2a5073716cad9bd328ea7e7">
873 <source>My video channels</source>
874 <target>我的视频频道</target>
875 <context-group name="null">
876 <context context-type="linenumber">5</context>
877 </context-group>
878 </trans-unit>
879 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894"> 778 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894">
880 <source>My videos</source> 779 <source>My videos</source>
881 <target>我的视频</target> 780 <target>我的视频</target>
882 <context-group name="null"> 781 <context-group name="null">
883 <context context-type="linenumber">7</context> 782 <context context-type="linenumber">14</context>
884 </context-group> 783 </context-group>
885 </trans-unit> 784 </trans-unit>
886 <trans-unit id="994363f08f9fbfa3b3994ff7b35c6904fdff18d8"> 785 <trans-unit id="994363f08f9fbfa3b3994ff7b35c6904fdff18d8">
@@ -897,11 +796,22 @@
897 <context context-type="linenumber">15</context> 796 <context context-type="linenumber">15</context>
898 </context-group> 797 </context-group>
899 </trans-unit> 798 </trans-unit>
900 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7"> 799 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
901 <source>Delete</source> 800 <source>Submit</source>
902 <target></target> 801 <target></target>
903 <context-group name="null"> 802 <context-group name="null">
904 <context context-type="linenumber">15</context> 803 <context context-type="linenumber">24</context>
804 </context-group>
805 </trans-unit>
806 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
807 <source>
808 Cancel
809 </source>
810 <target>
811 取消
812 </target>
813 <context-group name="null">
814 <context context-type="linenumber">30</context>
905 </context-group> 815 </context-group>
906 </trans-unit> 816 </trans-unit>
907 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260"> 817 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260">
@@ -915,7 +825,7 @@
915 <source>Go to the channel</source> 825 <source>Go to the channel</source>
916 <target>转到频道</target> 826 <target>转到频道</target>
917 <context-group name="null"> 827 <context-group name="null">
918 <context context-type="linenumber">15</context> 828 <context context-type="linenumber">8</context>
919 </context-group> 829 </context-group>
920 </trans-unit> 830 </trans-unit>
921 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68"> 831 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68">
@@ -932,11 +842,25 @@
932 <context context-type="linenumber">6</context> 842 <context context-type="linenumber">6</context>
933 </context-group> 843 </context-group>
934 </trans-unit> 844 </trans-unit>
845 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
846 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
847 <target>由 <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/> 创建</target>
848 <context-group name="null">
849 <context context-type="linenumber">17</context>
850 </context-group>
851 </trans-unit>
852 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
853 <source>Go the owner account page</source>
854 <target>转到视频上传者的账户页面</target>
855 <context-group name="null">
856 <context context-type="linenumber">16</context>
857 </context-group>
858 </trans-unit>
935 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9"> 859 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9">
936 <source>Change password</source> 860 <source>Change password</source>
937 <target>修改密码</target> 861 <target>修改密码</target>
938 <context-group name="null"> 862 <context-group name="null">
939 <context context-type="linenumber">19</context> 863 <context context-type="linenumber">22</context>
940 </context-group> 864 </context-group>
941 </trans-unit> 865 </trans-unit>
942 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229"> 866 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229">
@@ -985,20 +909,6 @@
985 <context context-type="linenumber">1</context> 909 <context context-type="linenumber">1</context>
986 </context-group> 910 </context-group>
987 </trans-unit> 911 </trans-unit>
988 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
989 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
990 <target>由 <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/> 创建</target>
991 <context-group name="null">
992 <context context-type="linenumber">14</context>
993 </context-group>
994 </trans-unit>
995 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
996 <source>Go the owner account page</source>
997 <target>转到视频上传者的账户页面</target>
998 <context-group name="null">
999 <context context-type="linenumber">13</context>
1000 </context-group>
1001 </trans-unit>
1002 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8"> 912 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8">
1003 <source>Support this channel</source> 913 <source>Support this channel</source>
1004 <target>支持此频道</target> 914 <target>支持此频道</target>
@@ -1017,14 +927,14 @@
1017 <source>Privacy</source> 927 <source>Privacy</source>
1018 <target>隐私</target> 928 <target>隐私</target>
1019 <context-group name="null"> 929 <context-group name="null">
1020 <context context-type="linenumber">143</context> 930 <context context-type="linenumber">161</context>
1021 </context-group> 931 </context-group>
1022 </trans-unit> 932 </trans-unit>
1023 <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb"> 933 <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb">
1024 <source>Update</source> 934 <source>Update</source>
1025 <target>更新</target> 935 <target>更新</target>
1026 <context-group name="null"> 936 <context-group name="null">
1027 <context context-type="linenumber">105</context> 937 <context context-type="linenumber">92</context>
1028 </context-group> 938 </context-group>
1029 </trans-unit> 939 </trans-unit>
1030 <trans-unit id="f7ac2376749c7985f94f0fc89ba75ea624de1215"> 940 <trans-unit id="f7ac2376749c7985f94f0fc89ba75ea624de1215">
@@ -1045,42 +955,35 @@
1045 <source>Title</source> 955 <source>Title</source>
1046 <target>标题</target> 956 <target>标题</target>
1047 <context-group name="null"> 957 <context-group name="null">
1048 <context context-type="linenumber">7</context> 958 <context context-type="linenumber">9</context>
1049 </context-group> 959 </context-group>
1050 </trans-unit> 960 </trans-unit>
1051 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b"> 961 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b">
1052 <source>Tags</source> 962 <source>Tags</source>
1053 <target>标签</target> 963 <target>标签</target>
1054 <context-group name="null"> 964 <context-group name="null">
1055 <context context-type="linenumber">175</context> 965 <context context-type="linenumber">193</context>
1056 </context-group>
1057 </trans-unit>
1058 <trans-unit id="935e7146fe6c12169abfda18536c5856935cfd82">
1059 <source>(press Enter to add)</source>
1060 <target>(按回车(Enter)以新建)</target>
1061 <context-group name="null">
1062 <context context-type="linenumber">15</context>
1063 </context-group> 966 </context-group>
1064 </trans-unit> 967 </trans-unit>
1065 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e"> 968 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e">
1066 <source>Video descriptions are truncated by default and require manual action to expand them.</source> 969 <source>Video descriptions are truncated by default and require manual action to expand them.</source>
1067 <target>视频描述默认会被截断,手动操作后才可以展开。</target> 970 <target>视频描述默认会被截断,手动操作后才可以展开。</target>
1068 <context-group name="null"> 971 <context-group name="null">
1069 <context context-type="linenumber">24</context> 972 <context context-type="linenumber">27</context>
1070 </context-group> 973 </context-group>
1071 </trans-unit> 974 </trans-unit>
1072 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee"> 975 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee">
1073 <source>This video contains mature or explicit content</source> 976 <source>This video contains mature or explicit content</source>
1074 <target>此视频包含成人内容。</target> 977 <target>此视频包含成人内容。</target>
1075 <context-group name="null"> 978 <context-group name="null">
1076 <context context-type="linenumber">115</context> 979 <context context-type="linenumber">118</context>
1077 </context-group> 980 </context-group>
1078 </trans-unit> 981 </trans-unit>
1079 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a"> 982 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a">
1080 <source>Enable video comments</source> 983 <source>Enable video comments</source>
1081 <target>开启视频评论</target> 984 <target>开启视频评论</target>
1082 <context-group name="null"> 985 <context-group name="null">
1083 <context context-type="linenumber">121</context> 986 <context context-type="linenumber">124</context>
1084 </context-group> 987 </context-group>
1085 </trans-unit> 988 </trans-unit>
1086 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7"> 989 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7">
@@ -1094,95 +997,70 @@
1094 <source>Upload thumbnail</source> 997 <source>Upload thumbnail</source>
1095 <target>上传缩略图</target> 998 <target>上传缩略图</target>
1096 <context-group name="null"> 999 <context-group name="null">
1097 <context context-type="linenumber">186</context> 1000 <context context-type="linenumber">194</context>
1098 </context-group> 1001 </context-group>
1099 </trans-unit> 1002 </trans-unit>
1100 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639"> 1003 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639">
1101 <source>Upload preview</source> 1004 <source>Upload preview</source>
1102 <target>上传预览</target> 1005 <target>上传预览</target>
1103 <context-group name="null"> 1006 <context-group name="null">
1104 <context context-type="linenumber">193</context> 1007 <context context-type="linenumber">201</context>
1105 </context-group> 1008 </context-group>
1106 </trans-unit> 1009 </trans-unit>
1107 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604"> 1010 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604">
1108 <source>Support</source> 1011 <source>Support</source>
1109 <target>支持</target> 1012 <target>支持</target>
1110 <context-group name="null"> 1013 <context-group name="null">
1111 <context context-type="linenumber">71</context> 1014 <context context-type="linenumber">69</context>
1112 </context-group> 1015 </context-group>
1113 </trans-unit> 1016 </trans-unit>
1114 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1"> 1017 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1">
1115 <source>Advanced settings</source> 1018 <source>Advanced settings</source>
1116 <target>高级设置</target> 1019 <target>高级设置</target>
1117 <context-group name="null"> 1020 <context-group name="null">
1118 <context context-type="linenumber">182</context> 1021 <context context-type="linenumber">189</context>
1119 </context-group> 1022 </context-group>
1120 </trans-unit> 1023 </trans-unit>
1121 <trans-unit id="9aafb2a928664aa7a9375fd37c533f0375f8b611"> 1024 <trans-unit id="9aafb2a928664aa7a9375fd37c533f0375f8b611">
1122 <source>Download video</source> 1025 <source>Download video</source>
1123 <target>下载视频</target> 1026 <target>下载视频</target>
1124 <context-group name="null"> 1027 <context-group name="null">
1125 <context context-type="linenumber">7</context> 1028 <context context-type="linenumber">3</context>
1126 </context-group> 1029 </context-group>
1127 </trans-unit> 1030 </trans-unit>
1128 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c"> 1031 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c">
1129 <source>Direct download</source> 1032 <source>Direct download</source>
1130 <target>直接下载</target> 1033 <target>直接下载</target>
1131 <context-group name="null"> 1034 <context-group name="null">
1132 <context context-type="linenumber">20</context> 1035 <context context-type="linenumber">17</context>
1133 </context-group> 1036 </context-group>
1134 </trans-unit> 1037 </trans-unit>
1135 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> 1038 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd">
1136 <source>Download</source> 1039 <source>Download</source>
1137 <target>下载</target> 1040 <target>下载</target>
1138 <context-group name="null"> 1041 <context-group name="null">
1139 <context context-type="linenumber">87</context> 1042 <context context-type="linenumber">84</context>
1140 </context-group> 1043 </context-group>
1141 </trans-unit> 1044 </trans-unit>
1142 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b"> 1045 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b">
1143 <source>Report video</source> 1046 <source>Report video</source>
1144 <target>举报视频</target> 1047 <target>举报视频</target>
1145 <context-group name="null"> 1048 <context-group name="null">
1146 <context context-type="linenumber">7</context> 1049 <context context-type="linenumber">3</context>
1147 </context-group>
1148 </trans-unit>
1149 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
1150 <source>Reason...</source>
1151 <target>原因...</target>
1152 <context-group name="null">
1153 <context context-type="linenumber">14</context>
1154 </context-group>
1155 </trans-unit>
1156 <trans-unit id="0e6b8229bd65f93bc8040d0fb598967f220740c7">
1157 <source>
1158 Cancel
1159 </source>
1160 <target>
1161 取消
1162 </target>
1163 <context-group name="null">
1164 <context context-type="linenumber">22</context>
1165 </context-group>
1166 </trans-unit>
1167 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
1168 <source>Submit</source>
1169 <target>提交</target>
1170 <context-group name="null">
1171 <context context-type="linenumber">27</context>
1172 </context-group> 1050 </context-group>
1173 </trans-unit> 1051 </trans-unit>
1174 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9"> 1052 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9">
1175 <source>Share</source> 1053 <source>Share</source>
1176 <target>分享</target> 1054 <target>分享</target>
1177 <context-group name="null"> 1055 <context-group name="null">
1178 <context context-type="linenumber">76</context> 1056 <context context-type="linenumber">74</context>
1179 </context-group> 1057 </context-group>
1180 </trans-unit> 1058 </trans-unit>
1181 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c"> 1059 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
1182 <source>Embed</source> 1060 <source>Embed</source>
1183 <target>嵌入版</target> 1061 <target>嵌入版</target>
1184 <context-group name="null"> 1062 <context-group name="null">
1185 <context context-type="linenumber">24</context> 1063 <context context-type="linenumber">34</context>
1186 </context-group> 1064 </context-group>
1187 </trans-unit> 1065 </trans-unit>
1188 <trans-unit id="9ed65ae88f6c982bc44d6fed2796e55f47dbf304"> 1066 <trans-unit id="9ed65ae88f6c982bc44d6fed2796e55f47dbf304">
@@ -1196,29 +1074,18 @@
1196 <context context-type="linenumber">15</context> 1074 <context context-type="linenumber">15</context>
1197 </context-group> 1075 </context-group>
1198 </trans-unit> 1076 </trans-unit>
1199 <trans-unit id="fbc205ea3d06fa8f65973fa3b490ae172f71c087"> 1077 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1200 <source> 1078 <source>Unblacklist</source>
1201 This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/> 1079 <target>取消黑名单</target>
1202 </source>
1203 <target>
1204 此视频将于 <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/> 发布
1205 </target>
1206 <context-group name="null"> 1080 <context-group name="null">
1207 <context context-type="linenumber">19</context> 1081 <context context-type="linenumber">100</context>
1208 </context-group> 1082 </context-group>
1209 </trans-unit> 1083 </trans-unit>
1210 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33"> 1084 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
1211 <source>Go the channel page</source> 1085 <source>Go the channel page</source>
1212 <target>转到频道页面</target> 1086 <target>转到频道页面</target>
1213 <context-group name="null"> 1087 <context-group name="null">
1214 <context context-type="linenumber">35</context> 1088 <context context-type="linenumber">123</context>
1215 </context-group>
1216 </trans-unit>
1217 <trans-unit id="57075c778cf28b81272df4eb17da944366c98e51">
1218 <source>You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; and subscribe there. Subscription as a PeerTube user is being worked on in &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</source>
1219 <target>你可以通过任何支持 ActivityPub 的实例来订阅此账号。对于 Mastodon 或 Pleroma 实例,可以在搜索栏键入 &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; 并订阅。在 PeerTube 上订阅账户的方案正在 &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt; 进行讨论。</target>
1220 <context-group name="null">
1221 <context context-type="linenumber">49</context>
1222 </context-group> 1089 </context-group>
1223 </trans-unit> 1090 </trans-unit>
1224 <trans-unit id="7e892ba15f2c6c17e83510e273b3e10fc32ea016"> 1091 <trans-unit id="7e892ba15f2c6c17e83510e273b3e10fc32ea016">
diff --git a/client/src/locale/target/angular_zh_Hant_TW.xml b/client/src/locale/target/angular_zh_Hant_TW.xml
index dbd7ff1db..4394c55a2 100644
--- a/client/src/locale/target/angular_zh_Hant_TW.xml
+++ b/client/src/locale/target/angular_zh_Hant_TW.xml
@@ -3,29 +3,32 @@
3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1"> 3<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" xmlns:xyz="urn:appInfo:Items" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.1 http://www.oasis-open.org/committees/xliff/documents/xliff-core-1.1.xsd" version="1.1">
4 <file source-language="en-US" datatype="plaintext" original="" target-language="zh-Hant-TW"> 4 <file source-language="en-US" datatype="plaintext" original="" target-language="zh-Hant-TW">
5 <body> 5 <body>
6 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a"> 6 <trans-unit id="1d19634967b06f93fd7f20c0663742f8254e6d46">
7 <source> 7 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</source>
8 Cancel 8 <target>(副檔名:<x id="INTERPOLATION" equiv-text="{{ allowedExtensionsMessage }}"/>,最大大小:<x id="INTERPOLATION_1" equiv-text="{{ maxFileSize | bytes }}"/>)</target>
9 </source>
10 <target>
11 取消
12 </target>
13 <context-group name="null"> 9 <context-group name="null">
14 <context context-type="linenumber">45</context> 10 <context context-type="linenumber">11</context>
15 </context-group> 11 </context-group>
16 </trans-unit> 12 </trans-unit>
17 <trans-unit id="9d5f16f0233b39fa2cd843321407a7358c323ad8"> 13 <trans-unit id="9d5f16f0233b39fa2cd843321407a7358c323ad8">
18 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 14 <source><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
19 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> 次檢視</target> 15 <target><x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> 次檢視</target>
20 <context-group name="null"> 16 <context-group name="null">
21 <context context-type="linenumber">34</context> 17 <context context-type="linenumber">12</context>
18 </context-group>
19 </trans-unit>
20 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7">
21 <source>Delete</source>
22 <target>刪除</target>
23 <context-group name="null">
24 <context context-type="linenumber">15</context>
22 </context-group> 25 </context-group>
23 </trans-unit> 26 </trans-unit>
24 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> 27 <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c">
25 <source>Edit</source> 28 <source>Edit</source>
26 <target>編輯</target> 29 <target>編輯</target>
27 <context-group name="null"> 30 <context-group name="null">
28 <context context-type="linenumber">3</context> 31 <context context-type="linenumber">5</context>
29 </context-group> 32 </context-group>
30 </trans-unit> 33 </trans-unit>
31 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d"> 34 <trans-unit id="961a134583d6256df39fbc520d020ebc48e3128d">
@@ -39,7 +42,7 @@
39 <source>Complete preview</source> 42 <source>Complete preview</source>
40 <target>完整預覽</target> 43 <target>完整預覽</target>
41 <context-group name="null"> 44 <context-group name="null">
42 <context context-type="linenumber">10</context> 45 <context context-type="linenumber">13</context>
43 </context-group> 46 </context-group>
44 </trans-unit> 47 </trans-unit>
45 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> 48 <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f">
@@ -49,6 +52,13 @@
49 <context context-type="linenumber">18</context> 52 <context context-type="linenumber">18</context>
50 </context-group> 53 </context-group>
51 </trans-unit> 54 </trans-unit>
55 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
56 <source>Video quota</source>
57 <target>影片配額</target>
58 <context-group name="null">
59 <context context-type="linenumber">19</context>
60 </context-group>
61 </trans-unit>
52 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea"> 62 <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea">
53 <source> 63 <source>
54 Login 64 Login
@@ -64,14 +74,14 @@
64 <source>User</source> 74 <source>User</source>
65 <target>使用者</target> 75 <target>使用者</target>
66 <context-group name="null"> 76 <context-group name="null">
67 <context context-type="linenumber">11</context> 77 <context context-type="linenumber">13</context>
68 </context-group> 78 </context-group>
69 </trans-unit> 79 </trans-unit>
70 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478"> 80 <trans-unit id="51ef29329faccb28d94369897068897d1b3d0478">
71 <source>Username or email address</source> 81 <source>Username or email address</source>
72 <target>使用者名稱或電子郵件地址</target> 82 <target>使用者名稱或電子郵件地址</target>
73 <context-group name="null"> 83 <context-group name="null">
74 <context context-type="linenumber">13</context> 84 <context context-type="linenumber">15</context>
75 </context-group> 85 </context-group>
76 </trans-unit> 86 </trans-unit>
77 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87"> 87 <trans-unit id="02c4360c2d956e74ed6bb1f71e86812af0e19b87">
@@ -82,7 +92,7 @@
82 或建立帳號 92 或建立帳號
83 </target> 93 </target>
84 <context-group name="null"> 94 <context-group name="null">
85 <context context-type="linenumber">16</context> 95 <context context-type="linenumber">18</context>
86 </context-group> 96 </context-group>
87 </trans-unit> 97 </trans-unit>
88 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b"> 98 <trans-unit id="d6290381021b16febc426d3e3a52dda83991ce0b">
@@ -91,14 +101,14 @@
91 </source> 101 </source>
92 <target>或在其他實體上建立帳號</target> 102 <target>或在其他實體上建立帳號</target>
93 <context-group name="null"> 103 <context-group name="null">
94 <context context-type="linenumber">20</context> 104 <context context-type="linenumber">22</context>
95 </context-group> 105 </context-group>
96 </trans-unit> 106 </trans-unit>
97 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3"> 107 <trans-unit id="76e1f485e6ead4c84b606f46d413878881d66ad3">
98 <source>User registration is not allowed on this instance, but you can register on many others!</source> 108 <source>User registration is not allowed on this instance, but you can register on many others!</source>
99 <target>此實體上不允許使用者註冊,但您可以在其他許多實體上註冊!</target> 109 <target>此實體上不允許使用者註冊,但您可以在其他許多實體上註冊!</target>
100 <context-group name="null"> 110 <context-group name="null">
101 <context context-type="linenumber">26</context> 111 <context context-type="linenumber">28</context>
102 </context-group> 112 </context-group>
103 </trans-unit> 113 </trans-unit>
104 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407"> 114 <trans-unit id="c32ef07f8803a223a83ed17024b38e8d82292407">
@@ -112,35 +122,35 @@
112 <source>I forgot my password</source> 122 <source>I forgot my password</source>
113 <target>我忘記我的密碼了</target> 123 <target>我忘記我的密碼了</target>
114 <context-group name="null"> 124 <context-group name="null">
115 <context context-type="linenumber">42</context> 125 <context context-type="linenumber">44</context>
116 </context-group> 126 </context-group>
117 </trans-unit> 127 </trans-unit>
118 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681"> 128 <trans-unit id="d2eb6c5d41f70d4b8c0937e7e19e196143b47681">
119 <source>Forgot your password</source> 129 <source>Forgot your password</source>
120 <target>忘記您的密碼</target> 130 <target>忘記您的密碼</target>
121 <context-group name="null"> 131 <context-group name="null">
122 <context context-type="linenumber">59</context> 132 <context context-type="linenumber">57</context>
123 </context-group> 133 </context-group>
124 </trans-unit> 134 </trans-unit>
125 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc"> 135 <trans-unit id="244aae9346da82b0922506c2d2581373a15641cc">
126 <source>Email</source> 136 <source>Email</source>
127 <target>電子郵件</target> 137 <target>電子郵件</target>
128 <context-group name="null"> 138 <context-group name="null">
129 <context context-type="linenumber">17</context> 139 <context context-type="linenumber">8</context>
130 </context-group> 140 </context-group>
131 </trans-unit> 141 </trans-unit>
132 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529"> 142 <trans-unit id="69b6ac577a19acc39fc0c22342092f327fff2529">
133 <source>Email address</source> 143 <source>Email address</source>
134 <target>電子郵件地址</target> 144 <target>電子郵件地址</target>
135 <context-group name="null"> 145 <context-group name="null">
136 <context context-type="linenumber">66</context> 146 <context context-type="linenumber">10</context>
137 </context-group> 147 </context-group>
138 </trans-unit> 148 </trans-unit>
139 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55"> 149 <trans-unit id="78be69e4d26b3b654c49962839d8545e61bf8b55">
140 <source>Send me an email to reset my password</source> 150 <source>Send me an email to reset my password</source>
141 <target>傳送電子郵件給我以重設我的密碼</target> 151 <target>傳送電子郵件給我以重設我的密碼</target>
142 <context-group name="null"> 152 <context-group name="null">
143 <context context-type="linenumber">77</context> 153 <context context-type="linenumber">75</context>
144 </context-group> 154 </context-group>
145 </trans-unit> 155 </trans-unit>
146 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa"> 156 <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa">
@@ -182,22 +192,6 @@
182 <context context-type="linenumber">3</context> 192 <context context-type="linenumber">3</context>
183 </context-group> 193 </context-group>
184 </trans-unit> 194 </trans-unit>
185 <trans-unit id="a6807b834e01ce165aa61fad157b0ff4288b6bf1">
186 <source>Initial video quota:</source>
187 <target>初始影片配額:</target>
188 <context-group name="null">
189 <context context-type="linenumber">8</context>
190 </context-group>
191 </trans-unit>
192 <trans-unit id="87b6b2c26215c5e712d3bfe4cc86ba53bc23451c">
193 <source>
194 Unlimited
195 </source>
196 <target>無限制</target>
197 <context-group name="null">
198 <context context-type="linenumber">16</context>
199 </context-group>
200 </trans-unit>
201 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48"> 195 <trans-unit id="08c74dc9762957593b91f6eb5d65efdfc975bf48">
202 <source>Username</source> 196 <source>Username</source>
203 <target>使用者名稱</target> 197 <target>使用者名稱</target>
@@ -205,101 +199,122 @@
205 <context context-type="linenumber">8</context> 199 <context context-type="linenumber">8</context>
206 </context-group> 200 </context-group>
207 </trans-unit> 201 </trans-unit>
202 <trans-unit id="2ac776627e18565d7ae85cd7f4cd033bc5d0c88b">
203 <source>I have read and agree to the &lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;Terms&lt;/a&gt; of this instance</source>
204 <target>我已經讀過且同意這個實體的&lt;a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'&gt;條款&lt;/a&gt;</target>
205 <context-group name="null">
206 <context context-type="linenumber">54</context>
207 </context-group>
208 </trans-unit>
208 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4"> 209 <trans-unit id="717a5e3574fec754fbeb348c2d5561c4d81facc4">
209 <source>Signup</source> 210 <source>Signup</source>
210 <target>註冊</target> 211 <target>註冊</target>
211 <context-group name="null"> 212 <context-group name="null">
212 <context context-type="linenumber">86</context> 213 <context context-type="linenumber">88</context>
213 </context-group> 214 </context-group>
214 </trans-unit> 215 </trans-unit>
215 <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96"> 216 <trans-unit id="9167c6d3c4c3b74373cf1e90997e4966844ded1a">
216 <source>Change the language</source> 217 <source><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> results</source>
217 <target></target> 218 <target><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> 個結</target>
218 <context-group name="null"> 219 <context-group name="null">
219 <context context-type="linenumber">76</context> 220 <context context-type="linenumber">5</context>
220 </context-group> 221 </context-group>
221 </trans-unit> 222 </trans-unit>
222 <trans-unit id="b8ccc4f1b3f839fca9bd59e072f715fd487d540f"> 223 <trans-unit id="4c3960fb1d9b07d1db3b5bda3ee40019211830dc">
223 <source> 224 <source>
224 My public profile 225 for <x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span&gt;"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/>
225 </source> 226 </source>
226 <target>我的公開簡介</target> 227 <target>
228 為 <x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span&gt;"/><x id="INTERPOLATION" equiv-text="{{ currentSearch }}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/>
229 </target>
227 <context-group name="null"> 230 <context-group name="null">
228 <context context-type="linenumber">19</context> 231 <context context-type="linenumber">6</context>
229 </context-group> 232 </context-group>
230 </trans-unit> 233 </trans-unit>
231 <trans-unit id="c84b721e9325c9cce20d92f4dbd66898ab5ec947"> 234 <trans-unit id="1298c1d2bbbb7415f5494e800f6775fdb70f4df6">
232 <source> 235 <source>Filters</source>
233 My account 236 <target>過濾器</target>
234 </source>
235 <target>我的帳號</target>
236 <context-group name="null"> 237 <context-group name="null">
237 <context context-type="linenumber">23</context> 238 <context context-type="linenumber">16</context>
238 </context-group> 239 </context-group>
239 </trans-unit> 240 </trans-unit>
240 <trans-unit id="ba7378cdaaa60b4fee17a551b232ad3512dac17d"> 241 <trans-unit id="e2dbf0426cbb0b573faf49dffeb7d5bdf16eda5d">
241 <source> 242 <source>
242 Log out 243 No results found
243 </source> 244 </source>
244 <target></target> 245 <target>沒有</target>
245 <context-group name="null"> 246 <context-group name="null">
246 <context context-type="linenumber">27</context> 247 <context context-type="linenumber">25</context>
248 </context-group>
249 </trans-unit>
250 <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96">
251 <source>Change the language</source>
252 <target>變更語言</target>
253 <context-group name="null">
254 <context context-type="linenumber">88</context>
247 </context-group> 255 </context-group>
248 </trans-unit> 256 </trans-unit>
249 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9"> 257 <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9">
250 <source>Login</source> 258 <source>Login</source>
251 <target>登入</target> 259 <target>登入</target>
252 <context-group name="null"> 260 <context-group name="null">
253 <context context-type="linenumber">36</context> 261 <context context-type="linenumber">38</context>
254 </context-group> 262 </context-group>
255 </trans-unit> 263 </trans-unit>
256 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> 264 <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87">
257 <source>Create an account</source> 265 <source>Create an account</source>
258 <target>建立帳號</target> 266 <target>建立帳號</target>
259 <context-group name="null"> 267 <context-group name="null">
260 <context context-type="linenumber">37</context> 268 <context context-type="linenumber">39</context>
261 </context-group> 269 </context-group>
262 </trans-unit> 270 </trans-unit>
263 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238"> 271 <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238">
264 <source>Videos</source> 272 <source>Videos</source>
265 <target>影片</target> 273 <target>影片</target>
266 <context-group name="null"> 274 <context-group name="null">
267 <context context-type="linenumber">21</context> 275 <context context-type="linenumber">24</context>
268 </context-group> 276 </context-group>
269 </trans-unit> 277 </trans-unit>
270 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> 278 <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807">
271 <source>Trending</source> 279 <source>Trending</source>
272 <target>趨勢</target> 280 <target>趨勢</target>
273 <context-group name="null"> 281 <context-group name="null">
274 <context context-type="linenumber">45</context> 282 <context context-type="linenumber">57</context>
275 </context-group> 283 </context-group>
276 </trans-unit> 284 </trans-unit>
277 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> 285 <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1">
278 <source>Recently added</source> 286 <source>Recently added</source>
279 <target>最近新增</target> 287 <target>最近新增</target>
280 <context-group name="null"> 288 <context-group name="null">
281 <context context-type="linenumber">50</context> 289 <context context-type="linenumber">62</context>
282 </context-group> 290 </context-group>
283 </trans-unit> 291 </trans-unit>
284 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d"> 292 <trans-unit id="eadc17c3df80143992e2d9028dead3199ae6d79d">
285 <source>Local</source> 293 <source>Local</source>
286 <target>本</target> 294 <target>本</target>
287 <context-group name="null"> 295 <context-group name="null">
288 <context context-type="linenumber">55</context> 296 <context context-type="linenumber">67</context>
297 </context-group>
298 </trans-unit>
299 <trans-unit id="ac0f81713a84217c9bd1d9bb460245d8190b073f">
300 <source>More</source>
301 <target>更多</target>
302 <context-group name="null">
303 <context context-type="linenumber">72</context>
289 </context-group> 304 </context-group>
290 </trans-unit> 305 </trans-unit>
291 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> 306 <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919">
292 <source>Administration</source> 307 <source>Administration</source>
293 <target>管理</target> 308 <target>管理</target>
294 <context-group name="null"> 309 <context-group name="null">
295 <context context-type="linenumber">64</context> 310 <context context-type="linenumber">76</context>
296 </context-group> 311 </context-group>
297 </trans-unit> 312 </trans-unit>
298 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> 313 <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a">
299 <source>About</source> 314 <source>About</source>
300 <target>關於</target> 315 <target>關於</target>
301 <context-group name="null"> 316 <context-group name="null">
302 <context context-type="linenumber">23</context> 317 <context context-type="linenumber">25</context>
303 </context-group> 318 </context-group>
304 </trans-unit> 319 </trans-unit>
305 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599"> 320 <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599">
@@ -316,25 +331,88 @@
316 <context context-type="linenumber">9</context> 331 <context context-type="linenumber">9</context>
317 </context-group> 332 </context-group>
318 </trans-unit> 333 </trans-unit>
334 <trans-unit id="5d43539fc358c3a548b9d487be821db73e2702ff">
335 <source>Sort</source>
336 <target>排序</target>
337 <context-group name="null">
338 <context context-type="linenumber">6</context>
339 </context-group>
340 </trans-unit>
341 <trans-unit id="98acac685fc4b2d35e5d0cf3cd224d247a756c3e">
342 <source>Published date</source>
343 <target>發佈日期</target>
344 <context-group name="null">
345 <context context-type="linenumber">15</context>
346 </context-group>
347 </trans-unit>
348 <trans-unit id="a02ea1d4e7424ca989929da5e598f379940fdbf2">
349 <source>Duration</source>
350 <target>持續時間</target>
351 <context-group name="null">
352 <context context-type="linenumber">24</context>
353 </context-group>
354 </trans-unit>
355 <trans-unit id="dc67060f94f0f2b58549f54a5c07925dffd20238">
356 <source>Display sensitive content</source>
357 <target>顯示敏感內容</target>
358 <context-group name="null">
359 <context context-type="linenumber">33</context>
360 </context-group>
361 </trans-unit>
362 <trans-unit id="4f20f2d5a6882190892e58b85f6ccbedfa737952">
363 <source>Yes</source>
364 <target>是</target>
365 <context-group name="null">
366 <context context-type="linenumber">37</context>
367 </context-group>
368 </trans-unit>
369 <trans-unit id="3d3ae7deebc5949b0c1c78b9847886a94321d9fd">
370 <source>No</source>
371 <target>否</target>
372 <context-group name="null">
373 <context context-type="linenumber">42</context>
374 </context-group>
375 </trans-unit>
319 <trans-unit id="607de17c2a755f65775881c19e276e7c933bcf94"> 376 <trans-unit id="607de17c2a755f65775881c19e276e7c933bcf94">
320 <source>Category</source> 377 <source>Category</source>
321 <target>分類</target> 378 <target>分類</target>
322 <context-group name="null"> 379 <context-group name="null">
323 <context context-type="linenumber">148</context> 380 <context context-type="linenumber">166</context>
324 </context-group> 381 </context-group>
325 </trans-unit> 382 </trans-unit>
326 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c"> 383 <trans-unit id="78d6d3ea26777cd0dad8ddbf9b314151678da46c">
327 <source>Licence</source> 384 <source>Licence</source>
328 <target>授權條款</target> 385 <target>授權條款</target>
329 <context-group name="null"> 386 <context-group name="null">
330 <context context-type="linenumber">157</context> 387 <context context-type="linenumber">175</context>
331 </context-group> 388 </context-group>
332 </trans-unit> 389 </trans-unit>
333 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619"> 390 <trans-unit id="fe46ccaae902ce974e2441abe752399288298619">
334 <source>Language</source> 391 <source>Language</source>
335 <target>語言</target> 392 <target>語言</target>
336 <context-group name="null"> 393 <context-group name="null">
337 <context context-type="linenumber">166</context> 394 <context context-type="linenumber">184</context>
395 </context-group>
396 </trans-unit>
397 <trans-unit id="c8d58c4fbe23e51af3dc8f58cb4a81eac20739e8">
398 <source>All of these tags</source>
399 <target>所有這些標籤</target>
400 <context-group name="null">
401 <context context-type="linenumber">82</context>
402 </context-group>
403 </trans-unit>
404 <trans-unit id="492d2bd18db0cba03f6d9e3b0c42b8639fbe51ab">
405 <source>One of these tags</source>
406 <target>這些標籤的其中一個</target>
407 <context-group name="null">
408 <context context-type="linenumber">87</context>
409 </context-group>
410 </trans-unit>
411 <trans-unit id="5ca707824ab93066c7d9b44e1b8bf216725c2c22">
412 <source>Filter</source>
413 <target>過濾器</target>
414 <context-group name="null">
415 <context context-type="linenumber">94</context>
338 </context-group> 416 </context-group>
339 </trans-unit> 417 </trans-unit>
340 <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e"> 418 <trans-unit id="c31161d1661884f54fbc5635aad5ce8d4803897e">
@@ -348,7 +426,7 @@
348 <source>Instance</source> 426 <source>Instance</source>
349 <target>實體</target> 427 <target>實體</target>
350 <context-group name="null"> 428 <context-group name="null">
351 <context context-type="linenumber">7</context> 429 <context context-type="linenumber">8</context>
352 </context-group> 430 </context-group>
353 </trans-unit> 431 </trans-unit>
354 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390"> 432 <trans-unit id="6385c357c1de58ce92c0cf618ecf9cf74b917390">
@@ -371,14 +449,14 @@
371 <source>Description</source> 449 <source>Description</source>
372 <target>描述</target> 450 <target>描述</target>
373 <context-group name="null"> 451 <context-group name="null">
374 <context context-type="linenumber">23</context> 452 <context context-type="linenumber">26</context>
375 </context-group> 453 </context-group>
376 </trans-unit> 454 </trans-unit>
377 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774"> 455 <trans-unit id="69580f2c2dbf4edf7096820ba8c393367352d774">
378 <source>Terms</source> 456 <source>Terms</source>
379 <target>條款</target> 457 <target>條款</target>
380 <context-group name="null"> 458 <context-group name="null">
381 <context context-type="linenumber">43</context> 459 <context context-type="linenumber">44</context>
382 </context-group> 460 </context-group>
383 </trans-unit> 461 </trans-unit>
384 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27"> 462 <trans-unit id="9c6e6db693ab265457c6578df179c65694141d27">
@@ -534,6 +612,19 @@
534 <context context-type="linenumber">51</context> 612 <context context-type="linenumber">51</context>
535 </context-group> 613 </context-group>
536 </trans-unit> 614 </trans-unit>
615 <trans-unit id="b4c2ef0143270626106b26196d40baf3439aa7b0">
616 <source>
617 Web peers are not publicly accessible: because we use WebRTC inside the web browser (<x id="START_LINK" ctype="x-a" equiv-text="&lt;a&gt;"/>with the WebTorrent library<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/>), the protocol is different from classic BitTorrent.
618 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.
619 See <x id="START_LINK_1" ctype="x-a" equiv-text="&lt;a&gt;"/>this document<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/> for more information
620 </source>
621 <target>網路對等方無法公開存取:因為我們在瀏覽器內使用 WebRTC(<x id="START_LINK" ctype="x-a" equiv-text="&lt;a&gt;"/>包含 WebTorrent 函式庫<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/>),與傳統的 BitTorrent 是不同的協定。
622當您在瀏覽器裡時,您會傳送包含了您的 IP 地址的訊號到隨機挑選的將要轉送資訊到的其他對等方。
623檢閱<x id="START_LINK_1" ctype="x-a" equiv-text="&lt;a&gt;"/>此文件<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/>以取得更多資訊</target>
624 <context-group name="null">
625 <context context-type="linenumber">55</context>
626 </context-group>
627 </trans-unit>
537 <trans-unit id="50d8e8388f5ceab292850ed828f306c9f2cab389"> 628 <trans-unit id="50d8e8388f5ceab292850ed828f306c9f2cab389">
538 <source> 629 <source>
539 The worst-case scenario of an average person spying on their friends is quite unlikely. 630 The worst-case scenario of an average person spying on their friends is quite unlikely.
@@ -545,6 +636,13 @@
545 <context context-type="linenumber">62</context> 636 <context context-type="linenumber">62</context>
546 </context-group> 637 </context-group>
547 </trans-unit> 638 </trans-unit>
639 <trans-unit id="4bf47a1ae952bf42a4682a5ecddb0bfb8c9adfaf">
640 <source>How does PeerTube compare with YouTube?</source>
641 <target>PeerTube 與 YouTube 比起來如何?</target>
642 <context-group name="null">
643 <context context-type="linenumber">67</context>
644 </context-group>
645 </trans-unit>
548 <trans-unit id="2432705cbabcb92a8677338901dd5d655383ef4c"> 646 <trans-unit id="2432705cbabcb92a8677338901dd5d655383ef4c">
549 <source> 647 <source>
550 The threats to privacy in YouTube are different from PeerTube's. 648 The threats to privacy in YouTube are different from PeerTube's.
@@ -661,7 +759,7 @@
661 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source> 759 <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers</source>
662 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> 個訂閱者</target> 760 <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> 個訂閱者</target>
663 <context-group name="null"> 761 <context-group name="null">
664 <context context-type="linenumber">11</context> 762 <context context-type="linenumber">14</context>
665 </context-group> 763 </context-group>
666 </trans-unit> 764 </trans-unit>
667 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f"> 765 <trans-unit id="f36bd6a1570cb9b0a5023870f35160957cad2a8f">
@@ -675,49 +773,49 @@
675 <source>Name</source> 773 <source>Name</source>
676 <target>名稱</target> 774 <target>名稱</target>
677 <context-group name="null"> 775 <context-group name="null">
678 <context context-type="linenumber">9</context> 776 <context context-type="linenumber">12</context>
679 </context-group> 777 </context-group>
680 </trans-unit> 778 </trans-unit>
681 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b"> 779 <trans-unit id="512b045163a7187b2fc5d554e5f59fb3e49e174b">
682 <source>Short description</source> 780 <source>Short description</source>
683 <target>短描述</target> 781 <target>短描述</target>
684 <context-group name="null"> 782 <context-group name="null">
685 <context context-type="linenumber">21</context> 783 <context context-type="linenumber">22</context>
686 </context-group> 784 </context-group>
687 </trans-unit> 785 </trans-unit>
688 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003"> 786 <trans-unit id="554488d11165f38b27b8fe230aba8a2e30d57003">
689 <source>Default client route</source> 787 <source>Default client route</source>
690 <target>預設客戶端路由</target> 788 <target>預設客戶端路由</target>
691 <context-group name="null"> 789 <context-group name="null">
692 <context context-type="linenumber">54</context> 790 <context context-type="linenumber">55</context>
693 </context-group> 791 </context-group>
694 </trans-unit> 792 </trans-unit>
695 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948"> 793 <trans-unit id="1cbeb1eb589bfbe5efce94184cacd3095ca26948">
696 <source>Videos Trending</source> 794 <source>Videos Trending</source>
697 <target>影片趨勢</target> 795 <target>影片趨勢</target>
698 <context-group name="null"> 796 <context-group name="null">
699 <context context-type="linenumber">57</context> 797 <context context-type="linenumber">59</context>
700 </context-group> 798 </context-group>
701 </trans-unit> 799 </trans-unit>
702 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883"> 800 <trans-unit id="1861c96217213992e02dcb77e15ea69e718c9883">
703 <source>Videos Recently Added</source> 801 <source>Videos Recently Added</source>
704 <target>最近新增的影片</target> 802 <target>最近新增的影片</target>
705 <context-group name="null"> 803 <context-group name="null">
706 <context context-type="linenumber">58</context> 804 <context context-type="linenumber">60</context>
707 </context-group> 805 </context-group>
708 </trans-unit> 806 </trans-unit>
709 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f"> 807 <trans-unit id="b6307f83d9f43bff8d5129a7888e89964ddc3f7f">
710 <source>Local videos</source> 808 <source>Local videos</source>
711 <target>本地影片</target> 809 <target>本地影片</target>
712 <context-group name="null"> 810 <context-group name="null">
713 <context context-type="linenumber">59</context> 811 <context context-type="linenumber">61</context>
714 </context-group> 812 </context-group>
715 </trans-unit> 813 </trans-unit>
716 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9"> 814 <trans-unit id="8551afadb69b3fef89e191f507e8ac84e624e8b9">
717 <source>Policy on videos containing sensitive content</source> 815 <source>Policy on videos containing sensitive content</source>
718 <target>包含敏感內容的影片政策</target> 816 <target>包含敏感內容的影片政策</target>
719 <context-group name="null"> 817 <context-group name="null">
720 <context context-type="linenumber">68</context> 818 <context context-type="linenumber">70</context>
721 </context-group> 819 </context-group>
722 </trans-unit> 820 </trans-unit>
723 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df"> 821 <trans-unit id="aa3ef567a1ea22c1e4d0acfdc8f80bc636bf12df">
@@ -752,42 +850,63 @@
752 <source>Signup enabled</source> 850 <source>Signup enabled</source>
753 <target>已啟用註冊</target> 851 <target>已啟用註冊</target>
754 <context-group name="null"> 852 <context-group name="null">
755 <context context-type="linenumber">90</context> 853 <context context-type="linenumber">92</context>
756 </context-group> 854 </context-group>
757 </trans-unit> 855 </trans-unit>
758 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402"> 856 <trans-unit id="68bda70e0dd4f7f91549462e55f1b2a1602d8402">
759 <source>Signup limit</source> 857 <source>Signup limit</source>
760 <target>限制註冊</target> 858 <target>限制註冊</target>
761 <context-group name="null"> 859 <context-group name="null">
762 <context context-type="linenumber">94</context> 860 <context context-type="linenumber">101</context>
861 </context-group>
862 </trans-unit>
863 <trans-unit id="a059709f71aa4c0ac219e160e78a738682ca6a36">
864 <source>Import</source>
865 <target>匯入</target>
866 <context-group name="null">
867 <context context-type="linenumber">42</context>
868 </context-group>
869 </trans-unit>
870 <trans-unit id="e9964673c94eb0b4ff8088c84018217c031f31ce">
871 <source>Video import with HTTP enabled</source>
872 <target>已啟用 HTTP 匯入影片</target>
873 <context-group name="null">
874 <context context-type="linenumber">115</context>
875 </context-group>
876 </trans-unit>
877 <trans-unit id="05fdf7b5be1c3a7126e3c06d81da3134981b0a9e">
878 <source>Video import with a torrent file or a magnet URI enabled</source>
879 <target>已啟用種子檔案或磁力連結匯入影片</target>
880 <context-group name="null">
881 <context context-type="linenumber">120</context>
763 </context-group> 882 </context-group>
764 </trans-unit> 883 </trans-unit>
765 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011"> 884 <trans-unit id="ca2283fc765b9f44b69f0175d685dc2443da6011">
766 <source>Administrator</source> 885 <source>Administrator</source>
767 <target>管理員</target> 886 <target>管理員</target>
768 <context-group name="null"> 887 <context-group name="null">
769 <context context-type="linenumber">116</context> 888 <context context-type="linenumber">123</context>
770 </context-group> 889 </context-group>
771 </trans-unit> 890 </trans-unit>
772 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> 891 <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587">
773 <source>Admin email</source> 892 <source>Admin email</source>
774 <target>管理電子郵件</target> 893 <target>管理電子郵件</target>
775 <context-group name="null"> 894 <context-group name="null">
776 <context context-type="linenumber">119</context> 895 <context context-type="linenumber">126</context>
777 </context-group> 896 </context-group>
778 </trans-unit> 897 </trans-unit>
779 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be"> 898 <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be">
780 <source>Users</source> 899 <source>Users</source>
781 <target>使用者</target> 900 <target>使用者</target>
782 <context-group name="null"> 901 <context-group name="null">
783 <context context-type="linenumber">129</context> 902 <context context-type="linenumber">136</context>
784 </context-group> 903 </context-group>
785 </trans-unit> 904 </trans-unit>
786 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09"> 905 <trans-unit id="31b3275d999af45fe64c6824e6e017d2e2704f09">
787 <source>User default video quota</source> 906 <source>User default video quota</source>
788 <target>使用者預設影片配額</target> 907 <target>使用者預設影片配額</target>
789 <context-group name="null"> 908 <context-group name="null">
790 <context context-type="linenumber">132</context> 909 <context context-type="linenumber">139</context>
791 </context-group> 910 </context-group>
792 </trans-unit> 911 </trans-unit>
793 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5"> 912 <trans-unit id="50247a2f9711ea9e9a85aacc46668131e9b424a5">
@@ -801,158 +920,133 @@
801 <source>Twitter</source> 920 <source>Twitter</source>
802 <target>Twitter</target> 921 <target>Twitter</target>
803 <context-group name="null"> 922 <context-group name="null">
804 <context context-type="linenumber">148</context> 923 <context context-type="linenumber">170</context>
805 </context-group> 924 </context-group>
806 </trans-unit> 925 </trans-unit>
807 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524"> 926 <trans-unit id="7fdb41bbf2ee042ec5f68725a1c16a1c97f3e524">
808 <source>Your Twitter username</source> 927 <source>Your Twitter username</source>
809 <target>您的 Twitter 使用者名稱</target> 928 <target>您的 Twitter 使用者名稱</target>
810 <context-group name="null"> 929 <context-group name="null">
811 <context context-type="linenumber">151</context> 930 <context context-type="linenumber">173</context>
812 </context-group> 931 </context-group>
813 </trans-unit> 932 </trans-unit>
814 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c"> 933 <trans-unit id="6e671e839ca889feef0d8ed525d1a44b4b10870c">
815 <source>Indicates the Twitter account for the website or platform on which the content was published.</source> 934 <source>Indicates the Twitter account for the website or platform on which the content was published.</source>
816 <target>指示發佈影片的網頁或平臺的 Twitter 帳號</target> 935 <target>指示發佈影片的網頁或平臺的 Twitter 帳號</target>
817 <context-group name="null"> 936 <context-group name="null">
818 <context context-type="linenumber">154</context> 937 <context context-type="linenumber">176</context>
819 </context-group> 938 </context-group>
820 </trans-unit> 939 </trans-unit>
821 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605"> 940 <trans-unit id="c0716c28b9d4c9e0b2fd6031334394214e5f9605">
822 <source>Instance whitelisted by Twitter</source> 941 <source>Instance whitelisted by Twitter</source>
823 <target>由 Twitter 列入白名單的實體</target> 942 <target>由 Twitter 列入白名單的實體</target>
824 <context-group name="null"> 943 <context-group name="null">
825 <context context-type="linenumber">167</context> 944 <context context-type="linenumber">189</context>
826 </context-group>
827 </trans-unit>
828 <trans-unit id="3f008a1a07ca42c6ad258fde1bbd80ed74ada19b">
829 <source>If your instance is whitelisted by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.&lt;br /&gt;
830If the instance is not whitelisted, we use an image link card that will redirect on your PeerTube instance.&lt;br /&gt;&lt;br /&gt;
831Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; to see if you instance is whitelisted.</source>
832 <target>若您的實體被 Twitter 列入白名單,在 PeerTube 影片分享上的 Twitter feed 將會嵌入一個影片播放器。&lt;br /&gt;
833若實體不在白名單中,我們使用圖片連結卡,如此將會重新導向至您的 PeerTube 實體。&lt;br /&gt;&lt;br /&gt;
834打勾此勾選框,儲存設定並以您的實體中的影片 URL (https://example.com/videos/watch/blabla) 在 &lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'&gt;https://cards-dev.twitter.com/validator&lt;/a&gt; 上測試以檢視您的實體是否在白名單中。</target>
835 <context-group name="null">
836 <context context-type="linenumber">168</context>
837 </context-group> 945 </context-group>
838 </trans-unit> 946 </trans-unit>
839 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5"> 947 <trans-unit id="419d940613972cc3fae9c8ea0a4306dbf80616e5">
840 <source>Services</source> 948 <source>Services</source>
841 <target>服務</target> 949 <target>服務</target>
842 <context-group name="null"> 950 <context-group name="null">
843 <context context-type="linenumber">146</context> 951 <context context-type="linenumber">168</context>
844 </context-group> 952 </context-group>
845 </trans-unit> 953 </trans-unit>
846 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490"> 954 <trans-unit id="fe22d2c0020e913ee4b75ec22a3abc8814810490">
847 <source>Transcoding</source> 955 <source>Transcoding</source>
848 <target>轉換編碼</target> 956 <target>轉換編碼</target>
849 <context-group name="null"> 957 <context-group name="null">
850 <context context-type="linenumber">176</context> 958 <context context-type="linenumber">200</context>
851 </context-group> 959 </context-group>
852 </trans-unit> 960 </trans-unit>
853 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9"> 961 <trans-unit id="fca29003c4ea1226ff8cbee89481758aab0e2be9">
854 <source>Transcoding enabled</source> 962 <source>Transcoding enabled</source>
855 <target>轉換編碼已啟用</target> 963 <target>轉換編碼已啟用</target>
856 <context-group name="null"> 964 <context-group name="null">
857 <context context-type="linenumber">180</context> 965 <context context-type="linenumber">204</context>
858 </context-group> 966 </context-group>
859 </trans-unit> 967 </trans-unit>
860 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f"> 968 <trans-unit id="6ef2ab819d4441fa8bddf6759b6936783d06616f">
861 <source>If you disable transcoding, many videos from your users will not work!</source> 969 <source>If you disable transcoding, many videos from your users will not work!</source>
862 <target>若您停用轉換編碼,從您的使用者們而來的許多影片將會無法運作!</target> 970 <target>若您停用轉換編碼,從您的使用者們而來的許多影片將會無法運作!</target>
863 <context-group name="null"> 971 <context-group name="null">
864 <context context-type="linenumber">181</context> 972 <context context-type="linenumber">205</context>
865 </context-group> 973 </context-group>
866 </trans-unit> 974 </trans-unit>
867 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2"> 975 <trans-unit id="a33feadefbb776217c2db96100736314f8b765c2">
868 <source>Transcoding threads</source> 976 <source>Transcoding threads</source>
869 <target>轉換編碼執行緒</target> 977 <target>轉換編碼執行緒</target>
870 <context-group name="null"> 978 <context-group name="null">
871 <context context-type="linenumber">187</context> 979 <context context-type="linenumber">211</context>
980 </context-group>
981 </trans-unit>
982 <trans-unit id="5afc7e831e59c325e8fb3e208ec108ff53fb3500">
983 <source>Resolution <x id="INTERPOLATION" equiv-text="{{resolution}}"/> enabled</source>
984 <target>解析度 <x id="INTERPOLATION" equiv-text="{{resolution}}"/> 已啟用</target>
985 <context-group name="null">
986 <context context-type="linenumber">227</context>
987 </context-group>
988 </trans-unit>
989 <trans-unit id="d5bf7bea37daff4e018fd11a1b552512e5cb54c0">
990 <source>Some files are not federated (previews, captions). We fetch them directly from the origin instance and cache them.</source>
991 <target>有一些檔案並未聯盟化(預覽、字幕)。我們會直接從原始實體擷取它們並快取。</target>
992 <context-group name="null">
993 <context context-type="linenumber">238</context>
872 </context-group> 994 </context-group>
873 </trans-unit> 995 </trans-unit>
874 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7"> 996 <trans-unit id="d00f6c2dcb426440a0a8cd8eec12d094fbfaf6f7">
875 <source>Previews cache size</source> 997 <source>Previews cache size</source>
876 <target>預覽快取大小</target> 998 <target>預覽快取大小</target>
877 <context-group name="null"> 999 <context-group name="null">
878 <context context-type="linenumber">219</context> 1000 <context context-type="linenumber">243</context>
1001 </context-group>
1002 </trans-unit>
1003 <trans-unit id="98970cd72e776308a37dc4e84bebbedffc787607">
1004 <source>Video captions cache size</source>
1005 <target>影片字幕快取大小</target>
1006 <context-group name="null">
1007 <context context-type="linenumber">254</context>
879 </context-group> 1008 </context-group>
880 </trans-unit> 1009 </trans-unit>
881 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c"> 1010 <trans-unit id="e3a65df2560e99864bbde695da3a7bdf743a184c">
882 <source>Customizations</source> 1011 <source>Customizations</source>
883 <target>自訂</target> 1012 <target>自訂</target>
884 <context-group name="null"> 1013 <context-group name="null">
885 <context context-type="linenumber">240</context> 1014 <context context-type="linenumber">264</context>
886 </context-group> 1015 </context-group>
887 </trans-unit> 1016 </trans-unit>
888 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c"> 1017 <trans-unit id="0da9752916950ce6890d897b835c923a71ad9c5c">
889 <source>JavaScript</source> 1018 <source>JavaScript</source>
890 <target>JavaScript</target> 1019 <target>JavaScript</target>
891 <context-group name="null"> 1020 <context-group name="null">
892 <context context-type="linenumber">243</context> 1021 <context context-type="linenumber">267</context>
893 </context-group> 1022 </context-group>
894 </trans-unit> 1023 </trans-unit>
895 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c"> 1024 <trans-unit id="fda2339a6e6ba017ee43b560caf660ed4022333c">
896 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source> 1025 <source>Write directly JavaScript code.&lt;br /&gt;Example: &lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</source>
897 <target>直接編寫 JavaScript 程式碼。&lt;br /&gt;範例:&lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</target> 1026 <target>直接編寫 JavaScript 程式碼。&lt;br /&gt;範例:&lt;pre&gt;console.log('my instance is amazing');&lt;/pre&gt;</target>
898 <context-group name="null"> 1027 <context-group name="null">
899 <context context-type="linenumber">246</context> 1028 <context context-type="linenumber">270</context>
900 </context-group>
901 </trans-unit>
902 <trans-unit id="f133b08d6519081bfb8ef51cff4bf2b3af23dde6">
903 <source>
904 Write directly CSS code. Example:&lt;br /&gt;
905 &lt;pre&gt;
906 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
907 background-color: red;
908 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
909 &lt;/pre&gt;
910
911 Prepend with &lt;em&gt;#custom-css&lt;/em&gt; to override styles. Example:
912 &lt;pre&gt;
913 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
914 color: red;
915 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
916 &lt;/pre&gt;
917 </source>
918 <target>
919 直接編寫 CSS 程式碼。範例:&lt;br /&gt;
920 &lt;pre&gt;
921 body <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
922 background-color: red;
923 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
924 &lt;/pre&gt;
925
926 附加 &lt;em&gt;#custom-css&lt;/em&gt; 以覆寫樣式。範例:
927 &lt;pre&gt;
928 #custom-css .logged-in-email <x id="INTERPOLATION" equiv-text="{{ '{' }}"/>
929 color: red;
930 <x id="INTERPOLATION_1" equiv-text="{{ '}' }}"/>
931 &lt;/pre&gt;
932 </target>
933 <context-group name="null">
934 <context context-type="linenumber">262</context>
935 </context-group> 1029 </context-group>
936 </trans-unit> 1030 </trans-unit>
937 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab"> 1031 <trans-unit id="6c44844ebdb7352c433b7734feaa65f01bb594ab">
938 <source>Advanced configuration</source> 1032 <source>Advanced configuration</source>
939 <target>進階設定</target> 1033 <target>進階設定</target>
940 <context-group name="null"> 1034 <context-group name="null">
941 <context context-type="linenumber">174</context> 1035 <context context-type="linenumber">197</context>
942 </context-group> 1036 </context-group>
943 </trans-unit> 1037 </trans-unit>
944 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8"> 1038 <trans-unit id="dad5a5283e4c853c011a0f03d5a52310338bbff8">
945 <source>Update configuration</source> 1039 <source>Update configuration</source>
946 <target>更新設定</target> 1040 <target>更新設定</target>
947 <context-group name="null"> 1041 <context-group name="null">
948 <context context-type="linenumber">289</context> 1042 <context context-type="linenumber">314</context>
949 </context-group> 1043 </context-group>
950 </trans-unit> 1044 </trans-unit>
951 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca"> 1045 <trans-unit id="3e459b5c3861d8c80084d21d233b7c8e2edd3cca">
952 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source> 1046 <source>It seems the configuration is invalid. Please search potential errors in the different tabs.</source>
953 <target>設定似乎無效。請在不同的分頁中搜尋潛在的錯誤。</target> 1047 <target>設定似乎無效。請在不同的分頁中搜尋潛在的錯誤。</target>
954 <context-group name="null"> 1048 <context-group name="null">
955 <context context-type="linenumber">290</context> 1049 <context context-type="linenumber">315</context>
956 </context-group> 1050 </context-group>
957 </trans-unit> 1051 </trans-unit>
958 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c"> 1052 <trans-unit id="80dbb8ba42b97a9ec035c0ba09f45c07ea07096c">
@@ -973,31 +1067,13 @@ Check this checkbox, save the configuration and test with a video URL of your in
973 <context context-type="linenumber">7</context> 1067 <context context-type="linenumber">7</context>
974 </context-group> 1068 </context-group>
975 </trans-unit> 1069 </trans-unit>
976 <trans-unit id="1c9406213cf05033eda4d3df678217b5eb822315">
977 <source>
978 Video abuses
979 </source>
980 <target>影片濫用</target>
981 <context-group name="null">
982 <context context-type="linenumber">11</context>
983 </context-group>
984 </trans-unit>
985 <trans-unit id="96ccede058f0022f34230c3adc09e60076b6d037">
986 <source>
987 Video blacklist
988 </source>
989 <target>影片黑名單</target>
990 <context-group name="null">
991 <context context-type="linenumber">15</context>
992 </context-group>
993 </trans-unit>
994 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368"> 1070 <trans-unit id="7bea88c54fdccfdc9f687b0ffe9bf6a653d19368">
995 <source> 1071 <source>
996 Jobs 1072 Jobs
997 </source> 1073 </source>
998 <target>任務</target> 1074 <target>任務</target>
999 <context-group name="null"> 1075 <context-group name="null">
1000 <context context-type="linenumber">19</context> 1076 <context context-type="linenumber">15</context>
1001 </context-group> 1077 </context-group>
1002 </trans-unit> 1078 </trans-unit>
1003 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13"> 1079 <trans-unit id="9c6ce37623b626a102002901ca12c37e7a3a7f13">
@@ -1006,7 +1082,7 @@ Check this checkbox, save the configuration and test with a video URL of your in
1006 </source> 1082 </source>
1007 <target>設定</target> 1083 <target>設定</target>
1008 <context-group name="null"> 1084 <context-group name="null">
1009 <context context-type="linenumber">23</context> 1085 <context context-type="linenumber">19</context>
1010 </context-group> 1086 </context-group>
1011 </trans-unit> 1087 </trans-unit>
1012 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396"> 1088 <trans-unit id="4e8635c108375983b42229df44bda8c0af84f396">
@@ -1074,6 +1150,27 @@ Check this checkbox, save the configuration and test with a video URL of your in
1074 <context context-type="linenumber">2</context> 1150 <context context-type="linenumber">2</context>
1075 </context-group> 1151 </context-group>
1076 </trans-unit> 1152 </trans-unit>
1153 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936">
1154 <source>Following</source>
1155 <target>正在追蹤</target>
1156 <context-group name="null">
1157 <context context-type="linenumber">5</context>
1158 </context-group>
1159 </trans-unit>
1160 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
1161 <source>Follow</source>
1162 <target>追蹤</target>
1163 <context-group name="null">
1164 <context context-type="linenumber">7</context>
1165 </context-group>
1166 </trans-unit>
1167 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
1168 <source>Followers</source>
1169 <target>追蹤者</target>
1170 <context-group name="null">
1171 <context context-type="linenumber">9</context>
1172 </context-group>
1173 </trans-unit>
1077 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f"> 1174 <trans-unit id="a9f2501fcb2ff71f1376c2d2fbbbd49f200e6c8f">
1078 <source>Jobs list</source> 1175 <source>Jobs list</source>
1079 <target>任務清單</target> 1176 <target>任務清單</target>
@@ -1088,6 +1185,20 @@ Check this checkbox, save the configuration and test with a video URL of your in
1088 <context context-type="linenumber">19</context> 1185 <context context-type="linenumber">19</context>
1089 </context-group> 1186 </context-group>
1090 </trans-unit> 1187 </trans-unit>
1188 <trans-unit id="74c8f69ec23f41a429e241126ab4d25b9d12348e">
1189 <source>Processed on</source>
1190 <target>已處理在</target>
1191 <context-group name="null">
1192 <context context-type="linenumber">22</context>
1193 </context-group>
1194 </trans-unit>
1195 <trans-unit id="4fa08915c99629d38c9da8a08b1985a7f4e38e40">
1196 <source>Finished on</source>
1197 <target>已結束在</target>
1198 <context-group name="null">
1199 <context context-type="linenumber">23</context>
1200 </context-group>
1201 </trans-unit>
1091 <trans-unit id="31cf824034489eb42f6a388d5980b98b8e1de015"> 1202 <trans-unit id="31cf824034489eb42f6a388d5980b98b8e1de015">
1092 <source>Create user</source> 1203 <source>Create user</source>
1093 <target>建立使用者</target> 1204 <target>建立使用者</target>
@@ -1120,14 +1231,7 @@ Check this checkbox, save the configuration and test with a video URL of your in
1120 <source>Role</source> 1231 <source>Role</source>
1121 <target>角色</target> 1232 <target>角色</target>
1122 <context-group name="null"> 1233 <context-group name="null">
1123 <context context-type="linenumber">19</context> 1234 <context context-type="linenumber">20</context>
1124 </context-group>
1125 </trans-unit>
1126 <trans-unit id="15f046007e4fca2e8477966745e2ec4e3e81bc3b">
1127 <source>Video quota</source>
1128 <target>影片配額</target>
1129 <context-group name="null">
1130 <context context-type="linenumber">18</context>
1131 </context-group> 1235 </context-group>
1132 </trans-unit> 1236 </trans-unit>
1133 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345"> 1237 <trans-unit id="42e3c0e89177ca135974221eaf0e4e836c32e345">
@@ -1143,6 +1247,13 @@ Check this checkbox, save the configuration and test with a video URL of your in
1143 <context context-type="linenumber">65</context> 1247 <context context-type="linenumber">65</context>
1144 </context-group> 1248 </context-group>
1145 </trans-unit> 1249 </trans-unit>
1250 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125">
1251 <source>Reason...</source>
1252 <target>理由……</target>
1253 <context-group name="null">
1254 <context context-type="linenumber">11</context>
1255 </context-group>
1256 </trans-unit>
1146 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f"> 1257 <trans-unit id="5e8b4663c17c337a1f11160c0a683350936faa1f">
1147 <source>Users list</source> 1258 <source>Users list</source>
1148 <target>使用者清單</target> 1259 <target>使用者清單</target>
@@ -1154,91 +1265,42 @@ Check this checkbox, save the configuration and test with a video URL of your in
1154 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source> 1265 <source>Username <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1155 <target>使用者名稱 <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target> 1266 <target>使用者名稱 <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1156 <context-group name="null"> 1267 <context-group name="null">
1157 <context context-type="linenumber">16</context> 1268 <context context-type="linenumber">17</context>
1158 </context-group>
1159 </trans-unit>
1160 <trans-unit id="0c7e8870481f1287af6a142f538391d8c16c2408">
1161 <source>Video abuses list</source>
1162 <target>影片濫用清單</target>
1163 <context-group name="null">
1164 <context context-type="linenumber">2</context>
1165 </context-group>
1166 </trans-unit>
1167 <trans-unit id="4ba250869daa372b54d24fafc0ea934769ee4076">
1168 <source>Reason</source>
1169 <target>理由</target>
1170 <context-group name="null">
1171 <context context-type="linenumber">11</context>
1172 </context-group> 1269 </context-group>
1173 </trans-unit> 1270 </trans-unit>
1174 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2"> 1271 <trans-unit id="2bf5a31043ff476ca081a4080f3f3f17518dc6f2">
1175 <source>Reporter</source> 1272 <source>Reporter</source>
1176 <target>回報者</target> 1273 <target>回報者</target>
1177 <context-group name="null"> 1274 <context-group name="null">
1178 <context context-type="linenumber">12</context> 1275 <context context-type="linenumber">8</context>
1179 </context-group> 1276 </context-group>
1180 </trans-unit> 1277 </trans-unit>
1181 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4"> 1278 <trans-unit id="2d1ea268a6a9f483dbc2cbfe19bf4256a57a6af4">
1182 <source>Video</source> 1279 <source>Video</source>
1183 <target>影片</target> 1280 <target>影片</target>
1184 <context-group name="null"> 1281 <context-group name="null">
1185 <context context-type="linenumber">9</context> 1282 <context context-type="linenumber">14</context>
1186 </context-group> 1283 </context-group>
1187 </trans-unit> 1284 </trans-unit>
1188 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7"> 1285 <trans-unit id="c6ab75e099e131d7a4f94e1732e7436d8fc386c7">
1189 <source>Go to the account</source> 1286 <source>Go to the account</source>
1190 <target>到帳號</target> 1287 <target>到帳號</target>
1191 <context-group name="null"> 1288 <context-group name="null">
1192 <context context-type="linenumber">22</context> 1289 <context context-type="linenumber">27</context>
1193 </context-group> 1290 </context-group>
1194 </trans-unit> 1291 </trans-unit>
1195 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5"> 1292 <trans-unit id="1cb8348c199d03e297d165e262237194f25fe3f5">
1196 <source>Go to the video</source> 1293 <source>Go to the video</source>
1197 <target>到影片</target> 1294 <target>到影片</target>
1198 <context-group name="null"> 1295 <context-group name="null">
1199 <context context-type="linenumber">28</context> 1296 <context context-type="linenumber">33</context>
1200 </context-group> 1297 </context-group>
1201 </trans-unit> 1298 </trans-unit>
1202 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1"> 1299 <trans-unit id="00ecde6001106fe7406a34cc3459cc5b88e4aec1">
1203 <source>Blacklisted videos</source> 1300 <source>Blacklisted videos</source>
1204 <target>已加入黑名單的影片</target> 1301 <target>已加入黑名單的影片</target>
1205 <context-group name="null"> 1302 <context-group name="null">
1206 <context context-type="linenumber">2</context> 1303 <context context-type="linenumber">7</context>
1207 </context-group>
1208 </trans-unit>
1209 <trans-unit id="7c02d113e9b7884037834cddecf2a32a5538b35b">
1210 <source>Name <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1211 <target>名稱 <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1212 <context-group name="null">
1213 <context context-type="linenumber">11</context>
1214 </context-group>
1215 </trans-unit>
1216 <trans-unit id="cd5ca5da9e2fa21571e9f86a24a5c3b45a3ddc51">
1217 <source>Views <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></source>
1218 <target>檢視 <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;p-sortIcon&gt;"/><x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="&lt;/p-sortIcon&gt;"/></target>
1219 <context-group name="null">
1220 <context context-type="linenumber">13</context>
1221 </context-group>
1222 </trans-unit>
1223 <trans-unit id="d4717113115ca7106a354a5aac54d1c0126261d9">
1224 <source>NSFW</source>
1225 <target>NSFW</target>
1226 <context-group name="null">
1227 <context context-type="linenumber">14</context>
1228 </context-group>
1229 </trans-unit>
1230 <trans-unit id="8c87d9527af7ff2ada84c911516a9e43a352e401">
1231 <source>UUID</source>
1232 <target>UUID</target>
1233 <context-group name="null">
1234 <context context-type="linenumber">15</context>
1235 </context-group>
1236 </trans-unit>
1237 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1238 <source>Unblacklist</source>
1239 <target>取消黑名單</target>
1240 <context-group name="null">
1241 <context context-type="linenumber">30</context>
1242 </context-group> 1304 </context-group>
1243 </trans-unit> 1305 </trans-unit>
1244 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6"> 1306 <trans-unit id="efad4be364b8fb5c73cbfcc7acccd542f9d84ad6">
@@ -1248,18 +1310,11 @@ Check this checkbox, save the configuration and test with a video URL of your in
1248 <context context-type="linenumber">3</context> 1310 <context context-type="linenumber">3</context>
1249 </context-group> 1311 </context-group>
1250 </trans-unit> 1312 </trans-unit>
1251 <trans-unit id="520d68b2c9f7dacaf2a5073716cad9bd328ea7e7">
1252 <source>My video channels</source>
1253 <target>我的影片頻道</target>
1254 <context-group name="null">
1255 <context context-type="linenumber">5</context>
1256 </context-group>
1257 </trans-unit>
1258 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894"> 1313 <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894">
1259 <source>My videos</source> 1314 <source>My videos</source>
1260 <target>我的影片</target> 1315 <target>我的影片</target>
1261 <context-group name="null"> 1316 <context-group name="null">
1262 <context context-type="linenumber">7</context> 1317 <context context-type="linenumber">14</context>
1263 </context-group> 1318 </context-group>
1264 </trans-unit> 1319 </trans-unit>
1265 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48"> 1320 <trans-unit id="9518d3fb042d551167c1701ddeb88a1374cf1e48">
@@ -1283,6 +1338,20 @@ Check this checkbox, save the configuration and test with a video URL of your in
1283 <context context-type="linenumber">15</context> 1338 <context context-type="linenumber">15</context>
1284 </context-group> 1339 </context-group>
1285 </trans-unit> 1340 </trans-unit>
1341 <trans-unit id="c74e3202d080780c6415d0e9209c1c859438b735">
1342 <source>Danger zone</source>
1343 <target>危險區域</target>
1344 <context-group name="null">
1345 <context context-type="linenumber">18</context>
1346 </context-group>
1347 </trans-unit>
1348 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd">
1349 <source>Submit</source>
1350 <target>遞交</target>
1351 <context-group name="null">
1352 <context context-type="linenumber">24</context>
1353 </context-group>
1354 </trans-unit>
1286 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79"> 1355 <trans-unit id="8057bddbed23d6cd911df8cc3a4ec24d1f258b79">
1287 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source> 1356 <source><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views</source>
1288 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> 次檢視</target> 1357 <target><x id="INTERPOLATION" equiv-text="{{ video.createdAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> 次檢視</target>
@@ -1290,11 +1359,15 @@ Check this checkbox, save the configuration and test with a video URL of your in
1290 <context context-type="linenumber">19</context> 1359 <context context-type="linenumber">19</context>
1291 </context-group> 1360 </context-group>
1292 </trans-unit> 1361 </trans-unit>
1293 <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7"> 1362 <trans-unit id="17a9d3860d9ad593dd09a9f934e03999d9e76a7a">
1294 <source>Delete</source> 1363 <source>
1295 <target>刪除</target> 1364 Cancel
1365 </source>
1366 <target>
1367 取消
1368 </target>
1296 <context-group name="null"> 1369 <context-group name="null">
1297 <context context-type="linenumber">15</context> 1370 <context context-type="linenumber">30</context>
1298 </context-group> 1371 </context-group>
1299 </trans-unit> 1372 </trans-unit>
1300 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260"> 1373 <trans-unit id="73c1cefc348a6f361497210dea1ed79499fd1260">
@@ -1308,7 +1381,7 @@ Check this checkbox, save the configuration and test with a video URL of your in
1308 <source>Go to the channel</source> 1381 <source>Go to the channel</source>
1309 <target>到頻道</target> 1382 <target>到頻道</target>
1310 <context-group name="null"> 1383 <context-group name="null">
1311 <context context-type="linenumber">15</context> 1384 <context context-type="linenumber">8</context>
1312 </context-group> 1385 </context-group>
1313 </trans-unit> 1386 </trans-unit>
1314 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68"> 1387 <trans-unit id="9dbe4718a5611fbc611fc6b5e0b27df813372c68">
@@ -1330,14 +1403,35 @@ Check this checkbox, save the configuration and test with a video URL of your in
1330When you will upload a video in this channel, the video support field will be automatically filled by this text.</source> 1403When you will upload a video in this channel, the video support field will be automatically filled by this text.</source>
1331 <target>簡短的文字告訴人們他們要如何支援您的頻道(會員平臺等等)。&lt;br /&gt;&lt;br /&gt;當您要上傳影片到此頻道時,影片支援欄位將會自動填入這些文字。</target> 1404 <target>簡短的文字告訴人們他們要如何支援您的頻道(會員平臺等等)。&lt;br /&gt;&lt;br /&gt;當您要上傳影片到此頻道時,影片支援欄位將會自動填入這些文字。</target>
1332 <context-group name="null"> 1405 <context-group name="null">
1333 <context context-type="linenumber">36</context> 1406 <context context-type="linenumber">52</context>
1407 </context-group>
1408 </trans-unit>
1409 <trans-unit id="38baeb215c17af9d9e295e371a57f4a48ab4c191">
1410 <source>Target</source>
1411 <target>目標</target>
1412 <context-group name="null">
1413 <context context-type="linenumber">8</context>
1414 </context-group>
1415 </trans-unit>
1416 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1417 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1418 <target>由 <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/> 建立</target>
1419 <context-group name="null">
1420 <context context-type="linenumber">17</context>
1421 </context-group>
1422 </trans-unit>
1423 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1424 <source>Go the owner account page</source>
1425 <target>到擁有者帳號頁面</target>
1426 <context-group name="null">
1427 <context context-type="linenumber">16</context>
1334 </context-group> 1428 </context-group>
1335 </trans-unit> 1429 </trans-unit>
1336 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9"> 1430 <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9">
1337 <source>Change password</source> 1431 <source>Change password</source>
1338 <target>變更密碼</target> 1432 <target>變更密碼</target>
1339 <context-group name="null"> 1433 <context-group name="null">
1340 <context context-type="linenumber">19</context> 1434 <context context-type="linenumber">22</context>
1341 </context-group> 1435 </context-group>
1342 </trans-unit> 1436 </trans-unit>
1343 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229"> 1437 <trans-unit id="e70e209561583f360b1e9cefd2cbb1fe434b6229">
@@ -1382,6 +1476,20 @@ When you will upload a video in this channel, the video support field will be au
1382 <context context-type="linenumber">27</context> 1476 <context context-type="linenumber">27</context>
1383 </context-group> 1477 </context-group>
1384 </trans-unit> 1478 </trans-unit>
1479 <trans-unit id="4b50f2ef2e8b9a24e674d12012ee310f378a5503">
1480 <source><x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> subscribers</source>
1481 <target><x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> 個訂閱者</target>
1482 <context-group name="null">
1483 <context context-type="linenumber">10</context>
1484 </context-group>
1485 </trans-unit>
1486 <trans-unit id="c4a959fc6349bd0793e1ad571d492052a07bdab5">
1487 <source>Change the avatar</source>
1488 <target>變更大頭貼</target>
1489 <context-group name="null">
1490 <context context-type="linenumber">15</context>
1491 </context-group>
1492 </trans-unit>
1385 <trans-unit id="c860c88df9ad58b1187084251340b232cdf0a7f9"> 1493 <trans-unit id="c860c88df9ad58b1187084251340b232cdf0a7f9">
1386 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ avatarExtensions }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxAvatarSize | bytes }}"/>)</source> 1494 <source>(extensions: <x id="INTERPOLATION" equiv-text="{{ avatarExtensions }}"/>, max size: <x id="INTERPOLATION_1" equiv-text="{{ maxAvatarSize | bytes }}"/>)</source>
1387 <target>(副檔名:<x id="INTERPOLATION" equiv-text="{{ avatarExtensions }}"/>,最大大小:<x id="INTERPOLATION_1" equiv-text="{{ maxAvatarSize | bytes }}"/>)</target> 1495 <target>(副檔名:<x id="INTERPOLATION" equiv-text="{{ avatarExtensions }}"/>,最大大小:<x id="INTERPOLATION_1" equiv-text="{{ maxAvatarSize | bytes }}"/>)</target>
@@ -1398,20 +1506,6 @@ When you will upload a video in this channel, the video support field will be au
1398 <context context-type="linenumber">1</context> 1506 <context context-type="linenumber">1</context>
1399 </context-group> 1507 </context-group>
1400 </trans-unit> 1508 </trans-unit>
1401 <trans-unit id="c65641c36859c328928e6b0f14c3f913886f8add">
1402 <source>Created by <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></source>
1403 <target>由 <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/> 建立</target>
1404 <context-group name="null">
1405 <context context-type="linenumber">14</context>
1406 </context-group>
1407 </trans-unit>
1408 <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913">
1409 <source>Go the owner account page</source>
1410 <target>到擁有者帳號頁面</target>
1411 <context-group name="null">
1412 <context context-type="linenumber">13</context>
1413 </context-group>
1414 </trans-unit>
1415 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8"> 1509 <trans-unit id="1380539d91f77f565de6e21ce210da891e6644b8">
1416 <source>Support this channel</source> 1510 <source>Support this channel</source>
1417 <target>支援此頻道</target> 1511 <target>支援此頻道</target>
@@ -1430,28 +1524,44 @@ When you will upload a video in this channel, the video support field will be au
1430 <source>URL</source> 1524 <source>URL</source>
1431 <target>URL</target> 1525 <target>URL</target>
1432 <context-group name="null"> 1526 <context-group name="null">
1433 <context context-type="linenumber">12</context> 1527 <context context-type="linenumber">17</context>
1528 </context-group>
1529 </trans-unit>
1530 <trans-unit id="bfe7f34fbd4c3afa5f84a5580e0fae942cad2333">
1531 <source>You can import any URL &lt;a href='https://rg3.github.io/youtube-dl/supportedsites.html' target='_blank' rel='noopener noreferrer'&gt;supported by youtube-dl&lt;/a&gt; or URL that points to a raw MP4 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>
1532 <target>您可以匯入任何 &lt;a href='https://rg3.github.io/youtube-dl/supportedsites.html' target='_blank' rel='noopener noreferrer'&gt;supported by youtube-dl&lt;/a&gt; 支援的 URL,或是指向原始 MP4 檔案的 URL。您應該確保指向的內容的散佈權,否則這只會對您自己與您的實體造成法律上的麻煩。</target>
1533 <context-group name="null">
1534 <context context-type="linenumber">9</context>
1434 </context-group> 1535 </context-group>
1435 </trans-unit> 1536 </trans-unit>
1436 <trans-unit id="0cc554f4d7bb6a87515d2d95438e183b50702071"> 1537 <trans-unit id="0cc554f4d7bb6a87515d2d95438e183b50702071">
1437 <source>Channel</source> 1538 <source>Channel</source>
1438 <target>頻道</target> 1539 <target>頻道</target>
1439 <context-group name="null"> 1540 <context-group name="null">
1440 <context context-type="linenumber">35</context> 1541 <context context-type="linenumber">38</context>
1441 </context-group> 1542 </context-group>
1442 </trans-unit> 1543 </trans-unit>
1443 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427"> 1544 <trans-unit id="3c78b53bca33467190c0b7a01320bc093a2b1427">
1444 <source>Privacy</source> 1545 <source>Privacy</source>
1445 <target>隱私</target> 1546 <target>隱私</target>
1446 <context-group name="null"> 1547 <context-group name="null">
1447 <context context-type="linenumber">143</context> 1548 <context context-type="linenumber">161</context>
1549 </context-group>
1550 </trans-unit>
1551 <trans-unit id="63d6bf87c9f30441175648dfd3ef6a19292287c2">
1552 <source>
1553 Congratulations, the video behind <x id="INTERPOLATION" equiv-text="{{ targetUrl }}"/> will be imported! You can already add information about this video.
1554</source>
1555 <target>恭喜,在 <x id="INTERPOLATION" equiv-text="{{ targetUrl }}"/> 後的影片將會匯入!您已經可以加入關於此影片的資訊了。</target>
1556 <context-group name="null">
1557 <context context-type="linenumber">40</context>
1448 </context-group> 1558 </context-group>
1449 </trans-unit> 1559 </trans-unit>
1450 <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb"> 1560 <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb">
1451 <source>Update</source> 1561 <source>Update</source>
1452 <target>更新</target> 1562 <target>更新</target>
1453 <context-group name="null"> 1563 <context-group name="null">
1454 <context context-type="linenumber">105</context> 1564 <context context-type="linenumber">92</context>
1455 </context-group> 1565 </context-group>
1456 </trans-unit> 1566 </trans-unit>
1457 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9"> 1567 <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9">
@@ -1475,67 +1585,153 @@ When you will upload a video in this channel, the video support field will be au
1475 <context context-type="linenumber">55</context> 1585 <context context-type="linenumber">55</context>
1476 </context-group> 1586 </context-group>
1477 </trans-unit> 1587 </trans-unit>
1588 <trans-unit id="2fcbf437e001f47974d45bd03a19e0d9245fdb3b">
1589 <source>Select the torrent to import</source>
1590 <target>選取要匯入的種子</target>
1591 <context-group name="null">
1592 <context context-type="linenumber">6</context>
1593 </context-group>
1594 </trans-unit>
1595 <trans-unit id="0d6558176587662e9bb3b79cca57d42591cf82f9">
1596 <source>Paste magnet URI</source>
1597 <target>貼上磁力連結</target>
1598 <context-group name="null">
1599 <context context-type="linenumber">14</context>
1600 </context-group>
1601 </trans-unit>
1602 <trans-unit id="1ce18c12c809a738f05f2290f46df0677f27ed70">
1603 <source>You can import any torrent file that points to a mp4 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>
1604 <target>您可以匯入任何指向 mp4 檔案的種子檔案。您應該確保您有指向的檔案的散佈權,否則只會對您自己與您的實體造成法律上的麻煩。</target>
1605 <context-group name="null">
1606 <context context-type="linenumber">17</context>
1607 </context-group>
1608 </trans-unit>
1609 <trans-unit id="7cb3731472edd9edf6a6d036498c2c8388157266">
1610 <source>
1611 Congratulations, the video will be imported with BitTorrent! You can already add information about this video.
1612</source>
1613 <target>恭喜,影片將會使用 BitTorrent 匯入!您已經可以加入關於此影片的資訊了。</target>
1614 <context-group name="null">
1615 <context context-type="linenumber">48</context>
1616 </context-group>
1617 </trans-unit>
1618 <trans-unit id="0b60d939cf0f1af9fe513f31164d198abf671860">
1619 <source>Import <x id="INTERPOLATION" equiv-text="{{ videoName }}"/></source>
1620 <target>匯入 <x id="INTERPOLATION" equiv-text="{{ videoName }}"/></target>
1621 <context-group name="null">
1622 <context context-type="linenumber">3</context>
1623 </context-group>
1624 </trans-unit>
1625 <trans-unit id="e9cfe8bd050660077212af5c02f5be24821f28d5">
1626 <source>Upload <x id="INTERPOLATION" equiv-text="{{ videoName }}"/></source>
1627 <target>上傳 <x id="INTERPOLATION" equiv-text="{{ videoName }}"/></target>
1628 <context-group name="null">
1629 <context context-type="linenumber">4</context>
1630 </context-group>
1631 </trans-unit>
1632 <trans-unit id="4faf57baebf0fb754a91af0c39521a30cbb1def3">
1633 <source>Upload a file</source>
1634 <target>上傳檔案</target>
1635 <context-group name="null">
1636 <context context-type="linenumber">10</context>
1637 </context-group>
1638 </trans-unit>
1639 <trans-unit id="fc865859d33eab6fa0a8015233e4686cd544d470">
1640 <source>Import with URL</source>
1641 <target>用 URL 匯入</target>
1642 <context-group name="null">
1643 <context context-type="linenumber">17</context>
1644 </context-group>
1645 </trans-unit>
1646 <trans-unit id="752c401d7dcd708944eef60e411187f71d882340">
1647 <source>Import with torrent</source>
1648 <target>用種子匯入</target>
1649 <context-group name="null">
1650 <context context-type="linenumber">24</context>
1651 </context-group>
1652 </trans-unit>
1653 <trans-unit id="40fa23fe45af4ee2e72cdd3cc6bf6013f180aab0">
1654 <source>Add caption</source>
1655 <target>新增字幕</target>
1656 <context-group name="null">
1657 <context context-type="linenumber">5</context>
1658 </context-group>
1659 </trans-unit>
1660 <trans-unit id="6bad752cfcac8f3572bdf2c619daec683d56d1a8">
1661 <source>Select the caption file</source>
1662 <target>選取字幕檔案</target>
1663 <context-group name="null">
1664 <context context-type="linenumber">24</context>
1665 </context-group>
1666 </trans-unit>
1667 <trans-unit id="39702b643cfe3d5b96a4587c1b44a29fa665406c">
1668 <source>Add this caption</source>
1669 <target>新增此字幕</target>
1670 <context-group name="null">
1671 <context context-type="linenumber">40</context>
1672 </context-group>
1673 </trans-unit>
1478 <trans-unit id="fdf7cbdc140d0aab0f0b6c06065a0fd448ed6a2e"> 1674 <trans-unit id="fdf7cbdc140d0aab0f0b6c06065a0fd448ed6a2e">
1479 <source>Title</source> 1675 <source>Title</source>
1480 <target>標題</target> 1676 <target>標題</target>
1481 <context-group name="null"> 1677 <context-group name="null">
1482 <context context-type="linenumber">7</context> 1678 <context context-type="linenumber">9</context>
1483 </context-group> 1679 </context-group>
1484 </trans-unit> 1680 </trans-unit>
1485 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b"> 1681 <trans-unit id="cafc87479686947e2590b9f588a88040aeaf660b">
1486 <source>Tags</source> 1682 <source>Tags</source>
1487 <target>標籤</target> 1683 <target>標籤</target>
1488 <context-group name="null"> 1684 <context-group name="null">
1489 <context context-type="linenumber">175</context> 1685 <context context-type="linenumber">193</context>
1490 </context-group>
1491 </trans-unit>
1492 <trans-unit id="935e7146fe6c12169abfda18536c5856935cfd82">
1493 <source>(press Enter to add)</source>
1494 <target>(按下 Enter 以新增)</target>
1495 <context-group name="null">
1496 <context context-type="linenumber">15</context>
1497 </context-group> 1686 </context-group>
1498 </trans-unit> 1687 </trans-unit>
1499 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e"> 1688 <trans-unit id="50f53834157770b8205ada0e7a6e235211e4765e">
1500 <source>Video descriptions are truncated by default and require manual action to expand them.</source> 1689 <source>Video descriptions are truncated by default and require manual action to expand them.</source>
1501 <target>預設情況下,影片描述不會完整顯示,需要手動操作才能展開它們。</target> 1690 <target>預設情況下,影片描述不會完整顯示,需要手動操作才能展開它們。</target>
1502 <context-group name="null"> 1691 <context-group name="null">
1503 <context context-type="linenumber">24</context> 1692 <context context-type="linenumber">27</context>
1504 </context-group> 1693 </context-group>
1505 </trans-unit> 1694 </trans-unit>
1506 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> 1695 <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5">
1507 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source> 1696 <source>Schedule publication (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</source>
1508 <target>計劃發佈於 (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target> 1697 <target>計劃發佈於 (<x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target>
1509 <context-group name="null"> 1698 <context-group name="null">
1510 <context context-type="linenumber">101</context> 1699 <context context-type="linenumber">104</context>
1511 </context-group> 1700 </context-group>
1512 </trans-unit> 1701 </trans-unit>
1513 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee"> 1702 <trans-unit id="5ef7108218e096d09f4ee8525a05a8c90d7b95ee">
1514 <source>This video contains mature or explicit content</source> 1703 <source>This video contains mature or explicit content</source>
1515 <target>這個影片包含了成人或裸露內容</target> 1704 <target>這個影片包含了成人或裸露內容</target>
1516 <context-group name="null"> 1705 <context-group name="null">
1517 <context context-type="linenumber">115</context> 1706 <context context-type="linenumber">118</context>
1518 </context-group> 1707 </context-group>
1519 </trans-unit> 1708 </trans-unit>
1520 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644"> 1709 <trans-unit id="9daabdcaa2bbd83597099b10db22d056cf491644">
1521 <source>Some instances do not list videos containing mature or explicit content by default.</source> 1710 <source>Some instances do not list videos containing mature or explicit content by default.</source>
1522 <target>某些實體預設不會列出包含成人或裸露內容的影片。</target> 1711 <target>某些實體預設不會列出包含成人或裸露內容的影片。</target>
1523 <context-group name="null"> 1712 <context-group name="null">
1524 <context context-type="linenumber">116</context> 1713 <context context-type="linenumber">119</context>
1525 </context-group> 1714 </context-group>
1526 </trans-unit> 1715 </trans-unit>
1527 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a"> 1716 <trans-unit id="3549ee96125a43181f80712ed744ee223a0e645a">
1528 <source>Enable video comments</source> 1717 <source>Enable video comments</source>
1529 <target>啟用影片評論</target> 1718 <target>啟用影片評論</target>
1530 <context-group name="null"> 1719 <context-group name="null">
1531 <context context-type="linenumber">121</context> 1720 <context context-type="linenumber">124</context>
1532 </context-group> 1721 </context-group>
1533 </trans-unit> 1722 </trans-unit>
1534 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0"> 1723 <trans-unit id="7e549f41b715552ffe69b85c14a690d9d81c85f0">
1535 <source>Wait transcoding before publishing the video</source> 1724 <source>Wait transcoding before publishing the video</source>
1536 <target>正等待發佈影片前的轉換編碼</target> 1725 <target>正等待發佈影片前的轉換編碼</target>
1537 <context-group name="null"> 1726 <context-group name="null">
1538 <context context-type="linenumber">126</context> 1727 <context context-type="linenumber">129</context>
1728 </context-group>
1729 </trans-unit>
1730 <trans-unit id="24f468ce1148a096477d8dd0d00f0d1fd88d6c63">
1731 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source>
1732 <target>如果您決定不要等待在發佈影片前的轉換編碼,它可能會在轉換編碼結束前都無法播放。</target>
1733 <context-group name="null">
1734 <context context-type="linenumber">130</context>
1539 </context-group> 1735 </context-group>
1540 </trans-unit> 1736 </trans-unit>
1541 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7"> 1737 <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7">
@@ -1545,39 +1741,74 @@ When you will upload a video in this channel, the video support field will be au
1545 <context context-type="linenumber">4</context> 1741 <context context-type="linenumber">4</context>
1546 </context-group> 1742 </context-group>
1547 </trans-unit> 1743 </trans-unit>
1744 <trans-unit id="92bcfd1d237a2bfe48dc9f46d074ed26abc8df22">
1745 <source>Add another caption</source>
1746 <target>新增其他字幕</target>
1747 <context-group name="null">
1748 <context context-type="linenumber">145</context>
1749 </context-group>
1750 </trans-unit>
1751 <trans-unit id="a46a7503167b77b3ec4e28274a3d1dda637617ed">
1752 <source>See the subtitle file</source>
1753 <target>檢視字幕檔案</target>
1754 <context-group name="null">
1755 <context context-type="linenumber">154</context>
1756 </context-group>
1757 </trans-unit>
1758 <trans-unit id="308a79679d012938a625e41fdd4b804fe42b57b9">
1759 <source>Cancel create</source>
1760 <target>取消建立</target>
1761 <context-group name="null">
1762 <context context-type="linenumber">168</context>
1763 </context-group>
1764 </trans-unit>
1765 <trans-unit id="88395fc0137e46a9853cf16762bf5a87687d0d0c">
1766 <source>Cancel deletion</source>
1767 <target>取消刪除</target>
1768 <context-group name="null">
1769 <context context-type="linenumber">176</context>
1770 </context-group>
1771 </trans-unit>
1772 <trans-unit id="0c720e0dd9e6c60095f961cb714f47e8c0090f93">
1773 <source>Captions</source>
1774 <target>字幕</target>
1775 <context-group name="null">
1776 <context context-type="linenumber">138</context>
1777 </context-group>
1778 </trans-unit>
1548 <trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513"> 1779 <trans-unit id="1dd793abd1cb8d16a7a2cb71ca5549a7111ee513">
1549 <source>Upload thumbnail</source> 1780 <source>Upload thumbnail</source>
1550 <target>上傳縮圖</target> 1781 <target>上傳縮圖</target>
1551 <context-group name="null"> 1782 <context-group name="null">
1552 <context context-type="linenumber">186</context> 1783 <context context-type="linenumber">194</context>
1553 </context-group> 1784 </context-group>
1554 </trans-unit> 1785 </trans-unit>
1555 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639"> 1786 <trans-unit id="9df3f57e251c077bef7e7da81677cb971c55b639">
1556 <source>Upload preview</source> 1787 <source>Upload preview</source>
1557 <target>上傳預覽</target> 1788 <target>上傳預覽</target>
1558 <context-group name="null"> 1789 <context-group name="null">
1559 <context context-type="linenumber">193</context> 1790 <context context-type="linenumber">201</context>
1560 </context-group> 1791 </context-group>
1561 </trans-unit> 1792 </trans-unit>
1562 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604"> 1793 <trans-unit id="b5629d298ff1a69b8db19a4ba2995c76b52da604">
1563 <source>Support</source> 1794 <source>Support</source>
1564 <target>支援</target> 1795 <target>支援</target>
1565 <context-group name="null"> 1796 <context-group name="null">
1566 <context context-type="linenumber">71</context> 1797 <context context-type="linenumber">69</context>
1567 </context-group> 1798 </context-group>
1568 </trans-unit> 1799 </trans-unit>
1569 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0"> 1800 <trans-unit id="f61f989de6fc12f99369a90800e4b5462d3f10a0">
1570 <source>Short text to tell people how they can support you (membership platform...).</source> 1801 <source>Short text to tell people how they can support you (membership platform...).</source>
1571 <target>告訴人們他們可以如何支援您(成員平臺等)的短文</target> 1802 <target>告訴人們他們可以如何支援您(成員平臺等)的短文</target>
1572 <context-group name="null"> 1803 <context-group name="null">
1573 <context context-type="linenumber">200</context> 1804 <context context-type="linenumber">208</context>
1574 </context-group> 1805 </context-group>
1575 </trans-unit> 1806 </trans-unit>
1576 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1"> 1807 <trans-unit id="d91da0abc638c05e52adea253d0813f3584da4b1">
1577 <source>Advanced settings</source> 1808 <source>Advanced settings</source>
1578 <target>進階設定</target> 1809 <target>進階設定</target>
1579 <context-group name="null"> 1810 <context-group name="null">
1580 <context context-type="linenumber">182</context> 1811 <context context-type="linenumber">189</context>
1581 </context-group> 1812 </context-group>
1582 </trans-unit> 1813 </trans-unit>
1583 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0"> 1814 <trans-unit id="2335f0bd17c63d835b50cfbbcea6c459cb1314c0">
@@ -1595,78 +1826,72 @@ When you will upload a video in this channel, the video support field will be au
1595 <source>Download video</source> 1826 <source>Download video</source>
1596 <target>下載影片</target> 1827 <target>下載影片</target>
1597 <context-group name="null"> 1828 <context-group name="null">
1598 <context context-type="linenumber">7</context> 1829 <context context-type="linenumber">3</context>
1599 </context-group> 1830 </context-group>
1600 </trans-unit> 1831 </trans-unit>
1601 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c"> 1832 <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c">
1602 <source>Direct download</source> 1833 <source>Direct download</source>
1603 <target>直接下載</target> 1834 <target>直接下載</target>
1604 <context-group name="null"> 1835 <context-group name="null">
1605 <context context-type="linenumber">20</context> 1836 <context context-type="linenumber">17</context>
1606 </context-group> 1837 </context-group>
1607 </trans-unit> 1838 </trans-unit>
1608 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> 1839 <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d">
1609 <source>Download</source> 1840 <source>Torrent (.torrent file)</source>
1610 <target></target> 1841 <target>種子.torrent 檔案</target>
1611 <context-group name="null"> 1842 <context-group name="null">
1612 <context context-type="linenumber">87</context> 1843 <context context-type="linenumber">22</context>
1613 </context-group>
1614 </trans-unit>
1615 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b">
1616 <source>Report video</source>
1617 <target>回報影片</target>
1618 <context-group name="null">
1619 <context context-type="linenumber">7</context>
1620 </context-group> 1844 </context-group>
1621 </trans-unit> 1845 </trans-unit>
1622 <trans-unit id="bb44873ad8d4c5dbad0ac2a6a50e0ceee9119125"> 1846 <trans-unit id="2db8d7cf6a3071f4c1519ef2b5e2713d9ff4e87f">
1623 <source>Reason...</source> 1847 <source>Torrent (magnet link)</source>
1624 <target></target> 1848 <target>結)</target>
1625 <context-group name="null"> 1849 <context-group name="null">
1626 <context context-type="linenumber">14</context> 1850 <context context-type="linenumber">27</context>
1627 </context-group> 1851 </context-group>
1628 </trans-unit> 1852 </trans-unit>
1629 <trans-unit id="0e6b8229bd65f93bc8040d0fb598967f220740c7"> 1853 <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd">
1630 <source> 1854 <source>Download</source>
1631 Cancel 1855 <target>下載</target>
1632 </source>
1633 <target>
1634 取消
1635 </target>
1636 <context-group name="null"> 1856 <context-group name="null">
1637 <context context-type="linenumber">22</context> 1857 <context context-type="linenumber">84</context>
1638 </context-group> 1858 </context-group>
1639 </trans-unit> 1859 </trans-unit>
1640 <trans-unit id="71c77bb8cecdf11ec3eead24dd1ba506573fa9cd"> 1860 <trans-unit id="11749f4fc0aa1b5e37f38575e4d4e3b1b7e0e96b">
1641 <source>Submit</source> 1861 <source>Report video</source>
1642 <target></target> 1862 <target>報影片</target>
1643 <context-group name="null"> 1863 <context-group name="null">
1644 <context context-type="linenumber">27</context> 1864 <context context-type="linenumber">3</context>
1645 </context-group> 1865 </context-group>
1646 </trans-unit> 1866 </trans-unit>
1647 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9"> 1867 <trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9">
1648 <source>Share</source> 1868 <source>Share</source>
1649 <target>分享</target> 1869 <target>分享</target>
1650 <context-group name="null"> 1870 <context-group name="null">
1651 <context context-type="linenumber">76</context> 1871 <context context-type="linenumber">74</context>
1872 </context-group>
1873 </trans-unit>
1874 <trans-unit id="e0cfbc8ea680e4527ebf094c035f3342e9146d9f">
1875 <source>QR-Code</source>
1876 <target>QR Code</target>
1877 <context-group name="null">
1878 <context context-type="linenumber">29</context>
1652 </context-group> 1879 </context-group>
1653 </trans-unit> 1880 </trans-unit>
1654 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c"> 1881 <trans-unit id="d3b15c3bf4a7ea38d6002d2d2c4781642d30e79c">
1655 <source>Embed</source> 1882 <source>Embed</source>
1656 <target>嵌入</target> 1883 <target>嵌入</target>
1657 <context-group name="null"> 1884 <context-group name="null">
1658 <context context-type="linenumber">24</context> 1885 <context context-type="linenumber">34</context>
1659 </context-group> 1886 </context-group>
1660 </trans-unit> 1887 </trans-unit>
1661 <trans-unit id="239fe0316cfe91aa6e1e7bf1ef19e3b7772131f8"> 1888 <trans-unit id="7584313e33a66811eb10646627914a01fff0347d">
1662 <source> 1889 <source>
1663 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). 1890 The video is being imported, it will be available when the import is finished.
1664 </source> 1891 </source>
1665 <target> 1892 <target>影片已匯入,它將會在匯入結束時可用。</target>
1666 這個 URL 不安全(不是 HTTPS),所以嵌入視訊將無法在 HTTPS 網頁上運作(網路瀏覽器會阻擋在 HTTPS 網頁上的不安全 HTTP 請求)。
1667 </target>
1668 <context-group name="null"> 1893 <context-group name="null">
1669 <context context-type="linenumber">35</context> 1894 <context context-type="linenumber">11</context>
1670 </context-group> 1895 </context-group>
1671 </trans-unit> 1896 </trans-unit>
1672 <trans-unit id="9ed65ae88f6c982bc44d6fed2796e55f47dbf304"> 1897 <trans-unit id="9ed65ae88f6c982bc44d6fed2796e55f47dbf304">
@@ -1680,163 +1905,116 @@ When you will upload a video in this channel, the video support field will be au
1680 <context context-type="linenumber">15</context> 1905 <context context-type="linenumber">15</context>
1681 </context-group> 1906 </context-group>
1682 </trans-unit> 1907 </trans-unit>
1683 <trans-unit id="fbc205ea3d06fa8f65973fa3b490ae172f71c087">
1684 <source>
1685 This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>
1686 </source>
1687 <target>
1688 此影片將會在 <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/> 發佈
1689 </target>
1690 <context-group name="null">
1691 <context context-type="linenumber">19</context>
1692 </context-group>
1693 </trans-unit>
1694 <trans-unit id="643ab402461b1169eebbe2ed790e12a9a83551aa">
1695 <source>
1696 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views
1697 </source>
1698 <target>
1699 <x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> 次檢視
1700 </target>
1701 <context-group name="null">
1702 <context context-type="linenumber">30</context>
1703 </context-group>
1704 </trans-unit>
1705 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
1706 <source>Go the channel page</source>
1707 <target>到頻道頁面</target>
1708 <context-group name="null">
1709 <context context-type="linenumber">35</context>
1710 </context-group>
1711 </trans-unit>
1712 <trans-unit id="ccc07df383b7a32be3e2e105faa5488caf261c1c">
1713 <source>By <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></source>
1714 <target>由 <x id="INTERPOLATION" equiv-text="{{ video.by }}"/></target>
1715 <context-group name="null">
1716 <context context-type="linenumber">45</context>
1717 </context-group>
1718 </trans-unit>
1719 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
1720 <source>Go to the account page</source>
1721 <target>到帳號頁面</target>
1722 <context-group name="null">
1723 <context context-type="linenumber">44</context>
1724 </context-group>
1725 </trans-unit>
1726 <trans-unit id="57075c778cf28b81272df4eb17da944366c98e51">
1727 <source>You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; and subscribe there. Subscription as a PeerTube user is being worked on in &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt;.</source>
1728 <target>您可以透過任何支援 ActivityPub 的互聯實體來訂閱此帳號。例如 Mastodon 或 Pleroma,您可以在搜尋框中輸入 &lt;strong&gt;@<x id="INTERPOLATION" equiv-text="{{video.account.name}}"/>@<x id="INTERPOLATION_1" equiv-text="{{video.account.host}}"/>&lt;/strong&gt; 並在那裡訂閱。以 PeerTube 使用者的身份訂閱正在 &lt;a href='https://github.com/Chocobozzz/PeerTube/issues/470'&gt;#470&lt;/a&gt; 中處理。</target>
1729 <context-group name="null">
1730 <context context-type="linenumber">49</context>
1731 </context-group>
1732 </trans-unit>
1733 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced"> 1908 <trans-unit id="82b59049f3f89d900c98da9319e156dd513e3ced">
1734 <source>Like this video</source> 1909 <source>Like this video</source>
1735 <target>喜歡此影片</target> 1910 <target>喜歡此影片</target>
1736 <context-group name="null"> 1911 <context-group name="null">
1737 <context context-type="linenumber">59</context> 1912 <context context-type="linenumber">57</context>
1738 </context-group> 1913 </context-group>
1739 </trans-unit> 1914 </trans-unit>
1740 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509"> 1915 <trans-unit id="623698f075025b2b2fc2e0c59fd95f4f4662a509">
1741 <source>Dislike this video</source> 1916 <source>Dislike this video</source>
1742 <target>不喜歡此影片</target> 1917 <target>不喜歡此影片</target>
1743 <context-group name="null"> 1918 <context-group name="null">
1744 <context context-type="linenumber">66</context> 1919 <context context-type="linenumber">64</context>
1745 </context-group> 1920 </context-group>
1746 </trans-unit> 1921 </trans-unit>
1747 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2"> 1922 <trans-unit id="144fff5c40b85414d59e644d8dee7cfefba925a2">
1748 <source>Download the video</source> 1923 <source>Download the video</source>
1749 <target>下載影片</target> 1924 <target>下載影片</target>
1750 <context-group name="null"> 1925 <context-group name="null">
1751 <context context-type="linenumber">86</context> 1926 <context context-type="linenumber">83</context>
1752 </context-group> 1927 </context-group>
1753 </trans-unit> 1928 </trans-unit>
1754 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a"> 1929 <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a">
1755 <source>Report</source> 1930 <source>Report</source>
1756 <target>回報</target> 1931 <target>回報</target>
1757 <context-group name="null"> 1932 <context-group name="null">
1758 <context context-type="linenumber">93</context> 1933 <context context-type="linenumber">88</context>
1759 </context-group> 1934 </context-group>
1760 </trans-unit> 1935 </trans-unit>
1761 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf"> 1936 <trans-unit id="2f4894617d9c44010f87473e583bd4604b7d6ecf">
1762 <source>Report this video</source> 1937 <source>Report this video</source>
1763 <target>回報此影片</target> 1938 <target>回報此影片</target>
1764 <context-group name="null"> 1939 <context-group name="null">
1765 <context context-type="linenumber">92</context> 1940 <context context-type="linenumber">87</context>
1941 </context-group>
1942 </trans-unit>
1943 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1">
1944 <source>Update this video</source>
1945 <target>更新此影片</target>
1946 <context-group name="null">
1947 <context context-type="linenumber">91</context>
1766 </context-group> 1948 </context-group>
1767 </trans-unit> 1949 </trans-unit>
1768 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61"> 1950 <trans-unit id="007ab5fa2aae8a7372307d3fc45a2dbcb11ffd61">
1769 <source>Blacklist</source> 1951 <source>Blacklist</source>
1770 <target>黑名單</target> 1952 <target>黑名單</target>
1771 <context-group name="null"> 1953 <context-group name="null">
1772 <context context-type="linenumber">99</context> 1954 <context context-type="linenumber">96</context>
1773 </context-group> 1955 </context-group>
1774 </trans-unit> 1956 </trans-unit>
1775 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037"> 1957 <trans-unit id="803c6317abd2dbafcc93226c4e273c62932e3037">
1776 <source>Blacklist this video</source> 1958 <source>Blacklist this video</source>
1777 <target>將此影片加入黑名單</target> 1959 <target>將此影片加入黑名單</target>
1778 <context-group name="null"> 1960 <context-group name="null">
1779 <context context-type="linenumber">98</context> 1961 <context context-type="linenumber">95</context>
1780 </context-group> 1962 </context-group>
1781 </trans-unit> 1963 </trans-unit>
1782 <trans-unit id="cd27f761b923a5bdb16ba9844da632edd878f1b1"> 1964 <trans-unit id="86f26b106c67be3c2e98b82766656e5d9da86dff">
1783 <source>Update this video</source> 1965 <source>Unblacklist</source>
1784 <target></target> 1966 <target></target>
1785 <context-group name="null"> 1967 <context-group name="null">
1786 <context context-type="linenumber">104</context> 1968 <context context-type="linenumber">100</context>
1787 </context-group> 1969 </context-group>
1788 </trans-unit> 1970 </trans-unit>
1789 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5"> 1971 <trans-unit id="3dbfdc68f83d91cb360172eb65578cae94e7cbe5">
1790 <source>Delete this video</source> 1972 <source>Delete this video</source>
1791 <target>刪除此影片</target> 1973 <target>刪除此影片</target>
1792 <context-group name="null"> 1974 <context-group name="null">
1793 <context context-type="linenumber">110</context> 1975 <context context-type="linenumber">103</context>
1794 </context-group> 1976 </context-group>
1795 </trans-unit> 1977 </trans-unit>
1796 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b"> 1978 <trans-unit id="5cb397241041f7ad70997806227bafcdf7eb1b33">
1797 <source>Show more</source> 1979 <source>Go the channel page</source>
1798 <target>顯示更</target> 1980 <target>頻道頁面</target>
1799 <context-group name="null"> 1981 <context-group name="null">
1800 <context context-type="linenumber">130</context> 1982 <context context-type="linenumber">123</context>
1801 </context-group> 1983 </context-group>
1802 </trans-unit> 1984 </trans-unit>
1803 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903"> 1985 <trans-unit id="be73b652c2707f42b5d780d0c7b8fc5ea0b1706c">
1804 <source>Show less</source> 1986 <source>Go to the account page</source>
1805 <target>顯示較</target> 1987 <target>帳號頁面</target>
1806 <context-group name="null"> 1988 <context-group name="null">
1807 <context context-type="linenumber">136</context> 1989 <context context-type="linenumber">133</context>
1808 </context-group> 1990 </context-group>
1809 </trans-unit> 1991 </trans-unit>
1810 <trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1"> 1992 <trans-unit id="f0c5f6f270e70cbe063b5368fcf48f9afc1abd9b">
1811 <source> 1993 <source>Show more</source>
1812 Other videos 1994 <target>顯示更多</target>
1813 </source>
1814 <target>
1815 其他影片
1816 </target>
1817 <context-group name="null"> 1995 <context-group name="null">
1818 <context context-type="linenumber">187</context> 1996 <context context-type="linenumber">148</context>
1819 </context-group> 1997 </context-group>
1820 </trans-unit> 1998 </trans-unit>
1821 <trans-unit id="fb779d2b25c4d0ffa7d52c823a240717e8c1fe6c"> 1999 <trans-unit id="5403a767248e304199592271bba3366d2ca3f903">
1822 <source>Friendly Reminder:</source> 2000 <source>Show less</source>
1823 <target>友善提</target> 2001 <target></target>
1824 <context-group name="null"> 2002 <context-group name="null">
1825 <context context-type="linenumber">199</context> 2003 <context context-type="linenumber">154</context>
1826 </context-group> 2004 </context-group>
1827 </trans-unit> 2005 </trans-unit>
1828 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e"> 2006 <trans-unit id="e60c11e1b1dfbbeda577364b8de39ded2d796c5e">
1829 <source>More information</source> 2007 <source>More information</source>
1830 <target>更多資訊</target> 2008 <target>更多資訊</target>
1831 <context-group name="null"> 2009 <context-group name="null">
1832 <context context-type="linenumber">204</context> 2010 <context context-type="linenumber">214</context>
1833 </context-group> 2011 </context-group>
1834 </trans-unit> 2012 </trans-unit>
1835 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318"> 2013 <trans-unit id="bd499ca7913bb5408fd139a4cb4f863852d5f318">
1836 <source>Get more information</source> 2014 <source>Get more information</source>
1837 <target>取得更多資訊</target> 2015 <target>取得更多資訊</target>
1838 <context-group name="null"> 2016 <context-group name="null">
1839 <context context-type="linenumber">204</context> 2017 <context context-type="linenumber">214</context>
1840 </context-group> 2018 </context-group>
1841 </trans-unit> 2019 </trans-unit>
1842 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f"> 2020 <trans-unit id="20fc98888baf65b5ba9fe9622dc036fa8dec6a5f">
@@ -1847,7 +2025,7 @@ When you will upload a video in this channel, the video support field will be au
1847 確定 2025 確定
1848 </target> 2026 </target>
1849 <context-group name="null"> 2027 <context-group name="null">
1850 <context context-type="linenumber">207</context> 2028 <context context-type="linenumber">217</context>
1851 </context-group> 2029 </context-group>
1852 </trans-unit> 2030 </trans-unit>
1853 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7"> 2031 <trans-unit id="b5f5df598f2d75640849b2a7744f91e5dbd390e7">
@@ -1908,7 +2086,7 @@ When you will upload a video in this channel, the video support field will be au
1908 張貼評論 2086 張貼評論
1909 </target> 2087 </target>
1910 <context-group name="null"> 2088 <context-group name="null">
1911 <context context-type="linenumber">17</context> 2089 <context context-type="linenumber">18</context>
1912 </context-group> 2090 </context-group>
1913 </trans-unit> 2091 </trans-unit>
1914 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> 2092 <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285">
@@ -2072,23 +2250,9 @@ When you will upload a video in this channel, the video support field will be au
2072 <context context-type="linenumber">1</context> 2250 <context context-type="linenumber">1</context>
2073 </context-group> 2251 </context-group>
2074 </trans-unit> 2252 </trans-unit>
2075 <trans-unit id="f995df052a1dfc675c2a21926420a707d9601936"> 2253 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f">
2076 <source>Following</source> 2254 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source>
2077 <target>正在追蹤</target> 2255 <target>影片 <x id="INTERPOLATION" equiv-text="{{name}}"/> 已從黑名單中移除。</target>
2078 <context-group name="null">
2079 <context context-type="linenumber">1</context>
2080 </context-group>
2081 </trans-unit>
2082 <trans-unit id="d29764bcbaad3ef69b6be92be35bdf25972ce246">
2083 <source>Follow</source>
2084 <target>追蹤</target>
2085 <context-group name="null">
2086 <context context-type="linenumber">1</context>
2087 </context-group>
2088 </trans-unit>
2089 <trans-unit id="9bee670725966ed477b4c33a545c8b5436b0065e">
2090 <source>Followers</source>
2091 <target>追蹤者</target>
2092 <context-group name="null"> 2256 <context-group name="null">
2093 <context context-type="linenumber">1</context> 2257 <context context-type="linenumber">1</context>
2094 </context-group> 2258 </context-group>
@@ -2142,30 +2306,44 @@ When you will upload a video in this channel, the video support field will be au
2142 <context context-type="linenumber">1</context> 2306 <context context-type="linenumber">1</context>
2143 </context-group> 2307 </context-group>
2144 </trans-unit> 2308 </trans-unit>
2145 <trans-unit id="4733ad1d7e63960438c0203b9a64f165b5fc84f2"> 2309 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc">
2146 <source>Do you really want to remove this video from the blacklist ? It will be available again in the videos list.</source> 2310 <source>Password updated.</source>
2147 <target>您真的想要這部影從黑名單中移除嗎可在影片清中看。</target> 2311 <target>新。</target>
2148 <context-group name="null"> 2312 <context-group name="null">
2149 <context context-type="linenumber">1</context> 2313 <context context-type="linenumber">1</context>
2150 </context-group> 2314 </context-group>
2151 </trans-unit> 2315 </trans-unit>
2152 <trans-unit id="1585babc36806e20e225ac27dbba0e7c7cd09e0f"> 2316 <trans-unit id="ca8e8cf0f1686604db3b6a2ebadab7f7b426a047">
2153 <source>Video <x id="INTERPOLATION" equiv-text="{{name}}"/> removed from the blacklist.</source> 2317 <source>Are you sure you want to delete your account? This will delete all you data, including channels, videos etc.</source>
2154 <target> <x id="INTERPOLATION" equiv-text="{{name}}"/> 單中。</target> 2318 <target>您確要刪除您帳號?這將會刪除您有的料,道、。</target>
2155 <context-group name="null"> 2319 <context-group name="null">
2156 <context context-type="linenumber">1</context> 2320 <context context-type="linenumber">1</context>
2157 </context-group> 2321 </context-group>
2158 </trans-unit> 2322 </trans-unit>
2159 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732"> 2323 <trans-unit id="e7d5b2de566e4c807c285daf8d8a78b5f7f33311">
2160 <source>The new password and the confirmed password do not correspond.</source> 2324 <source>Type your username to confirm</source>
2161 <target>確認不相符。</target> 2325 <target>使用確認</target>
2162 <context-group name="null"> 2326 <context-group name="null">
2163 <context context-type="linenumber">1</context> 2327 <context context-type="linenumber">1</context>
2164 </context-group> 2328 </context-group>
2165 </trans-unit> 2329 </trans-unit>
2166 <trans-unit id="19508af0dfbc685cbf10cf02061bb5a0f423b6fc"> 2330 <trans-unit id="9a2f889dde4574a6883c853d1034e75891b28c45">
2167 <source>Password updated.</source> 2331 <source>Delete your account</source>
2168 <target>密碼已更新。</target> 2332 <target>刪除您的帳號</target>
2333 <context-group name="null">
2334 <context context-type="linenumber">1</context>
2335 </context-group>
2336 </trans-unit>
2337 <trans-unit id="d8a8a7f7160939fb55e82bc01fe9f876f5f2e065">
2338 <source>Delete my account</source>
2339 <target>刪除我的帳號</target>
2340 <context-group name="null">
2341 <context context-type="linenumber">1</context>
2342 </context-group>
2343 </trans-unit>
2344 <trans-unit id="8eb8b1a728159f43c31abf76c28ef3ff6c230af7">
2345 <source>Your account is deleted.</source>
2346 <target>您的帳號已刪除。</target>
2169 <context-group name="null"> 2347 <context-group name="null">
2170 <context context-type="linenumber">1</context> 2348 <context context-type="linenumber">1</context>
2171 </context-group> 2349 </context-group>
@@ -2289,6 +2467,20 @@ When you will upload a video in this channel, the video support field will be au
2289 <context context-type="linenumber">1</context> 2467 <context context-type="linenumber">1</context>
2290 </context-group> 2468 </context-group>
2291 </trans-unit> 2469 </trans-unit>
2470 <trans-unit id="289fe8342e8b7df689c75026a24a60fd7f5e9392">
2471 <source>To import</source>
2472 <target>匯入</target>
2473 <context-group name="null">
2474 <context context-type="linenumber">1</context>
2475 </context-group>
2476 </trans-unit>
2477 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752">
2478 <source>Unable to find user id or verification string.</source>
2479 <target>找不到使用者 id 或驗證字串。</target>
2480 <context-group name="null">
2481 <context context-type="linenumber">1</context>
2482 </context-group>
2483 </trans-unit>
2292 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7"> 2484 <trans-unit id="edeaa933b09690523e46977e11064e9c655d77d7">
2293 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>. 2485 <source>Cannot retrieve OAuth Client credentials: <x id="INTERPOLATION" equiv-text="{{errorText}}"/>.
2294</source> 2486</source>
@@ -2319,9 +2511,9 @@ When you will upload a video in this channel, the video support field will be au
2319 <context context-type="linenumber">1</context> 2511 <context context-type="linenumber">1</context>
2320 </context-group> 2512 </context-group>
2321 </trans-unit> 2513 </trans-unit>
2322 <trans-unit id="ccbf0490fb6b60d21e03bb2c9003df0ce1a58752"> 2514 <trans-unit id="7701e3762dc4a2b2e302c24f17820bc8dd7cacc1">
2323 <source>Unable to find user id or verification string.</source> 2515 <source>An email with the reset password instructions will be sent to <x id="INTERPOLATION" equiv-text="{{email}}"/>.</source>
2324 <target>找不到使用者 id 或驗證字串。</target> 2516 <target>一封包含重設密碼方式的電子郵件將會傳送到 <x id="INTERPOLATION" equiv-text="{{email}}"/>。</target>
2325 <context-group name="null"> 2517 <context-group name="null">
2326 <context context-type="linenumber">1</context> 2518 <context context-type="linenumber">1</context>
2327 </context-group> 2519 </context-group>
@@ -2340,6 +2532,69 @@ When you will upload a video in this channel, the video support field will be au
2340 <context context-type="linenumber">1</context> 2532 <context context-type="linenumber">1</context>
2341 </context-group> 2533 </context-group>
2342 </trans-unit> 2534 </trans-unit>
2535 <trans-unit id="02e0243b60007368f87dc01e083f232dd025096d">
2536 <source>Last 7 days</source>
2537 <target>過去 7 天</target>
2538 <context-group name="null">
2539 <context context-type="linenumber">1</context>
2540 </context-group>
2541 </trans-unit>
2542 <trans-unit id="7668986b9f753fcd72ad4a00b1a0c4861d1f7fb8">
2543 <source>Last 30 days</source>
2544 <target>過去 30 天</target>
2545 <context-group name="null">
2546 <context context-type="linenumber">1</context>
2547 </context-group>
2548 </trans-unit>
2549 <trans-unit id="a77b663fd9b94c38bc9c6493a51b5f3acacb9bca">
2550 <source>Last 365 days</source>
2551 <target>過去 365 天</target>
2552 <context-group name="null">
2553 <context context-type="linenumber">1</context>
2554 </context-group>
2555 </trans-unit>
2556 <trans-unit id="d2f3bf121699ff08a25fa4859bfdf3996bf821cc">
2557 <source>Short (&lt; 4 min)</source>
2558 <target>短(小於 4 分鐘)</target>
2559 <context-group name="null">
2560 <context context-type="linenumber">1</context>
2561 </context-group>
2562 </trans-unit>
2563 <trans-unit id="ac0fa1039f09ec0d917303658c5bb1ee813a4225">
2564 <source>Long (&gt; 10 min)</source>
2565 <target>長(大於 10 分鐘)</target>
2566 <context-group name="null">
2567 <context context-type="linenumber">1</context>
2568 </context-group>
2569 </trans-unit>
2570 <trans-unit id="f24d368d6be0fee70fb4503d2ad37a612e1b0889">
2571 <source>Medium (4-10 min)</source>
2572 <target>中(介於 4 到 10 分鐘)</target>
2573 <context-group name="null">
2574 <context context-type="linenumber">1</context>
2575 </context-group>
2576 </trans-unit>
2577 <trans-unit id="ed073fec00d699b7a97bb65b4f3a722b203c5bca">
2578 <source>Relevance</source>
2579 <target>關聯</target>
2580 <context-group name="null">
2581 <context context-type="linenumber">1</context>
2582 </context-group>
2583 </trans-unit>
2584 <trans-unit id="1aee80ab35aa99508802cdec6306e110b2feaf9e">
2585 <source>Publish date</source>
2586 <target>發佈日期</target>
2587 <context-group name="null">
2588 <context context-type="linenumber">1</context>
2589 </context-group>
2590 </trans-unit>
2591 <trans-unit id="b7641aed03492978b4ec6843b1e53f30464294d9">
2592 <source>Views</source>
2593 <target>檢視</target>
2594 <context-group name="null">
2595 <context context-type="linenumber">1</context>
2596 </context-group>
2597 </trans-unit>
2343 <trans-unit id="7e892ba15f2c6c17e83510e273b3e10fc32ea016"> 2598 <trans-unit id="7e892ba15f2c6c17e83510e273b3e10fc32ea016">
2344 <source>Search</source> 2599 <source>Search</source>
2345 <target>搜尋</target> 2600 <target>搜尋</target>
@@ -2389,6 +2644,27 @@ When you will upload a video in this channel, the video support field will be au
2389 <context context-type="linenumber">1</context> 2644 <context context-type="linenumber">1</context>
2390 </context-group> 2645 </context-group>
2391 </trans-unit> 2646 </trans-unit>
2647 <trans-unit id="545f5dea553b2d7c4a65920ccdcb1e9dbdc7f4d8">
2648 <source>Captions cache size is required.</source>
2649 <target>字幕快取大小必填。</target>
2650 <context-group name="null">
2651 <context context-type="linenumber">1</context>
2652 </context-group>
2653 </trans-unit>
2654 <trans-unit id="a8d7131c0ca1eefe7b058e6081236ca1be364e2c">
2655 <source>Captions cache size must be greater than 1.</source>
2656 <target>字幕快取大小必須大於 1。</target>
2657 <context-group name="null">
2658 <context context-type="linenumber">1</context>
2659 </context-group>
2660 </trans-unit>
2661 <trans-unit id="c3decd47b03cf542df091c1a2fb25b756e59074e">
2662 <source>Captions cache size must be a number.</source>
2663 <target>字幕快取大小必須為數字。</target>
2664 <context-group name="null">
2665 <context context-type="linenumber">1</context>
2666 </context-group>
2667 </trans-unit>
2392 <trans-unit id="2cdd5a8c604ef16c2f9a17ed81d73f4f9509e828"> 2668 <trans-unit id="2cdd5a8c604ef16c2f9a17ed81d73f4f9509e828">
2393 <source>Signup limit is required.</source> 2669 <source>Signup limit is required.</source>
2394 <target>註冊限制必填。</target> 2670 <target>註冊限制必填。</target>
@@ -2431,13 +2707,6 @@ When you will upload a video in this channel, the video support field will be au
2431 <context context-type="linenumber">1</context> 2707 <context context-type="linenumber">1</context>
2432 </context-group> 2708 </context-group>
2433 </trans-unit> 2709 </trans-unit>
2434 <trans-unit id="ba88636d27c1a6a7e1f75ff57ec182b30b851c2e">
2435 <source>Transcoding threads must be greater than 1.</source>
2436 <target>轉換編碼執行緒必須大於 1。</target>
2437 <context-group name="null">
2438 <context context-type="linenumber">1</context>
2439 </context-group>
2440 </trans-unit>
2441 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149"> 2710 <trans-unit id="5db300f6fba918a35597160183205ede13e8e149">
2442 <source>Username is required.</source> 2711 <source>Username is required.</source>
2443 <target>使用者名稱必填。</target> 2712 <target>使用者名稱必填。</target>
@@ -2508,6 +2777,13 @@ When you will upload a video in this channel, the video support field will be au
2508 <context context-type="linenumber">1</context> 2777 <context context-type="linenumber">1</context>
2509 </context-group> 2778 </context-group>
2510 </trans-unit> 2779 </trans-unit>
2780 <trans-unit id="2db8f1f93a5485c32267762a3bf4da499832e732">
2781 <source>The new password and the confirmed password do not correspond.</source>
2782 <target>新密碼與密碼確認不相符。</target>
2783 <context-group name="null">
2784 <context context-type="linenumber">1</context>
2785 </context-group>
2786 </trans-unit>
2511 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf"> 2787 <trans-unit id="abede840116d58f04a55d99a6cbd68da8a3e1bbf">
2512 <source>Video quota is required.</source> 2788 <source>Video quota is required.</source>
2513 <target>影片配額必填。</target> 2789 <target>影片配額必填。</target>
@@ -2564,6 +2840,13 @@ When you will upload a video in this channel, the video support field will be au
2564 <context context-type="linenumber">1</context> 2840 <context context-type="linenumber">1</context>
2565 </context-group> 2841 </context-group>
2566 </trans-unit> 2842 </trans-unit>
2843 <trans-unit id="4a3ebc6ddb6b6677aed7b04eb503f9ddd0cfe561">
2844 <source>You must to agree with the instance terms in order to registering on it.</source>
2845 <target>您必須同意實體的條款才能在上面註冊。</target>
2846 <context-group name="null">
2847 <context context-type="linenumber">1</context>
2848 </context-group>
2849 </trans-unit>
2567 <trans-unit id="b3cf1889d2fdd6b15e697c270c9b80772fe2cae6"> 2850 <trans-unit id="b3cf1889d2fdd6b15e697c270c9b80772fe2cae6">
2568 <source>Report reason is required.</source> 2851 <source>Report reason is required.</source>
2569 <target>回報理由必填。</target> 2852 <target>回報理由必填。</target>
@@ -2585,6 +2868,20 @@ When you will upload a video in this channel, the video support field will be au
2585 <context context-type="linenumber">1</context> 2868 <context context-type="linenumber">1</context>
2586 </context-group> 2869 </context-group>
2587 </trans-unit> 2870 </trans-unit>
2871 <trans-unit id="c9eadf8830b3bc09bd444d739af86414eed9bd9e">
2872 <source>Video caption language is required.</source>
2873 <target>影片字幕語言必填。</target>
2874 <context-group name="null">
2875 <context context-type="linenumber">1</context>
2876 </context-group>
2877 </trans-unit>
2878 <trans-unit id="82083ae96724851ff37e1c7e4e9f907c25677963">
2879 <source>Video caption file is required.</source>
2880 <target>影片字幕檔案必填。</target>
2881 <context-group name="null">
2882 <context context-type="linenumber">1</context>
2883 </context-group>
2884 </trans-unit>
2588 <trans-unit id="fac936be125163a8494f3d7e7f21d65c7e4f1ff6"> 2885 <trans-unit id="fac936be125163a8494f3d7e7f21d65c7e4f1ff6">
2589 <source>Description cannot be more than 500 characters long.</source> 2886 <source>Description cannot be more than 500 characters long.</source>
2590 <target>描述不能多於 500 個字元。</target> 2887 <target>描述不能多於 500 個字元。</target>
@@ -2711,6 +3008,13 @@ When you will upload a video in this channel, the video support field will be au
2711 <context context-type="linenumber">1</context> 3008 <context context-type="linenumber">1</context>
2712 </context-group> 3009 </context-group>
2713 </trans-unit> 3010 </trans-unit>
3011 <trans-unit id="3b7ed22d0730d03b38c254332829d855ee7256c4">
3012 <source>This file is too large.</source>
3013 <target>這個檔案太大了。</target>
3014 <context-group name="null">
3015 <context context-type="linenumber">1</context>
3016 </context-group>
3017 </trans-unit>
2714 <trans-unit id="0bf41abaa85526711f7952b4600e4044bc7f04a4"> 3018 <trans-unit id="0bf41abaa85526711f7952b4600e4044bc7f04a4">
2715 <source>All unsaved data will be lost, are you sure you want to leave this page?</source> 3019 <source>All unsaved data will be lost, are you sure you want to leave this page?</source>
2716 <target>所有未儲存的資料都將會遺失,您確定您想要離開此頁面嗎?</target> 3020 <target>所有未儲存的資料都將會遺失,您確定您想要離開此頁面嗎?</target>
@@ -3047,6 +3351,41 @@ When you will upload a video in this channel, the video support field will be au
3047 <context context-type="linenumber">1</context> 3351 <context context-type="linenumber">1</context>
3048 </context-group> 3352 </context-group>
3049 </trans-unit> 3353 </trans-unit>
3354 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba">
3355 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source>
3356 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target>
3357 <context-group name="null">
3358 <context context-type="linenumber">1</context>
3359 </context-group>
3360 </trans-unit>
3361 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24">
3362 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source>
3363 <target>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</target>
3364 <context-group name="null">
3365 <context context-type="linenumber">1</context>
3366 </context-group>
3367 </trans-unit>
3368 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3369 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3370 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> 的 Full HD 影片</target>
3371 <context-group name="null">
3372 <context context-type="linenumber">1</context>
3373 </context-group>
3374 </trans-unit>
3375 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3376 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3377 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> 的 HD 影片</target>
3378 <context-group name="null">
3379 <context context-type="linenumber">1</context>
3380 </context-group>
3381 </trans-unit>
3382 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3383 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3384 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> 的平均畫質影片</target>
3385 <context-group name="null">
3386 <context context-type="linenumber">1</context>
3387 </context-group>
3388 </trans-unit>
3050 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d"> 3389 <trans-unit id="0b2054a863319d2cf59867addd125b6717cae41d">
3051 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source> 3390 <source><x id="INTERPOLATION" equiv-text="{{interval}}"/> years ago</source>
3052 <target><x id="INTERPOLATION" equiv-text="{{interval}}"/> 年前</target> 3391 <target><x id="INTERPOLATION" equiv-text="{{interval}}"/> 年前</target>
@@ -3201,37 +3540,16 @@ When you will upload a video in this channel, the video support field will be au
3201 <context context-type="linenumber">1</context> 3540 <context context-type="linenumber">1</context>
3202 </context-group> 3541 </context-group>
3203 </trans-unit> 3542 </trans-unit>
3204 <trans-unit id="7296e9f7cc4956b6d57c541728b0826e76d108ba"> 3543 <trans-unit id="320c9c3482a0ebe46da42ce9e0cbdc5ba26ea8bb">
3205 <source>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></source> 3544 <source>Video to import updated.</source>
3206 <target>~ <x id="INTERPOLATION" equiv-text="{{minutes}}"/> <x id="ICU" equiv-text="{minutes, plural, =1 {...} other {...}}"/></target> 3545 <target>要匯入的影片已更新。</target>
3207 <context-group name="null"> 3546 <context-group name="null">
3208 <context context-type="linenumber">1</context> 3547 <context context-type="linenumber">1</context>
3209 </context-group> 3548 </context-group>
3210 </trans-unit> 3549 </trans-unit>
3211 <trans-unit id="cf9ddbb55b25178660e09346209aedc10108aa24"> 3550 <trans-unit id="0e907e5a96537e464b192f8adce79ce6487cbb1c">
3212 <source>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</source> 3551 <source>Your video was uploaded to your account and is private.</source>
3213 <target>{VAR_PLURAL, plural, =1 {minute} other {minutes} }</target> 3552 <target>您的影片已上傳到您的帳號並為私人影片。</target>
3214 <context-group name="null">
3215 <context context-type="linenumber">1</context>
3216 </context-group>
3217 </trans-unit>
3218 <trans-unit id="10ffa5c3dbcee491d66f80d8d4dce3e119a6ec86">
3219 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of full HD videos</source>
3220 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> 的 Full HD 影片</target>
3221 <context-group name="null">
3222 <context context-type="linenumber">1</context>
3223 </context-group>
3224 </trans-unit>
3225 <trans-unit id="344ddae9f45b344e98e7b28cd5e33243982700f8">
3226 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of HD videos</source>
3227 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> 的 HD 影片</target>
3228 <context-group name="null">
3229 <context context-type="linenumber">1</context>
3230 </context-group>
3231 </trans-unit>
3232 <trans-unit id="435c012df6dd990a1ccb7ee73dd79c488bde28b5">
3233 <source><x id="INTERPOLATION" equiv-text="{{seconds}}"/> of average quality videos</source>
3234 <target><x id="INTERPOLATION" equiv-text="{{seconds}}"/> 的平均畫質影片</target>
3235 <context-group name="null"> 3553 <context-group name="null">
3236 <context context-type="linenumber">1</context> 3554 <context context-type="linenumber">1</context>
3237 </context-group> 3555 </context-group>
@@ -3264,9 +3582,9 @@ When you will upload a video in this channel, the video support field will be au
3264 <context context-type="linenumber">1</context> 3582 <context context-type="linenumber">1</context>
3265 </context-group> 3583 </context-group>
3266 </trans-unit> 3584 </trans-unit>
3267 <trans-unit id="d31d39e8ee9b2f20bffb3468ee062eaa5409c59f"> 3585 <trans-unit id="c55f41189ac6ad3003cce813245f4508284ed0aa">
3268 <source>Your video quota is exceeded with this video (video size: <x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>, used: <x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>, quota: <x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</source> 3586 <source>We are sorry but PeerTube cannot handle videos &gt; 8GB</source>
3269 <target>此影片大小超過了您的影片配額(影片大小:<x id="INTERPOLATION" equiv-text="{{ videoSize }}"/>,已用:<x id="INTERPOLATION_1" equiv-text="{{ videoQuotaUsed }}"/>,配額:<x id="INTERPOLATION_2" equiv-text="{{ videoQuota }}"/>)</target> 3587 <target>我們很抱歉,但 PeerTube 無法處理大於 8GB 的影片</target>
3270 <context-group name="null"> 3588 <context-group name="null">
3271 <context context-type="linenumber">1</context> 3589 <context context-type="linenumber">1</context>
3272 </context-group> 3590 </context-group>
@@ -3306,20 +3624,6 @@ When you will upload a video in this channel, the video support field will be au
3306 <context context-type="linenumber">1</context> 3624 <context context-type="linenumber">1</context>
3307 </context-group> 3625 </context-group>
3308 </trans-unit> 3626 </trans-unit>
3309 <trans-unit id="23b2c2f4dd69e29c3bff00469e259dcb01de5633">
3310 <source>Do you really want to blacklist this video?</source>
3311 <target>您真的想要將此影片加入黑名單嗎?</target>
3312 <context-group name="null">
3313 <context context-type="linenumber">1</context>
3314 </context-group>
3315 </trans-unit>
3316 <trans-unit id="cafd8ec6020e69f241a107b1cb7081bd9e773d4e">
3317 <source>Video <x id="INTERPOLATION" equiv-text="{{videoName}}"/> had been blacklisted.</source>
3318 <target>影片 <x id="INTERPOLATION" equiv-text="{{videoName}}"/> 已被加入黑名單。</target>
3319 <context-group name="null">
3320 <context context-type="linenumber">1</context>
3321 </context-group>
3322 </trans-unit>
3323 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95"> 3627 <trans-unit id="f1abd89c9280323209e939fa9c30f6e5cda20c95">
3324 <source>Do you really want to delete this video?</source> 3628 <source>Do you really want to delete this video?</source>
3325 <target>您真的想要刪除此影片嗎?</target> 3629 <target>您真的想要刪除此影片嗎?</target>
diff --git a/client/src/locale/target/iso639_gl_ES.xml b/client/src/locale/target/iso639_gl_ES.xml
index 4be71a8f8..203a65207 100644
--- a/client/src/locale/target/iso639_gl_ES.xml
+++ b/client/src/locale/target/iso639_gl_ES.xml
@@ -507,10 +507,6 @@
507 <source>Nyanja</source> 507 <source>Nyanja</source>
508 <target>Nyanja</target> 508 <target>Nyanja</target>
509 </trans-unit> 509 </trans-unit>
510 <trans-unit id="Occitan (post 1500)">
511 <source>Occitan (post 1500)</source>
512 <target>Occitano (post 1500)</target>
513 </trans-unit>
514 <trans-unit id="Ojibwa"> 510 <trans-unit id="Ojibwa">
515 <source>Ojibwa</source> 511 <source>Ojibwa</source>
516 <target>Ojibwa</target> 512 <target>Ojibwa</target>
diff --git a/client/src/locale/target/iso639_nl_NL.xml b/client/src/locale/target/iso639_nl_NL.xml
index f25b7b679..9c0e2fd9e 100644
--- a/client/src/locale/target/iso639_nl_NL.xml
+++ b/client/src/locale/target/iso639_nl_NL.xml
@@ -495,10 +495,6 @@
495 <source>Nyanja</source> 495 <source>Nyanja</source>
496 <target>Nyanja</target> 496 <target>Nyanja</target>
497 </trans-unit> 497 </trans-unit>
498 <trans-unit id="Occitan (post 1500)">
499 <source>Occitan (post 1500)</source>
500 <target>Occitaans (na 1500)</target>
501 </trans-unit>
502 <trans-unit id="Ojibwa"> 498 <trans-unit id="Ojibwa">
503 <source>Ojibwa</source> 499 <source>Ojibwa</source>
504 <target>Ojibwe</target> 500 <target>Ojibwe</target>
diff --git a/client/src/locale/target/player_zh_Hant_TW.json b/client/src/locale/target/player_zh_Hant_TW.json
index f564d80bc..f7a867458 100644
--- a/client/src/locale/target/player_zh_Hant_TW.json
+++ b/client/src/locale/target/player_zh_Hant_TW.json
@@ -1 +1 @@
{"Audio Player":"音訊播放器","Video Player":"視訊播放器","Play":"播放","Pause":"暫停","Replay":"重播","Current Time":"目前時間","Duration":"長度","Remaining Time":"剩餘時間","Stream Type":"串流類型","LIVE":"直播","Loaded":"已載入","Progress":"進度","Progress Bar":"進度條","progress bar timing: currentTime={1} duration={2}":"{1} 之 {2}","Fullscreen":"全螢幕","Non-Fullscreen":"非全螢幕","Mute":"靜音","Unmute":"取消靜音","Playback Rate":"播放速率","Subtitles":"字幕","subtitles off":"字幕關閉","Captions":"標題","captions off":"標題關閉","Chapters":"章節","Descriptions":"描述","descriptions off":"描述關閉","Audio Track":"音訊軌","Volume Level":"音訊等級","You aborted the media playback":"您中止了媒體播放","A network error caused the media download to fail part-way.":"網路錯誤造成媒體下載部份失敗。","The media could not be loaded, either because the server or network failed or because the format is not supported.":"媒體無法載入,可能是因為伺服器或網路故障,或為不支援的格式。","The media playback was aborted due to a corruption problem or because the media used features your browser did not support.":"媒體播放因損毀或該媒體使用了您的瀏覽器不支援的功能而中止。","No compatible source was found for this media.":"找不到此媒體的相容來源。","The media is encrypted and we do not have the keys to decrypt it.":"媒體已加密,我們沒有金鑰可以將其解密。","Play Video":"播放影片","Close":"關閉","Close Modal Dialog":"關閉程式對話框","Modal Window":"程式視窗","This is a modal window":"這是一個程式視窗","This modal can be closed by pressing the Escape key or activating the close button.":"這個程式可以夠過按下 Esc 鍵或啟動關閉按鈕來關閉。",", opens captions settings dialog":",開啟標題設定對話框",", opens subtitles settings dialog":",開啟字幕設定對話框",", opens descriptions settings dialog":",開啟描述設定對話框",", selected":",已選取","captions settings":"標題設定","subtitles settings":"字幕設定","descriptions settings":"描述設定","Text":"文字","White":"白色","Black":"黑色","Red":"紅色","Green":"綠色","Blue":"藍色","Yellow":"黃色","Magenta":"洋紅色","Cyan":"深藍色","Background":"背景","Window":"視窗","Transparent":"透明","Semi-Transparent":"半透明","Opaque":"不透明","Font Size":"字型大小","Text Edge Style":"文字邊緣樣式","None":"無","Raised":"凸起","Depressed":"扁平","Uniform":"均勻","Dropshadow":"陰影效果","Font Family":"字型家族","Proportional Sans-Serif":"比例無襯線","Monospace Sans-Serif":"等寬無襯線","Proportional Serif":"比例襯線","Monospace Serif":"等寬襯線","Casual":"華麗","Script":"手寫","Small Caps":"小型大寫字母","Reset":"重設","restore all settings to the default values":"將所有設定復原為預設值","Done":"完成","Caption Settings Dialog":"標題設定對話框","Beginning of dialog window. Escape will cancel and close the window.":"對話框視窗開始。Esc 將會取消並關閉視窗。","End of dialog window.":"對話框視窗結束。","{1} is loading.":"{1} 正在載入。","Quality":"品質","Auto":"自動","Speed":"速度","peers":"peer","Go to the video page":"到影片頁面","Settings":"設定","Uses P2P, others may know you are watching this video.":"使用 P2P,其他人可能會知道您正在觀看這部影片。","Copy the video URL":"複製影片 URL","Copy the video URL at the current time":"複製目前影片時間的 URL","Copy embed code":"複製嵌入程式碼"} \ No newline at end of file {"Audio Player":"音訊播放器","Video Player":"視訊播放器","Play":"播放","Pause":"暫停","Replay":"重播","Current Time":"目前時間","Duration":"長度","Remaining Time":"剩餘時間","Stream Type":"串流類型","LIVE":"直播","Loaded":"已載入","Progress":"進度","Progress Bar":"進度條","progress bar timing: currentTime={1} duration={2}":"{1} 之 {2}","Fullscreen":"全螢幕","Non-Fullscreen":"非全螢幕","Mute":"靜音","Unmute":"取消靜音","Playback Rate":"播放速率","Subtitles":"字幕","subtitles off":"字幕關閉","Captions":"標題","captions off":"標題關閉","Chapters":"章節","Descriptions":"描述","descriptions off":"描述關閉","Audio Track":"音訊軌","Volume Level":"音訊等級","You aborted the media playback":"您中止了媒體播放","A network error caused the media download to fail part-way.":"網路錯誤造成媒體下載部份失敗。","The media could not be loaded, either because the server or network failed or because the format is not supported.":"媒體無法載入,可能是因為伺服器或網路故障,或為不支援的格式。","The media playback was aborted due to a corruption problem or because the media used features your browser did not support.":"媒體播放因損毀或該媒體使用了您的瀏覽器不支援的功能而中止。","No compatible source was found for this media.":"找不到此媒體的相容來源。","The media is encrypted and we do not have the keys to decrypt it.":"媒體已加密,我們沒有金鑰可以將其解密。","Play Video":"播放影片","Close":"關閉","Close Modal Dialog":"關閉程式對話框","Modal Window":"程式視窗","This is a modal window":"這是一個程式視窗","This modal can be closed by pressing the Escape key or activating the close button.":"這個程式可以夠過按下 Esc 鍵或啟動關閉按鈕來關閉。",", opens captions settings dialog":",開啟標題設定對話框",", opens subtitles settings dialog":",開啟字幕設定對話框",", opens descriptions settings dialog":",開啟描述設定對話框",", selected":",已選取","captions settings":"標題設定","subtitles settings":"字幕設定","descriptions settings":"描述設定","Text":"文字","White":"白色","Black":"黑色","Red":"紅色","Green":"綠色","Blue":"藍色","Yellow":"黃色","Magenta":"洋紅色","Cyan":"深藍色","Background":"背景","Window":"視窗","Transparent":"透明","Semi-Transparent":"半透明","Opaque":"不透明","Font Size":"字型大小","Text Edge Style":"文字邊緣樣式","None":"無","Raised":"凸起","Depressed":"扁平","Uniform":"均勻","Dropshadow":"陰影效果","Font Family":"字型家族","Proportional Sans-Serif":"比例無襯線","Monospace Sans-Serif":"等寬無襯線","Proportional Serif":"比例襯線","Monospace Serif":"等寬襯線","Casual":"華麗","Script":"手寫","Small Caps":"小型大寫字母","Reset":"重設","restore all settings to the default values":"將所有設定復原為預設值","Done":"完成","Caption Settings Dialog":"標題設定對話框","Beginning of dialog window. Escape will cancel and close the window.":"對話框視窗開始。Esc 將會取消並關閉視窗。","End of dialog window.":"對話框視窗結束。","{1} is loading.":"{1} 正在載入。","Quality":"品質","Auto":"自動","Speed":"速度","Subtitles/CC":"CC字幕","peers":"peer","Go to the video page":"到影片頁面","Settings":"設定","Uses P2P, others may know you are watching this video.":"使用 P2P,其他人可能會知道您正在觀看這部影片。","Copy the video URL":"複製影片 URL","Copy the video URL at the current time":"複製目前影片時間的 URL","Copy embed code":"複製嵌入程式碼"} \ No newline at end of file
diff --git a/client/src/locale/target/server_ca_ES.json b/client/src/locale/target/server_ca_ES.json
index a75d034b6..95994e618 100644
--- a/client/src/locale/target/server_ca_ES.json
+++ b/client/src/locale/target/server_ca_ES.json
@@ -1 +1 @@
{"Music":"Música","Films":"Pel·lícules","Vehicles":"Vehicles","Art":"Art","Sports":"Esports","Travels":"Viatges","Gaming":"Jocs","People":"Gent","Comedy":"Comèdia","Entertainment":"Entreteniment","News":"Notícies","How To":"Com fer","Education":"Educació","Activism":"Activisme","Science & Technology":"Ciència i tecnologia","Animals":"Animals","Kids":"Nens","Food":"Aliments","Attribution":"Atribució","Attribution - Share Alike":"Atribució: Comparteix-ho per igual","Attribution - No Derivatives":"Atribució - Sense Derivats","Attribution - Non Commercial":"Atribució: No Comercial","Attribution - Non Commercial - Share Alike":"Atribució - No Comercial - Compartir per igual","Attribution - Non Commercial - No Derivatives":"Attribution - No Comercial - Sense Derivats","Public Domain Dedication":"Dedicació de Domini Públic","Public":"Públic","Unlisted":"No llistat","Private":"Privat","Misc":"Miscel·lània","Unknown":"Desconegut","Afar":"Àfar","Abkhazian":"Abkhaz","Afrikaans":"Afrikaans","Akan":"Àkan","Amharic":"Amhàric","Arabic":"Àrab","Aragonese":"Aragonès","American Sign Language":"Llengua de Signes Nord-Americana","Assamese":"Assamès","Avaric":"Àvar","Aymara":"Aimara","Azerbaijani":"Àzeri","Bashkir":"Baixkir","Bambara":"Bambara","Belarusian":"Bielorús","Bengali":"Bengalí","British Sign Language":"Llengua de Signes Britànica","Bislama":"Bislama","Tibetan":"Tibetà","Bosnian":"Bosnià","Breton":"Bretó","Bulgarian":"Búlgar","Brazilian Sign Language":"Llengua de Signes Brasiler","Catalan":"Català","Czech":"Txec","Chamorro":"Chamorro","Chechen":"Txetxè","Chuvash":"Txuvaix","Cornish":"Korni","Corsican":"Cors","Cree":"Cree","Czech Sign Language":"Llengua de Signes Txec","Chinese Sign Language":"Llengua de Signes Xinesa","Welsh":"Gal·lès","Danish":"Danès","German":"Alemany","Dhivehi":"Divehi","Danish Sign Language":"Llengua de Signes Danesa","Dzongkha":"Dzongka","Modern Greek (1453-)":"Grec modern (1453-)","English":"Anglès","Estonian":"Estonià","Basque":"Basc","Ewe":"Ewe","Faroese":"Feroès","Persian":"Persa","Fijian":"Fijià","Finnish":"Finlandès","French":"Francès","Western Frisian":"Frisó occidental","French Sign Language":"Llengua de Signes Francesa","Fulah":"Ful","Scottish Gaelic":"Gaèlic Escocès","Irish":"Irlandès","Galician":"Gallec","Manx":"Manx","Guarani":"Guaraní","German Sign Language":"Llengua de Signes Alemanya","Gujarati":"Gujarati","Haitian":"Haitià","Hausa":"Haussa","Serbo-Croatian":"Serbocroat","Hebrew":"Hebreu","Herero":"Herero","Hindi":"Hindi","Hiri Motu":"Hiri Motu","Croatian":"Croat","Hungarian":"Hongarès","Armenian":"Armeni","Igbo":"Igbo","Sichuan Yi":"Yi de Sichuan","Inuktitut":"Inuktitut","Indonesian":"Indonesi","Inupiaq":"Inupiaq","Icelandic":"Islandès","Italian":"Italià","Javanese":"Javanès","Japanese":"Japonès","Japanese Sign Language":"Llengua de Signes Japonesa","Kalaallisut":"Kalaallisut","Kannada":"Kannada","Kashmiri":"Caixmiri","Georgian":"Georgià","Kanuri":"Kanuri","Kazakh":"Kazakh","Khmer":"Khmer","Kikuyu":"Kikuiu","Kinyarwanda":"Ruandès","Kirghiz":"Kirguís","Komi":"Komi","Kongo":"Koongo","Korean":"Coreà","Kuanyama":"Kwanyama","Kurdish":"Kurd","Lao":"Laosià","Latvian":"Letó","Limburgan":"Limburgan","Lingala":"Lingala","Lithuanian":"Lituà","Luxembourgish":"Luxemburguès","Luba-Katanga":"Luba","Ganda":"Ganda","Marshallese":"Marshallès","Malayalam":"Malaialam","Marathi":"Marathi","Macedonian":"Macedoni","Malagasy":"Malgache","Maltese":"Maltès","Mongolian":"Mongol","Maori":"Maori","Malay (macrolanguage)":"Malai (macro llengua)","Burmese":"Birmà","Nauru":"Nauruà","Navajo":"Navaho","South Ndebele":"Ndebele del Sud","North Ndebele":"Ndebele del Nord","Ndonga":"Ndonga","Nepali (macrolanguage)":"Nepalès (macro llengua)","Dutch":"Holandès","Norwegian Nynorsk":"Noruec Nynorsk","Norwegian Bokmål":"Noruec Bokmål","Norwegian":"Noruec","Nyanja":"Nyanga","Occitan (post 1500)":"Occità (post 1500)","Ojibwa":"Ojibwa","Oriya (macrolanguage)":"Oriya (macro llengua)","Oromo":"Oromo","Ossetian":"Osset","Panjabi":"Panjabi","Pakistan Sign Language":"Llengua de Signes de Pakistan","Polish":"Polonès","Portuguese":"Portuguès","Pushto":"Paixtu","Quechua":"Quítxua","Romansh":"Romanx","Romanian":"Romanès","Russian Sign Language":"Llengua de Signes Russa","Rundi":"Rundi","Russian":"Rus","Sango":"Sango","Saudi Arabian Sign Language":"Llengua de Signes de l'Aràbia Saudita","South African Sign Language":"Llengua de Signes Sud-Africana","Sinhala":"Singalès","Slovak":"Eslovac","Slovenian":"Eslovè","Northern Sami":"Sami del Nord","Samoan":"Samoà","Shona":"Shona","Sindhi":"Sindhi","Somali":"Somali","Southern Sotho":"Sotho del Sud","Spanish":"Espanyol","Albanian":"Albanès","Sardinian":"Sard","Serbian":"Serbi","Swati":"Swati","Sundanese":"Sundanès","Swahili (macrolanguage)":"Suahili (macro llengua)","Swedish":"Suec","Swedish Sign Language":"Llengua de Signes Sueca","Tahitian":"Tahití","Tamil":"Tàmil","Tatar":"Tàtar","Telugu":"Telugu","Tajik":"Tadjik","Tagalog":"Tagàlog","Thai":"Tailandès","Tigrinya":"Tigrinya","Tonga (Tonga Islands)":"Tongalès (arxipèlag de Tonga)","Tswana":"Tswana","Tsonga":"Tsonga","Turkmen":"Turcman","Turkish":"Turc","Twi":"Twi","Uighur":"Uigur","Ukrainian":"Ucraïnès","Urdu":"Urdú","Uzbek":"Uzbek","Venda":"Venda","Vietnamese":"Vietnamita","Walloon":"Való","Wolof":"Wòlof","Xhosa":"Xosa","Yiddish":"Jiddisch","Yoruba":"Ioruba","Zhuang":"Zhuang","Chinese":"Xinès","Zulu":"Zulu"} \ No newline at end of file {"Music":"Música","Films":"Pel·lícules","Vehicles":"Vehicles","Art":"Art","Sports":"Esports","Travels":"Viatges","Gaming":"Jocs","People":"Gent","Comedy":"Comèdia","Entertainment":"Entreteniment","News":"Notícies","How To":"Com fer","Education":"Educació","Activism":"Activisme","Science & Technology":"Ciència i tecnologia","Animals":"Animals","Kids":"Nens","Food":"Aliments","Attribution":"Atribució","Attribution - Share Alike":"Atribució: Comparteix-ho per igual","Attribution - No Derivatives":"Atribució - Sense Derivats","Attribution - Non Commercial":"Atribució: No Comercial","Attribution - Non Commercial - Share Alike":"Atribució - No Comercial - Compartir per igual","Attribution - Non Commercial - No Derivatives":"Attribution - No Comercial - Sense Derivats","Public Domain Dedication":"Dedicació de Domini Públic","Public":"Públic","Unlisted":"No llistat","Private":"Privat","Misc":"Miscel·lània","Unknown":"Desconegut","Afar":"Àfar","Abkhazian":"Abkhaz","Afrikaans":"Afrikaans","Akan":"Àkan","Amharic":"Amhàric","Arabic":"Àrab","Aragonese":"Aragonès","American Sign Language":"Llengua de Signes Nord-Americana","Assamese":"Assamès","Avaric":"Àvar","Aymara":"Aimara","Azerbaijani":"Àzeri","Bashkir":"Baixkir","Bambara":"Bambara","Belarusian":"Bielorús","Bengali":"Bengalí","British Sign Language":"Llengua de Signes Britànica","Bislama":"Bislama","Tibetan":"Tibetà","Bosnian":"Bosnià","Breton":"Bretó","Bulgarian":"Búlgar","Brazilian Sign Language":"Llengua de Signes Brasiler","Catalan":"Català","Czech":"Txec","Chamorro":"Chamorro","Chechen":"Txetxè","Chuvash":"Txuvaix","Cornish":"Korni","Corsican":"Cors","Cree":"Cree","Czech Sign Language":"Llengua de Signes Txec","Chinese Sign Language":"Llengua de Signes Xinesa","Welsh":"Gal·lès","Danish":"Danès","German":"Alemany","Dhivehi":"Divehi","Danish Sign Language":"Llengua de Signes Danesa","Dzongkha":"Dzongka","Modern Greek (1453-)":"Grec modern (1453-)","English":"Anglès","Estonian":"Estonià","Basque":"Basc","Ewe":"Ewe","Faroese":"Feroès","Persian":"Persa","Fijian":"Fijià","Finnish":"Finlandès","French":"Francès","Western Frisian":"Frisó occidental","French Sign Language":"Llengua de Signes Francesa","Fulah":"Ful","Scottish Gaelic":"Gaèlic Escocès","Irish":"Irlandès","Galician":"Gallec","Manx":"Manx","Guarani":"Guaraní","German Sign Language":"Llengua de Signes Alemanya","Gujarati":"Gujarati","Haitian":"Haitià","Hausa":"Haussa","Serbo-Croatian":"Serbocroat","Hebrew":"Hebreu","Herero":"Herero","Hindi":"Hindi","Hiri Motu":"Hiri Motu","Croatian":"Croat","Hungarian":"Hongarès","Armenian":"Armeni","Igbo":"Igbo","Sichuan Yi":"Yi de Sichuan","Inuktitut":"Inuktitut","Indonesian":"Indonesi","Inupiaq":"Inupiaq","Icelandic":"Islandès","Italian":"Italià","Javanese":"Javanès","Japanese":"Japonès","Japanese Sign Language":"Llengua de Signes Japonesa","Kalaallisut":"Kalaallisut","Kannada":"Kannada","Kashmiri":"Caixmiri","Georgian":"Georgià","Kanuri":"Kanuri","Kazakh":"Kazakh","Khmer":"Khmer","Kikuyu":"Kikuiu","Kinyarwanda":"Ruandès","Kirghiz":"Kirguís","Komi":"Komi","Kongo":"Koongo","Korean":"Coreà","Kuanyama":"Kwanyama","Kurdish":"Kurd","Lao":"Laosià","Latvian":"Letó","Limburgan":"Limburgan","Lingala":"Lingala","Lithuanian":"Lituà","Luxembourgish":"Luxemburguès","Luba-Katanga":"Luba","Ganda":"Ganda","Marshallese":"Marshallès","Malayalam":"Malaialam","Marathi":"Marathi","Macedonian":"Macedoni","Malagasy":"Malgache","Maltese":"Maltès","Mongolian":"Mongol","Maori":"Maori","Malay (macrolanguage)":"Malai (macro llengua)","Burmese":"Birmà","Nauru":"Nauruà","Navajo":"Navaho","South Ndebele":"Ndebele del Sud","North Ndebele":"Ndebele del Nord","Ndonga":"Ndonga","Nepali (macrolanguage)":"Nepalès (macro llengua)","Dutch":"Holandès","Norwegian Nynorsk":"Noruec Nynorsk","Norwegian Bokmål":"Noruec Bokmål","Norwegian":"Noruec","Nyanja":"Nyanga","Ojibwa":"Ojibwa","Oriya (macrolanguage)":"Oriya (macro llengua)","Oromo":"Oromo","Ossetian":"Osset","Panjabi":"Panjabi","Pakistan Sign Language":"Llengua de Signes de Pakistan","Polish":"Polonès","Portuguese":"Portuguès","Pushto":"Paixtu","Quechua":"Quítxua","Romansh":"Romanx","Romanian":"Romanès","Russian Sign Language":"Llengua de Signes Russa","Rundi":"Rundi","Russian":"Rus","Sango":"Sango","Saudi Arabian Sign Language":"Llengua de Signes de l'Aràbia Saudita","South African Sign Language":"Llengua de Signes Sud-Africana","Sinhala":"Singalès","Slovak":"Eslovac","Slovenian":"Eslovè","Northern Sami":"Sami del Nord","Samoan":"Samoà","Shona":"Shona","Sindhi":"Sindhi","Somali":"Somali","Southern Sotho":"Sotho del Sud","Spanish":"Espanyol","Albanian":"Albanès","Sardinian":"Sard","Serbian":"Serbi","Swati":"Swati","Sundanese":"Sundanès","Swahili (macrolanguage)":"Suahili (macro llengua)","Swedish":"Suec","Swedish Sign Language":"Llengua de Signes Sueca","Tahitian":"Tahití","Tamil":"Tàmil","Tatar":"Tàtar","Telugu":"Telugu","Tajik":"Tadjik","Tagalog":"Tagàlog","Thai":"Tailandès","Tigrinya":"Tigrinya","Tonga (Tonga Islands)":"Tongalès (arxipèlag de Tonga)","Tswana":"Tswana","Tsonga":"Tsonga","Turkmen":"Turcman","Turkish":"Turc","Twi":"Twi","Uighur":"Uigur","Ukrainian":"Ucraïnès","Urdu":"Urdú","Uzbek":"Uzbek","Venda":"Venda","Vietnamese":"Vietnamita","Walloon":"Való","Wolof":"Wòlof","Xhosa":"Xosa","Yiddish":"Jiddisch","Yoruba":"Ioruba","Zhuang":"Zhuang","Chinese":"Xinès","Zulu":"Zulu"} \ No newline at end of file
diff --git a/client/src/locale/target/server_cs_CZ.json b/client/src/locale/target/server_cs_CZ.json
index ec0283693..30267c3c6 100644
--- a/client/src/locale/target/server_cs_CZ.json
+++ b/client/src/locale/target/server_cs_CZ.json
@@ -1 +1 @@
{"Music":"Hudba","Films":"Filmy","Vehicles":"Auta","Art":"Umění","Sports":"Sport","Travels":"Cestování","Gaming":"Hry","People":"Lidé","Comedy":"Komedie","Entertainment":"Zábava","News":"Zprávy","How To":"Jak na to","Education":"Výukové","Activism":"Aktivismus","Science & Technology":"Věda a technologie","Animals":"Zvířata","Kids":"Děti","Food":"Jídlo a vaření","Attribution":"Uveďte autora","Attribution - Share Alike":"Uveďte autora - Zachovejte licenci","Attribution - No Derivatives":"Uveďte autora - Nezpracovávejte","Attribution - Non Commercial":"Uveďte autora - Nešiřte dílo komerčně","Attribution - Non Commercial - Share Alike":"Uveďte autora - Nešiřte dílo komerčně - Zachovejte licenci","Attribution - Non Commercial - No Derivatives":"Uveďte autora - Nešiřte dílo komerčně - Nezpracovávejte","Public Domain Dedication":"Volné dílo","Public":"Veřejné","Unlisted":"Nezobrazeno","Private":"Soukromé","Misc":"Různé","Unknown":"Neznámé","Afar":"Afarština","Abkhazian":"Abcházština","Afrikaans":"Afrikánština","Akan":"Akanština","Amharic":"Amharština","Arabic":"Arabština","Aragonese":"Aragonština","American Sign Language":"Americká znaková řeč","Assamese":"Ásámština","Avaric":"Avarština","Aymara":"Ajmarština","Azerbaijani":"Ázerbájdžánština","Bashkir":"Baškirština","Bambara":"Bambarština","Belarusian":"Běloruština","Bengali":"Bengálština","British Sign Language":"Britská znaková řeč","Bislama":"Bislamština","Tibetan":"Tibetština","Bosnian":"Bosenština","Breton":"Bretonština","Bulgarian":"Bulharština","Brazilian Sign Language":"Brazilská znaková řeč","Catalan":"Katalánština","Czech":"Čeština","Chamorro":"Chamorro","Chechen":"Čečenština","Chuvash":"Čuvaština","Cornish":"Kornština","Corsican":"Korsičtina","Cree":"Kríjština","Czech Sign Language":"Česká znaková řeč","Chinese Sign Language":"Čínská znaková řeč","Welsh":"Velština","Danish":"Dánština","German":"Němčina","Dhivehi":"Maledivština","Danish Sign Language":"Dánská znaková řeč","Dzongkha":"Dzongkä","Modern Greek (1453-)":"Moderní řečtina","English":"Angličtina","Estonian":"Estonština","Basque":"Baskičtina","Ewe":"Eveština","Faroese":"Faerština","Persian":"Perština","Fijian":"Fidžijština","Finnish":"Finština","French":"Francouzština","Western Frisian":"Západofríština","French Sign Language":"Francouzská znaková řeč","Fulah":"Fulbština","Scottish Gaelic":"Skotská gaelština","Irish":"Irština","Galician":"Galicijština","Manx":"Manština","Guarani":"Guaranština","German Sign Language":"Německá znaková řeč","Gujarati":"Gudžarátština","Haitian":"Haitská kreolština","Hausa":"Hauština","Serbo-Croatian":"Srcbochorvatšinta","Hebrew":"Hebrejština","Herero":"Herero","Hindi":"Hindština","Hiri Motu":"Hiri Motu","Croatian":"Chorvatština","Hungarian":"Maďarština","Armenian":"Arménština","Igbo":"Igboština","Sichuan Yi":"Nuosu","Inuktitut":"Inuktitutština","Indonesian":"Indonéština","Inupiaq":"Inupiaq","Icelandic":"Islandština","Italian":"Italština","Javanese":"Javánština","Japanese":"Japonština","Japanese Sign Language":"Japonská znaková řeč","Kalaallisut":"Grónština","Kannada":"Kannadština","Kashmiri":"Kašmírština","Georgian":"Gruzínština","Kanuri":"Kanurijština","Kazakh":"Kazaština","Khmer":"Khmerština","Kikuyu":"Kikujština","Kinyarwanda":"Rwandština","Kirghiz":"Kyrgyzština","Komi":"Komi","Kongo":"Konžština","Korean":"Korejština","Kuanyama":"Kuanyama","Kurdish":"Kurdština","Lao":"Laoština","Latvian":"Lotyština","Limburgan":"Limburština","Lingala":"Ngalština","Lithuanian":"Litevština","Luxembourgish":"Lucemburština","Luba-Katanga":"Luba-Katanga","Ganda":"Gandština","Marshallese":"Maršálština","Malayalam":"Malajálamština","Marathi":"Maráthština","Macedonian":"Makedonština","Malagasy":"Malgaština","Maltese":"Maltština","Mongolian":"Mongolština","Maori":"Maorština","Malay (macrolanguage)":"Malajština","Burmese":"Barmština","Nauru":"Naurština","Navajo":"Navažština","South Ndebele":"Jižní ndebelština","North Ndebele":"Severní ndebelština","Ndonga":"Ndondština","Nepali (macrolanguage)":"Nepálština","Dutch":"Dánština","Norwegian Nynorsk":"Norština Nynorsk","Norwegian Bokmål":"Norština Bokmål","Norwegian":"Norština ","Nyanja":"Čičevština","Occitan (post 1500)":"Okcitánština","Ojibwa":"Ojibwa","Oriya (macrolanguage)":"Urijština","Oromo":"Oromština","Ossetian":"Osetština","Panjabi":"Paňdžábština","Pakistan Sign Language":"Pakistánská znaková řeč","Polish":"Polština","Portuguese":"Portugalština","Pushto":"Paštština","Quechua":"Kečuánština","Romansh":"Rétorománština","Romanian":"Rumunština","Russian Sign Language":"Ruská znaková řeč","Rundi":"Kirundi","Russian":"Ruština","Sango":"Sango","Saudi Arabian Sign Language":"Saudská arabská znaková řeč","South African Sign Language":"Jihoafrická znaková řeč","Sinhala":"Sinhálština","Slovak":"Slovenština","Slovenian":"Slovinština","Northern Sami":"Severní sámština","Samoan":"Samojština","Shona":"Shona","Sindhi":"Sindhština","Somali":"Somálština","Southern Sotho":"Jižní sotština","Spanish":"Španělština","Albanian":"Albánština","Sardinian":"Sardínština","Serbian":"Srbština","Swati":"Swati","Sundanese":"Sundština","Swahili (macrolanguage)":"Svahilština","Swedish":"Švédština","Swedish Sign Language":"Švédská znaková řeč","Tahitian":"Tahitština","Tamil":"Tamilština","Tatar":"Tatarština","Telugu":"Telugština","Tajik":"Tádžičtina","Tagalog":"Tagalog","Thai":"Thajština","Tigrinya":"Tigrinya","Tonga (Tonga Islands)":"Tongánština","Tswana":"Setswanština","Tsonga":"Tsongština","Turkmen":"Turkmenština","Turkish":"Turečtina","Twi":"Twi","Uighur":"Ujgurština","Ukrainian":"Ukrajinština","Urdu":"Urdština","Uzbek":"Uzbečtina","Venda":"Vendština","Vietnamese":"Vietnamština","Walloon":"Valonština","Wolof":"Wolof ","Xhosa":"Xhoština","Yiddish":"Jidiš","Yoruba":"Jorubština","Zhuang":"Čuangština","Chinese":"Čínština","Zulu":"Zuluština"} \ No newline at end of file {"Music":"Hudba","Films":"Filmy","Vehicles":"Auta","Art":"Umění","Sports":"Sport","Travels":"Cestování","Gaming":"Hry","People":"Lidé","Comedy":"Komedie","Entertainment":"Zábava","News":"Zprávy","How To":"Jak na to","Education":"Výukové","Activism":"Aktivismus","Science & Technology":"Věda a technologie","Animals":"Zvířata","Kids":"Děti","Food":"Jídlo a vaření","Attribution":"Uveďte autora","Attribution - Share Alike":"Uveďte autora - Zachovejte licenci","Attribution - No Derivatives":"Uveďte autora - Nezpracovávejte","Attribution - Non Commercial":"Uveďte autora - Nešiřte dílo komerčně","Attribution - Non Commercial - Share Alike":"Uveďte autora - Nešiřte dílo komerčně - Zachovejte licenci","Attribution - Non Commercial - No Derivatives":"Uveďte autora - Nešiřte dílo komerčně - Nezpracovávejte","Public Domain Dedication":"Volné dílo","Public":"Veřejné","Unlisted":"Nezobrazeno","Private":"Soukromé","Misc":"Různé","Unknown":"Neznámé","Afar":"Afarština","Abkhazian":"Abcházština","Afrikaans":"Afrikánština","Akan":"Akanština","Amharic":"Amharština","Arabic":"Arabština","Aragonese":"Aragonština","American Sign Language":"Americká znaková řeč","Assamese":"Ásámština","Avaric":"Avarština","Aymara":"Ajmarština","Azerbaijani":"Ázerbájdžánština","Bashkir":"Baškirština","Bambara":"Bambarština","Belarusian":"Běloruština","Bengali":"Bengálština","British Sign Language":"Britská znaková řeč","Bislama":"Bislamština","Tibetan":"Tibetština","Bosnian":"Bosenština","Breton":"Bretonština","Bulgarian":"Bulharština","Brazilian Sign Language":"Brazilská znaková řeč","Catalan":"Katalánština","Czech":"Čeština","Chamorro":"Chamorro","Chechen":"Čečenština","Chuvash":"Čuvaština","Cornish":"Kornština","Corsican":"Korsičtina","Cree":"Kríjština","Czech Sign Language":"Česká znaková řeč","Chinese Sign Language":"Čínská znaková řeč","Welsh":"Velština","Danish":"Dánština","German":"Němčina","Dhivehi":"Maledivština","Danish Sign Language":"Dánská znaková řeč","Dzongkha":"Dzongkä","Modern Greek (1453-)":"Moderní řečtina","English":"Angličtina","Estonian":"Estonština","Basque":"Baskičtina","Ewe":"Eveština","Faroese":"Faerština","Persian":"Perština","Fijian":"Fidžijština","Finnish":"Finština","French":"Francouzština","Western Frisian":"Západofríština","French Sign Language":"Francouzská znaková řeč","Fulah":"Fulbština","Scottish Gaelic":"Skotská gaelština","Irish":"Irština","Galician":"Galicijština","Manx":"Manština","Guarani":"Guaranština","German Sign Language":"Německá znaková řeč","Gujarati":"Gudžarátština","Haitian":"Haitská kreolština","Hausa":"Hauština","Serbo-Croatian":"Srcbochorvatšinta","Hebrew":"Hebrejština","Herero":"Herero","Hindi":"Hindština","Hiri Motu":"Hiri Motu","Croatian":"Chorvatština","Hungarian":"Maďarština","Armenian":"Arménština","Igbo":"Igboština","Sichuan Yi":"Nuosu","Inuktitut":"Inuktitutština","Indonesian":"Indonéština","Inupiaq":"Inupiaq","Icelandic":"Islandština","Italian":"Italština","Javanese":"Javánština","Japanese":"Japonština","Japanese Sign Language":"Japonská znaková řeč","Kalaallisut":"Grónština","Kannada":"Kannadština","Kashmiri":"Kašmírština","Georgian":"Gruzínština","Kanuri":"Kanurijština","Kazakh":"Kazaština","Khmer":"Khmerština","Kikuyu":"Kikujština","Kinyarwanda":"Rwandština","Kirghiz":"Kyrgyzština","Komi":"Komi","Kongo":"Konžština","Korean":"Korejština","Kuanyama":"Kuanyama","Kurdish":"Kurdština","Lao":"Laoština","Latvian":"Lotyština","Limburgan":"Limburština","Lingala":"Ngalština","Lithuanian":"Litevština","Luxembourgish":"Lucemburština","Luba-Katanga":"Luba-Katanga","Ganda":"Gandština","Marshallese":"Maršálština","Malayalam":"Malajálamština","Marathi":"Maráthština","Macedonian":"Makedonština","Malagasy":"Malgaština","Maltese":"Maltština","Mongolian":"Mongolština","Maori":"Maorština","Malay (macrolanguage)":"Malajština","Burmese":"Barmština","Nauru":"Naurština","Navajo":"Navažština","South Ndebele":"Jižní ndebelština","North Ndebele":"Severní ndebelština","Ndonga":"Ndondština","Nepali (macrolanguage)":"Nepálština","Dutch":"Dánština","Norwegian Nynorsk":"Norština Nynorsk","Norwegian Bokmål":"Norština Bokmål","Norwegian":"Norština ","Nyanja":"Čičevština","Ojibwa":"Ojibwa","Oriya (macrolanguage)":"Urijština","Oromo":"Oromština","Ossetian":"Osetština","Panjabi":"Paňdžábština","Pakistan Sign Language":"Pakistánská znaková řeč","Polish":"Polština","Portuguese":"Portugalština","Pushto":"Paštština","Quechua":"Kečuánština","Romansh":"Rétorománština","Romanian":"Rumunština","Russian Sign Language":"Ruská znaková řeč","Rundi":"Kirundi","Russian":"Ruština","Sango":"Sango","Saudi Arabian Sign Language":"Saudská arabská znaková řeč","South African Sign Language":"Jihoafrická znaková řeč","Sinhala":"Sinhálština","Slovak":"Slovenština","Slovenian":"Slovinština","Northern Sami":"Severní sámština","Samoan":"Samojština","Shona":"Shona","Sindhi":"Sindhština","Somali":"Somálština","Southern Sotho":"Jižní sotština","Spanish":"Španělština","Albanian":"Albánština","Sardinian":"Sardínština","Serbian":"Srbština","Swati":"Swati","Sundanese":"Sundština","Swahili (macrolanguage)":"Svahilština","Swedish":"Švédština","Swedish Sign Language":"Švédská znaková řeč","Tahitian":"Tahitština","Tamil":"Tamilština","Tatar":"Tatarština","Telugu":"Telugština","Tajik":"Tádžičtina","Tagalog":"Tagalog","Thai":"Thajština","Tigrinya":"Tigrinya","Tonga (Tonga Islands)":"Tongánština","Tswana":"Setswanština","Tsonga":"Tsongština","Turkmen":"Turkmenština","Turkish":"Turečtina","Twi":"Twi","Uighur":"Ujgurština","Ukrainian":"Ukrajinština","Urdu":"Urdština","Uzbek":"Uzbečtina","Venda":"Vendština","Vietnamese":"Vietnamština","Walloon":"Valonština","Wolof":"Wolof ","Xhosa":"Xhoština","Yiddish":"Jidiš","Yoruba":"Jorubština","Zhuang":"Čuangština","Chinese":"Čínština","Zulu":"Zuluština"} \ No newline at end of file
diff --git a/client/src/locale/target/server_de_DE.json b/client/src/locale/target/server_de_DE.json
index 5a4d2d16a..48d572982 100644
--- a/client/src/locale/target/server_de_DE.json
+++ b/client/src/locale/target/server_de_DE.json
@@ -1 +1 @@
{"Music":"Musik","Films":"Filme","Vehicles":"Fahrzeuge","Art":"Kunst","Sports":"Sport","Travels":"Reisen","Gaming":"Spiele","People":"Leute","Comedy":"Komödie","Entertainment":"Unterhaltung","News":"Nachrichten","How To":"How-to","Education":"Bildung","Activism":"Aktivismus","Science & Technology":"Wissenschaft und Technologie","Animals":"Tiere","Kids":"Kinder","Food":"Essen","Attribution":"Namensnennung","Attribution - Share Alike":"Namensnennung - Weitergabe unter gleichen Bedingungen","Attribution - No Derivatives":"Namensnennung - Keine Bearbeitung","Attribution - Non Commercial":"Namensnennung - nicht kommerziell","Attribution - Non Commercial - Share Alike":"Namensnennung - nicht kommerziell, Weitergabe unter gleichen Bedingungen","Attribution - Non Commercial - No Derivatives":"Namensnennung - nicht kommerziell, keine Bearbeitung","Public Domain Dedication":"In Gemeinfreiheit entlassen","Public":"Öffentlich","Unlisted":"Ungelistet","Private":"Privat","Published":"Veröffentlicht","To transcode":"Zu transkodieren","To import":"Zu importieren","Pending":"Ausstehend","Success":"Erfolg","Failed":"Fehlgeschlagen","Misc":"Verschiedenes","Unknown":"Unbekannt","Afar":"Afar","Abkhazian":"Abchasisch","Afrikaans":"Afrikaans","Akan":"Akan","Amharic":"Amharisch","Arabic":"Arabisch","Aragonese":"Aragonesisch","American Sign Language":"Amerikanische Gebärdensprache","Assamese":"Assamesisch","Avaric":"Awarisch","Kotava":"Kotava","Aymara":"Aymara","Azerbaijani":"Aserbeidschanisch","Bashkir":"Baschkirisch","Bambara":"Bambara","Belarusian":"Weißrussisch","Bengali":"Bengali","British Sign Language":"Britische Gebärdensprache","Bislama":"Beach-la-mar","Tibetan":"Tibetisch","Bosnian":"Bosnisch","Breton":"Bretonisch","Bulgarian":"Bulgarisch","Brazilian Sign Language":"Brasilianische Gebärdensprache","Catalan":"Katalanisch","Czech":"Tschechisch","Chamorro":"Chamorro","Chechen":"Tschetschenisch","Chuvash":"Tschuwaschisch","Cornish":"Kornisch","Corsican":"Korsisch","Cree":"Cree","Czech Sign Language":"Tschechische Gebärdensprache","Chinese Sign Language":"Chinesiche Gebärdensprache","Welsh":"Kymrisch","Danish":"Dänisch","German":"Deutsch","Dhivehi":"Maledivisch","Danish Sign Language":"Dänische Gebärdensprache","Dzongkha":"Dzongkha","Modern Greek (1453-)":"Neugriechisch","English":"Englisch","Esperanto":"Esperanto","Estonian":"Estnisch","Basque":"Baskisch","Ewe":"Ewe","Faroese":"Färöisch","Persian":"Persisch","Fijian":"Fidschi","Finnish":"Finnisch","French":"Französisch","Western Frisian":"Friesisch","French Sign Language":"Französiche Gebärdensprache","Fulah":"Ful","Scottish Gaelic":"Gälisch-Schottisch","Irish":"Irisch","Galician":"Galicisch","Manx":"Manx","Guarani":"Guaraní","German Sign Language":"Deutsche Gebärdensprache","Gujarati":"Gujarati","Haitian":"Haïtien (Haiti-Kreolisch)","Hausa":"Hausa","Serbo-Croatian":"Serbokroatisch","Hebrew":"Hebräisch","Herero":"Otjiherero","Hindi":"Hindi","Hiri Motu":"Hiri-Motu","Croatian":"Kroatisch","Hungarian":"Ungarisch","Armenian":"Armenisch","Igbo":"Igbo","Sichuan Yi":"Yi","Inuktitut":"Inuktitut","Indonesian":"Bahasa Indonesia","Inupiaq":"Inupik","Icelandic":"Isländisch","Italian":"Italienisch","Javanese":"Javanisch","Lojban":"Lojban","Japanese":"Japanisch","Japanese Sign Language":"Japanische Gebärdensprache","Kalaallisut":"Grönländisch","Kannada":"Kannada","Kashmiri":"Kaschmiri","Georgian":"Georgisch","Kanuri":"Kanuri","Kazakh":"Kasachisch","Khmer":"Kambodschanisch","Kikuyu":"Kikuyu","Kinyarwanda":"Kinyarwanda","Kirghiz":"Kirgisisch","Komi":"Komi","Kongo":"Kikongo","Korean":"Koreanisch","Kuanyama":"Kuanyama","Kurdish":"Kurdisch","Lao":"Laotisch","Latvian":"Lettisch","Limburgan":"Limburgisch","Lingala":"Lingala","Lithuanian":"Litauisch","Luxembourgish":"Luxemburgisch","Luba-Katanga":"Kiluba","Ganda":"Luganda","Marshallese":"Marschallesisch","Malayalam":"Malayalam","Marathi":"Marathi","Macedonian":"Makedonisch","Malagasy":"Malagassi","Maltese":"Maltesisch","Mongolian":"Mongolisch","Maori":"Māori","Malay (macrolanguage)":"Malaiisch","Burmese":"Birmanisch","Nauru":"Nauruanisch","Navajo":"Navajo","South Ndebele":"Süd-Ndebele","North Ndebele":"Nord-Ndebele","Ndonga":"Ndonga","Nepali (macrolanguage)":"Nepali","Dutch":"Niederländisch","Norwegian Nynorsk":"Nynorsk","Norwegian Bokmål":"Bokmål","Norwegian":"Norwegisch","Nyanja":"Nyanja-Sprache","Occitan (post 1500)":"Okzitanisch","Ojibwa":"Ojibwa-Sprache","Oriya (macrolanguage)":"Oriya-Sprache","Oromo":"Galla-Sprache","Ossetian":"Ossetisch","Panjabi":"Pandschabi-Sprache","Pakistan Sign Language":"Pakistanische Gebärdensprache","Polish":"Polnisch","Portuguese":"Portugiesisch","Pushto":"Paschtu","Quechua":"Quechua-Sprache","Romansh":"Rätoromanisch","Romanian":"Rumänisch","Russian Sign Language":"Russische Gebärdensprache","Rundi":"Rundi-Sprache","Russian":"Russisch","Sango":"Sango-Sprache","Saudi Arabian Sign Language":"Saudi-arabische Gebärdensprache","South African Sign Language":"Südafrikanische Gebärdensprache","Sinhala":"Singhalesisch","Slovak":"Slowakisch","Slovenian":"Slowenisch","Northern Sami":"Nordsaamisch","Samoan":"Samoanisch","Shona":"Schona-Sprache","Sindhi":"Sindhi-Sprache","Somali":"Somali","Southern Sotho":"Süd-Sotho-Sprache","Spanish":"Spanisch","Albanian":"Albanisch","Sardinian":"Sardisch","Serbian":"Serbisch","Swati":"Swasi-Sprache","Sundanese":"Sundanesisch","Swahili (macrolanguage)":"Swahili","Swedish":"Schwedisch","Swedish Sign Language":"Schwedische Gebärdensprache","Tahitian":"Tahitisch","Tamil":"Tamil","Tatar":"Tatarisch","Telugu":"Telugu-Sprache","Tajik":"Tadschikisch","Tagalog":"Tagalog","Thai":"Thailändisch","Tigrinya":"Tigrinja-Sprache","Klingon":"Klingonisch","Tonga (Tonga Islands)":"Tongaisch","Tswana":"Tswana-Sprache","Tsonga":"Tsonga-Sprache","Turkmen":"Turkmenisch","Turkish":"Türkisch","Twi":"Twi-Sprache","Uighur":"Uigurisch","Ukrainian":"Ukrainisch","Urdu":"Urdu","Uzbek":"Usbekisch","Venda":"Venda-Sprache","Vietnamese":"Vietnamesisch","Walloon":"Wallonisch","Wolof":"Wolof-Sprache","Xhosa":"Xhosa-Sprache","Yiddish":"Jiddisch","Yoruba":"Yoruba-Sprache","Zhuang":"Zhuang","Chinese":"Chinesisch","Zulu":"Zulu-Sprache"} \ No newline at end of file {"Music":"Musik","Films":"Filme","Vehicles":"Fahrzeuge","Art":"Kunst","Sports":"Sport","Travels":"Reisen","Gaming":"Spiele","People":"Leute","Comedy":"Komödie","Entertainment":"Unterhaltung","News":"Nachrichten","How To":"How-to","Education":"Bildung","Activism":"Aktivismus","Science & Technology":"Wissenschaft und Technologie","Animals":"Tiere","Kids":"Kinder","Food":"Essen","Attribution":"Namensnennung","Attribution - Share Alike":"Namensnennung - Weitergabe unter gleichen Bedingungen","Attribution - No Derivatives":"Namensnennung - Keine Bearbeitung","Attribution - Non Commercial":"Namensnennung - nicht kommerziell","Attribution - Non Commercial - Share Alike":"Namensnennung - nicht kommerziell, Weitergabe unter gleichen Bedingungen","Attribution - Non Commercial - No Derivatives":"Namensnennung - nicht kommerziell, keine Bearbeitung","Public Domain Dedication":"In Gemeinfreiheit entlassen","Public":"Öffentlich","Unlisted":"Nicht gelistet","Private":"Privat","Published":"Veröffentlicht","To transcode":"Zu transkodieren","To import":"Zu importieren","Pending":"Ausstehend","Success":"Erfolg","Failed":"Fehlgeschlagen","Misc":"Verschiedenes","Unknown":"Unbekannt","Afar":"Afar","Abkhazian":"Abchasisch","Afrikaans":"Afrikaans","Akan":"Akan","Amharic":"Amharisch","Arabic":"Arabisch","Aragonese":"Aragonesisch","American Sign Language":"Amerikanische Gebärdensprache","Assamese":"Assamesisch","Avaric":"Awarisch","Kotava":"Kotava","Aymara":"Aymara","Azerbaijani":"Aserbeidschanisch","Bashkir":"Baschkirisch","Bambara":"Bambara","Belarusian":"Weißrussisch","Bengali":"Bengali","British Sign Language":"Britische Gebärdensprache","Bislama":"Beach-la-mar","Tibetan":"Tibetisch","Bosnian":"Bosnisch","Breton":"Bretonisch","Bulgarian":"Bulgarisch","Brazilian Sign Language":"Brasilianische Gebärdensprache","Catalan":"Katalanisch","Czech":"Tschechisch","Chamorro":"Chamorro","Chechen":"Tschetschenisch","Chuvash":"Tschuwaschisch","Cornish":"Kornisch","Corsican":"Korsisch","Cree":"Cree","Czech Sign Language":"Tschechische Gebärdensprache","Chinese Sign Language":"Chinesiche Gebärdensprache","Welsh":"Kymrisch","Danish":"Dänisch","German":"Deutsch","Dhivehi":"Maledivisch","Danish Sign Language":"Dänische Gebärdensprache","Dzongkha":"Dzongkha","Modern Greek (1453-)":"Neugriechisch","English":"Englisch","Esperanto":"Esperanto","Estonian":"Estnisch","Basque":"Baskisch","Ewe":"Ewe","Faroese":"Färöisch","Persian":"Persisch","Fijian":"Fidschi","Finnish":"Finnisch","French":"Französisch","Western Frisian":"Friesisch","French Sign Language":"Französiche Gebärdensprache","Fulah":"Ful","Scottish Gaelic":"Gälisch-Schottisch","Irish":"Irisch","Galician":"Galicisch","Manx":"Manx","Guarani":"Guaraní","German Sign Language":"Deutsche Gebärdensprache","Gujarati":"Gujarati","Haitian":"Haïtien (Haiti-Kreolisch)","Hausa":"Hausa","Serbo-Croatian":"Serbokroatisch","Hebrew":"Hebräisch","Herero":"Otjiherero","Hindi":"Hindi","Hiri Motu":"Hiri-Motu","Croatian":"Kroatisch","Hungarian":"Ungarisch","Armenian":"Armenisch","Igbo":"Igbo","Sichuan Yi":"Yi","Inuktitut":"Inuktitut","Indonesian":"Bahasa Indonesia","Inupiaq":"Inupik","Icelandic":"Isländisch","Italian":"Italienisch","Javanese":"Javanisch","Lojban":"Lojban","Japanese":"Japanisch","Japanese Sign Language":"Japanische Gebärdensprache","Kalaallisut":"Grönländisch","Kannada":"Kannada","Kashmiri":"Kaschmiri","Georgian":"Georgisch","Kanuri":"Kanuri","Kazakh":"Kasachisch","Khmer":"Kambodschanisch","Kikuyu":"Kikuyu","Kinyarwanda":"Kinyarwanda","Kirghiz":"Kirgisisch","Komi":"Komi","Kongo":"Kikongo","Korean":"Koreanisch","Kuanyama":"Kuanyama","Kurdish":"Kurdisch","Lao":"Laotisch","Latvian":"Lettisch","Limburgan":"Limburgisch","Lingala":"Lingala","Lithuanian":"Litauisch","Luxembourgish":"Luxemburgisch","Luba-Katanga":"Kiluba","Ganda":"Luganda","Marshallese":"Marschallesisch","Malayalam":"Malayalam","Marathi":"Marathi","Macedonian":"Makedonisch","Malagasy":"Malagassi","Maltese":"Maltesisch","Mongolian":"Mongolisch","Maori":"Māori","Malay (macrolanguage)":"Malaiisch","Burmese":"Birmanisch","Nauru":"Nauruanisch","Navajo":"Navajo","South Ndebele":"Süd-Ndebele","North Ndebele":"Nord-Ndebele","Ndonga":"Ndonga","Nepali (macrolanguage)":"Nepali","Dutch":"Niederländisch","Norwegian Nynorsk":"Nynorsk","Norwegian Bokmål":"Bokmål","Norwegian":"Norwegisch","Nyanja":"Nyanja-Sprache","Ojibwa":"Ojibwa-Sprache","Oriya (macrolanguage)":"Oriya-Sprache","Oromo":"Galla-Sprache","Ossetian":"Ossetisch","Panjabi":"Pandschabi-Sprache","Pakistan Sign Language":"Pakistanische Gebärdensprache","Polish":"Polnisch","Portuguese":"Portugiesisch","Pushto":"Paschtu","Quechua":"Quechua-Sprache","Romansh":"Rätoromanisch","Romanian":"Rumänisch","Russian Sign Language":"Russische Gebärdensprache","Rundi":"Rundi-Sprache","Russian":"Russisch","Sango":"Sango-Sprache","Saudi Arabian Sign Language":"Saudi-arabische Gebärdensprache","South African Sign Language":"Südafrikanische Gebärdensprache","Sinhala":"Singhalesisch","Slovak":"Slowakisch","Slovenian":"Slowenisch","Northern Sami":"Nordsaamisch","Samoan":"Samoanisch","Shona":"Schona-Sprache","Sindhi":"Sindhi-Sprache","Somali":"Somali","Southern Sotho":"Süd-Sotho-Sprache","Spanish":"Spanisch","Albanian":"Albanisch","Sardinian":"Sardisch","Serbian":"Serbisch","Swati":"Swasi-Sprache","Sundanese":"Sundanesisch","Swahili (macrolanguage)":"Swahili","Swedish":"Schwedisch","Swedish Sign Language":"Schwedische Gebärdensprache","Tahitian":"Tahitisch","Tamil":"Tamil","Tatar":"Tatarisch","Telugu":"Telugu-Sprache","Tajik":"Tadschikisch","Tagalog":"Tagalog","Thai":"Thailändisch","Tigrinya":"Tigrinja-Sprache","Klingon":"Klingonisch","Tonga (Tonga Islands)":"Tongaisch","Tswana":"Tswana-Sprache","Tsonga":"Tsonga-Sprache","Turkmen":"Turkmenisch","Turkish":"Türkisch","Twi":"Twi-Sprache","Uighur":"Uigurisch","Ukrainian":"Ukrainisch","Urdu":"Urdu","Uzbek":"Usbekisch","Venda":"Venda-Sprache","Vietnamese":"Vietnamesisch","Walloon":"Wallonisch","Wolof":"Wolof-Sprache","Xhosa":"Xhosa-Sprache","Yiddish":"Jiddisch","Yoruba":"Yoruba-Sprache","Zhuang":"Zhuang","Chinese":"Chinesisch","Zulu":"Zulu-Sprache"} \ No newline at end of file
diff --git a/client/src/locale/target/server_eo.json b/client/src/locale/target/server_eo.json
index 0e2a74bc0..43cfef5ff 100644
--- a/client/src/locale/target/server_eo.json
+++ b/client/src/locale/target/server_eo.json
@@ -1 +1 @@
{"Music":"Muziko","Films":"Filmoj","Vehicles":"Veturiloj","Art":"Arto","Sports":"Sporto","Travels":"Vojaĝado","Gaming":"Ludoj","People":"Homoj","Comedy":"Komedio","Entertainment":"Amuzo","News":"Novaĵoj","How To":"Instrukcioj","Education":"Instruado","Activism":"Aktivismo","Science & Technology":"Scienco ϗ teĥnikaro","Animals":"Bestoj","Kids":"Infanoj","Food":"Manĝo","Attribution":"Atribuite","Attribution - Share Alike":"Atribuite – Samkondiĉe","Attribution - No Derivatives":"Atribuite – Nemodifite","Attribution - Non Commercial":"Atribuite – Nekomerce","Attribution - Non Commercial - Share Alike":"Atribuite – Nekomerce – Samkondiĉe","Attribution - Non Commercial - No Derivatives":"Atribuite – Nekomerce – Nemodifite","Public Domain Dedication":"Dediĉo al publika posedo","Public":"Publika","Unlisted":"Nelistigata","Private":"Privata","Success":"Sukcesis","Failed":"Malsukcesis","Misc":"Diversaĵoj","Unknown":"Nekonata","Afar":"Afara","Abkhazian":"Abĥaza","Afrikaans":"Afrikansa","Akan":"Akana","Amharic":"Amhara","Arabic":"Araba","Aragonese":"Aragona","American Sign Language":"Usona gestlingvo","Assamese":"Asama","Avaric":"Avara","Kotava":"Kotavo","Aymara":"Ajmara","Azerbaijani":"Azerbajĝana","Bashkir":"Baŝkira","Bambara":"Bambara","Belarusian":"Belorusa","Bengali":"Bengala","British Sign Language":"Brita gestlingvo","Bislama":"Bislama","Tibetan":"Tibeta","Bosnian":"Bosna","Breton":"Bretona","Bulgarian":"Bulgara","Brazilian Sign Language":"Brazila gestlingvo","Catalan":"Kataluna","Czech":"Ĉeĥa","Chamorro":"Ĉamora","Chechen":"Ĉeĉena","Chuvash":"Ĉuvaŝa","Cornish":"Kornvala","Corsican":"Korsika","Czech Sign Language":"Ĉeĥa gestlingvo","Chinese Sign Language":"Ĉina gestlingvo","Welsh":"Kimra","Danish":"Dana","German":"Germana","Dhivehi":"Maldiva","Danish Sign Language":"Dana gestlingvo","Dzongkha":"Butana","Modern Greek (1453-)":"Novgreka","English":"Angla","Esperanto":"Esperanto","Estonian":"Estona","Basque":"Eŭska","Ewe":"Evea","Faroese":"Feroa","Persian":"Persa","Fijian":"Fiĝia","Finnish":"Finna","French":"Franca","Western Frisian":"Okcidentfrisa","French Sign Language":"Franca gestlingvo","Fulah":"Fula","Scottish Gaelic":"Skotgaela","Irish":"Irlanda","Galician":"Galega","Manx":"Manksa","Guarani":"Gvarania","German Sign Language":"Germana gestlingvo","Gujarati":"Guĝarata","Haitian":"Haitia","Hausa":"Haŭsa","Serbo-Croatian":"Kroatserba","Hebrew":"Hebrea","Herero":"Herera","Hindi":"Hinda","Hiri Motu":"Hirimotua","Croatian":"Kroata","Hungarian":"Hungara","Armenian":"Armena","Igbo":"Igba","Sichuan Yi":"Jia","Inuktitut":"Inuktituta","Indonesian":"Indonezia","Inupiaq":"Inupiko","Icelandic":"Islanda","Italian":"Itala","Javanese":"Java","Lojban":"Loĵbano","Japanese":"Japana","Japanese Sign Language":"Japana gestlingvo","Kalaallisut":"Gronlanda","Kannada":"Kanara","Kashmiri":"Kaŝmira","Georgian":"Kartvela","Kanuri":"Kanuria","Kazakh":"Kazaĥa","Khmer":"Kmera","Kirghiz":"Kirgiza","Komi":"Komia","Kongo":"Konga","Korean":"Korea","Kuanyama":"Kvanjama","Kurdish":"Kurda","Lao":"Laosa","Latvian":"Latva","Limburgan":"Limburga","Lingala":"Lingala","Lithuanian":"Litova","Luxembourgish":"Luksemburga","Marshallese":"Marŝalinsula","Malayalam":"Malajalama","Marathi":"Marata","Macedonian":"Makedona","Malagasy":"Malgaŝa","Maltese":"Malta","Mongolian":"Mongola","Maori":"Maoria","Malay (macrolanguage)":"Malaja","Burmese":"Birma","Nauru":"Naura","Navajo":"Navajo","South Ndebele":"Sudndebela","North Ndebele":"Nordndebela","Ndonga":"Ndonga","Nepali (macrolanguage)":"Nepala","Dutch":"Nederlanda","Norwegian Nynorsk":"Novnorvega","Norwegian Bokmål":"Bukmolo","Norwegian":"Norvega","Nyanja":"Ĉiĉeva","Occitan (post 1500)":"Okcitana","Ojibwa":"Oĝibua","Oriya (macrolanguage)":"Orisa","Oromo":"Oroma","Ossetian":"Oseta","Panjabi":"Panĝaba","Pakistan Sign Language":"Pakistana gestlingvo","Polish":"Pola","Portuguese":"Portugala","Pushto":"Paŝtua","Quechua":"Keĉua","Romansh":"Romanĉa","Romanian":"Rumana","Russian Sign Language":"Rusa gestlingvo","Russian":"Rusa","Saudi Arabian Sign Language":"Saudarabuja gestlingvo","South African Sign Language":"Sudafrika gestlingvo","Sinhala":"Sinhala","Slovak":"Slovaka","Slovenian":"Slovena","Northern Sami":"Nordlapona","Samoan":"Samoa","Shona":"Ŝona","Sindhi":"Sinda","Somali":"Somala","Southern Sotho":"Sudsota","Spanish":"Hispana","Albanian":"Albana","Sardinian":"Sarda","Serbian":"Serba","Swati":"Svazia","Sundanese":"Sunda","Swahili (macrolanguage)":"Svahila","Swedish":"Sveda","Swedish Sign Language":"Sveda gestlingvo","Tahitian":"Tahitia","Tamil":"Tamula","Tatar":"Tatara","Telugu":"Telugua","Tajik":"Taĝika","Tagalog":"Tagaloga","Thai":"Taja","Klingon":"Klingona","Tonga (Tonga Islands)":"Tonga","Tswana":"Cvana","Tsonga":"Conga","Turkmen":"Turkmena","Turkish":"Turka","Uighur":"Ujgura","Ukrainian":"Ukrajna","Urdu":"Urdua","Uzbek":"Uzbeka","Venda":"Vendaa","Vietnamese":"Vjetnama","Walloon":"Valona","Wolof":"Volofa","Xhosa":"Kosa","Yiddish":"Jido","Yoruba":"Joruba","Zhuang":"Ĉuanga","Chinese":"Ĉina","Zulu":"Zulua"} \ No newline at end of file {"Music":"Muziko","Films":"Filmoj","Vehicles":"Veturiloj","Art":"Arto","Sports":"Sporto","Travels":"Vojaĝado","Gaming":"Ludoj","People":"Homoj","Comedy":"Komedio","Entertainment":"Amuzo","News":"Novaĵoj","How To":"Instrukcioj","Education":"Instruado","Activism":"Aktivismo","Science & Technology":"Scienco ϗ teĥnikaro","Animals":"Bestoj","Kids":"Infanoj","Food":"Manĝo","Attribution":"Atribuite","Attribution - Share Alike":"Atribuite – Samkondiĉe","Attribution - No Derivatives":"Atribuite – Nemodifite","Attribution - Non Commercial":"Atribuite – Nekomerce","Attribution - Non Commercial - Share Alike":"Atribuite – Nekomerce – Samkondiĉe","Attribution - Non Commercial - No Derivatives":"Atribuite – Nekomerce – Nemodifite","Public Domain Dedication":"Dediĉo al publika posedo","Public":"Publika","Unlisted":"Nelistigata","Private":"Privata","Success":"Sukcesis","Failed":"Malsukcesis","Misc":"Diversaĵoj","Unknown":"Nekonata","Afar":"Afara","Abkhazian":"Abĥaza","Afrikaans":"Afrikansa","Akan":"Akana","Amharic":"Amhara","Arabic":"Araba","Aragonese":"Aragona","American Sign Language":"Usona gestlingvo","Assamese":"Asama","Avaric":"Avara","Kotava":"Kotavo","Aymara":"Ajmara","Azerbaijani":"Azerbajĝana","Bashkir":"Baŝkira","Bambara":"Bambara","Belarusian":"Belorusa","Bengali":"Bengala","British Sign Language":"Brita gestlingvo","Bislama":"Bislama","Tibetan":"Tibeta","Bosnian":"Bosna","Breton":"Bretona","Bulgarian":"Bulgara","Brazilian Sign Language":"Brazila gestlingvo","Catalan":"Kataluna","Czech":"Ĉeĥa","Chamorro":"Ĉamora","Chechen":"Ĉeĉena","Chuvash":"Ĉuvaŝa","Cornish":"Kornvala","Corsican":"Korsika","Czech Sign Language":"Ĉeĥa gestlingvo","Chinese Sign Language":"Ĉina gestlingvo","Welsh":"Kimra","Danish":"Dana","German":"Germana","Dhivehi":"Maldiva","Danish Sign Language":"Dana gestlingvo","Dzongkha":"Butana","Modern Greek (1453-)":"Novgreka","English":"Angla","Esperanto":"Esperanto","Estonian":"Estona","Basque":"Eŭska","Ewe":"Evea","Faroese":"Feroa","Persian":"Persa","Fijian":"Fiĝia","Finnish":"Finna","French":"Franca","Western Frisian":"Okcidentfrisa","French Sign Language":"Franca gestlingvo","Fulah":"Fula","Scottish Gaelic":"Skotgaela","Irish":"Irlanda","Galician":"Galega","Manx":"Manksa","Guarani":"Gvarania","German Sign Language":"Germana gestlingvo","Gujarati":"Guĝarata","Haitian":"Haitia","Hausa":"Haŭsa","Serbo-Croatian":"Kroatserba","Hebrew":"Hebrea","Herero":"Herera","Hindi":"Hinda","Hiri Motu":"Hirimotua","Croatian":"Kroata","Hungarian":"Hungara","Armenian":"Armena","Igbo":"Igba","Sichuan Yi":"Jia","Inuktitut":"Inuktituta","Indonesian":"Indonezia","Inupiaq":"Inupiko","Icelandic":"Islanda","Italian":"Itala","Javanese":"Java","Lojban":"Loĵbano","Japanese":"Japana","Japanese Sign Language":"Japana gestlingvo","Kalaallisut":"Gronlanda","Kannada":"Kanara","Kashmiri":"Kaŝmira","Georgian":"Kartvela","Kanuri":"Kanuria","Kazakh":"Kazaĥa","Khmer":"Kmera","Kirghiz":"Kirgiza","Komi":"Komia","Kongo":"Konga","Korean":"Korea","Kuanyama":"Kvanjama","Kurdish":"Kurda","Lao":"Laosa","Latvian":"Latva","Limburgan":"Limburga","Lingala":"Lingala","Lithuanian":"Litova","Luxembourgish":"Luksemburga","Marshallese":"Marŝalinsula","Malayalam":"Malajalama","Marathi":"Marata","Macedonian":"Makedona","Malagasy":"Malgaŝa","Maltese":"Malta","Mongolian":"Mongola","Maori":"Maoria","Malay (macrolanguage)":"Malaja","Burmese":"Birma","Nauru":"Naura","Navajo":"Navajo","South Ndebele":"Sudndebela","North Ndebele":"Nordndebela","Ndonga":"Ndonga","Nepali (macrolanguage)":"Nepala","Dutch":"Nederlanda","Norwegian Nynorsk":"Novnorvega","Norwegian Bokmål":"Bukmolo","Norwegian":"Norvega","Nyanja":"Ĉiĉeva","Ojibwa":"Oĝibua","Oriya (macrolanguage)":"Orisa","Oromo":"Oroma","Ossetian":"Oseta","Panjabi":"Panĝaba","Pakistan Sign Language":"Pakistana gestlingvo","Polish":"Pola","Portuguese":"Portugala","Pushto":"Paŝtua","Quechua":"Keĉua","Romansh":"Romanĉa","Romanian":"Rumana","Russian Sign Language":"Rusa gestlingvo","Russian":"Rusa","Saudi Arabian Sign Language":"Saudarabuja gestlingvo","South African Sign Language":"Sudafrika gestlingvo","Sinhala":"Sinhala","Slovak":"Slovaka","Slovenian":"Slovena","Northern Sami":"Nordlapona","Samoan":"Samoa","Shona":"Ŝona","Sindhi":"Sinda","Somali":"Somala","Southern Sotho":"Sudsota","Spanish":"Hispana","Albanian":"Albana","Sardinian":"Sarda","Serbian":"Serba","Swati":"Svazia","Sundanese":"Sunda","Swahili (macrolanguage)":"Svahila","Swedish":"Sveda","Swedish Sign Language":"Sveda gestlingvo","Tahitian":"Tahitia","Tamil":"Tamula","Tatar":"Tatara","Telugu":"Telugua","Tajik":"Taĝika","Tagalog":"Tagaloga","Thai":"Taja","Klingon":"Klingona","Tonga (Tonga Islands)":"Tonga","Tswana":"Cvana","Tsonga":"Conga","Turkmen":"Turkmena","Turkish":"Turka","Uighur":"Ujgura","Ukrainian":"Ukrajna","Urdu":"Urdua","Uzbek":"Uzbeka","Venda":"Vendaa","Vietnamese":"Vjetnama","Walloon":"Valona","Wolof":"Volofa","Xhosa":"Kosa","Yiddish":"Jido","Yoruba":"Joruba","Zhuang":"Ĉuanga","Chinese":"Ĉina","Zulu":"Zulua"} \ No newline at end of file
diff --git a/client/src/locale/target/server_es_ES.json b/client/src/locale/target/server_es_ES.json
index 089b94cec..21831df98 100644
--- a/client/src/locale/target/server_es_ES.json
+++ b/client/src/locale/target/server_es_ES.json
@@ -1 +1 @@
{"Music":"Música","Films":"Películas","Vehicles":"Transporte","Art":"Arte","Sports":"Deportes","Travels":"Viajes","Gaming":"Juegos","People":"Personalidades","Comedy":"Comedia","Entertainment":"Entretenimiento","News":"Noticias","How To":"Tutorial","Education":"Educación","Activism":"Activismo","Science & Technology":"Cienca & Tecnología","Animals":"Animales","Kids":"Niños","Food":"Cocina","Attribution":"Atribución","Attribution - Share Alike":"Atribución - Compartir Igual","Attribution - No Derivatives":"Atribución - No Derivadas","Attribution - Non Commercial":"Atribución - No Comercial","Attribution - Non Commercial - Share Alike":"Atribución - No Comercial - Compartir Igual","Attribution - Non Commercial - No Derivatives":"Atribución - No Comercial - No Derivadas","Public Domain Dedication":"Dominio Público","Public":"Público","Unlisted":"Sin listar","Private":"Privado","Misc":"Miscelánea","Unknown":"Desconocido","Afar":"Afar","Abkhazian":"Abjasio","Afrikaans":"Afrikáans","Akan":"Acano","Amharic":"Amhárico","Arabic":"Árabe","Aragonese":"Aragonés","American Sign Language":"Lengua de signos americana","Assamese":"Asamés","Avaric":"Avar","Kotava":"Kotava","Aymara":"Aimara","Azerbaijani":"Azerí","Bashkir":"Baskir","Bambara":"Bambara","Belarusian":"Bielorruso","Bengali":"Bengalí","British Sign Language":"Lenga de signos británica","Bislama":"Bislama","Tibetan":"Tibetano","Bosnian":"Bosnio","Breton":"Bretón","Bulgarian":"Búlgaro","Brazilian Sign Language":"Lengua de signos brasileña","Catalan":"Catalán","Czech":"Checo","Chamorro":"Chamorro","Chechen":"Checheno","Chuvash":"Chuvasio","Cornish":"Córnico","Corsican":"Corso","Cree":"Cree","Czech Sign Language":"Lengua de signos checa","Chinese Sign Language":"Lengua de signos china","Welsh":"Gaélico","Danish":"Danés","German":"Alemán","Dhivehi":"Maldivo","Danish Sign Language":"Lengua de signos danesa","Dzongkha":"Dzongkha","Modern Greek (1453-)":"Griego moderno","English":"Inglés","Esperanto":"Esperanto","Estonian":"Estonio","Basque":"Euskera","Ewe":"Ewé","Faroese":"Feroés","Persian":"Persa","Fijian":"Fiyiano","Finnish":"Finés","French":"Francés","Western Frisian":"Frisón occidental","French Sign Language":"Lengua de signos francesa","Fulah":"Fula","Scottish Gaelic":"Gaélico escocés","Irish":"Irlandés","Galician":"Gallego","Manx":"Manés","Guarani":"Guaraní","German Sign Language":"Lengua de signos alemana","Gujarati":"Gujaratí","Haitian":"Haitiano","Hausa":"Hausa","Serbo-Croatian":"Serbocroata","Hebrew":"Hebreo","Herero":"Herero","Hindi":"Hindi","Hiri Motu":"Hiri motu","Croatian":"Croata","Hungarian":"Húngaro","Armenian":"Armenio","Igbo":"Igbo","Sichuan Yi":"Nuosu","Inuktitut":"Inuit","Indonesian":"Indonesio","Inupiaq":"Iñupiaq","Icelandic":"Islandés","Italian":"Italiano","Javanese":"Javanés","Lojban":"Lojban","Japanese":"Japonés","Japanese Sign Language":"Lengua de signos japonesa","Kalaallisut":"Kalaallisut","Kannada":"Canarés","Kashmiri":"Cachemir","Georgian":"Georgiano","Kanuri":"Kanurí","Kazakh":"Kazajo","Khmer":"Camboyano","Kikuyu":"Kikuyú","Kinyarwanda":"Kiñaruanda","Kirghiz":"Kirguís","Komi":"Komi","Kongo":"Kongo","Korean":"Coreano","Kuanyama":"Kuanyama","Kurdish":"Kurdo","Lao":"Lao","Latvian":"Letón","Limburgan":"Limburgués","Lingala":"Lingala","Lithuanian":"Lituano","Luxembourgish":"Luxemburgués","Luba-Katanga":"Luba oriental","Ganda":"Luganda","Marshallese":"Mashalés","Malayalam":"Malabar","Marathi":"Maratí","Macedonian":"Macedonio","Malagasy":"Malgache","Maltese":"Maltés","Mongolian":"Mongol","Maori":"Maorí","Malay (macrolanguage)":"Malayo","Burmese":"Birmano","Nauru":"Nauruano","Navajo":"Navajo","South Ndebele":"Ndebele del sur","North Ndebele":"Ndebele del norte","Ndonga":"Ndonga","Nepali (macrolanguage)":"Nepalí","Dutch":"Neerlandés","Norwegian Nynorsk":"Nynorsk","Norwegian Bokmål":"Bokmål","Norwegian":"Noruego","Nyanja":"Chichewa","Occitan (post 1500)":"Occitano","Ojibwa":"Ojibwa","Oriya (macrolanguage)":"Oriya","Oromo":"Oromo","Ossetian":"Osetio","Panjabi":"Panyabí","Pakistan Sign Language":"Lengua de signos pakistaní","Polish":"Polaco","Portuguese":"Portugués","Pushto":"Pastún","Quechua":"Quechua","Romansh":"Romanche","Romanian":"Rumano","Russian Sign Language":"Lengua de signos rusa","Rundi":"Kirundí","Russian":"Ruso","Sango":"Sango","Saudi Arabian Sign Language":"Lengua de signos saudí","South African Sign Language":"Lengua de signos sudafricana","Sinhala":"Cingalés","Slovak":"Eslovaco","Slovenian":"Esloveno","Northern Sami":"Sami septentrional","Samoan":"Samoano","Shona":"Shona","Sindhi":"Sindi","Somali":"Somalí","Southern Sotho":"Soto meridional","Spanish":"Español","Albanian":"Albano","Sardinian":"Sardo","Serbian":"Serbio","Swati":"Suazi","Sundanese":"Sudanés","Swahili (macrolanguage)":"Suajili","Swedish":"Sueco","Swedish Sign Language":"Lengua de signos sueca","Tahitian":"Tahitiano","Tamil":"Támil","Tatar":"Tártaro","Telugu":"Télugu","Tajik":"Tayiko","Tagalog":"Tagalo","Thai":"Tailandés","Tigrinya":"Tigriña","Klingon":"Klingon","Tonga (Tonga Islands)":"Tongano","Tswana":"Setsuana","Tsonga":"Tsonga","Turkmen":"Turcomano","Turkish":"Turco","Twi":"Twi","Uighur":"Uigur","Ukrainian":"Ucraniano","Urdu":"Urdu","Uzbek":"Uzbeko","Venda":"Venda","Vietnamese":"Vietnamita","Walloon":"Valón","Wolof":"Wólof","Xhosa":"Xhosa","Yiddish":"Yidis","Yoruba":"Yoruba","Zhuang":"Chuang","Chinese":"Chino","Zulu":"Zulú"} \ No newline at end of file {"Music":"Música","Films":"Películas","Vehicles":"Transporte","Art":"Arte","Sports":"Deportes","Travels":"Viajes","Gaming":"Juegos","People":"Personalidades","Comedy":"Comedia","Entertainment":"Entretenimiento","News":"Noticias","How To":"Tutorial","Education":"Educación","Activism":"Activismo","Science & Technology":"Cienca & Tecnología","Animals":"Animales","Kids":"Niños","Food":"Cocina","Attribution":"Atribución","Attribution - Share Alike":"Atribución - Compartir Igual","Attribution - No Derivatives":"Atribución - No Derivadas","Attribution - Non Commercial":"Atribución - No Comercial","Attribution - Non Commercial - Share Alike":"Atribución - No Comercial - Compartir Igual","Attribution - Non Commercial - No Derivatives":"Atribución - No Comercial - No Derivadas","Public Domain Dedication":"Dominio Público","Public":"Público","Unlisted":"Sin listar","Private":"Privado","Published":"Pulicados","To transcode":"Para codificar","To import":"Para importar","Pending":"Pendientes","Misc":"Miscelánea","Unknown":"Desconocido","Afar":"Afar","Abkhazian":"Abjasio","Afrikaans":"Afrikáans","Akan":"Acano","Amharic":"Amhárico","Arabic":"Árabe","Aragonese":"Aragonés","American Sign Language":"Lengua de signos americana","Assamese":"Asamés","Avaric":"Avar","Kotava":"Kotava","Aymara":"Aimara","Azerbaijani":"Azerí","Bashkir":"Baskir","Bambara":"Bambara","Belarusian":"Bielorruso","Bengali":"Bengalí","British Sign Language":"Lenga de signos británica","Bislama":"Bislama","Tibetan":"Tibetano","Bosnian":"Bosnio","Breton":"Bretón","Bulgarian":"Búlgaro","Brazilian Sign Language":"Lengua de signos brasileña","Catalan":"Catalán","Czech":"Checo","Chamorro":"Chamorro","Chechen":"Checheno","Chuvash":"Chuvasio","Cornish":"Córnico","Corsican":"Corso","Cree":"Cree","Czech Sign Language":"Lengua de signos checa","Chinese Sign Language":"Lengua de signos china","Welsh":"Gaélico","Danish":"Danés","German":"Alemán","Dhivehi":"Maldivo","Danish Sign Language":"Lengua de signos danesa","Dzongkha":"Dzongkha","Modern Greek (1453-)":"Griego moderno","English":"Inglés","Esperanto":"Esperanto","Estonian":"Estonio","Basque":"Euskera","Ewe":"Ewé","Faroese":"Feroés","Persian":"Persa","Fijian":"Fiyiano","Finnish":"Finés","French":"Francés","Western Frisian":"Frisón occidental","French Sign Language":"Lengua de signos francesa","Fulah":"Fula","Scottish Gaelic":"Gaélico escocés","Irish":"Irlandés","Galician":"Gallego","Manx":"Manés","Guarani":"Guaraní","German Sign Language":"Lengua de signos alemana","Gujarati":"Gujaratí","Haitian":"Haitiano","Hausa":"Hausa","Serbo-Croatian":"Serbocroata","Hebrew":"Hebreo","Herero":"Herero","Hindi":"Hindi","Hiri Motu":"Hiri motu","Croatian":"Croata","Hungarian":"Húngaro","Armenian":"Armenio","Igbo":"Igbo","Sichuan Yi":"Nuosu","Inuktitut":"Inuit","Indonesian":"Indonesio","Inupiaq":"Iñupiaq","Icelandic":"Islandés","Italian":"Italiano","Javanese":"Javanés","Lojban":"Lojban","Japanese":"Japonés","Japanese Sign Language":"Lengua de signos japonesa","Kalaallisut":"Kalaallisut","Kannada":"Canarés","Kashmiri":"Cachemir","Georgian":"Georgiano","Kanuri":"Kanurí","Kazakh":"Kazajo","Khmer":"Camboyano","Kikuyu":"Kikuyú","Kinyarwanda":"Kiñaruanda","Kirghiz":"Kirguís","Komi":"Komi","Kongo":"Kongo","Korean":"Coreano","Kuanyama":"Kuanyama","Kurdish":"Kurdo","Lao":"Lao","Latvian":"Letón","Limburgan":"Limburgués","Lingala":"Lingala","Lithuanian":"Lituano","Luxembourgish":"Luxemburgués","Luba-Katanga":"Luba oriental","Ganda":"Luganda","Marshallese":"Mashalés","Malayalam":"Malabar","Marathi":"Maratí","Macedonian":"Macedonio","Malagasy":"Malgache","Maltese":"Maltés","Mongolian":"Mongol","Maori":"Maorí","Malay (macrolanguage)":"Malayo","Burmese":"Birmano","Nauru":"Nauruano","Navajo":"Navajo","South Ndebele":"Ndebele del sur","North Ndebele":"Ndebele del norte","Ndonga":"Ndonga","Nepali (macrolanguage)":"Nepalí","Dutch":"Neerlandés","Norwegian Nynorsk":"Nynorsk","Norwegian Bokmål":"Bokmål","Norwegian":"Noruego","Nyanja":"Chichewa","Ojibwa":"Ojibwa","Oriya (macrolanguage)":"Oriya","Oromo":"Oromo","Ossetian":"Osetio","Panjabi":"Panyabí","Pakistan Sign Language":"Lengua de signos pakistaní","Polish":"Polaco","Portuguese":"Portugués","Pushto":"Pastún","Quechua":"Quechua","Romansh":"Romanche","Romanian":"Rumano","Russian Sign Language":"Lengua de signos rusa","Rundi":"Kirundí","Russian":"Ruso","Sango":"Sango","Saudi Arabian Sign Language":"Lengua de signos saudí","South African Sign Language":"Lengua de signos sudafricana","Sinhala":"Cingalés","Slovak":"Eslovaco","Slovenian":"Esloveno","Northern Sami":"Sami septentrional","Samoan":"Samoano","Shona":"Shona","Sindhi":"Sindi","Somali":"Somalí","Southern Sotho":"Soto meridional","Spanish":"Español","Albanian":"Albano","Sardinian":"Sardo","Serbian":"Serbio","Swati":"Suazi","Sundanese":"Sudanés","Swahili (macrolanguage)":"Suajili","Swedish":"Sueco","Swedish Sign Language":"Lengua de signos sueca","Tahitian":"Tahitiano","Tamil":"Támil","Tatar":"Tártaro","Telugu":"Télugu","Tajik":"Tayiko","Tagalog":"Tagalo","Thai":"Tailandés","Tigrinya":"Tigriña","Klingon":"Klingon","Tonga (Tonga Islands)":"Tongano","Tswana":"Setsuana","Tsonga":"Tsonga","Turkmen":"Turcomano","Turkish":"Turco","Twi":"Twi","Uighur":"Uigur","Ukrainian":"Ucraniano","Urdu":"Urdu","Uzbek":"Uzbeko","Venda":"Venda","Vietnamese":"Vietnamita","Walloon":"Valón","Wolof":"Wólof","Xhosa":"Xhosa","Yiddish":"Yidis","Yoruba":"Yoruba","Zhuang":"Chuang","Chinese":"Chino","Zulu":"Zulú"} \ No newline at end of file
diff --git a/client/src/locale/target/server_eu_ES.json b/client/src/locale/target/server_eu_ES.json
index bfffd851b..f97d9e30d 100644
--- a/client/src/locale/target/server_eu_ES.json
+++ b/client/src/locale/target/server_eu_ES.json
@@ -1 +1 @@
{"Music":"Musika","Films":"Filmak","Vehicles":"Ibilgailuak","Art":"Artea","Sports":"Kirolak","Travels":"Bidaiak","Gaming":"Jolasak","People":"Jendea","Comedy":"Komedia","Entertainment":"Aisia","News":"Berriak","How To":"Argibideak","Education":"Hezkuntza","Activism":"Aktibismoa","Science & Technology":"Zientzia eta teknologia","Animals":"Animaliak","Kids":"Haurrak","Food":"Janaria","Attribution":"Atribuzioa","Attribution - Share Alike":"Atribuzioa - Partekatu berdin","Attribution - No Derivatives":"Atribuzioa - Eratorririk ez","Attribution - Non Commercial":"Atribuzioa - Ez komertziala","Attribution - Non Commercial - Share Alike":"Atribuzioa - Ez komertziala - Partekatu berdin","Attribution - Non Commercial - No Derivatives":"Atribuzioa - Ez komertziala - Eratorririk ez","Public Domain Dedication":"Domeinu publikoa","Public":"Publikoa","Unlisted":"Zerrendatu gabea","Private":"Pribatua","Published":"Argitaratua","To transcode":"Transkodetzeko","To import":"Inportatzeko","Pending":"Egiteke","Success":"Arrakasta","Failed":"Hutsa","Misc":"Denetarik","Unknown":"Ezezaguna","Afar":"Afar","Abkhazian":"Abkhaziera","Afrikaans":"Afrikaans","Akan":"Akan","Amharic":"Amharera","Arabic":"Arabiera","Aragonese":"Aragoiera","American Sign Language":"Amerikako zeinu-hizkuntza ","Assamese":"Assamera","Avaric":"Avarera","Kotava":"Kotava","Aymara":"Aimara","Azerbaijani":"Azerbaijanera","Bashkir":"Baxkirera","Bambara":"Banbara","Belarusian":"Bielorrusiera","Bengali":"Bengalera","British Sign Language":"Britainiako zeinu-hizkuntza","Bislama":"Bislama","Tibetan":"Tibetera","Bosnian":"Bosniera","Breton":"Bretoiera","Bulgarian":"Bulgariera","Brazilian Sign Language":"Brasilgo zeinu-hizkuntza","Catalan":"Katalana","Czech":"Txekiera","Chamorro":"Chamorro","Chechen":"Txetxenera","Chuvash":"Txuvaxera","Cornish":"Kornubiera","Corsican":"Korsikera","Cree":"Cree","Czech Sign Language":"Txekiako zeinu-hizkuntza","Chinese Sign Language":"Txinako zeinu-hizkuntza","Welsh":"Galesa","Danish":"Daniera","German":"Alemana","Dhivehi":"Dhivehi (maldivera) ","Danish Sign Language":"Danimarkako zeinu-hizkuntza","Dzongkha":"Dzongkha","Modern Greek (1453-)":"Greziera moernoa (1453-)","English":"Ingelesa","Esperanto":"Esperantoa","Estonian":"Estoniera","Basque":"Euskara","Ewe":"Eweera","Faroese":"Faroera","Persian":"Persiera","Fijian":"Fijiera","Finnish":"Suomiera","French":"Frantsesa","Western Frisian":"Mendebaldeko frisiera","French Sign Language":"Frantziako zeinu-hizkuntza","Fulah":"Fula","Scottish Gaelic":"Eskoziako gaelikoa","Irish":"Irlandera","Galician":"Galiziera","Manx":"Manera","Guarani":"Guaraniera","German Sign Language":"Alemaniako zeinu-hizkuntza","Gujarati":"Gujaratera","Haitian":"Haitiko kreolera","Hausa":"Hausa","Serbo-Croatian":"Serbokroaziera ","Hebrew":"Hebreera","Herero":"Hereroera","Hindi":"Hindi","Hiri Motu":"Hiri Motu","Croatian":"Kroaziera","Hungarian":"Hungariera","Armenian":"Armeniera","Igbo":"Igboera","Sichuan Yi":"Nuosu","Inuktitut":"Inuktitutera","Indonesian":"Indonesiera","Inupiaq":"Inupiaq","Icelandic":"Islandiera","Italian":"Italiera","Javanese":"Javera","Lojban":"Lojban","Japanese":"Japoniera","Japanese Sign Language":"Japoniako zeinu-hizkuntza","Kalaallisut":"Groenlandiera","Kannada":"Kannada","Kashmiri":"Kaxmirera","Georgian":"Georgiera / Kartveliera ","Kanuri":"Kanuri","Kazakh":"Kazakhera","Khmer":"Khmerera","Kikuyu":"Kikuyu","Kinyarwanda":"Kinyaruanda","Kirghiz":"Kirgizera","Komi":"Komiera","Kongo":"Kikongo","Korean":"Koreera","Kuanyama":"Kuanyama","Kurdish":"Kurduera","Lao":"Laosera","Latvian":"Letoniera","Limburgan":"Limburgera","Lingala":"Lingala","Lithuanian":"Lituaniera","Luxembourgish":"Luxenburgera","Luba-Katanga":"Luba-Katanga","Ganda":"Luganda","Marshallese":"Marshallera","Malayalam":"Malabarera","Marathi":"Marathera","Macedonian":"Mazedoniera","Malagasy":"Malgaxe","Maltese":"Maltera","Mongolian":"Mongoliera","Maori":"Maoriera","Malay (macrolanguage)":"Malaysiera (makro-hizkuntza)","Burmese":"Birmaniera","Nauru":"Nauruera","Navajo":"Navajoa","South Ndebele":"Hego Ndebele","North Ndebele":"Ipar Ndebele","Ndonga":"Ndonga","Nepali (macrolanguage)":"Nepalera (makro-hizkuntza)","Dutch":"Nederlandera","Norwegian Nynorsk":"Norvegiako Nynorsk","Norwegian Bokmål":"Norvegiako Bokmål","Norwegian":"Norvegiera","Nyanja":"Txewera","Occitan (post 1500)":"Okzitanoa (1500etik aurrerakoa)","Ojibwa":"Ojibwera","Oriya (macrolanguage)":"Oriya (makro-hizkuntza)","Oromo":"Oromoera","Ossetian":"Osetiera","Panjabi":"Punjabera","Pakistan Sign Language":"Pakistango zeinu-hizkuntza","Polish":"Poloniera","Portuguese":"Portugesa","Pushto":"Paxtuera","Quechua":"Kitxua","Romansh":"Erromantxea","Romanian":"Errumaniera","Russian Sign Language":"Errusiako zeinu-hizkuntza","Rundi":"Kirundi","Russian":"Errusiera","Sango":"Sango","Saudi Arabian Sign Language":"Saudi Arabiako zeinu-hizkuntza","South African Sign Language":"Hego Afrikako zeinu-hizkuntza","Sinhala":"Sinhala","Slovak":"Eslovakiera","Slovenian":"Esloveniera","Northern Sami":"Ipar Samiera","Samoan":"Samoera","Shona":"Shona","Sindhi":"Sindhi","Somali":"Somaliera","Southern Sotho":"Sothoera","Spanish":"Espainiera","Albanian":"Albaniera","Sardinian":"Sardiniera","Serbian":"Serbiera","Swati":"Swaziera","Sundanese":"Sundera","Swahili (macrolanguage)":"Swahili (makro-hizkuntza)","Swedish":"Suediera","Swedish Sign Language":"Suediako zeinu-hizkuntza","Tahitian":"Maoriera","Tamil":"Tamilera","Tatar":"Tatarera","Telugu":"Telugu","Tajik":"Tajikera","Tagalog":"Tagaloa","Thai":"Thailandiera","Tigrinya":"Tigrinyera","Klingon":"Klingon","Tonga (Tonga Islands)":"Tonga (Tonga irlak)","Tswana":"Tswanera","Tsonga":"Tsongera","Turkmen":"Turkmenera","Turkish":"Turkiera","Twi":"Twi","Uighur":"Uigurrera","Ukrainian":"Ukrainera","Urdu":"Urduera","Uzbek":"Uzbekera","Venda":"Vendera","Vietnamese":"Vietnamera","Walloon":"Valoniera","Wolof":"Wolofera","Xhosa":"Xhosera","Yiddish":"Yiddish","Yoruba":"Jorubera","Zhuang":"Zhuang","Chinese":"Txinera","Zulu":"Zuluera"} \ No newline at end of file {"Music":"Musika","Films":"Filmak","Vehicles":"Ibilgailuak","Art":"Artea","Sports":"Kirolak","Travels":"Bidaiak","Gaming":"Jolasak","People":"Jendea","Comedy":"Komedia","Entertainment":"Aisia","News":"Berriak","How To":"Argibideak","Education":"Hezkuntza","Activism":"Aktibismoa","Science & Technology":"Zientzia eta teknologia","Animals":"Animaliak","Kids":"Haurrak","Food":"Janaria","Attribution":"Atribuzioa","Attribution - Share Alike":"Atribuzioa - Partekatu berdin","Attribution - No Derivatives":"Atribuzioa - Eratorririk ez","Attribution - Non Commercial":"Atribuzioa - Ez komertziala","Attribution - Non Commercial - Share Alike":"Atribuzioa - Ez komertziala - Partekatu berdin","Attribution - Non Commercial - No Derivatives":"Atribuzioa - Ez komertziala - Eratorririk ez","Public Domain Dedication":"Domeinu publikoa","Public":"Publikoa","Unlisted":"Zerrendatu gabea","Private":"Pribatua","Published":"Argitaratua","To transcode":"Transkodetzeko","To import":"Inportatzeko","Pending":"Egiteke","Success":"Arrakasta","Failed":"Hutsa","Misc":"Denetarik","Unknown":"Ezezaguna","Afar":"Afar","Abkhazian":"Abkhaziera","Afrikaans":"Afrikaans","Akan":"Akan","Amharic":"Amharera","Arabic":"Arabiera","Aragonese":"Aragoiera","American Sign Language":"Amerikako zeinu-hizkuntza ","Assamese":"Assamera","Avaric":"Avarera","Kotava":"Kotava","Aymara":"Aimara","Azerbaijani":"Azerbaijanera","Bashkir":"Baxkirera","Bambara":"Banbara","Belarusian":"Bielorrusiera","Bengali":"Bengalera","British Sign Language":"Britainiako zeinu-hizkuntza","Bislama":"Bislama","Tibetan":"Tibetera","Bosnian":"Bosniera","Breton":"Bretoiera","Bulgarian":"Bulgariera","Brazilian Sign Language":"Brasilgo zeinu-hizkuntza","Catalan":"Katalana","Czech":"Txekiera","Chamorro":"Chamorro","Chechen":"Txetxenera","Chuvash":"Txuvaxera","Cornish":"Kornubiera","Corsican":"Korsikera","Cree":"Cree","Czech Sign Language":"Txekiako zeinu-hizkuntza","Chinese Sign Language":"Txinako zeinu-hizkuntza","Welsh":"Galesa","Danish":"Daniera","German":"Alemana","Dhivehi":"Dhivehi (maldivera) ","Danish Sign Language":"Danimarkako zeinu-hizkuntza","Dzongkha":"Dzongkha","Modern Greek (1453-)":"Greziera moernoa (1453-)","English":"Ingelesa","Esperanto":"Esperantoa","Estonian":"Estoniera","Basque":"Euskara","Ewe":"Eweera","Faroese":"Faroera","Persian":"Persiera","Fijian":"Fijiera","Finnish":"Suomiera","French":"Frantsesa","Western Frisian":"Mendebaldeko frisiera","French Sign Language":"Frantziako zeinu-hizkuntza","Fulah":"Fula","Scottish Gaelic":"Eskoziako gaelikoa","Irish":"Irlandera","Galician":"Galiziera","Manx":"Manera","Guarani":"Guaraniera","German Sign Language":"Alemaniako zeinu-hizkuntza","Gujarati":"Gujaratera","Haitian":"Haitiko kreolera","Hausa":"Hausa","Serbo-Croatian":"Serbokroaziera ","Hebrew":"Hebreera","Herero":"Hereroera","Hindi":"Hindi","Hiri Motu":"Hiri Motu","Croatian":"Kroaziera","Hungarian":"Hungariera","Armenian":"Armeniera","Igbo":"Igboera","Sichuan Yi":"Nuosu","Inuktitut":"Inuktitutera","Indonesian":"Indonesiera","Inupiaq":"Inupiaq","Icelandic":"Islandiera","Italian":"Italiera","Javanese":"Javera","Lojban":"Lojban","Japanese":"Japoniera","Japanese Sign Language":"Japoniako zeinu-hizkuntza","Kalaallisut":"Groenlandiera","Kannada":"Kannada","Kashmiri":"Kaxmirera","Georgian":"Georgiera / Kartveliera ","Kanuri":"Kanuri","Kazakh":"Kazakhera","Khmer":"Khmerera","Kikuyu":"Kikuyu","Kinyarwanda":"Kinyaruanda","Kirghiz":"Kirgizera","Komi":"Komiera","Kongo":"Kikongo","Korean":"Koreera","Kuanyama":"Kuanyama","Kurdish":"Kurduera","Lao":"Laosera","Latvian":"Letoniera","Limburgan":"Limburgera","Lingala":"Lingala","Lithuanian":"Lituaniera","Luxembourgish":"Luxenburgera","Luba-Katanga":"Luba-Katanga","Ganda":"Luganda","Marshallese":"Marshallera","Malayalam":"Malabarera","Marathi":"Marathera","Macedonian":"Mazedoniera","Malagasy":"Malgaxe","Maltese":"Maltera","Mongolian":"Mongoliera","Maori":"Maoriera","Malay (macrolanguage)":"Malaysiera (makro-hizkuntza)","Burmese":"Birmaniera","Nauru":"Nauruera","Navajo":"Navajoa","South Ndebele":"Hego Ndebele","North Ndebele":"Ipar Ndebele","Ndonga":"Ndonga","Nepali (macrolanguage)":"Nepalera (makro-hizkuntza)","Dutch":"Nederlandera","Norwegian Nynorsk":"Norvegiako Nynorsk","Norwegian Bokmål":"Norvegiako Bokmål","Norwegian":"Norvegiera","Nyanja":"Txewera","Ojibwa":"Ojibwera","Oriya (macrolanguage)":"Oriya (makro-hizkuntza)","Oromo":"Oromoera","Ossetian":"Osetiera","Panjabi":"Punjabera","Pakistan Sign Language":"Pakistango zeinu-hizkuntza","Polish":"Poloniera","Portuguese":"Portugesa","Pushto":"Paxtuera","Quechua":"Kitxua","Romansh":"Erromantxea","Romanian":"Errumaniera","Russian Sign Language":"Errusiako zeinu-hizkuntza","Rundi":"Kirundi","Russian":"Errusiera","Sango":"Sango","Saudi Arabian Sign Language":"Saudi Arabiako zeinu-hizkuntza","South African Sign Language":"Hego Afrikako zeinu-hizkuntza","Sinhala":"Sinhala","Slovak":"Eslovakiera","Slovenian":"Esloveniera","Northern Sami":"Ipar Samiera","Samoan":"Samoera","Shona":"Shona","Sindhi":"Sindhi","Somali":"Somaliera","Southern Sotho":"Sothoera","Spanish":"Espainiera","Albanian":"Albaniera","Sardinian":"Sardiniera","Serbian":"Serbiera","Swati":"Swaziera","Sundanese":"Sundera","Swahili (macrolanguage)":"Swahili (makro-hizkuntza)","Swedish":"Suediera","Swedish Sign Language":"Suediako zeinu-hizkuntza","Tahitian":"Maoriera","Tamil":"Tamilera","Tatar":"Tatarera","Telugu":"Telugu","Tajik":"Tajikera","Tagalog":"Tagaloa","Thai":"Thailandiera","Tigrinya":"Tigrinyera","Klingon":"Klingon","Tonga (Tonga Islands)":"Tonga (Tonga irlak)","Tswana":"Tswanera","Tsonga":"Tsongera","Turkmen":"Turkmenera","Turkish":"Turkiera","Twi":"Twi","Uighur":"Uigurrera","Ukrainian":"Ukrainera","Urdu":"Urduera","Uzbek":"Uzbekera","Venda":"Vendera","Vietnamese":"Vietnamera","Walloon":"Valoniera","Wolof":"Wolofera","Xhosa":"Xhosera","Yiddish":"Yiddish","Yoruba":"Jorubera","Zhuang":"Zhuang","Chinese":"Txinera","Zulu":"Zuluera"} \ No newline at end of file
diff --git a/client/src/locale/target/server_fr_FR.json b/client/src/locale/target/server_fr_FR.json
index 4c5b116b5..f4576da02 100644
--- a/client/src/locale/target/server_fr_FR.json
+++ b/client/src/locale/target/server_fr_FR.json
@@ -1 +1 @@
{"Music":"Musiques","Films":"Films","Vehicles":"Transport","Art":"Art","Sports":"Sports","Travels":"Voyages","Gaming":"Jeux vidéos","People":"Personnalités","Comedy":"Humour","Entertainment":"Divertissement","News":"Actualités","How To":"Tutoriels","Education":"Éducation","Activism":"Militantisme","Science & Technology":"Science & Technologie","Animals":"Animaux","Kids":"Enfants","Food":"Cuisine","Attribution":"Attribution","Attribution - Share Alike":"Attribution - Partage dans les mêmes conditions","Attribution - No Derivatives":"Attribution - Pas d’œuvre dérivée","Attribution - Non Commercial":"Attribution - Utilisation non commerciale","Attribution - Non Commercial - Share Alike":"Attribution - Utilisation non commerciale - Partage dans les mêmes conditions","Attribution - Non Commercial - No Derivatives":"Attribution - Utilisation non commerciale - Pas d’œuvre dérivée","Public Domain Dedication":"Domaine public","Public":"Publique","Unlisted":"Non listée","Private":"Privée","Published":"Publier","To transcode":"À transcoder","To import":"À importer","Pending":"En cours","Success":"Succès","Failed":"Échoué","Misc":"Divers","Unknown":"Inconnu","Afar":"Afar","Abkhazian":"Abkhaze","Afrikaans":"Afrikaans","Akan":"Akan","Amharic":"Amharique","Arabic":"Arabe","Aragonese":"Aragonais","American Sign Language":"Langue des signes américaine","Assamese":"Assamais","Avaric":"Avar","Kotava":"Kotava","Aymara":"Aymara","Azerbaijani":"Azéri","Bashkir":"Bachkir","Bambara":"Bambara","Belarusian":"Biélorusse","Bengali":"Bengali","British Sign Language":"Langue des signes britannique","Bislama":"Bichlamar","Tibetan":"Tibétain","Bosnian":"Bosniaque","Breton":"Breton","Bulgarian":"Bulgare","Brazilian Sign Language":"Langue des signes brésilienne","Catalan":"Catalan","Czech":"Tchèque","Chamorro":"Chamorro","Chechen":"Tchétchène","Chuvash":"Tchouvache","Cornish":"Cornique","Corsican":"Corse","Cree":"Cree","Czech Sign Language":"Langue des signes tchèque","Chinese Sign Language":"Langue des signes chinoise","Welsh":"Gallois","Danish":"Danois","German":"Allemand","Dhivehi":"Maldivien","Danish Sign Language":"Langue des signes danoise","Dzongkha":"Dzongkha","Modern Greek (1453-)":"Grec moderne (après 1453)","English":"Anglais","Esperanto":"Espéranto","Estonian":"Estonien","Basque":"Basque","Ewe":"Éwé","Faroese":"Féroïen","Persian":"Persan","Fijian":"Fidjien","Finnish":"Finnois","French":"Français","Western Frisian":"Frison occidental","French Sign Language":"Langue des signes française","Fulah":"Peul","Scottish Gaelic":"Gaélique","Irish":"Irlandais","Galician":"Galicien","Manx":"Manx","Guarani":"Guarani","German Sign Language":"Langue des signes allemande","Gujarati":"Goudjrati","Haitian":"Haïtien","Hausa":"Haoussa","Serbo-Croatian":"Serbo-croate","Hebrew":"Hébreu","Herero":"Herero","Hindi":"Hindi","Hiri Motu":"Hiri motu","Croatian":"Croate","Hungarian":"Hongrois","Armenian":"Arménien","Igbo":"Igbo","Sichuan Yi":"Yi de Sichuan","Inuktitut":"Inuktitut","Indonesian":"Indonésien","Inupiaq":"Inupiaq","Icelandic":"Islandais","Italian":"Italien","Javanese":"Javanais","Lojban":"Lojban","Japanese":"Japonais","Japanese Sign Language":"Langue des signes japonaise","Kalaallisut":"Groenlandais","Kannada":"Kannada","Kashmiri":"Kashmiri","Georgian":"Géorgien","Kanuri":"Kanouri","Kazakh":"Kazakh","Khmer":"Khmer central","Kikuyu":"Kikuyu","Kinyarwanda":"Rwanda","Kirghiz":"Kirghiz","Komi":"Kom","Kongo":"Kongo","Korean":"Coréen","Kuanyama":"Kuanyama","Kurdish":"Kurde","Lao":"Lao","Latvian":"Letton","Limburgan":"Limbourgeois","Lingala":"Lingala","Lithuanian":"Lituanien","Luxembourgish":"Luxembourgeois","Luba-Katanga":"Luba-katanga","Ganda":"Ganda","Marshallese":"Marshall","Malayalam":"Malayalam","Marathi":"Marathe","Macedonian":"Macédonien","Malagasy":"Malgache","Maltese":"Maltais","Mongolian":"Mongol","Maori":"Maori","Malay (macrolanguage)":"Malais","Burmese":"Birman","Nauru":"Nauruan","Navajo":"Navaho","South Ndebele":"Ndébélé du Sud","North Ndebele":"Ndébélé du Nord","Ndonga":"Ndonga","Nepali (macrolanguage)":"Népalais","Dutch":"Néerlandais","Norwegian Nynorsk":"Norvégien nynorsk","Norwegian Bokmål":"Norvégien bokmål","Norwegian":"Norvégien","Nyanja":"Chichewa","Occitan (post 1500)":"Occitan (après 1500)","Ojibwa":"Ojibwa","Oriya (macrolanguage)":"Oriya","Oromo":"Galla","Ossetian":"Ossète","Panjabi":"Pendjabi","Pakistan Sign Language":"Langue des signes pakistanaise","Polish":"Polonais","Portuguese":"Portugais","Pushto":"Pachto","Quechua":"Quechua","Romansh":"Romanche","Romanian":"Roumain","Russian Sign Language":"Langue des signes russe","Rundi":"Rundi","Russian":"Russe","Sango":"Sango","Saudi Arabian Sign Language":"Langue des signes saoudienne","South African Sign Language":"Langue des signes sud-africaine","Sinhala":"Singhalais","Slovak":"Slovaque","Slovenian":"Slovène","Northern Sami":"Sami du Nord","Samoan":"Samoan","Shona":"Shona","Sindhi":"Sindhi","Somali":"Somali","Southern Sotho":"Sotho du Sud","Spanish":"Espagnol","Albanian":"Albanais","Sardinian":"Sarde","Serbian":"Serbe","Swati":"Swati","Sundanese":"Soundanais","Swahili (macrolanguage)":"Swahili","Swedish":"Suédois","Swedish Sign Language":"Langue des signes suédoise","Tahitian":"Tahitien","Tamil":"Tamoul","Tatar":"Tatar","Telugu":"Télougou","Tajik":"Tadjik","Tagalog":"Tagalog","Thai":"Thaï","Tigrinya":"Tigrigna","Klingon":"Klingon","Tonga (Tonga Islands)":"Tongan (Îles Tonga)","Tswana":"Tswana","Tsonga":"Tsonga","Turkmen":"Turkmène","Turkish":"Turc","Twi":"Twi","Uighur":"Ouïgour","Ukrainian":"Ukrainien","Urdu":"Ourdou","Uzbek":"Ouszbek","Venda":"Venda","Vietnamese":"Vietnamien","Walloon":"Wallon","Wolof":"Wolof","Xhosa":"Xhosa","Yiddish":"Yiddish","Yoruba":"Yoruba","Zhuang":"Zhuang","Chinese":"Chinois","Zulu":"Zoulou"} \ No newline at end of file {"Music":"Musiques","Films":"Films","Vehicles":"Transport","Art":"Art","Sports":"Sports","Travels":"Voyages","Gaming":"Jeux vidéos","People":"Personnalités","Comedy":"Humour","Entertainment":"Divertissement","News":"Actualités","How To":"Tutoriels","Education":"Éducation","Activism":"Militantisme","Science & Technology":"Science & Technologie","Animals":"Animaux","Kids":"Enfants","Food":"Cuisine","Attribution":"Attribution","Attribution - Share Alike":"Attribution - Partage dans les mêmes conditions","Attribution - No Derivatives":"Attribution - Pas d’œuvre dérivée","Attribution - Non Commercial":"Attribution - Utilisation non commerciale","Attribution - Non Commercial - Share Alike":"Attribution - Utilisation non commerciale - Partage dans les mêmes conditions","Attribution - Non Commercial - No Derivatives":"Attribution - Utilisation non commerciale - Pas d’œuvre dérivée","Public Domain Dedication":"Domaine public","Public":"Publique","Unlisted":"Non listée","Private":"Privée","Published":"Publier","To transcode":"À transcoder","To import":"À importer","Pending":"En cours","Success":"Succès","Failed":"Échoué","Misc":"Divers","Unknown":"Inconnu","Afar":"Afar","Abkhazian":"Abkhaze","Afrikaans":"Afrikaans","Akan":"Akan","Amharic":"Amharique","Arabic":"Arabe","Aragonese":"Aragonais","American Sign Language":"Langue des signes américaine","Assamese":"Assamais","Avaric":"Avar","Kotava":"Kotava","Aymara":"Aymara","Azerbaijani":"Azéri","Bashkir":"Bachkir","Bambara":"Bambara","Belarusian":"Biélorusse","Bengali":"Bengali","British Sign Language":"Langue des signes britannique","Bislama":"Bichlamar","Tibetan":"Tibétain","Bosnian":"Bosniaque","Breton":"Breton","Bulgarian":"Bulgare","Brazilian Sign Language":"Langue des signes brésilienne","Catalan":"Catalan","Czech":"Tchèque","Chamorro":"Chamorro","Chechen":"Tchétchène","Chuvash":"Tchouvache","Cornish":"Cornique","Corsican":"Corse","Cree":"Cree","Czech Sign Language":"Langue des signes tchèque","Chinese Sign Language":"Langue des signes chinoise","Welsh":"Gallois","Danish":"Danois","German":"Allemand","Dhivehi":"Maldivien","Danish Sign Language":"Langue des signes danoise","Dzongkha":"Dzongkha","Modern Greek (1453-)":"Grec moderne (après 1453)","English":"Anglais","Esperanto":"Espéranto","Estonian":"Estonien","Basque":"Basque","Ewe":"Éwé","Faroese":"Féroïen","Persian":"Persan","Fijian":"Fidjien","Finnish":"Finnois","French":"Français","Western Frisian":"Frison occidental","French Sign Language":"Langue des signes française","Fulah":"Peul","Scottish Gaelic":"Gaélique","Irish":"Irlandais","Galician":"Galicien","Manx":"Manx","Guarani":"Guarani","German Sign Language":"Langue des signes allemande","Gujarati":"Goudjrati","Haitian":"Haïtien","Hausa":"Haoussa","Serbo-Croatian":"Serbo-croate","Hebrew":"Hébreu","Herero":"Herero","Hindi":"Hindi","Hiri Motu":"Hiri motu","Croatian":"Croate","Hungarian":"Hongrois","Armenian":"Arménien","Igbo":"Igbo","Sichuan Yi":"Yi de Sichuan","Inuktitut":"Inuktitut","Indonesian":"Indonésien","Inupiaq":"Inupiaq","Icelandic":"Islandais","Italian":"Italien","Javanese":"Javanais","Lojban":"Lojban","Japanese":"Japonais","Japanese Sign Language":"Langue des signes japonaise","Kalaallisut":"Groenlandais","Kannada":"Kannada","Kashmiri":"Kashmiri","Georgian":"Géorgien","Kanuri":"Kanouri","Kazakh":"Kazakh","Khmer":"Khmer central","Kikuyu":"Kikuyu","Kinyarwanda":"Rwanda","Kirghiz":"Kirghiz","Komi":"Kom","Kongo":"Kongo","Korean":"Coréen","Kuanyama":"Kuanyama","Kurdish":"Kurde","Lao":"Lao","Latvian":"Letton","Limburgan":"Limbourgeois","Lingala":"Lingala","Lithuanian":"Lituanien","Luxembourgish":"Luxembourgeois","Luba-Katanga":"Luba-katanga","Ganda":"Ganda","Marshallese":"Marshall","Malayalam":"Malayalam","Marathi":"Marathe","Macedonian":"Macédonien","Malagasy":"Malgache","Maltese":"Maltais","Mongolian":"Mongol","Maori":"Maori","Malay (macrolanguage)":"Malais","Burmese":"Birman","Nauru":"Nauruan","Navajo":"Navaho","South Ndebele":"Ndébélé du Sud","North Ndebele":"Ndébélé du Nord","Ndonga":"Ndonga","Nepali (macrolanguage)":"Népalais","Dutch":"Néerlandais","Norwegian Nynorsk":"Norvégien nynorsk","Norwegian Bokmål":"Norvégien bokmål","Norwegian":"Norvégien","Nyanja":"Chichewa","Ojibwa":"Ojibwa","Oriya (macrolanguage)":"Oriya","Oromo":"Galla","Ossetian":"Ossète","Panjabi":"Pendjabi","Pakistan Sign Language":"Langue des signes pakistanaise","Polish":"Polonais","Portuguese":"Portugais","Pushto":"Pachto","Quechua":"Quechua","Romansh":"Romanche","Romanian":"Roumain","Russian Sign Language":"Langue des signes russe","Rundi":"Rundi","Russian":"Russe","Sango":"Sango","Saudi Arabian Sign Language":"Langue des signes saoudienne","South African Sign Language":"Langue des signes sud-africaine","Sinhala":"Singhalais","Slovak":"Slovaque","Slovenian":"Slovène","Northern Sami":"Sami du Nord","Samoan":"Samoan","Shona":"Shona","Sindhi":"Sindhi","Somali":"Somali","Southern Sotho":"Sotho du Sud","Spanish":"Espagnol","Albanian":"Albanais","Sardinian":"Sarde","Serbian":"Serbe","Swati":"Swati","Sundanese":"Soundanais","Swahili (macrolanguage)":"Swahili","Swedish":"Suédois","Swedish Sign Language":"Langue des signes suédoise","Tahitian":"Tahitien","Tamil":"Tamoul","Tatar":"Tatar","Telugu":"Télougou","Tajik":"Tadjik","Tagalog":"Tagalog","Thai":"Thaï","Tigrinya":"Tigrigna","Klingon":"Klingon","Tonga (Tonga Islands)":"Tongan (Îles Tonga)","Tswana":"Tswana","Tsonga":"Tsonga","Turkmen":"Turkmène","Turkish":"Turc","Twi":"Twi","Uighur":"Ouïgour","Ukrainian":"Ukrainien","Urdu":"Ourdou","Uzbek":"Ouszbek","Venda":"Venda","Vietnamese":"Vietnamien","Walloon":"Wallon","Wolof":"Wolof","Xhosa":"Xhosa","Yiddish":"Yiddish","Yoruba":"Yoruba","Zhuang":"Zhuang","Chinese":"Chinois","Zulu":"Zoulou"} \ No newline at end of file
diff --git a/client/src/locale/target/server_oc.json b/client/src/locale/target/server_oc.json
index dd7690b7c..09f7b3d7f 100644
--- a/client/src/locale/target/server_oc.json
+++ b/client/src/locale/target/server_oc.json
@@ -1 +1 @@
{"Music":"Musica","Films":"Films","Vehicles":"Veituras","Art":"Art","Sports":"Espòrts","Travels":"Viatges","Gaming":"Vidèo jòc","People":"Gent","Comedy":"Comèdia","Entertainment":"Léser ","News":"Actualitat","How To":"Demonstracions","Education":"Educacion","Activism":"Activisme","Science & Technology":"Sciéncia & Tecnologia","Animals":"Animals","Kids":"Mainatges","Food":"Manjar","Attribution":"Atribucion","Attribution - Share Alike":"Atribucion - Partejar a l’identic","Attribution - No Derivatives":"Atribucion - Cap de derivacion","Attribution - Non Commercial":"Atribucion - Pas comercial","Attribution - Non Commercial - Share Alike":"Atribucion - Pas comercial - Partejar a l’identic","Attribution - Non Commercial - No Derivatives":"Atribucion - Pas comercial - Cap de derivacion","Public Domain Dedication":"Domeni public","Public":"Public","Unlisted":"Pas listat","Private":"Privat","Published":"Publicada","To transcode":"De transcodar","To import":"D’importar","Pending":"En espèra","Success":"Reüssida","Failed":"Fracàs","Misc":"Divèrs","Unknown":"Desconegut","Afar":"Afar","Abkhazian":"Abcaz","Afrikaans":"Afrikaans","Akan":"Akan","Amharic":"Amharic","Arabic":"Arabi","Aragonese":"Aragonés","American Sign Language":"Lenga de signes americana","Assamese":"Assamés","Avaric":"Avaric","Kotava":"Kotava","Aymara":"Aymara","Azerbaijani":"Azèri","Bashkir":"Bashkir","Bambara":"Bambara","Belarusian":"Bielorús","Bengali":"Bengalin","British Sign Language":"Lenga de signes britanica","Bislama":"Bislama","Tibetan":"Tibetan","Bosnian":"Bosnian","Breton":"Breton","Bulgarian":"Bulgar","Brazilian Sign Language":"Lenga de signes brasiliana","Catalan":"Catalan","Czech":"Chèc","Chamorro":"Chamorro","Chechen":"Chenchèn","Chuvash":"Chuvash","Cornish":"Cornic","Corsican":"Còrs","Cree":"Cree","Czech Sign Language":"Lenga de signes chèca","Chinese Sign Language":"Lenga de signes chinesa","Welsh":"Galés","Danish":"Danés","German":"Alemand","Danish Sign Language":"Lenga de signes danesa","Dzongkha":"Dzongkha","Modern Greek (1453-)":"Grèc","English":"Anglés","Esperanto":"Esperanto","Estonian":"Estonian","Basque":"Basc","Ewe":"Ewe","Faroese":"Faroés","Fijian":"Fijian","Finnish":"Finés","French":"Francés","Western Frisian":"Frison occitendal","French Sign Language":"Lenga de signes francesa","Fulah":"Fulah","Scottish Gaelic":"Gaelic escossés","Irish":"Irlandés","Galician":"Galician","Manx":"Manés","Guarani":"Guaraní","German Sign Language":"Lenga de signes alemanda","Gujarati":"Gujarati","Haitian":"Haitian","Hausa":"Hausa","Serbo-Croatian":"Sèrbocroat","Hebrew":"Ebrieu","Herero":"Herero","Hindi":"Indi","Hiri Motu":"Hiri Motu","Croatian":"Croat","Hungarian":"Ongrés","Armenian":"Armèni","Igbo":"Igbo","Sichuan Yi":"Nuosu","Inuktitut":"Inuktitut","Indonesian":"Bahasa Indonesia","Inupiaq":"Inupiaq","Icelandic":"Islandés","Italian":"Italian","Javanese":"Javanés","Lojban":"Lojban","Japanese":"Japonés","Japanese Sign Language":"Lenga de signes japonesa","Kalaallisut":"Kalaallisut","Kannada":"Canarés","Georgian":"Georgian","Kanuri":"Kanuri","Kazakh":"Cazac","Kikuyu":"Kikuyu","Kinyarwanda":"Kinyarwanda","Kirghiz":"Quirguiz","Komi":"Komi","Kongo":"Kongo","Korean":"Corean","Kurdish":"Curd","Lao":"Laosian","Latvian":"Leton","Limburgan":"Limborgués","Lingala":"Lingala","Lithuanian":"Lituanian","Luxembourgish":"Luxemborgés","Luba-Katanga":"Luba-Katanga","Ganda":"Ganda","Marshallese":"Marshallés","Marathi":"Marathi","Macedonian":"Macedonian","Malagasy":"Malgash","Maltese":"Maltés","Mongolian":"Mongòl","Maori":"Maòri","Malay (macrolanguage)":"Malai (macrolengatge)","Burmese":"Birman","Nauru":"Nauru","Navajo":"Navajo","South Ndebele":"Ndebele del Sud","North Ndebele":"Ndebele del Nòrd","Ndonga":"Ndonga","Nepali (macrolanguage)":"Nepali (macrolengatge)","Dutch":"Neerlandés","Norwegian Nynorsk":"Norvegian Nynorsk","Norwegian Bokmål":"Norvegian","Norwegian":"Norwegian","Nyanja":"Nyanja","Occitan (post 1500)":"Occitan","Ojibwa":"Ojibwa","Oromo":"Oromo","Panjabi":"Panjabi","Polish":"Polonés","Portuguese":"Portugués","Pushto":"Pushto","Quechua":"Quíchoa","Romansh":"Romanch","Romanian":"Romanés","Russian Sign Language":"Lenga de signes russa","Rundi":"Rundi","Russian":"Rus","Sango":"Sango","South African Sign Language":"Lenga de signes d’Africa del sud","Sinhala":"Singalés","Slovak":"Eslovac","Slovenian":"Eslovèn","Samoan":"Samoan","Shona":"Shona","Sindhi":"Sindhi","Somali":"Somali","Spanish":"Espanhòl","Albanian":"Albanés","Sardinian":"Sard","Serbian":"Sèrbe","Swati":"Swati","Sundanese":"Sodanés","Swahili (macrolanguage)":"Swahili (macrolengatge)","Swedish":"Suedés","Swedish Sign Language":"Lenga de signes suedesa","Tahitian":"Tahician","Tamil":"Tamil","Tatar":"Tatar","Telugu":"Telugu","Tajik":"Tajik","Tagalog":"Tagalòg","Thai":"Tailandés","Tigrinya":"Tigrinya","Klingon":"Klingon","Tonga (Tonga Islands)":"Tònga (islas Tònga)","Tswana":"Tswana","Turkmen":"Turcmèn","Turkish":"Turc","Uighur":"Oigors","Ukrainian":"Ucraïnian","Urdu":"Ordo","Uzbek":"Uzbec","Venda":"Venda","Vietnamese":"Vietnamian","Walloon":"Valon","Wolof":"Wolòf","Xhosa":"Xhosa","Yiddish":"Yiddish","Yoruba":"Yoruba","Zhuang":"Zhuang","Chinese":"Chinés","Zulu":"Zulu"} \ No newline at end of file {"Music":"Musica","Films":"Films","Vehicles":"Veituras","Art":"Art","Sports":"Espòrts","Travels":"Viatges","Gaming":"Vidèo jòc","People":"Gent","Comedy":"Comèdia","Entertainment":"Léser ","News":"Actualitat","How To":"Demonstracions","Education":"Educacion","Activism":"Activisme","Science & Technology":"Sciéncia & Tecnologia","Animals":"Animals","Kids":"Mainatges","Food":"Manjar","Attribution":"Atribucion","Attribution - Share Alike":"Atribucion - Partejar a l’identic","Attribution - No Derivatives":"Atribucion - Cap de derivacion","Attribution - Non Commercial":"Atribucion - Pas comercial","Attribution - Non Commercial - Share Alike":"Atribucion - Pas comercial - Partejar a l’identic","Attribution - Non Commercial - No Derivatives":"Atribucion - Pas comercial - Cap de derivacion","Public Domain Dedication":"Domeni public","Public":"Public","Unlisted":"Pas listat","Private":"Privat","Published":"Publicada","To transcode":"De transcodar","To import":"D’importar","Pending":"En espèra","Success":"Reüssida","Failed":"Fracàs","Misc":"Divèrs","Unknown":"Desconegut","Afar":"Afar","Abkhazian":"Abcaz","Afrikaans":"Afrikaans","Akan":"Akan","Amharic":"Amharic","Arabic":"Arabi","Aragonese":"Aragonés","American Sign Language":"Lenga de signes americana","Assamese":"Assamés","Avaric":"Avaric","Kotava":"Kotava","Aymara":"Aymara","Azerbaijani":"Azèri","Bashkir":"Bashkir","Bambara":"Bambara","Belarusian":"Bielorús","Bengali":"Bengalin","British Sign Language":"Lenga de signes britanica","Bislama":"Bislama","Tibetan":"Tibetan","Bosnian":"Bosnian","Breton":"Breton","Bulgarian":"Bulgar","Brazilian Sign Language":"Lenga de signes brasiliana","Catalan":"Catalan","Czech":"Chèc","Chamorro":"Chamorro","Chechen":"Chenchèn","Chuvash":"Chuvash","Cornish":"Cornic","Corsican":"Còrs","Cree":"Cree","Czech Sign Language":"Lenga de signes chèca","Chinese Sign Language":"Lenga de signes chinesa","Welsh":"Galés","Danish":"Danés","German":"Alemand","Danish Sign Language":"Lenga de signes danesa","Dzongkha":"Dzongkha","Modern Greek (1453-)":"Grèc","English":"Anglés","Esperanto":"Esperanto","Estonian":"Estonian","Basque":"Basc","Ewe":"Ewe","Faroese":"Faroés","Persian":"Persan","Fijian":"Fijian","Finnish":"Finés","French":"Francés","Western Frisian":"Frison occitendal","French Sign Language":"Lenga de signes francesa","Fulah":"Fulah","Scottish Gaelic":"Gaelic escossés","Irish":"Irlandés","Galician":"Galician","Manx":"Manés","Guarani":"Guaraní","German Sign Language":"Lenga de signes alemanda","Gujarati":"Gujarati","Haitian":"Haitian","Hausa":"Hausa","Serbo-Croatian":"Sèrbocroat","Hebrew":"Ebrieu","Herero":"Herero","Hindi":"Indi","Hiri Motu":"Hiri Motu","Croatian":"Croat","Hungarian":"Ongrés","Armenian":"Armèni","Igbo":"Igbo","Sichuan Yi":"Nuosu","Inuktitut":"Inuktitut","Indonesian":"Bahasa Indonesia","Inupiaq":"Inupiaq","Icelandic":"Islandés","Italian":"Italian","Javanese":"Javanés","Lojban":"Lojban","Japanese":"Japonés","Japanese Sign Language":"Lenga de signes japonesa","Kalaallisut":"Kalaallisut","Kannada":"Canarés","Georgian":"Georgian","Kanuri":"Kanuri","Kazakh":"Cazac","Kikuyu":"Kikuyu","Kinyarwanda":"Kinyarwanda","Kirghiz":"Quirguiz","Komi":"Komi","Kongo":"Kongo","Korean":"Corean","Kuanyama":"Kuanyama","Kurdish":"Curd","Lao":"Laosian","Latvian":"Leton","Limburgan":"Limborgués","Lingala":"Lingala","Lithuanian":"Lituanian","Luxembourgish":"Luxemborgés","Luba-Katanga":"Luba-Katanga","Ganda":"Ganda","Marshallese":"Marshallés","Marathi":"Marathi","Macedonian":"Macedonian","Malagasy":"Malgash","Maltese":"Maltés","Mongolian":"Mongòl","Maori":"Maòri","Malay (macrolanguage)":"Malai (macrolengatge)","Burmese":"Birman","Nauru":"Nauru","Navajo":"Navajo","South Ndebele":"Ndebele del Sud","North Ndebele":"Ndebele del Nòrd","Ndonga":"Ndonga","Nepali (macrolanguage)":"Nepali (macrolengatge)","Dutch":"Neerlandés","Norwegian Nynorsk":"Norvegian Nynorsk","Norwegian Bokmål":"Norvegian","Norwegian":"Norwegian","Nyanja":"Nyanja","Ojibwa":"Ojibwa","Oriya (macrolanguage)":"Oriya (macrolengatge)","Oromo":"Oromo","Panjabi":"Panjabi","Polish":"Polonés","Portuguese":"Portugués","Pushto":"Pushto","Quechua":"Quíchoa","Romansh":"Romanch","Romanian":"Romanés","Russian Sign Language":"Lenga de signes russa","Rundi":"Rundi","Russian":"Rus","Sango":"Sango","South African Sign Language":"Lenga de signes d’Africa del Sud","Sinhala":"Singalés","Slovak":"Eslovac","Slovenian":"Eslovèn","Northern Sami":"Sami septentrional","Samoan":"Samoan","Shona":"Shona","Sindhi":"Sindhi","Somali":"Somali","Southern Sotho":"Sotho meridional","Spanish":"Espanhòl","Albanian":"Albanés","Sardinian":"Sard","Serbian":"Sèrbe","Swati":"Swati","Sundanese":"Sodanés","Swahili (macrolanguage)":"Swahili (macrolengatge)","Swedish":"Suedés","Swedish Sign Language":"Lenga de signes suedesa","Tahitian":"Tahician","Tamil":"Tamil","Tatar":"Tatar","Telugu":"Telugu","Tajik":"Tajik","Tagalog":"Tagalòg","Thai":"Tailandés","Tigrinya":"Tigrinya","Klingon":"Klingon","Tonga (Tonga Islands)":"Tònga (islas Tònga)","Tswana":"Tswana","Turkmen":"Turcmèn","Turkish":"Turc","Uighur":"Oigors","Ukrainian":"Ucraïnian","Urdu":"Ordo","Uzbek":"Uzbec","Venda":"Venda","Vietnamese":"Vietnamian","Walloon":"Valon","Wolof":"Wolòf","Xhosa":"Xhosa","Yiddish":"Yiddish","Yoruba":"Yoruba","Zhuang":"Zhuang","Chinese":"Chinés","Zulu":"Zulu"} \ No newline at end of file
diff --git a/client/src/locale/target/server_pt_BR.json b/client/src/locale/target/server_pt_BR.json
index 06eb8270d..55db27c5c 100644
--- a/client/src/locale/target/server_pt_BR.json
+++ b/client/src/locale/target/server_pt_BR.json
@@ -1 +1 @@
{"Music":"Músicas","Films":"Filmes","Vehicles":"Veículos","Art":"Arte","Sports":"Esportes","Travels":"Viagens","Gaming":"Jogos","People":"Pessoas","Comedy":"Comédia","Entertainment":"Entretenimento","News":"Notícias","How To":"Como fazer","Education":"Educação","Activism":"Ativismo","Science & Technology":"Ciência & Tecnologia","Animals":"Animais","Kids":"Infantil","Food":"Comida","Attribution":"Atribuição","Attribution - Share Alike":"Atribuição - Compartilha Igual","Attribution - No Derivatives":"Atribuição - Sem Derivações","Attribution - Non Commercial":"Atribuição - Não Comercial","Attribution - Non Commercial - Share Alike":"Atribuição - Não Comercial - Compartilha Igual","Attribution - Non Commercial - No Derivatives":"Atribuição - Não Comercial - Sem Derivações","Public Domain Dedication":"Dedicação para Domínio Público","Public":"Público","Unlisted":"Não listado","Private":"Privado","Published":"Publicado","To transcode":"Para transcodificar","To import":"Para importar","Pending":"Pendente","Success":"Sucesso","Failed":"Falhou","Misc":"Diversos","Unknown":"Desconhecido","Afar":"Afar","Abkhazian":"Abcázio","Afrikaans":"Africâner","Akan":"Akan","Amharic":"Amárico","Arabic":"Árabe","Aragonese":"Aragonês","American Sign Language":"Língua de sinais americana","Assamese":"Assamês","Avaric":"Avárico","Kotava":"Coreano","Aymara":"Aimará","Azerbaijani":"Azerbaidjano","Bashkir":"Basquir","Bambara":"Bambara","Belarusian":"Bielorusso","Bengali":"Bengali","British Sign Language":"Língua de sinais britânica","Bislama":"Bislamá","Tibetan":"Tibetano","Bosnian":"Bósnio","Breton":"Bretão","Bulgarian":"Búlgaro","Brazilian Sign Language":"Língua de sinais brasileira","Catalan":"Catalão","Czech":"Tcheco","Chamorro":"Chamorro","Chechen":"Checheno","Chuvash":"Tchuvache","Cornish":"Córnico","Corsican":"Corso","Cree":"Cree","Czech Sign Language":"Língua de sinais tcheca","Chinese Sign Language":"Língua de sinais chinesa","Welsh":"Galês","Danish":"Dinamarquês","German":"Alemão","Dhivehi":"Sérvio","Danish Sign Language":"Língua de sinais dinamarquesa","Dzongkha":"Butanês","Modern Greek (1453-)":"Grego, Moderno (1453-)","English":"Inglês","Esperanto":"Esperanto","Estonian":"Estoniano","Basque":"Basco","Ewe":"Jeje","Faroese":"Faroês","Persian":"Persa","Fijian":"Fidjiano","Finnish":"Finlandês","French":"Francês","Western Frisian":"Frísio ocidental","French Sign Language":"Língua de sinais francesa","Fulah":"Fula","Scottish Gaelic":"Gaélico Escocês","Irish":"Irlandês","Galician":"Galego","Manx":"Manx","Guarani":"Guarani","German Sign Language":"Língua de sinais alemã","Gujarati":"Gujerati","Haitian":"Italiano","Hausa":"Hauçá","Serbo-Croatian":"Croata","Hebrew":"Hebraico","Herero":"Hereró","Hindi":"Híndi","Hiri Motu":"Hiri Motu","Croatian":"Croata","Hungarian":"Húngaro","Armenian":"Armênio","Igbo":"Ibo","Sichuan Yi":"Lituano","Inuktitut":"Inuktitut","Indonesian":"Indonésio","Inupiaq":"Inupiaque","Icelandic":"Islandês","Italian":"Italiano","Javanese":"Javanês","Lojban":"Lojban","Japanese":"Japonês","Japanese Sign Language":"Língua de sinais japonesa","Kalaallisut":"Groenlandês (Kalaallisut)","Kannada":"Canarês","Kashmiri":"Caxemira","Georgian":"Georgiano","Kanuri":"Canúri","Kazakh":"Cazaque","Khmer":"Khmer","Kikuyu":"Kikuyu","Kinyarwanda":"Ruanda","Kirghiz":"Quirguiz","Komi":"Komi","Kongo":"Congo","Korean":"Coreano","Kuanyama":"Cuanhama","Kurdish":"Curdo","Lao":"Laosiano","Latvian":"Letão","Limburgan":"Lituano","Lingala":"Lingala","Lithuanian":"Lituano","Luxembourgish":"Luxemburguês","Luba-Katanga":"Baluba","Ganda":"Nganda","Marshallese":"Marshalês","Malayalam":"Malaiala","Marathi":"Marati","Macedonian":"Macedônio","Malagasy":"Malgaxe","Maltese":"Maltês","Mongolian":"Mongol","Maori":"Maori","Malay (macrolanguage)":"Malaiala (macrolíngua)","Burmese":"Birmanês","Nauru":"Nauru","Navajo":"Navajo","South Ndebele":"Ndebele do Sul","North Ndebele":"Ndebele do Norte","Ndonga":"Ovampo","Nepali (macrolanguage)":"Nepalês (macrolíngua)","Dutch":"Holandês","Norwegian Nynorsk":"Norueguês Nynorsk","Norwegian Bokmål":"Norueguês Nynorsk","Norwegian":"Norueguês","Nyanja":"Lituano","Occitan (post 1500)":"Occitâno (pós-1500)","Ojibwa":"Obíjua","Oriya (macrolanguage)":"Oriá (macrolíngua)","Oromo":"Oromo","Ossetian":"Ossétio","Panjabi":"Panjabi","Pakistan Sign Language":"Língua de sinais paquistanesa","Polish":"Polonês","Portuguese":"Português","Pushto":"Pachto","Quechua":"Quíchua","Romansh":"Romanche","Romanian":"Romeno","Russian Sign Language":"Idiomas de Sinais","Rundi":"Kirundi","Russian":"Russo","Sango":"Sango","Saudi Arabian Sign Language":"Língua de sinais da Arábia Saudita","South African Sign Language":"Língua de sinais da África do Sul","Sinhala":"Cingalês","Slovak":"Eslovaco","Slovenian":"Esloveno","Northern Sami":"Sami do norte","Samoan":"Samoano","Shona":"Xona","Sindhi":"Síndi","Somali":"Somali","Southern Sotho":"Soto do Sul","Spanish":"Espanhol","Albanian":"Albanês","Sardinian":"Sardo","Serbian":"Sérvio","Swati":"Swati","Sundanese":"Sundanês","Swahili (macrolanguage)":"Suaíli (macrolíngua)","Swedish":"Sueco","Swedish Sign Language":"Língua de sinais sueca","Tahitian":"Taitiano","Tamil":"Tâmil","Tatar":"Tártaro","Telugu":"Télugo","Tajik":"Tadjique","Tagalog":"Tagalo","Thai":"Tailandês","Tigrinya":"Tigrínia","Klingon":"Letão","Tonga (Tonga Islands)":"Tonga","Tswana":"Tsuana","Tsonga":"Tsonga","Turkmen":"Turcomeno","Turkish":"Turco","Twi":"Twi","Uighur":"Uigur","Ukrainian":"Ucraniano","Urdu":"Urdu","Uzbek":"Uzbeque","Venda":"Venda","Vietnamese":"Vietnamita","Walloon":"Valão","Wolof":"Uólofe","Xhosa":"Xhosa","Yiddish":"Iídiche","Yoruba":"Ioruba","Zhuang":"Zuni","Chinese":"Chinês","Zulu":"Zulu"} \ No newline at end of file {"Music":"Músicas","Films":"Filmes","Vehicles":"Veículos","Art":"Arte","Sports":"Esportes","Travels":"Viagens","Gaming":"Jogos","People":"Pessoas","Comedy":"Comédia","Entertainment":"Entretenimento","News":"Notícias","How To":"Como fazer","Education":"Educação","Activism":"Ativismo","Science & Technology":"Ciência & Tecnologia","Animals":"Animais","Kids":"Infantil","Food":"Comida","Attribution":"Atribuição","Attribution - Share Alike":"Atribuição - Compartilha Igual","Attribution - No Derivatives":"Atribuição - Sem Derivações","Attribution - Non Commercial":"Atribuição - Não Comercial","Attribution - Non Commercial - Share Alike":"Atribuição - Não Comercial - Compartilha Igual","Attribution - Non Commercial - No Derivatives":"Atribuição - Não Comercial - Sem Derivações","Public Domain Dedication":"Dedicação para Domínio Público","Public":"Público","Unlisted":"Não listado","Private":"Privado","Published":"Publicado","To transcode":"Para transcodificar","To import":"Para importar","Pending":"Pendente","Success":"Sucesso","Failed":"Falhou","Misc":"Diversos","Unknown":"Desconhecido","Afar":"Afar","Abkhazian":"Abcázio","Afrikaans":"Africâner","Akan":"Akan","Amharic":"Amárico","Arabic":"Árabe","Aragonese":"Aragonês","American Sign Language":"Língua de sinais americana","Assamese":"Assamês","Avaric":"Avárico","Kotava":"Coreano","Aymara":"Aimará","Azerbaijani":"Azerbaidjano","Bashkir":"Basquir","Bambara":"Bambara","Belarusian":"Bielorusso","Bengali":"Bengali","British Sign Language":"Língua de sinais britânica","Bislama":"Bislamá","Tibetan":"Tibetano","Bosnian":"Bósnio","Breton":"Bretão","Bulgarian":"Búlgaro","Brazilian Sign Language":"Língua de sinais brasileira","Catalan":"Catalão","Czech":"Tcheco","Chamorro":"Chamorro","Chechen":"Checheno","Chuvash":"Tchuvache","Cornish":"Córnico","Corsican":"Corso","Cree":"Cree","Czech Sign Language":"Língua de sinais tcheca","Chinese Sign Language":"Língua de sinais chinesa","Welsh":"Galês","Danish":"Dinamarquês","German":"Alemão","Dhivehi":"Sérvio","Danish Sign Language":"Língua de sinais dinamarquesa","Dzongkha":"Butanês","Modern Greek (1453-)":"Grego, Moderno (1453-)","English":"Inglês","Esperanto":"Esperanto","Estonian":"Estoniano","Basque":"Basco","Ewe":"Jeje","Faroese":"Faroês","Persian":"Persa","Fijian":"Fidjiano","Finnish":"Finlandês","French":"Francês","Western Frisian":"Frísio ocidental","French Sign Language":"Língua de sinais francesa","Fulah":"Fula","Scottish Gaelic":"Gaélico Escocês","Irish":"Irlandês","Galician":"Galego","Manx":"Manx","Guarani":"Guarani","German Sign Language":"Língua de sinais alemã","Gujarati":"Gujerati","Haitian":"Italiano","Hausa":"Hauçá","Serbo-Croatian":"Croata","Hebrew":"Hebraico","Herero":"Hereró","Hindi":"Híndi","Hiri Motu":"Hiri Motu","Croatian":"Croata","Hungarian":"Húngaro","Armenian":"Armênio","Igbo":"Ibo","Sichuan Yi":"Lituano","Inuktitut":"Inuktitut","Indonesian":"Indonésio","Inupiaq":"Inupiaque","Icelandic":"Islandês","Italian":"Italiano","Javanese":"Javanês","Lojban":"Lojban","Japanese":"Japonês","Japanese Sign Language":"Língua de sinais japonesa","Kalaallisut":"Groenlandês (Kalaallisut)","Kannada":"Canarês","Kashmiri":"Caxemira","Georgian":"Georgiano","Kanuri":"Canúri","Kazakh":"Cazaque","Khmer":"Khmer","Kikuyu":"Kikuyu","Kinyarwanda":"Ruanda","Kirghiz":"Quirguiz","Komi":"Komi","Kongo":"Congo","Korean":"Coreano","Kuanyama":"Cuanhama","Kurdish":"Curdo","Lao":"Laosiano","Latvian":"Letão","Limburgan":"Lituano","Lingala":"Lingala","Lithuanian":"Lituano","Luxembourgish":"Luxemburguês","Luba-Katanga":"Baluba","Ganda":"Nganda","Marshallese":"Marshalês","Malayalam":"Malaiala","Marathi":"Marati","Macedonian":"Macedônio","Malagasy":"Malgaxe","Maltese":"Maltês","Mongolian":"Mongol","Maori":"Maori","Malay (macrolanguage)":"Malaiala (macrolíngua)","Burmese":"Birmanês","Nauru":"Nauru","Navajo":"Navajo","South Ndebele":"Ndebele do Sul","North Ndebele":"Ndebele do Norte","Ndonga":"Ovampo","Nepali (macrolanguage)":"Nepalês (macrolíngua)","Dutch":"Holandês","Norwegian Nynorsk":"Norueguês Nynorsk","Norwegian Bokmål":"Norueguês Nynorsk","Norwegian":"Norueguês","Nyanja":"Lituano","Ojibwa":"Obíjua","Oriya (macrolanguage)":"Oriá (macrolíngua)","Oromo":"Oromo","Ossetian":"Ossétio","Panjabi":"Panjabi","Pakistan Sign Language":"Língua de sinais paquistanesa","Polish":"Polonês","Portuguese":"Português","Pushto":"Pachto","Quechua":"Quíchua","Romansh":"Romanche","Romanian":"Romeno","Russian Sign Language":"Idiomas de Sinais","Rundi":"Kirundi","Russian":"Russo","Sango":"Sango","Saudi Arabian Sign Language":"Língua de sinais da Arábia Saudita","South African Sign Language":"Língua de sinais da África do Sul","Sinhala":"Cingalês","Slovak":"Eslovaco","Slovenian":"Esloveno","Northern Sami":"Sami do norte","Samoan":"Samoano","Shona":"Xona","Sindhi":"Síndi","Somali":"Somali","Southern Sotho":"Soto do Sul","Spanish":"Espanhol","Albanian":"Albanês","Sardinian":"Sardo","Serbian":"Sérvio","Swati":"Swati","Sundanese":"Sundanês","Swahili (macrolanguage)":"Suaíli (macrolíngua)","Swedish":"Sueco","Swedish Sign Language":"Língua de sinais sueca","Tahitian":"Taitiano","Tamil":"Tâmil","Tatar":"Tártaro","Telugu":"Télugo","Tajik":"Tadjique","Tagalog":"Tagalo","Thai":"Tailandês","Tigrinya":"Tigrínia","Klingon":"Letão","Tonga (Tonga Islands)":"Tonga","Tswana":"Tsuana","Tsonga":"Tsonga","Turkmen":"Turcomeno","Turkish":"Turco","Twi":"Twi","Uighur":"Uigur","Ukrainian":"Ucraniano","Urdu":"Urdu","Uzbek":"Uzbeque","Venda":"Venda","Vietnamese":"Vietnamita","Walloon":"Valão","Wolof":"Uólofe","Xhosa":"Xhosa","Yiddish":"Iídiche","Yoruba":"Ioruba","Zhuang":"Zuni","Chinese":"Chinês","Zulu":"Zulu"} \ No newline at end of file
diff --git a/client/src/locale/target/server_sv_SE.json b/client/src/locale/target/server_sv_SE.json
index 7de6605ab..0067f6063 100644
--- a/client/src/locale/target/server_sv_SE.json
+++ b/client/src/locale/target/server_sv_SE.json
@@ -1 +1 @@
{"Music":"Musik","Films":"Filmer","Vehicles":"Fordon","Art":"Konst","Sports":"Sport","Travels":"Resor","Gaming":"Spel","People":"Människor","Comedy":"Komedi","Entertainment":"Underhållning","News":"Nyheter","How To":"Instruktioner","Education":"Utbildning","Activism":"Aktivism","Science & Technology":"Vetenskap och teknik","Animals":"Djur","Kids":"Barn","Food":"Mat","Attribution":"Attribution","Attribution - Share Alike":"Attribution - Share Alike","Attribution - No Derivatives":"Attribution - No Derivatives","Attribution - Non Commercial":"Attribution - Non Commercial","Attribution - Non Commercial - Share Alike":"Attribution - Non Commercial - Share Alike","Attribution - Non Commercial - No Derivatives":"Attribution - Non Commercial - No Derivatives","Public Domain Dedication":"Public Domain Dedication","Public":"Offentlig","Unlisted":"Olistad","Private":"Privat","Published":"Publicerad","To transcode":"Att omkoda","To import":"Att importera","Pending":"I kö","Success":"Lyckades","Failed":"Misslyckades","Misc":"Diverse","Unknown":"Okänd","Afar":"afar","Abkhazian":"abchaziska","Afrikaans":"afrikaans","Akan":"akan","Amharic":"amhariska","Arabic":"arabiska","Aragonese":"aragonska","American Sign Language":"amerikanskt teckenspråk","Assamese":"assamesiska","Avaric":"avariska","Kotava":"kotava","Aymara":"aymara","Azerbaijani":"azerbajdzjanska","Bashkir":"basjkiriska","Bambara":"bambara","Belarusian":"vitryska","Bengali":"bengali","British Sign Language":"brittiskt teckenspråk","Bislama":"bislama","Tibetan":"tibetanska","Bosnian":"bosniska","Breton":"bretonska","Bulgarian":"bulgariska","Brazilian Sign Language":"brasilianskt teckenspråk","Catalan":"katalanska","Czech":"tjeckiska","Chamorro":"chamorro","Chechen":"tjetjenska","Chuvash":"tjuvasjiska","Cornish":"korniska","Corsican":"korsikanska","Cree":"cree","Czech Sign Language":"tjeckiskt teckenspråk","Chinese Sign Language":"kinesiskt teckenspråk","Welsh":"kymriska","Danish":"danska","German":"tyska","Dhivehi":"divehi","Danish Sign Language":"danskt teckenspråk","Dzongkha":"dzongkha","Modern Greek (1453-)":"modern grekiska (1453–)","English":"engelska","Esperanto":"esperanto","Estonian":"estniska","Basque":"baskiska","Ewe":"ewe","Faroese":"färöiska","Persian":"persiska","Fijian":"fijianska","Finnish":"finska","French":"franska","Western Frisian":"västfrisiska","French Sign Language":"franskt teckenspråk","Fulah":"fula","Scottish Gaelic":"skotsk gäliska","Irish":"iriska","Galician":"galiciska","Manx":"manx","Guarani":"guaraní","German Sign Language":"tyskt teckenspråk","Gujarati":"gujarati","Haitian":"haitisk kreol","Hausa":"hausa","Serbo-Croatian":"serbokroatiska","Hebrew":"hebreiska","Herero":"herero","Hindi":"hindi","Hiri Motu":"hiri motu","Croatian":"kroatiska","Hungarian":"ungerska","Armenian":"armeniska","Igbo":"igbo","Sichuan Yi":"Sichuan Yi","Inuktitut":"inuktitut","Indonesian":"indonesiska","Inupiaq":"iñupiaq","Icelandic":"isländska","Italian":"italienska","Javanese":"javanesiska","Lojban":"lojban","Japanese":"japanska","Japanese Sign Language":"japanskt teckenspråk","Kalaallisut":"kalaallisut","Kannada":"kannada","Kashmiri":"kashmiri","Georgian":"georgiska","Kanuri":"kanuri","Kazakh":"kazakiska","Khmer":"khmer","Kikuyu":"kikuyu","Kinyarwanda":"rwanda","Kirghiz":"kirgiziska","Komi":"komi","Kongo":"kikongo","Korean":"koreanska","Kuanyama":"kwanyama","Kurdish":"kurdiska","Lao":"lao","Latvian":"lettiska","Limburgan":"limburgiska","Lingala":"lingala","Lithuanian":"litauiska","Luxembourgish":"luxemburgiska","Luba-Katanga":"luba-katanga","Ganda":"luganda","Marshallese":"marshallesiska","Malayalam":"malayalam","Marathi":"marathi","Macedonian":"makedonska","Malagasy":"malagassiska","Maltese":"maltesiska","Mongolian":"mongoliska","Maori":"maori","Malay (macrolanguage)":"malajiska","Burmese":"burmesiska","Nauru":"nauruanska","Navajo":"navajo","South Ndebele":"sydndebele","North Ndebele":"nordndebele","Ndonga":"ndonga","Nepali (macrolanguage)":"nepali","Dutch":"nederländska","Norwegian Nynorsk":"nynorska","Norwegian Bokmål":"bokmål","Norwegian":"norska","Nyanja":"chichewa","Occitan (post 1500)":"occitanska","Ojibwa":"ojibwa","Oriya (macrolanguage)":"oriya","Oromo":"oromo","Ossetian":"ossetiska","Panjabi":"punjabi","Pakistan Sign Language":"pakistanskt teckenspråk","Polish":"polska","Portuguese":"portugisiska","Pushto":"pashto","Quechua":"quechua","Romansh":"rätoromanska","Romanian":"rumänska","Russian Sign Language":"ryskt teckenspråk","Rundi":"kirundi","Russian":"ryska","Sango":"sango","Saudi Arabian Sign Language":"saudiarabiskt teckenspråk","South African Sign Language":"sydafrikanskt teckenspråk","Sinhala":"singalesiska","Slovak":"slovakiska","Slovenian":"slovenska","Northern Sami":"nordsamiska","Samoan":"samoanska","Shona":"shona","Sindhi":"sindhi","Somali":"somaliska","Southern Sotho":"sesotho","Spanish":"spanska","Albanian":"albanska","Sardinian":"sardiska","Serbian":"serbiska","Swati":"siSwati","Sundanese":"sundanesiska","Swahili (macrolanguage)":"swahili","Swedish":"svenska","Swedish Sign Language":"svenskt teckenspråk","Tahitian":"tahitiska","Tamil":"tamil","Tatar":"tatariska","Telugu":"telugu","Tajik":"tadzjikiska","Tagalog":"tagalog","Thai":"thai","Tigrinya":"tigrinska","Klingon":"klingon","Tonga (Tonga Islands)":"tonganska","Tswana":"setswana","Tsonga":"tsonga","Turkmen":"turkmeniska","Turkish":"turkiska","Twi":"twi","Uighur":"uiguriska","Ukrainian":"ukrainska","Urdu":"urdu","Uzbek":"uzbekiska","Venda":"venda","Vietnamese":"vietnamesiska","Walloon":"vallonska","Wolof":"wolof","Xhosa":"xhosa","Yiddish":"jiddisch","Yoruba":"yoruba","Zhuang":"zhuang","Chinese":"kinesiska","Zulu":"zulu"} \ No newline at end of file {"Music":"Musik","Films":"Filmer","Vehicles":"Fordon","Art":"Konst","Sports":"Sport","Travels":"Resor","Gaming":"Spel","People":"Människor","Comedy":"Komedi","Entertainment":"Underhållning","News":"Nyheter","How To":"Instruktioner","Education":"Utbildning","Activism":"Aktivism","Science & Technology":"Vetenskap och teknik","Animals":"Djur","Kids":"Barn","Food":"Mat","Attribution":"Attribution","Attribution - Share Alike":"Attribution - Share Alike","Attribution - No Derivatives":"Attribution - No Derivatives","Attribution - Non Commercial":"Attribution - Non Commercial","Attribution - Non Commercial - Share Alike":"Attribution - Non Commercial - Share Alike","Attribution - Non Commercial - No Derivatives":"Attribution - Non Commercial - No Derivatives","Public Domain Dedication":"Public Domain Dedication","Public":"Offentlig","Unlisted":"Olistad","Private":"Privat","Published":"Publicerad","To transcode":"Att omkoda","To import":"Att importera","Pending":"I kö","Success":"Lyckades","Failed":"Misslyckades","Misc":"Diverse","Unknown":"Okänd","Afar":"afar","Abkhazian":"abchaziska","Afrikaans":"afrikaans","Akan":"akan","Amharic":"amhariska","Arabic":"arabiska","Aragonese":"aragonska","American Sign Language":"amerikanskt teckenspråk","Assamese":"assamesiska","Avaric":"avariska","Kotava":"kotava","Aymara":"aymara","Azerbaijani":"azerbajdzjanska","Bashkir":"basjkiriska","Bambara":"bambara","Belarusian":"vitryska","Bengali":"bengali","British Sign Language":"brittiskt teckenspråk","Bislama":"bislama","Tibetan":"tibetanska","Bosnian":"bosniska","Breton":"bretonska","Bulgarian":"bulgariska","Brazilian Sign Language":"brasilianskt teckenspråk","Catalan":"katalanska","Czech":"tjeckiska","Chamorro":"chamorro","Chechen":"tjetjenska","Chuvash":"tjuvasjiska","Cornish":"korniska","Corsican":"korsikanska","Cree":"cree","Czech Sign Language":"tjeckiskt teckenspråk","Chinese Sign Language":"kinesiskt teckenspråk","Welsh":"kymriska","Danish":"danska","German":"tyska","Dhivehi":"divehi","Danish Sign Language":"danskt teckenspråk","Dzongkha":"dzongkha","Modern Greek (1453-)":"modern grekiska (1453–)","English":"engelska","Esperanto":"esperanto","Estonian":"estniska","Basque":"baskiska","Ewe":"ewe","Faroese":"färöiska","Persian":"persiska","Fijian":"fijianska","Finnish":"finska","French":"franska","Western Frisian":"västfrisiska","French Sign Language":"franskt teckenspråk","Fulah":"fula","Scottish Gaelic":"skotsk gäliska","Irish":"iriska","Galician":"galiciska","Manx":"manx","Guarani":"guaraní","German Sign Language":"tyskt teckenspråk","Gujarati":"gujarati","Haitian":"haitisk kreol","Hausa":"hausa","Serbo-Croatian":"serbokroatiska","Hebrew":"hebreiska","Herero":"herero","Hindi":"hindi","Hiri Motu":"hiri motu","Croatian":"kroatiska","Hungarian":"ungerska","Armenian":"armeniska","Igbo":"igbo","Sichuan Yi":"Sichuan Yi","Inuktitut":"inuktitut","Indonesian":"indonesiska","Inupiaq":"iñupiaq","Icelandic":"isländska","Italian":"italienska","Javanese":"javanesiska","Lojban":"lojban","Japanese":"japanska","Japanese Sign Language":"japanskt teckenspråk","Kalaallisut":"kalaallisut","Kannada":"kannada","Kashmiri":"kashmiri","Georgian":"georgiska","Kanuri":"kanuri","Kazakh":"kazakiska","Khmer":"khmer","Kikuyu":"kikuyu","Kinyarwanda":"rwanda","Kirghiz":"kirgiziska","Komi":"komi","Kongo":"kikongo","Korean":"koreanska","Kuanyama":"kwanyama","Kurdish":"kurdiska","Lao":"lao","Latvian":"lettiska","Limburgan":"limburgiska","Lingala":"lingala","Lithuanian":"litauiska","Luxembourgish":"luxemburgiska","Luba-Katanga":"luba-katanga","Ganda":"luganda","Marshallese":"marshallesiska","Malayalam":"malayalam","Marathi":"marathi","Macedonian":"makedonska","Malagasy":"malagassiska","Maltese":"maltesiska","Mongolian":"mongoliska","Maori":"maori","Malay (macrolanguage)":"malajiska","Burmese":"burmesiska","Nauru":"nauruanska","Navajo":"navajo","South Ndebele":"sydndebele","North Ndebele":"nordndebele","Ndonga":"ndonga","Nepali (macrolanguage)":"nepali","Dutch":"nederländska","Norwegian Nynorsk":"nynorska","Norwegian Bokmål":"bokmål","Norwegian":"norska","Nyanja":"chichewa","Ojibwa":"ojibwa","Oriya (macrolanguage)":"oriya","Oromo":"oromo","Ossetian":"ossetiska","Panjabi":"punjabi","Pakistan Sign Language":"pakistanskt teckenspråk","Polish":"polska","Portuguese":"portugisiska","Pushto":"pashto","Quechua":"quechua","Romansh":"rätoromanska","Romanian":"rumänska","Russian Sign Language":"ryskt teckenspråk","Rundi":"kirundi","Russian":"ryska","Sango":"sango","Saudi Arabian Sign Language":"saudiarabiskt teckenspråk","South African Sign Language":"sydafrikanskt teckenspråk","Sinhala":"singalesiska","Slovak":"slovakiska","Slovenian":"slovenska","Northern Sami":"nordsamiska","Samoan":"samoanska","Shona":"shona","Sindhi":"sindhi","Somali":"somaliska","Southern Sotho":"sesotho","Spanish":"spanska","Albanian":"albanska","Sardinian":"sardiska","Serbian":"serbiska","Swati":"siSwati","Sundanese":"sundanesiska","Swahili (macrolanguage)":"swahili","Swedish":"svenska","Swedish Sign Language":"svenskt teckenspråk","Tahitian":"tahitiska","Tamil":"tamil","Tatar":"tatariska","Telugu":"telugu","Tajik":"tadzjikiska","Tagalog":"tagalog","Thai":"thai","Tigrinya":"tigrinska","Klingon":"klingon","Tonga (Tonga Islands)":"tonganska","Tswana":"setswana","Tsonga":"tsonga","Turkmen":"turkmeniska","Turkish":"turkiska","Twi":"twi","Uighur":"uiguriska","Ukrainian":"ukrainska","Urdu":"urdu","Uzbek":"uzbekiska","Venda":"venda","Vietnamese":"vietnamesiska","Walloon":"vallonska","Wolof":"wolof","Xhosa":"xhosa","Yiddish":"jiddisch","Yoruba":"yoruba","Zhuang":"zhuang","Chinese":"kinesiska","Zulu":"zulu"} \ No newline at end of file
diff --git a/client/src/locale/target/server_zh_Hant_TW.json b/client/src/locale/target/server_zh_Hant_TW.json
index bb52ed51c..8e2960c16 100644
--- a/client/src/locale/target/server_zh_Hant_TW.json
+++ b/client/src/locale/target/server_zh_Hant_TW.json
@@ -1 +1 @@
{"Music":"音樂","Films":"電影","Vehicles":"汽車","Art":"藝術","Sports":"運動","Travels":"旅遊","Gaming":"遊戲","People":"大眾","Comedy":"喜劇","Entertainment":"娛樂","News":"新聞","How To":"How To","Education":"教育","Activism":"行動","Science & Technology":"科學與科技","Animals":"動物","Kids":"兒童","Food":"食物","Attribution":"姓名標示","Attribution - Share Alike":"姓名標示 - 相同方式分享","Attribution - No Derivatives":"姓名標示 - 禁止改作","Attribution - Non Commercial":"姓名標示 - 非商業性","Attribution - Non Commercial - Share Alike":"姓名標示 - 非商業性 - 相同方式分享","Attribution - Non Commercial - No Derivatives":"姓名標示 - 非商業性 - 禁止改作","Public Domain Dedication":"公有領域","Public":"公開","Unlisted":"不列出","Private":"私人","Misc":"雜項","Unknown":"未知","Afar":"阿法爾語","Abkhazian":"阿布哈茲語","Afrikaans":"南非語","Akan":"阿寒語","Amharic":"阿姆哈拉語","Arabic":"阿拉伯語","Aragonese":"亞拉岡語","American Sign Language":"美國手語","Assamese":"阿薩姆語","Avaric":"阿瓦爾語","Aymara":"艾馬拉語","Azerbaijani":"亞塞拜然語","Bashkir":"巴什基爾語","Bambara":"班巴拉語","Belarusian":"白俄羅斯語","Bengali":"孟加拉語","British Sign Language":"英國手語","Bislama":"比斯拉馬語","Tibetan":"藏語","Bosnian":"波士尼亞語","Breton":"布列塔尼語","Bulgarian":"保加利亞語","Brazilian Sign Language":"巴西手語","Catalan":"加泰隆尼亞語","Czech":"捷克語","Chamorro":"查莫羅語","Chechen":"車臣語","Chuvash":"楚瓦什語","Cornish":"康瓦爾語","Corsican":"科西嘉語","Cree":"克里語","Czech Sign Language":"捷克手語","Chinese Sign Language":"中國手語","Welsh":"威爾斯語","Danish":"丹麥語","German":"德語","Dhivehi":"迪維西語","Danish Sign Language":"丹麥手語","Dzongkha":"不丹語","Modern Greek (1453-)":"現代希臘語(1453年後)","English":"英語","Estonian":"愛沙尼亞語","Basque":"巴斯克語","Ewe":"埃維語","Faroese":"法羅語","Persian":"波斯語","Fijian":"斐濟語","Finnish":"芬蘭語","French":"法語","Western Frisian":"西菲士蘭語","French Sign Language":"法國手語","Fulah":"富拉語","Scottish Gaelic":"蘇格蘭蓋爾語","Irish":"愛爾蘭語","Galician":"加利西亞語","Manx":"曼島語","Guarani":"瓜拉尼語","German Sign Language":"德國手語","Gujarati":"古吉拉特語","Haitian":"海地語","Hausa":"豪薩語","Serbo-Croatian":"塞爾維亞-克羅埃西亞語","Hebrew":"希伯來語","Herero":"赫雷羅語","Hindi":"印地語","Hiri Motu":"希里摩圖語","Croatian":"克羅埃西亞語","Hungarian":"匈牙利語","Armenian":"亞美尼亞語","Igbo":"伊博語","Sichuan Yi":"彝語北部方言","Inuktitut":"因紐特語","Indonesian":"印尼語","Inupiaq":"因紐皮雅特語","Icelandic":"冰島語","Italian":"義大利語","Javanese":"爪哇語","Japanese":"日語","Japanese Sign Language":"日本手語","Kalaallisut":"格陵蘭語","Kannada":"康納達語","Kashmiri":"喀什米爾語","Georgian":"喬治亞語","Kanuri":"卡努里語","Kazakh":"哈薩克語","Khmer":"高棉語","Kikuyu":"基庫尤語","Kinyarwanda":"盧安達語","Kirghiz":"吉爾吉斯語","Komi":"科米語","Kongo":"剛果語","Korean":"韓語","Kuanyama":"Kuanyama 語","Kurdish":"庫德語","Lao":"寮語","Latvian":"拉脫維亞語","Limburgan":"林堡語","Lingala":"林格拉語","Lithuanian":"立陶宛語","Luxembourgish":"盧森堡語","Luba-Katanga":"盧巴卡丹加語","Ganda":"盧干達語","Marshallese":"馬紹爾語","Malayalam":"馬拉雅拉姆語","Marathi":"馬拉提語","Macedonian":"馬其頓語","Malagasy":"馬拉加斯語","Maltese":"馬爾他語","Mongolian":"蒙古語","Maori":"毛利語","Malay (macrolanguage)":"馬來語","Burmese":"緬甸語","Nauru":"諾魯語","Navajo":"納瓦荷語","South Ndebele":"南恩德貝勒語","North Ndebele":"北恩德貝勒語","Ndonga":"恩敦加語","Nepali (macrolanguage)":"尼泊爾語","Dutch":"荷蘭語","Norwegian Nynorsk":"新挪威語","Norwegian Bokmål":"書面挪威語","Norwegian":"挪威語","Nyanja":"尼揚賈語","Occitan (post 1500)":"奧克語","Ojibwa":"歐及布威語","Oriya (macrolanguage)":"歐利亞語","Oromo":"奧羅莫語","Ossetian":"奧塞提亞語","Panjabi":"旁遮普語","Pakistan Sign Language":"巴基斯坦手語","Polish":"波蘭語","Portuguese":"葡萄牙語","Pushto":"普什圖語","Quechua":"奇楚瓦語","Romansh":"羅曼什語","Romanian":"羅馬尼亞語","Russian Sign Language":"俄羅斯手語","Rundi":"克倫地語","Russian":"俄語","Sango":"桑戈語","Saudi Arabian Sign Language":"沙烏地阿拉伯手語","South African Sign Language":"南非手語","Sinhala":"僧伽羅語","Slovak":"斯洛伐克語","Slovenian":"斯洛維尼亞語","Northern Sami":"北方薩米語","Samoan":"薩摩亞語","Shona":"修納語","Sindhi":"信德語","Somali":"索馬利亞語","Southern Sotho":"塞索托語","Spanish":"西班牙語","Albanian":"阿爾巴尼亞語","Sardinian":"薩丁尼亞語","Serbian":"塞爾維亞語","Swati":"史瓦濟語","Sundanese":"巽他語","Swahili (macrolanguage)":"斯瓦希里語","Swedish":"瑞典語","Swedish Sign Language":"瑞典手語","Tahitian":"大溪地語","Tamil":"坦米爾語","Tatar":"韃靼語","Telugu":"泰盧固語","Tajik":"塔吉克語","Tagalog":"他加祿語","Thai":"泰語","Tigrinya":"提格利尼亞語","Tonga (Tonga Islands)":"東加語","Tswana":"札那語","Tsonga":"宋加語","Turkmen":"土庫曼語","Turkish":"土耳其語","Twi":"契維語","Uighur":"維吾爾語","Ukrainian":"烏克蘭語","Urdu":"烏爾都語","Uzbek":"烏茲別克語","Venda":"文達語","Vietnamese":"越南語","Walloon":"瓦隆語","Wolof":"沃洛夫語","Xhosa":"科薩語","Yiddish":"意第緒語","Yoruba":"約魯巴語","Zhuang":"壯語","Chinese":"漢語","Zulu":"祖魯語"} \ No newline at end of file {"Music":"音樂","Films":"電影","Vehicles":"汽車","Art":"藝術","Sports":"運動","Travels":"旅遊","Gaming":"遊戲","People":"大眾","Comedy":"喜劇","Entertainment":"娛樂","News":"新聞","How To":"How To","Education":"教育","Activism":"行動","Science & Technology":"科學與科技","Animals":"動物","Kids":"兒童","Food":"食物","Attribution":"姓名標示","Attribution - Share Alike":"姓名標示 - 相同方式分享","Attribution - No Derivatives":"姓名標示 - 禁止改作","Attribution - Non Commercial":"姓名標示 - 非商業性","Attribution - Non Commercial - Share Alike":"姓名標示 - 非商業性 - 相同方式分享","Attribution - Non Commercial - No Derivatives":"姓名標示 - 非商業性 - 禁止改作","Public Domain Dedication":"公有領域","Public":"公開","Unlisted":"不列出","Private":"私人","Published":"已發佈","To transcode":"待轉換編碼","To import":"待匯入","Pending":"擱置中","Success":"成功","Failed":"失敗","Misc":"雜項","Unknown":"未知","Afar":"阿法爾語","Abkhazian":"阿布哈茲語","Afrikaans":"南非語","Akan":"阿寒語","Amharic":"阿姆哈拉語","Arabic":"阿拉伯語","Aragonese":"亞拉岡語","American Sign Language":"美國手語","Assamese":"阿薩姆語","Avaric":"阿瓦爾語","Kotava":"Kotava 語","Aymara":"艾馬拉語","Azerbaijani":"亞塞拜然語","Bashkir":"巴什基爾語","Bambara":"班巴拉語","Belarusian":"白俄羅斯語","Bengali":"孟加拉語","British Sign Language":"英國手語","Bislama":"比斯拉馬語","Tibetan":"藏語","Bosnian":"波士尼亞語","Breton":"布列塔尼語","Bulgarian":"保加利亞語","Brazilian Sign Language":"巴西手語","Catalan":"加泰隆尼亞語","Czech":"捷克語","Chamorro":"查莫羅語","Chechen":"車臣語","Chuvash":"楚瓦什語","Cornish":"康瓦爾語","Corsican":"科西嘉語","Cree":"克里語","Czech Sign Language":"捷克手語","Chinese Sign Language":"中國手語","Welsh":"威爾斯語","Danish":"丹麥語","German":"德語","Dhivehi":"迪維西語","Danish Sign Language":"丹麥手語","Dzongkha":"不丹語","Modern Greek (1453-)":"現代希臘語(1453年後)","English":"英語","Esperanto":"世界語","Estonian":"愛沙尼亞語","Basque":"巴斯克語","Ewe":"埃維語","Faroese":"法羅語","Persian":"波斯語","Fijian":"斐濟語","Finnish":"芬蘭語","French":"法語","Western Frisian":"西菲士蘭語","French Sign Language":"法國手語","Fulah":"富拉語","Scottish Gaelic":"蘇格蘭蓋爾語","Irish":"愛爾蘭語","Galician":"加利西亞語","Manx":"曼島語","Guarani":"瓜拉尼語","German Sign Language":"德國手語","Gujarati":"古吉拉特語","Haitian":"海地語","Hausa":"豪薩語","Serbo-Croatian":"塞爾維亞-克羅埃西亞語","Hebrew":"希伯來語","Herero":"赫雷羅語","Hindi":"印地語","Hiri Motu":"希里摩圖語","Croatian":"克羅埃西亞語","Hungarian":"匈牙利語","Armenian":"亞美尼亞語","Igbo":"伊博語","Sichuan Yi":"彝語北部方言","Inuktitut":"因紐特語","Indonesian":"印尼語","Inupiaq":"因紐皮雅特語","Icelandic":"冰島語","Italian":"義大利語","Javanese":"爪哇語","Lojban":"邏輯語","Japanese":"日語","Japanese Sign Language":"日本手語","Kalaallisut":"格陵蘭語","Kannada":"康納達語","Kashmiri":"喀什米爾語","Georgian":"喬治亞語","Kanuri":"卡努里語","Kazakh":"哈薩克語","Khmer":"高棉語","Kikuyu":"基庫尤語","Kinyarwanda":"盧安達語","Kirghiz":"吉爾吉斯語","Komi":"科米語","Kongo":"剛果語","Korean":"韓語","Kuanyama":"Kuanyama 語","Kurdish":"庫德語","Lao":"寮語","Latvian":"拉脫維亞語","Limburgan":"林堡語","Lingala":"林格拉語","Lithuanian":"立陶宛語","Luxembourgish":"盧森堡語","Luba-Katanga":"盧巴卡丹加語","Ganda":"盧干達語","Marshallese":"馬紹爾語","Malayalam":"馬拉雅拉姆語","Marathi":"馬拉提語","Macedonian":"馬其頓語","Malagasy":"馬拉加斯語","Maltese":"馬爾他語","Mongolian":"蒙古語","Maori":"毛利語","Malay (macrolanguage)":"馬來語","Burmese":"緬甸語","Nauru":"諾魯語","Navajo":"納瓦荷語","South Ndebele":"南恩德貝勒語","North Ndebele":"北恩德貝勒語","Ndonga":"恩敦加語","Nepali (macrolanguage)":"尼泊爾語","Dutch":"荷蘭語","Norwegian Nynorsk":"新挪威語","Norwegian Bokmål":"書面挪威語","Norwegian":"挪威語","Nyanja":"尼揚賈語","Ojibwa":"歐及布威語","Oriya (macrolanguage)":"歐利亞語","Oromo":"奧羅莫語","Ossetian":"奧塞提亞語","Panjabi":"旁遮普語","Pakistan Sign Language":"巴基斯坦手語","Polish":"波蘭語","Portuguese":"葡萄牙語","Pushto":"普什圖語","Quechua":"奇楚瓦語","Romansh":"羅曼什語","Romanian":"羅馬尼亞語","Russian Sign Language":"俄羅斯手語","Rundi":"克倫地語","Russian":"俄語","Sango":"桑戈語","Saudi Arabian Sign Language":"沙烏地阿拉伯手語","South African Sign Language":"南非手語","Sinhala":"僧伽羅語","Slovak":"斯洛伐克語","Slovenian":"斯洛維尼亞語","Northern Sami":"北方薩米語","Samoan":"薩摩亞語","Shona":"修納語","Sindhi":"信德語","Somali":"索馬利亞語","Southern Sotho":"塞索托語","Spanish":"西班牙語","Albanian":"阿爾巴尼亞語","Sardinian":"薩丁尼亞語","Serbian":"塞爾維亞語","Swati":"史瓦濟語","Sundanese":"巽他語","Swahili (macrolanguage)":"斯瓦希里語","Swedish":"瑞典語","Swedish Sign Language":"瑞典手語","Tahitian":"大溪地語","Tamil":"坦米爾語","Tatar":"韃靼語","Telugu":"泰盧固語","Tajik":"塔吉克語","Tagalog":"他加祿語","Thai":"泰語","Tigrinya":"提格利尼亞語","Klingon":"克林貢語","Tonga (Tonga Islands)":"東加語","Tswana":"札那語","Tsonga":"宋加語","Turkmen":"土庫曼語","Turkish":"土耳其語","Twi":"契維語","Uighur":"維吾爾語","Ukrainian":"烏克蘭語","Urdu":"烏爾都語","Uzbek":"烏茲別克語","Venda":"文達語","Vietnamese":"越南語","Walloon":"瓦隆語","Wolof":"沃洛夫語","Xhosa":"科薩語","Yiddish":"意第緒語","Yoruba":"約魯巴語","Zhuang":"壯語","Chinese":"漢語","Zulu":"祖魯語"} \ No newline at end of file