aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src
diff options
context:
space:
mode:
Diffstat (limited to 'client/src')
-rw-r--r--client/src/app/+admin/admin.component.ts16
-rw-r--r--client/src/app/+admin/admin.module.ts2
-rw-r--r--client/src/app/+admin/moderation/moderation.routes.ts12
-rw-r--r--client/src/app/+admin/overview/comments/index.ts (renamed from client/src/app/+admin/moderation/video-comment-list/index.ts)1
-rw-r--r--client/src/app/+admin/overview/comments/video-comment-list.component.html (renamed from client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.html)0
-rw-r--r--client/src/app/+admin/overview/comments/video-comment-list.component.scss (renamed from client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.scss)0
-rw-r--r--client/src/app/+admin/overview/comments/video-comment-list.component.ts (renamed from client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts)0
-rw-r--r--client/src/app/+admin/overview/comments/video-comment.routes.ts30
-rw-r--r--client/src/app/+admin/overview/index.ts1
-rw-r--r--client/src/app/+admin/overview/overview.routes.ts10
-rw-r--r--client/src/app/+admin/overview/users/users.routes.ts2
-rw-r--r--client/src/app/+admin/overview/videos/video.routes.ts2
-rw-r--r--client/src/locale/angular.ar.xlf1766
13 files changed, 935 insertions, 907 deletions
diff --git a/client/src/app/+admin/admin.component.ts b/client/src/app/+admin/admin.component.ts
index b8a957d1c..746549555 100644
--- a/client/src/app/+admin/admin.component.ts
+++ b/client/src/app/+admin/admin.component.ts
@@ -52,6 +52,14 @@ export class AdminComponent implements OnInit {
52 }) 52 })
53 } 53 }
54 54
55 if (this.hasVideoCommentsRight()) {
56 overviewItems.children.push({
57 label: $localize`Comments`,
58 routerLink: '/admin/comments',
59 iconName: 'message-circle'
60 })
61 }
62
55 if (overviewItems.children.length !== 0) { 63 if (overviewItems.children.length !== 0) {
56 this.menuEntries.push(overviewItems) 64 this.menuEntries.push(overviewItems)
57 } 65 }
@@ -104,14 +112,6 @@ export class AdminComponent implements OnInit {
104 }) 112 })
105 } 113 }
106 114
107 if (this.hasVideoCommentsRight()) {
108 moderationItems.children.push({
109 label: $localize`Video comments`,
110 routerLink: '/admin/moderation/video-comments/list',
111 iconName: 'message-circle'
112 })
113 }
114
115 if (this.hasAccountsBlocklistRight()) { 115 if (this.hasAccountsBlocklistRight()) {
116 moderationItems.children.push({ 116 moderationItems.children.push({
117 label: $localize`Muted accounts`, 117 label: $localize`Muted accounts`,
diff --git a/client/src/app/+admin/admin.module.ts b/client/src/app/+admin/admin.module.ts
index c672fa280..366e29883 100644
--- a/client/src/app/+admin/admin.module.ts
+++ b/client/src/app/+admin/admin.module.ts
@@ -32,13 +32,13 @@ import { RedundancyCheckboxComponent } from './follows/shared/redundancy-checkbo
32import { VideoRedundancyInformationComponent } from './follows/video-redundancies-list/video-redundancy-information.component' 32import { VideoRedundancyInformationComponent } from './follows/video-redundancies-list/video-redundancy-information.component'
33import { AbuseListComponent, VideoBlockListComponent } from './moderation' 33import { AbuseListComponent, VideoBlockListComponent } from './moderation'
34import { InstanceAccountBlocklistComponent, InstanceServerBlocklistComponent } from './moderation/instance-blocklist' 34import { InstanceAccountBlocklistComponent, InstanceServerBlocklistComponent } from './moderation/instance-blocklist'
35import { VideoCommentListComponent } from './moderation/video-comment-list'
36import { 35import {
37 UserCreateComponent, 36 UserCreateComponent,
38 UserListComponent, 37 UserListComponent,
39 UserPasswordComponent, 38 UserPasswordComponent,
40 UserUpdateComponent, 39 UserUpdateComponent,
41 VideoAdminService, 40 VideoAdminService,
41 VideoCommentListComponent,
42 VideoListComponent 42 VideoListComponent
43} from './overview' 43} from './overview'
44import { 44import {
diff --git a/client/src/app/+admin/moderation/moderation.routes.ts b/client/src/app/+admin/moderation/moderation.routes.ts
index 5c39ff366..1ad301039 100644
--- a/client/src/app/+admin/moderation/moderation.routes.ts
+++ b/client/src/app/+admin/moderation/moderation.routes.ts
@@ -2,7 +2,6 @@ import { Routes } from '@angular/router'
2import { AbuseListComponent } from '@app/+admin/moderation/abuse-list' 2import { AbuseListComponent } from '@app/+admin/moderation/abuse-list'
3import { InstanceAccountBlocklistComponent, InstanceServerBlocklistComponent } from '@app/+admin/moderation/instance-blocklist' 3import { InstanceAccountBlocklistComponent, InstanceServerBlocklistComponent } from '@app/+admin/moderation/instance-blocklist'
4import { VideoBlockListComponent } from '@app/+admin/moderation/video-block-list' 4import { VideoBlockListComponent } from '@app/+admin/moderation/video-block-list'
5import { VideoCommentListComponent } from './video-comment-list'
6import { UserRightGuard } from '@app/core' 5import { UserRightGuard } from '@app/core'
7import { UserRight } from '@shared/models' 6import { UserRight } from '@shared/models'
8 7
@@ -69,6 +68,7 @@ export const ModerationRoutes: Routes = [
69 } 68 }
70 }, 69 },
71 70
71 // We move this component in admin overview pages
72 { 72 {
73 path: 'video-comments', 73 path: 'video-comments',
74 redirectTo: 'video-comments/list', 74 redirectTo: 'video-comments/list',
@@ -76,14 +76,8 @@ export const ModerationRoutes: Routes = [
76 }, 76 },
77 { 77 {
78 path: 'video-comments/list', 78 path: 'video-comments/list',
79 component: VideoCommentListComponent, 79 redirectTo: '/admin/comments/list',
80 canActivate: [ UserRightGuard ], 80 pathMatch: 'full'
81 data: {
82 userRight: UserRight.SEE_ALL_COMMENTS,
83 meta: {
84 title: $localize`Video comments`
85 }
86 }
87 }, 81 },
88 82
89 { 83 {
diff --git a/client/src/app/+admin/moderation/video-comment-list/index.ts b/client/src/app/+admin/overview/comments/index.ts
index eb08b4177..c487f7a81 100644
--- a/client/src/app/+admin/moderation/video-comment-list/index.ts
+++ b/client/src/app/+admin/overview/comments/index.ts
@@ -1 +1,2 @@
1export * from './video-comment-list.component' 1export * from './video-comment-list.component'
2export * from './video-comment.routes'
diff --git a/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.html b/client/src/app/+admin/overview/comments/video-comment-list.component.html
index 0dbbbe1cc..0dbbbe1cc 100644
--- a/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.html
+++ b/client/src/app/+admin/overview/comments/video-comment-list.component.html
diff --git a/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.scss b/client/src/app/+admin/overview/comments/video-comment-list.component.scss
index 3cf7b8db6..3cf7b8db6 100644
--- a/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.scss
+++ b/client/src/app/+admin/overview/comments/video-comment-list.component.scss
diff --git a/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts b/client/src/app/+admin/overview/comments/video-comment-list.component.ts
index 25fe65133..25fe65133 100644
--- a/client/src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts
+++ b/client/src/app/+admin/overview/comments/video-comment-list.component.ts
diff --git a/client/src/app/+admin/overview/comments/video-comment.routes.ts b/client/src/app/+admin/overview/comments/video-comment.routes.ts
new file mode 100644
index 000000000..f0bd440ad
--- /dev/null
+++ b/client/src/app/+admin/overview/comments/video-comment.routes.ts
@@ -0,0 +1,30 @@
1import { Routes } from '@angular/router'
2import { UserRightGuard } from '@app/core'
3import { UserRight } from '@shared/models'
4import { VideoCommentListComponent } from './video-comment-list.component'
5
6export const commentRoutes: Routes = [
7 {
8 path: 'comments',
9 canActivate: [ UserRightGuard ],
10 data: {
11 userRight: UserRight.SEE_ALL_COMMENTS
12 },
13 children: [
14 {
15 path: '',
16 redirectTo: 'list',
17 pathMatch: 'full'
18 },
19 {
20 path: 'list',
21 component: VideoCommentListComponent,
22 data: {
23 meta: {
24 title: $localize`Comments list`
25 }
26 }
27 }
28 ]
29 }
30]
diff --git a/client/src/app/+admin/overview/index.ts b/client/src/app/+admin/overview/index.ts
index a9c46893f..111360734 100644
--- a/client/src/app/+admin/overview/index.ts
+++ b/client/src/app/+admin/overview/index.ts
@@ -1,3 +1,4 @@
1export * from './comments'
1export * from './users' 2export * from './users'
2export * from './videos' 3export * from './videos'
3export * from './overview.routes' 4export * from './overview.routes'
diff --git a/client/src/app/+admin/overview/overview.routes.ts b/client/src/app/+admin/overview/overview.routes.ts
index 1e6686d16..72d6835d7 100644
--- a/client/src/app/+admin/overview/overview.routes.ts
+++ b/client/src/app/+admin/overview/overview.routes.ts
@@ -1,8 +1,10 @@
1import { Routes } from '@angular/router' 1import { Routes } from '@angular/router'
2import { UsersRoutes } from './users' 2import { commentRoutes } from './comments'
3import { VideosRoutes } from './videos' 3import { usersRoutes } from './users'
4import { videosRoutes } from './videos'
4 5
5export const OverviewRoutes: Routes = [ 6export const OverviewRoutes: Routes = [
6 ...UsersRoutes, 7 ...commentRoutes,
7 ...VideosRoutes 8 ...usersRoutes,
9 ...videosRoutes
8] 10]
diff --git a/client/src/app/+admin/overview/users/users.routes.ts b/client/src/app/+admin/overview/users/users.routes.ts
index 8b63f5bc7..c9724e5fb 100644
--- a/client/src/app/+admin/overview/users/users.routes.ts
+++ b/client/src/app/+admin/overview/users/users.routes.ts
@@ -4,7 +4,7 @@ import { UserRight } from '@shared/models'
4import { UserCreateComponent, UserUpdateComponent } from './user-edit' 4import { UserCreateComponent, UserUpdateComponent } from './user-edit'
5import { UserListComponent } from './user-list' 5import { UserListComponent } from './user-list'
6 6
7export const UsersRoutes: Routes = [ 7export const usersRoutes: Routes = [
8 { 8 {
9 path: 'users', 9 path: 'users',
10 canActivate: [ UserRightGuard ], 10 canActivate: [ UserRightGuard ],
diff --git a/client/src/app/+admin/overview/videos/video.routes.ts b/client/src/app/+admin/overview/videos/video.routes.ts
index 984df7b82..01cb5b497 100644
--- a/client/src/app/+admin/overview/videos/video.routes.ts
+++ b/client/src/app/+admin/overview/videos/video.routes.ts
@@ -3,7 +3,7 @@ import { UserRightGuard } from '@app/core'
3import { UserRight } from '@shared/models' 3import { UserRight } from '@shared/models'
4import { VideoListComponent } from './video-list.component' 4import { VideoListComponent } from './video-list.component'
5 5
6export const VideosRoutes: Routes = [ 6export const videosRoutes: Routes = [
7 { 7 {
8 path: 'videos', 8 path: 'videos',
9 canActivate: [ UserRightGuard ], 9 canActivate: [ UserRightGuard ],
diff --git a/client/src/locale/angular.ar.xlf b/client/src/locale/angular.ar.xlf
index 79607cb44..4000b5a1d 100644
--- a/client/src/locale/angular.ar.xlf
+++ b/client/src/locale/angular.ar.xlf
@@ -4,7 +4,7 @@
4 <body> 4 <body>
5 <trans-unit id="ngb.alert.close" datatype="html"> 5 <trans-unit id="ngb.alert.close" datatype="html">
6 <source>Close</source><target state="new">Close</target> 6 <source>Close</source><target state="new">Close</target>
7 7
8 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/alert/alert.ts</context><context context-type="linenumber">79</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html"> 8 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/alert/alert.ts</context><context context-type="linenumber">79</context></context-group></trans-unit><trans-unit id="ngb.carousel.slide-number" datatype="html">
9 <source> Slide <x id="INTERPOLATION" equiv-text="get wrap("/> of <x id="INTERPOLATION_1" equiv-text=".value; }"/> </source><target state="new"> Slide <x id="INTERPOLATION" equiv-text="get wrap("/> of <x id="INTERPOLATION_1" equiv-text=".value; }"/> </target> 9 <source> Slide <x id="INTERPOLATION" equiv-text="get wrap("/> of <x id="INTERPOLATION_1" equiv-text=".value; }"/> </source><target state="new"> Slide <x id="INTERPOLATION" equiv-text="get wrap("/> of <x id="INTERPOLATION_1" equiv-text=".value; }"/> </target>
10 <context-group purpose="location"> 10 <context-group purpose="location">
@@ -20,7 +20,7 @@
20 </context-group> 20 </context-group>
21 </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> 21 </trans-unit><trans-unit id="ngb.carousel.next" datatype="html">
22 <source>Next</source><target state="new">Next</target> 22 <source>Next</source><target state="new">Next</target>
23 23
24 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/carousel/carousel.ts</context><context context-type="linenumber">197</context></context-group></trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> 24 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/carousel/carousel.ts</context><context context-type="linenumber">197</context></context-group></trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html">
25 <source>Select month</source><target state="new">Select month</target> 25 <source>Select month</source><target state="new">Select month</target>
26 <context-group purpose="location"> 26 <context-group purpose="location">
@@ -63,63 +63,63 @@
63 </context-group> 63 </context-group>
64 </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> 64 </trans-unit><trans-unit id="ngb.pagination.first" datatype="html">
65 <source>««</source><target state="new">««</target> 65 <source>««</source><target state="new">««</target>
66 66
67 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">247</context></context-group></trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> 67 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">247</context></context-group></trans-unit><trans-unit id="ngb.pagination.previous" datatype="html">
68 <source>«</source><target state="new">«</target> 68 <source>«</source><target state="new">«</target>
69 69
70 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">266</context></context-group></trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> 70 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">266</context></context-group></trans-unit><trans-unit id="ngb.pagination.next" datatype="html">
71 <source>»</source><target state="new">»</target> 71 <source>»</source><target state="new">»</target>
72 72
73 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">285</context></context-group></trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> 73 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">285</context></context-group></trans-unit><trans-unit id="ngb.pagination.last" datatype="html">
74 <source>»»</source><target state="new">»»</target> 74 <source>»»</source><target state="new">»»</target>
75 75
76 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">305</context></context-group></trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> 76 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">305</context></context-group></trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html">
77 <source>First</source><target state="new">First</target> 77 <source>First</source><target state="new">First</target>
78 78
79 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">320</context></context-group></trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> 79 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">320</context></context-group></trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html">
80 <source>Previous</source><target state="new">Previous</target> 80 <source>Previous</source><target state="new">Previous</target>
81 81
82 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">335</context></context-group></trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> 82 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">335</context></context-group></trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html">
83 <source>Next</source><target state="new">Next</target> 83 <source>Next</source><target state="new">Next</target>
84 84
85 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">347</context></context-group></trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> 85 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">347</context></context-group></trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html">
86 <source>Last</source><target state="new">Last</target> 86 <source>Last</source><target state="new">Last</target>
87 87
88 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">357</context></context-group></trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> 88 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/pagination/pagination.ts</context><context context-type="linenumber">357</context></context-group></trans-unit><trans-unit id="ngb.progressbar.value" datatype="html">
89 <source><x id="INTERPOLATION" equiv-text="nd so on. 89 <source><x id="INTERPOLATION" equiv-text="nd so on.
90 *"/></source><target state="new"><x id="INTERPOLATION" equiv-text="nd so on. 90 *"/></source><target state="new"><x id="INTERPOLATION" equiv-text="nd so on.
91 *"/></target> 91 *"/></target>
92 92
93 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/progressbar/progressbar.ts</context><context context-type="linenumber">60</context></context-group></trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> 93 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/progressbar/progressbar.ts</context><context context-type="linenumber">60</context></context-group></trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html">
94 <source>HH</source><target state="new">HH</target> 94 <source>HH</source><target state="new">HH</target>
95 95
96 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">133</context></context-group></trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> 96 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">133</context></context-group></trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html">
97 <source>Hours</source><target state="new">Hours</target> 97 <source>Hours</source><target state="new">Hours</target>
98 98
99 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">155</context></context-group></trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> 99 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">155</context></context-group></trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html">
100 <source>MM</source><target state="new">MM</target> 100 <source>MM</source><target state="new">MM</target>
101 101
102 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">173</context></context-group></trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> 102 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">173</context></context-group></trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html">
103 <source>Minutes</source><target state="new">Minutes</target> 103 <source>Minutes</source><target state="new">Minutes</target>
104 104
105 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">188</context></context-group></trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> 105 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">188</context></context-group></trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html">
106 <source>Increment hours</source><target state="new">Increment hours</target> 106 <source>Increment hours</source><target state="new">Increment hours</target>
107 107
108 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">201</context></context-group></trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> 108 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">201</context></context-group></trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html">
109 <source>Decrement hours</source><target state="new">Decrement hours</target> 109 <source>Decrement hours</source><target state="new">Decrement hours</target>
110 110
111 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">223</context></context-group></trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> 111 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">223</context></context-group></trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html">
112 <source>Increment minutes</source><target state="new">Increment minutes</target> 112 <source>Increment minutes</source><target state="new">Increment minutes</target>
113 113
114 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">243</context></context-group></trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> 114 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">243</context></context-group></trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html">
115 <source>Decrement minutes</source><target state="new">Decrement minutes</target> 115 <source>Decrement minutes</source><target state="new">Decrement minutes</target>
116 116
117 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">264</context></context-group></trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> 117 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">264</context></context-group></trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html">
118 <source>SS</source><target state="new">SS</target> 118 <source>SS</source><target state="new">SS</target>
119 119
120 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">283</context></context-group></trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> 120 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">283</context></context-group></trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html">
121 <source>Seconds</source><target state="new">Seconds</target> 121 <source>Seconds</source><target state="new">Seconds</target>
122 122
123 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">295</context></context-group></trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> 123 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/timepicker/timepicker.ts</context><context context-type="linenumber">295</context></context-group></trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html">
124 <source>Increment seconds</source><target state="new">Increment seconds</target> 124 <source>Increment seconds</source><target state="new">Increment seconds</target>
125 <context-group purpose="location"> 125 <context-group purpose="location">
@@ -146,26 +146,26 @@
146 </context-group> 146 </context-group>
147 </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> 147 </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html">
148 <source>Close</source><target state="new">Close</target> 148 <source>Close</source><target state="new">Close</target>
149 149
150 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/toast/toast.ts</context><context context-type="linenumber">108</context></context-group></trans-unit><trans-unit id="219462505467671767" datatype="html"> 150 <context-group purpose="location"><context context-type="sourcefile">node_modules/src/toast/toast.ts</context><context context-type="linenumber">108</context></context-group></trans-unit><trans-unit id="219462505467671767" datatype="html">
151 <source>Close the left menu</source> 151 <source>Close the left menu</source>
152 <target state="translated">أغلق القائمة اليسرى</target> 152 <target state="translated">أغلق القائمة اليسرى</target>
153 153
154 <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">137</context></context-group></trans-unit> 154 <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">137</context></context-group></trans-unit>
155 <trans-unit id="3455550526898419928" datatype="html"> 155 <trans-unit id="3455550526898419928" datatype="html">
156 <source>Open the left menu</source> 156 <source>Open the left menu</source>
157 <target state="translated">افتح القائمة اليسرى</target> 157 <target state="translated">افتح القائمة اليسرى</target>
158 158
159 <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> 159 <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit>
160 <trans-unit id="8817917090143649804" datatype="html"> 160 <trans-unit id="8817917090143649804" datatype="html">
161 <source>Account muted</source> 161 <source>Account muted</source>
162 <target state="new">Account muted</target> 162 <target state="new">Account muted</target>
163 163
164 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> 164 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit>
165 <trans-unit id="1684597533616494551" datatype="html"> 165 <trans-unit id="1684597533616494551" datatype="html">
166 <source>Server muted</source> 166 <source>Server muted</source>
167 <target state="new">Server muted</target> 167 <target state="new">Server muted</target>
168 168
169 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> 169 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit>
170 <trans-unit id="158575725114802951" datatype="html"> 170 <trans-unit id="158575725114802951" datatype="html">
171 <source>Only live videos</source> 171 <source>Only live videos</source>
@@ -175,16 +175,16 @@
175 <trans-unit id="7585826646011739428" datatype="html"> 175 <trans-unit id="7585826646011739428" datatype="html">
176 <source>Edit</source> 176 <source>Edit</source>
177 <target>عدّل</target> 177 <target>عدّل</target>
178 178
179 179
180 180
181 181
182 182
183 183
184 184
185 185
186 186
187 187
188 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">294</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> 188 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">294</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit>
189 <trans-unit id="8644431249513874405" datatype="html"> 189 <trans-unit id="8644431249513874405" datatype="html">
190 <source>&lt;a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown&lt;/a> compatible that supports:</source> 190 <source>&lt;a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown&lt;/a> compatible that supports:</source>
@@ -376,10 +376,10 @@
376 <trans-unit id="3768927257183755959" datatype="html"> 376 <trans-unit id="3768927257183755959" datatype="html">
377 <source>Save</source> 377 <source>Save</source>
378 <target>احفظ</target> 378 <target>احفظ</target>
379 379
380 380
381 381
382 382
383 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">72</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">94</context></context-group></trans-unit> 383 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">72</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">94</context></context-group></trans-unit>
384 <trans-unit id="7377817702119089263" datatype="html"> 384 <trans-unit id="7377817702119089263" datatype="html">
385 <source>Default policy on videos containing sensitive content</source> 385 <source>Default policy on videos containing sensitive content</source>
@@ -529,10 +529,10 @@
529 <trans-unit id="2602586221576511475" datatype="html"> 529 <trans-unit id="2602586221576511475" datatype="html">
530 <source>Video quota</source> 530 <source>Video quota</source>
531 <target>حصة الفيديو</target> 531 <target>حصة الفيديو</target>
532 532
533 533
534 534
535 535
536 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">119</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> 536 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">119</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit>
537 <trans-unit id="1502595455339510144" datatype="html"> 537 <trans-unit id="1502595455339510144" datatype="html">
538 <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> 538 <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source>
@@ -608,8 +608,8 @@
608 <trans-unit id="2906587845957718064" datatype="html"> 608 <trans-unit id="2906587845957718064" datatype="html">
609 <source>Local</source> 609 <source>Local</source>
610 <target>المحلية</target> 610 <target>المحلية</target>
611 611
612 612
613 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> 613 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">126</context></context-group></trans-unit>
614 <trans-unit id="1670306451865226564" datatype="html"> 614 <trans-unit id="1670306451865226564" datatype="html">
615 <source>users</source> 615 <source>users</source>
@@ -738,8 +738,8 @@
738 <trans-unit id="4116024528500133384" datatype="html"> 738 <trans-unit id="4116024528500133384" datatype="html">
739 <source>My settings</source> 739 <source>My settings</source>
740 <target state="translated">إعداداتي</target> 740 <target state="translated">إعداداتي</target>
741 741
742 742
743 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">124</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> 743 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">124</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit>
744 <trans-unit id="1420294365005204590" datatype="html"> 744 <trans-unit id="1420294365005204590" datatype="html">
745 <source>These settings apply only to your session on this instance.</source> 745 <source>These settings apply only to your session on this instance.</source>
@@ -895,80 +895,80 @@
895 <trans-unit id="7773271640656013365" datatype="html"> 895 <trans-unit id="7773271640656013365" datatype="html">
896 <source>Interface:</source> 896 <source>Interface:</source>
897 <target state="translated">الواجهة:</target> 897 <target state="translated">الواجهة:</target>
898 898
899 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> 899 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit>
900 <trans-unit id="1674139713929545659" datatype="html"> 900 <trans-unit id="1674139713929545659" datatype="html">
901 <source>Videos:</source> 901 <source>Videos:</source>
902 <target state="translated">الفيديوهات:</target> 902 <target state="translated">الفيديوهات:</target>
903 903
904 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> 904 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit>
905 <trans-unit id="9156407045661257130" datatype="html"> 905 <trans-unit id="9156407045661257130" datatype="html">
906 <source>Sensitive:</source> 906 <source>Sensitive:</source>
907 <target state="translated">حساس:</target> 907 <target state="translated">حساس:</target>
908 908
909 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> 909 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit>
910 <trans-unit id="3430483831942247060" datatype="html"> 910 <trans-unit id="3430483831942247060" datatype="html">
911 <source>Help share videos</source> 911 <source>Help share videos</source>
912 <target>ساهِم في مشاركة الفيديوهات</target> 912 <target>ساهِم في مشاركة الفيديوهات</target>
913 913
914 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> 914 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit>
915 <trans-unit id="7005745151564974365" datatype="html"> 915 <trans-unit id="7005745151564974365" datatype="html">
916 <source>Keyboard shortcuts</source> 916 <source>Keyboard shortcuts</source>
917 <target>اختصارات لوحة المفاتيح</target> 917 <target>اختصارات لوحة المفاتيح</target>
918 918
919 919
920 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> 920 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit>
921 <trans-unit id="6307374733149824815" datatype="html"> 921 <trans-unit id="6307374733149824815" datatype="html">
922 <source>powered by PeerTube - CopyLeft 2015-2021</source> 922 <source>powered by PeerTube - CopyLeft 2015-2021</source>
923 <target state="translated">يعمل بـ بيرتيوب - جميع الحقوق متروكة 2015-2021</target> 923 <target state="translated">يعمل بـ بيرتيوب - جميع الحقوق متروكة 2015-2021</target>
924 924
925 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">151</context></context-group></trans-unit> 925 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">151</context></context-group></trans-unit>
926 <trans-unit id="7507948636555938109" datatype="html"> 926 <trans-unit id="7507948636555938109" datatype="html">
927 <source>Log out</source> 927 <source>Log out</source>
928 <target>خروج</target> 928 <target>خروج</target>
929 929
930 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">75</context></context-group></trans-unit> 930 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">75</context></context-group></trans-unit>
931 <trans-unit id="8893390761160292681" datatype="html"> 931 <trans-unit id="8893390761160292681" datatype="html">
932 <source>My account</source> 932 <source>My account</source>
933 <target state="translated">حسابي</target> 933 <target state="translated">حسابي</target>
934 934
935 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> 935 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit>
936 <trans-unit id="6371572688505952303" datatype="html"> 936 <trans-unit id="6371572688505952303" datatype="html">
937 <source>My library</source> 937 <source>My library</source>
938 <target state="translated">مكتبتي</target> 938 <target state="translated">مكتبتي</target>
939 939
940 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> 940 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit>
941 <trans-unit id="2308975396733519902" datatype="html"> 941 <trans-unit id="2308975396733519902" datatype="html">
942 <source>Create an account</source> 942 <source>Create an account</source>
943 <target>أنشئ حسابًا</target> 943 <target>أنشئ حسابًا</target>
944 944
945 945
946 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">105</context></context-group></trans-unit> 946 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">105</context></context-group></trans-unit>
947 <trans-unit id="2689878465089314112" datatype="html"> 947 <trans-unit id="2689878465089314112" datatype="html">
948 <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> 948 <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source>
949 <target state="translated">الواجهة: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> 949 <target state="translated">الواجهة: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target>
950 950
951 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">137</context></context-group></trans-unit> 951 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">137</context></context-group></trans-unit>
952 <trans-unit id="667372110624203230" datatype="html"> 952 <trans-unit id="667372110624203230" datatype="html">
953 <source>Import jobs concurrency</source> 953 <source>Import jobs concurrency</source>
954 <target state="translated">تزامن عمليات الاستيراد</target> 954 <target state="translated">تزامن عمليات الاستيراد</target>
955 955
956 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">255</context></context-group></trans-unit> 956 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">255</context></context-group></trans-unit>
957 <trans-unit id="2184839376696112704" datatype="html"> 957 <trans-unit id="2184839376696112704" datatype="html">
958 <source>allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart.</source> 958 <source>allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart.</source>
959 <target state="translated">السماح باستيراد متوازٍ لعدة فيديوهات. يحتاج الى إعادة تشغيل بيرتيوب ⚠️.</target> 959 <target state="translated">السماح باستيراد متوازٍ لعدة فيديوهات. يحتاج الى إعادة تشغيل بيرتيوب ⚠️.</target>
960 960
961 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">256</context></context-group></trans-unit> 961 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">256</context></context-group></trans-unit>
962 <trans-unit id="780513172839038392" datatype="html"> 962 <trans-unit id="780513172839038392" datatype="html">
963 <source>jobs in parallel</source> 963 <source>jobs in parallel</source>
964 <target state="translated">العمليات المتوازية</target> 964 <target state="translated">العمليات المتوازية</target>
965 965
966 966
967 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">260</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> 967 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">260</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit>
968 <trans-unit id="5997625369044180192" datatype="html"> 968 <trans-unit id="5997625369044180192" datatype="html">
969 <source>Allow import with HTTP URL (e.g. YouTube)</source> 969 <source>Allow import with HTTP URL (e.g. YouTube)</source>
970 <target state="translated">اسمح بالاستيراد عبر الروابط (مثل يوتيوب)</target> 970 <target state="translated">اسمح بالاستيراد عبر الروابط (مثل يوتيوب)</target>
971 971
972 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">269</context></context-group></trans-unit><trans-unit id="2095604754338363597" datatype="html"> 972 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">269</context></context-group></trans-unit><trans-unit id="2095604754338363597" datatype="html">
973 <source>⚠️ If enabled, we recommend to use <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://docs.joinpeertube.org/maintain-configuration?id=security&quot;>"/>a HTTP proxy<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> to prevent private URL access from your PeerTube server</source><target state="new">⚠️ If enabled, we recommend to use <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://docs.joinpeertube.org/maintain-configuration?id=security&quot;>"/>a HTTP proxy<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> to prevent private URL access from your PeerTube server</target> 973 <source>⚠️ If enabled, we recommend to use <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://docs.joinpeertube.org/maintain-configuration?id=security&quot;>"/>a HTTP proxy<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> to prevent private URL access from your PeerTube server</source><target state="new">⚠️ If enabled, we recommend to use <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://docs.joinpeertube.org/maintain-configuration?id=security&quot;>"/>a HTTP proxy<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> to prevent private URL access from your PeerTube server</target>
974 <context-group purpose="location"> 974 <context-group purpose="location">
@@ -985,59 +985,59 @@
985 <trans-unit id="7844706011418789951" datatype="html"> 985 <trans-unit id="7844706011418789951" datatype="html">
986 <source>Administration</source> 986 <source>Administration</source>
987 <target>الإدارة</target> 987 <target>الإدارة</target>
988 988
989 989
990 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">80</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> 990 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context><context context-type="linenumber">80</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit>
991 <trans-unit id="1726363342938046830" datatype="html"> 991 <trans-unit id="1726363342938046830" datatype="html">
992 <source>About</source> 992 <source>About</source>
993 <target>عن</target> 993 <target>عن</target>
994 994
995 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">129</context></context-group></trans-unit> 995 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">129</context></context-group></trans-unit>
996 <trans-unit id="7922989125096435449" datatype="html"> 996 <trans-unit id="7922989125096435449" datatype="html">
997 <source>Contact</source> 997 <source>Contact</source>
998 <target>اتصل</target> 998 <target>اتصل</target>
999 999
1000 1000
1001 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">141</context></context-group></trans-unit> 1001 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">141</context></context-group></trans-unit>
1002 <trans-unit id="7911416166208830577" datatype="html"> 1002 <trans-unit id="7911416166208830577" datatype="html">
1003 <source>Help</source> 1003 <source>Help</source>
1004 <target>مساعدة</target> 1004 <target>مساعدة</target>
1005 1005
1006 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">142</context></context-group></trans-unit> 1006 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">142</context></context-group></trans-unit>
1007 <trans-unit id="8378304669563824772" datatype="html"> 1007 <trans-unit id="8378304669563824772" datatype="html">
1008 <source>Get help using PeerTube</source> 1008 <source>Get help using PeerTube</source>
1009 <target>احصل على تعليمات استخدام بيرتيوب</target> 1009 <target>احصل على تعليمات استخدام بيرتيوب</target>
1010 1010
1011 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">142</context></context-group></trans-unit> 1011 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">142</context></context-group></trans-unit>
1012 <trans-unit id="2806917038528218276" datatype="html"> 1012 <trans-unit id="2806917038528218276" datatype="html">
1013 <source>FAQ</source> 1013 <source>FAQ</source>
1014 <target>الأسئلة الشائعة</target> 1014 <target>الأسئلة الشائعة</target>
1015 1015
1016 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">143</context></context-group></trans-unit> 1016 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">143</context></context-group></trans-unit>
1017 <trans-unit id="3620232640697554352" datatype="html"> 1017 <trans-unit id="3620232640697554352" datatype="html">
1018 <source>Frequently asked questions about PeerTube</source> 1018 <source>Frequently asked questions about PeerTube</source>
1019 <target>أسئلة متكررة حول بيرتيوب</target> 1019 <target>أسئلة متكررة حول بيرتيوب</target>
1020 1020
1021 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">143</context></context-group></trans-unit> 1021 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">143</context></context-group></trans-unit>
1022 <trans-unit id="4088311569349098646" datatype="html"> 1022 <trans-unit id="4088311569349098646" datatype="html">
1023 <source>Stats</source> 1023 <source>Stats</source>
1024 <target>الإحصائيات</target> 1024 <target>الإحصائيات</target>
1025 1025
1026 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">144</context></context-group></trans-unit> 1026 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">144</context></context-group></trans-unit>
1027 <trans-unit id="8942351587754185907" datatype="html"> 1027 <trans-unit id="8942351587754185907" datatype="html">
1028 <source>API</source> 1028 <source>API</source>
1029 <target>API</target> 1029 <target>API</target>
1030 1030
1031 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">145</context></context-group></trans-unit> 1031 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">145</context></context-group></trans-unit>
1032 <trans-unit id="3722967224215437913" datatype="html"> 1032 <trans-unit id="3722967224215437913" datatype="html">
1033 <source>API documentation</source> 1033 <source>API documentation</source>
1034 <target>وثائق API</target> 1034 <target>وثائق API</target>
1035 1035
1036 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">145</context></context-group></trans-unit> 1036 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">145</context></context-group></trans-unit>
1037 <trans-unit id="2497681082724639563" datatype="html"> 1037 <trans-unit id="2497681082724639563" datatype="html">
1038 <source>powered by PeerTube</source> 1038 <source>powered by PeerTube</source>
1039 <target>يعمل بـ بيرتيوب</target> 1039 <target>يعمل بـ بيرتيوب</target>
1040 1040
1041 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">152</context></context-group></trans-unit> 1041 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">152</context></context-group></trans-unit>
1042 <trans-unit id="403762424689874454" datatype="html"> 1042 <trans-unit id="403762424689874454" datatype="html">
1043 <source>View your notifications</source> 1043 <source>View your notifications</source>
@@ -1193,7 +1193,7 @@
1193 <trans-unit id="2971365540217107489" datatype="html"> 1193 <trans-unit id="2971365540217107489" datatype="html">
1194 <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source> 1194 <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source>
1195 <target state="translated">هذا الملف كبير. اتصل بالمدير حتى يزيد حد الرفع.</target> 1195 <target state="translated">هذا الملف كبير. اتصل بالمدير حتى يزيد حد الرفع.</target>
1196 1196
1197 <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> 1197 <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">61</context></context-group></trans-unit>
1198 <trans-unit id="2468689683507870964" datatype="html"> 1198 <trans-unit id="2468689683507870964" datatype="html">
1199 <source>In this instance's network</source> 1199 <source>In this instance's network</source>
@@ -1272,10 +1272,10 @@
1272 <trans-unit id="3616223838716839702" datatype="html"> 1272 <trans-unit id="3616223838716839702" datatype="html">
1273 <source>Ban this user</source> 1273 <source>Ban this user</source>
1274 <target>احظر هذا المستخدم</target> 1274 <target>احظر هذا المستخدم</target>
1275 1275
1276 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">43</context></context-group></trans-unit><trans-unit id="7724943224457051042" datatype="html"> 1276 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">43</context></context-group></trans-unit><trans-unit id="7724943224457051042" datatype="html">
1277 <source>Ban these users</source><target state="new">Ban these users</target> 1277 <source>Ban these users</source><target state="new">Ban these users</target>
1278 1278
1279 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> 1279 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">43</context></context-group></trans-unit>
1280 <trans-unit id="4526499522377118108" datatype="html"> 1280 <trans-unit id="4526499522377118108" datatype="html">
1281 <source>Block video "<x id="INTERPOLATION"/>"</source> 1281 <source>Block video "<x id="INTERPOLATION"/>"</source>
@@ -1343,7 +1343,7 @@
1343 <trans-unit id="2466846716878254816" datatype="html"> 1343 <trans-unit id="2466846716878254816" datatype="html">
1344 <source>Element <x id="PH" equiv-text="param"/> not found</source> 1344 <source>Element <x id="PH" equiv-text="param"/> not found</source>
1345 <target state="translated">لم يُعثر على العنصر <x id="PH" equiv-text="param"/></target> 1345 <target state="translated">لم يُعثر على العنصر <x id="PH" equiv-text="param"/></target>
1346 1346
1347 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-search/find-in-bulk.service.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> 1347 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-search/find-in-bulk.service.ts</context><context context-type="linenumber">85</context></context-group></trans-unit>
1348 <trans-unit id="935187492052582731" datatype="html"> 1348 <trans-unit id="935187492052582731" datatype="html">
1349 <source>Submit</source> 1349 <source>Submit</source>
@@ -1377,18 +1377,18 @@
1377 <trans-unit id="1394835141143590910" datatype="html"> 1377 <trans-unit id="1394835141143590910" datatype="html">
1378 <source>Start at</source> 1378 <source>Start at</source>
1379 <target>ابدأ من</target> 1379 <target>ابدأ من</target>
1380 1380
1381 1381
1382 1382
1383 1383
1384 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">139</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> 1384 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">139</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit>
1385 <trans-unit id="5964984095397511808" datatype="html"> 1385 <trans-unit id="5964984095397511808" datatype="html">
1386 <source>Stop at</source> 1386 <source>Stop at</source>
1387 <target>توقف عند</target> 1387 <target>توقف عند</target>
1388 1388
1389 1389
1390 1390
1391 1391
1392 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">60</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">170</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> 1392 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">60</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">170</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit>
1393 <trans-unit id="2816407313459209541" datatype="html"> 1393 <trans-unit id="2816407313459209541" datatype="html">
1394 <source>Your report will be sent to moderators of <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> and will be forwarded to the video origin (<x id="INTERPOLATION_1"/>) too<x id="CLOSE_TAG_NG_CONTAINER"/>. </source> 1394 <source>Your report will be sent to moderators of <x id="INTERPOLATION"/><x id="START_TAG_NG_CONTAINER"/> and will be forwarded to the video origin (<x id="INTERPOLATION_1"/>) too<x id="CLOSE_TAG_NG_CONTAINER"/>. </source>
@@ -1466,7 +1466,7 @@
1466 <trans-unit id="270726559962362501" datatype="html"> 1466 <trans-unit id="270726559962362501" datatype="html">
1467 <source>Renew token</source> 1467 <source>Renew token</source>
1468 <target state="translated">جدِّد الرمز</target> 1468 <target state="translated">جدِّد الرمز</target>
1469 1469
1470 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> 1470 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit>
1471 <trans-unit id="9031514421077169181" datatype="html"> 1471 <trans-unit id="9031514421077169181" datatype="html">
1472 <source>Video redundancies</source> 1472 <source>Video redundancies</source>
@@ -1725,11 +1725,11 @@
1725 <trans-unit id="5248717555542428023" datatype="html"> 1725 <trans-unit id="5248717555542428023" datatype="html">
1726 <source>Username</source> 1726 <source>Username</source>
1727 <target>اسم المستخدم</target> 1727 <target>اسم المستخدم</target>
1728 1728
1729 1729
1730 1730
1731 1731
1732 1732
1733 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> 1733 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit>
1734 <trans-unit id="5428411040014095392" datatype="html"> 1734 <trans-unit id="5428411040014095392" datatype="html">
1735 <source>e.g. jane_doe</source> 1735 <source>e.g. jane_doe</source>
@@ -1746,14 +1746,14 @@
1746 <trans-unit id="4768749765465246664" datatype="html"> 1746 <trans-unit id="4768749765465246664" datatype="html">
1747 <source>Email</source> 1747 <source>Email</source>
1748 <target>البريد الإلكتروني</target> 1748 <target>البريد الإلكتروني</target>
1749 1749
1750 1750
1751 1751
1752 1752
1753 1753
1754 1754
1755 1755
1756 1756
1757 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">118</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">115</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> 1757 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">118</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">115</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit>
1758 <trans-unit id="6475711663580561164" datatype="html"> 1758 <trans-unit id="6475711663580561164" datatype="html">
1759 <source>mail@example.com</source> 1759 <source>mail@example.com</source>
@@ -1782,9 +1782,9 @@
1782 <trans-unit id="4145496584631696119" datatype="html"> 1782 <trans-unit id="4145496584631696119" datatype="html">
1783 <source>Role</source> 1783 <source>Role</source>
1784 <target state="translated">الدور</target> 1784 <target state="translated">الدور</target>
1785 1785
1786 1786
1787 1787
1788 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">120</context></context-group></trans-unit> 1788 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">120</context></context-group></trans-unit>
1789 <trans-unit id="7046347992315328430" datatype="html"> 1789 <trans-unit id="7046347992315328430" datatype="html">
1790 <source>Transcoding is enabled. The video quota only takes into account <x id="START_TAG_STRONG"/>original<x id="CLOSE_TAG_STRONG"/> video size. <x id="LINE_BREAK"/> At most, this user could upload ~ <x id="INTERPOLATION"/>. </source> 1790 <source>Transcoding is enabled. The video quota only takes into account <x id="START_TAG_STRONG"/>original<x id="CLOSE_TAG_STRONG"/> video size. <x id="LINE_BREAK"/> At most, this user could upload ~ <x id="INTERPOLATION"/>. </source>
@@ -1802,9 +1802,9 @@
1802 <trans-unit id="2622255144026150901" datatype="html"> 1802 <trans-unit id="2622255144026150901" datatype="html">
1803 <source>Auth plugin</source> 1803 <source>Auth plugin</source>
1804 <target state="translated">إضافة استيثاق</target> 1804 <target state="translated">إضافة استيثاق</target>
1805 1805
1806 1806
1807 1807
1808 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> 1808 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit>
1809 <trans-unit id="588099657508661970" datatype="html"> 1809 <trans-unit id="588099657508661970" datatype="html">
1810 <source>None (local authentication)</source> 1810 <source>None (local authentication)</source>
@@ -1846,14 +1846,14 @@
1846 <trans-unit id="8461842260159597706" datatype="html"> 1846 <trans-unit id="8461842260159597706" datatype="html">
1847 <source>Show</source> 1847 <source>Show</source>
1848 <target>أظهر</target> 1848 <target>أظهر</target>
1849 1849
1850 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-password.component.html</context><context context-type="linenumber">10</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> 1850 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-password.component.html</context><context context-type="linenumber">10</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
1851 <trans-unit id="8461609631969932886" datatype="html"> 1851 <trans-unit id="8461609631969932886" datatype="html">
1852 <source>Hide</source> 1852 <source>Hide</source>
1853 <target>اخفِ</target> 1853 <target>اخفِ</target>
1854 1854
1855 1855
1856 1856
1857 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">119</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-password.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> 1857 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">119</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-password.component.html</context><context context-type="linenumber">11</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/input-toggle-hidden.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">16</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit>
1858 <trans-unit id="8363291180171434623" datatype="html"> 1858 <trans-unit id="8363291180171434623" datatype="html">
1859 <source>Table parameters</source> 1859 <source>Table parameters</source>
@@ -1873,19 +1873,19 @@
1873 <trans-unit id="7049348886126005391" datatype="html"> 1873 <trans-unit id="7049348886126005391" datatype="html">
1874 <source>Batch actions</source> 1874 <source>Batch actions</source>
1875 <target>الإجراءات المجمعة</target> 1875 <target>الإجراءات المجمعة</target>
1876 1876
1877 1877
1878 1878
1879 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> 1879 <context-group purpose="location"><context context-type="sourcefile">src/app/+ent-list/video-comment-list.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit>
1880 <trans-unit id="2348557406282409966" datatype="html"> 1880 <trans-unit id="2348557406282409966" datatype="html">
1881 <source>Open account in a new tab</source> 1881 <source>Open account in a new tab</source>
1882 <target>افتح حساب في لسان جديد</target> 1882 <target>افتح حساب في لسان جديد</target>
1883 1883
1884 1884
1885 1885
1886 1886
1887 1887
1888 1888
1889 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">93</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> 1889 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">93</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit>
1890 <trans-unit id="3111569165173971676" datatype="html"> 1890 <trans-unit id="3111569165173971676" datatype="html">
1891 <source>Deleted account</source> 1891 <source>Deleted account</source>
@@ -1920,7 +1920,7 @@
1920 <trans-unit id="6124612368324200166" datatype="html"> 1920 <trans-unit id="6124612368324200166" datatype="html">
1921 <source>Banned users</source> 1921 <source>Banned users</source>
1922 <target state="translated">المستخدمون المحظورون</target> 1922 <target state="translated">المستخدمون المحظورون</target>
1923 1923
1924 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">44</context></context-group></trans-unit> 1924 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">44</context></context-group></trans-unit>
1925 <trans-unit id="5642198289374753866" datatype="html"> 1925 <trans-unit id="5642198289374753866" datatype="html">
1926 <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> users</source> 1926 <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> users</source>
@@ -1937,24 +1937,24 @@
1937 <trans-unit id="4555457172864212828" datatype="html"> 1937 <trans-unit id="4555457172864212828" datatype="html">
1938 <source>Users</source> 1938 <source>Users</source>
1939 <target state="translated">مستخدمون</target> 1939 <target state="translated">مستخدمون</target>
1940 1940
1941 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> 1941 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit>
1942 <trans-unit id="746099155736913817" datatype="html"> 1942 <trans-unit id="746099155736913817" datatype="html">
1943 <source>Video blocks</source> 1943 <source>Video blocks</source>
1944 <target state="translated">حُجبات الفيديو</target> 1944 <target state="translated">حُجبات الفيديو</target>
1945 1945
1946 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">101</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> 1946 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">101</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit>
1947 <trans-unit id="7815838401315213887" datatype="html"> 1947 <trans-unit id="7815838401315213887" datatype="html">
1948 <source>Muted accounts</source> 1948 <source>Muted accounts</source>
1949 <target>حسابات مكتومة</target> 1949 <target>حسابات مكتومة</target>
1950 1950
1951 1951
1952 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">96</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> 1952 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">96</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit>
1953 <trans-unit id="5668793810321242853" datatype="html"> 1953 <trans-unit id="5668793810321242853" datatype="html">
1954 <source>Muted servers</source> 1954 <source>Muted servers</source>
1955 <target>خوادم مكتومة</target> 1955 <target>خوادم مكتومة</target>
1956 1956
1957 1957
1958 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">125</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> 1958 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">125</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit>
1959 <trans-unit id="7574091010118901399" datatype="html"> 1959 <trans-unit id="7574091010118901399" datatype="html">
1960 <source>Sensitive</source> 1960 <source>Sensitive</source>
@@ -1970,20 +1970,20 @@
1970 <trans-unit id="7692347838587821095" datatype="html"> 1970 <trans-unit id="7692347838587821095" datatype="html">
1971 <source>Date <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> 1971 <source>Date <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source>
1972 <target state="translated">تاريخ <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> 1972 <target state="translated">تاريخ <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target>
1973 1973
1974 1974
1975 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> 1975 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit>
1976 <trans-unit id="1451763834047485033" datatype="html"> 1976 <trans-unit id="1451763834047485033" datatype="html">
1977 <source>Select this row</source> 1977 <source>Select this row</source>
1978 <target state="translated">حدد هذا الصف</target> 1978 <target state="translated">حدد هذا الصف</target>
1979 1979
1980 1980
1981 1981
1982 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">79</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit> 1982 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">79</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit>
1983 <trans-unit id="4043531994869127329" datatype="html"> 1983 <trans-unit id="4043531994869127329" datatype="html">
1984 <source>See full comment</source> 1984 <source>See full comment</source>
1985 <target state="new">See full comment</target> 1985 <target state="new">See full comment</target>
1986 1986
1987 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> 1987 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit>
1988 <trans-unit id="4619188387782427495" datatype="html"> 1988 <trans-unit id="4619188387782427495" datatype="html">
1989 <source>More information</source> 1989 <source>More information</source>
@@ -1998,17 +1998,17 @@
1998 <trans-unit id="1465291804668949243" datatype="html"> 1998 <trans-unit id="1465291804668949243" datatype="html">
1999 <source>NSFW</source> 1999 <source>NSFW</source>
2000 <target state="translated">محتوى حساس</target> 2000 <target state="translated">محتوى حساس</target>
2001 2001
2002 2002
2003 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">77</context></context-group></trans-unit> 2003 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">77</context></context-group></trans-unit>
2004 <trans-unit id="3193976279273491157" datatype="html"> 2004 <trans-unit id="3193976279273491157" datatype="html">
2005 <source>Actions</source> 2005 <source>Actions</source>
2006 <target>الإجراءات</target> 2006 <target>الإجراءات</target>
2007 2007
2008 2008
2009 2009
2010 2010
2011 2011
2012 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">62</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> 2012 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">62</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit>
2013 <trans-unit id="8390803680962035202" datatype="html"> 2013 <trans-unit id="8390803680962035202" datatype="html">
2014 <source>Follower</source> 2014 <source>Follower</source>
@@ -2021,17 +2021,17 @@
2021 <trans-unit id="4691552465058437520" datatype="html"> 2021 <trans-unit id="4691552465058437520" datatype="html">
2022 <source>Commented video</source> 2022 <source>Commented video</source>
2023 <target state="translated">فيديو معلق عليه</target> 2023 <target state="translated">فيديو معلق عليه</target>
2024 2024
2025 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> 2025 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit>
2026 <trans-unit id="7266085473379376028" datatype="html"> 2026 <trans-unit id="7266085473379376028" datatype="html">
2027 <source>No comments found matching current filters.</source> 2027 <source>No comments found matching current filters.</source>
2028 <target state="translated">لم يُعثر على أي فيديو يوافق المرشح المحدد.</target> 2028 <target state="translated">لم يُعثر على أي فيديو يوافق المرشح المحدد.</target>
2029 2029
2030 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit> 2030 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">104</context></context-group></trans-unit>
2031 <trans-unit id="2398388496754671928" datatype="html"> 2031 <trans-unit id="2398388496754671928" datatype="html">
2032 <source>No comments found.</source> 2032 <source>No comments found.</source>
2033 <target state="translated">لم يُعثر على تعليقات.</target> 2033 <target state="translated">لم يُعثر على تعليقات.</target>
2034 2034
2035 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">105</context></context-group></trans-unit> 2035 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">105</context></context-group></trans-unit>
2036 <trans-unit id="4604870995665811499" datatype="html"> 2036 <trans-unit id="4604870995665811499" datatype="html">
2037 <source>Local comments</source> 2037 <source>Local comments</source>
@@ -2111,8 +2111,8 @@
2111 <trans-unit id="1868606282505332204" datatype="html"> 2111 <trans-unit id="1868606282505332204" datatype="html">
2112 <source>Reports</source> 2112 <source>Reports</source>
2113 <target state="translated">البلاغات</target> 2113 <target state="translated">البلاغات</target>
2114 2114
2115 2115
2116 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">93</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/abuse-list/abuse-list.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> 2116 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">93</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/abuse-list/abuse-list.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-abuses/my-account-abuses-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit>
2117 <trans-unit id="7075448128175750939" datatype="html"> 2117 <trans-unit id="7075448128175750939" datatype="html">
2118 <source>Moderation comment</source> 2118 <source>Moderation comment</source>
@@ -2138,11 +2138,11 @@
2138 <trans-unit id="6549265851868599441" datatype="html"> 2138 <trans-unit id="6549265851868599441" datatype="html">
2139 <source>Video</source> 2139 <source>Video</source>
2140 <target>الفيديو</target> 2140 <target>الفيديو</target>
2141 2141
2142 2142
2143 2143
2144 2144
2145 2145
2146 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> 2146 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-ownership.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit>
2147 <trans-unit id="1359961255805685312" datatype="html"> 2147 <trans-unit id="1359961255805685312" datatype="html">
2148 <source>This video has been reported multiple times.</source> 2148 <source>This video has been reported multiple times.</source>
@@ -2162,8 +2162,8 @@
2162 <trans-unit id="6381490568322624964" datatype="html"> 2162 <trans-unit id="6381490568322624964" datatype="html">
2163 <source>Deleted</source> 2163 <source>Deleted</source>
2164 <target>حذف</target> 2164 <target>حذف</target>
2165 2165
2166 2166
2167 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> 2167 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit>
2168 <trans-unit id="1443698606045744844" datatype="html"> 2168 <trans-unit id="1443698606045744844" datatype="html">
2169 <source>Video was deleted</source> 2169 <source>Video was deleted</source>
@@ -2188,12 +2188,12 @@
2188 <trans-unit id="1258618443362430782" datatype="html"> 2188 <trans-unit id="1258618443362430782" datatype="html">
2189 <source> <x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}" xid="1879828604800763221"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;ml-1 glyphicon glyphicon-flag&quot;>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span>"/></source> 2189 <source> <x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}" xid="1879828604800763221"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;ml-1 glyphicon glyphicon-flag&quot;>"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span>"/></source>
2190 <target state="translated"><x id="ICU"/><x id="START_TAG_SPAN"/><x id="CLOSE_TAG_SPAN"/></target> 2190 <target state="translated"><x id="ICU"/><x id="START_TAG_SPAN"/><x id="CLOSE_TAG_SPAN"/></target>
2191 2191
2192 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> 2192 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit>
2193 <trans-unit id="6540177673229220400" datatype="html"> 2193 <trans-unit id="6540177673229220400" datatype="html">
2194 <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> 2194 <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source>
2195 <target state="translated">{VAR_PLURAL, plural, =1 {بلاغ} other {<x id="INTERPOLATION"/> بلاغات}}</target> 2195 <target state="translated">{VAR_PLURAL, plural, =1 {بلاغ} other {<x id="INTERPOLATION"/> بلاغات}}</target>
2196 2196
2197 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> 2197 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit>
2198 <trans-unit id="7239750919884229270" datatype="html"> 2198 <trans-unit id="7239750919884229270" datatype="html">
2199 <source>Updated</source> 2199 <source>Updated</source>
@@ -2249,10 +2249,10 @@
2249 <trans-unit id="2381859602529023966" datatype="html"> 2249 <trans-unit id="2381859602529023966" datatype="html">
2250 <source>Instance</source> 2250 <source>Instance</source>
2251 <target>مثيل خادم</target> 2251 <target>مثيل خادم</target>
2252 2252
2253 2253
2254 2254
2255 2255
2256 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">5</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">217</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> 2256 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">5</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">217</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit>
2257 <trans-unit id="1300704815627663264" datatype="html"> 2257 <trans-unit id="1300704815627663264" datatype="html">
2258 <source>Muted at <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> 2258 <source>Muted at <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source>
@@ -2297,9 +2297,9 @@
2297 <trans-unit id="4086606389696938932" datatype="html"> 2297 <trans-unit id="4086606389696938932" datatype="html">
2298 <source>Account</source> 2298 <source>Account</source>
2299 <target>الحساب</target> 2299 <target>الحساب</target>
2300 2300
2301 2301
2302 2302
2303 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> 2303 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit>
2304 <trans-unit id="8564972645418093229" datatype="html"> 2304 <trans-unit id="8564972645418093229" datatype="html">
2305 <source>No account found matching current filters.</source> 2305 <source>No account found matching current filters.</source>
@@ -2316,17 +2316,17 @@
2316 <trans-unit id="2338185419645468935" datatype="html"> 2316 <trans-unit id="2338185419645468935" datatype="html">
2317 <source>List installed plugins</source> 2317 <source>List installed plugins</source>
2318 <target state="translated">اسرد الإضافات المثبتة</target> 2318 <target state="translated">اسرد الإضافات المثبتة</target>
2319 2319
2320 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> 2320 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">26</context></context-group></trans-unit>
2321 <trans-unit id="8897412584195581488" datatype="html"> 2321 <trans-unit id="8897412584195581488" datatype="html">
2322 <source>Search plugins</source> 2322 <source>Search plugins</source>
2323 <target state="translated">ابحث في الإضافات</target> 2323 <target state="translated">ابحث في الإضافات</target>
2324 2324
2325 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> 2325 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">35</context></context-group></trans-unit>
2326 <trans-unit id="4994333937800672218" datatype="html"> 2326 <trans-unit id="4994333937800672218" datatype="html">
2327 <source>Show plugin</source> 2327 <source>Show plugin</source>
2328 <target state="translated">اعرض الاضافة</target> 2328 <target state="translated">اعرض الاضافة</target>
2329 2329
2330 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">44</context></context-group></trans-unit> 2330 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">44</context></context-group></trans-unit>
2331 <trans-unit id="602667807232759122" datatype="html"> 2331 <trans-unit id="602667807232759122" datatype="html">
2332 <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> 2332 <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source>
@@ -2342,7 +2342,7 @@
2342 <trans-unit id="4894835484717268716" datatype="html"> 2342 <trans-unit id="4894835484717268716" datatype="html">
2343 <source>Installed</source> 2343 <source>Installed</source>
2344 <target>المثبتة</target> 2344 <target>المثبتة</target>
2345 2345
2346 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-navigation.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit><trans-unit id="6185935497147252048" datatype="html"> 2346 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-navigation.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit><trans-unit id="6185935497147252048" datatype="html">
2347 <source>This plugin is developed by Framasoft</source><target state="new">This plugin is developed by Framasoft</target> 2347 <source>This plugin is developed by Framasoft</source><target state="new">This plugin is developed by Framasoft</target>
2348 <context-group purpose="location"> 2348 <context-group purpose="location">
@@ -2359,9 +2359,9 @@
2359 <trans-unit id="7002061007877950198" datatype="html"> 2359 <trans-unit id="7002061007877950198" datatype="html">
2360 <source>Plugin homepage (new window)</source> 2360 <source>Plugin homepage (new window)</source>
2361 <target>الصفحة الرئيسية للمكون الإضافي (نافذة جديدة)</target> 2361 <target>الصفحة الرئيسية للمكون الإضافي (نافذة جديدة)</target>
2362 2362
2363 2363
2364 2364
2365 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-card.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-card.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit><trans-unit id="3981257963098530375" datatype="html"> 2365 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-card.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-card.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit><trans-unit id="3981257963098530375" datatype="html">
2366 <source>Navigate between installed plugins and themes or find new ones</source><target state="new">Navigate between installed plugins and themes or find new ones</target> 2366 <source>Navigate between installed plugins and themes or find new ones</source><target state="new">Navigate between installed plugins and themes or find new ones</target>
2367 <context-group purpose="location"> 2367 <context-group purpose="location">
@@ -2395,12 +2395,12 @@
2395 <trans-unit id="8854094932942190741" datatype="html"> 2395 <trans-unit id="8854094932942190741" datatype="html">
2396 <source>Search...</source> 2396 <source>Search...</source>
2397 <target>البحث…</target> 2397 <target>البحث…</target>
2398 2398
2399 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> 2399 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit>
2400 <trans-unit id="2006841089844688970" datatype="html"> 2400 <trans-unit id="2006841089844688970" datatype="html">
2401 <source>To load your new installed plugins or themes, refresh the page.</source> 2401 <source>To load your new installed plugins or themes, refresh the page.</source>
2402 <target>لتحميل الإضافات أو السمات المثبتة حديثًا ، قم بتحديث الصفحة.</target> 2402 <target>لتحميل الإضافات أو السمات المثبتة حديثًا ، قم بتحديث الصفحة.</target>
2403 2403
2404 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit><trans-unit id="7577430199525157466" datatype="html"> 2404 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit><trans-unit id="7577430199525157466" datatype="html">
2405 <source>Popular plugins</source><target state="new">Popular plugins</target> 2405 <source>Popular plugins</source><target state="new">Popular plugins</target>
2406 <context-group purpose="location"> 2406 <context-group purpose="location">
@@ -2414,24 +2414,24 @@
2414 <context context-type="linenumber">11</context> 2414 <context context-type="linenumber">11</context>
2415 </context-group> 2415 </context-group>
2416 </trans-unit> 2416 </trans-unit>
2417 2417
2418 <trans-unit id="1780056719120519633" datatype="html"> 2418 <trans-unit id="1780056719120519633" datatype="html">
2419 <source> <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}" xid="3148804384763272950"/> for "<x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" </source> 2419 <source> <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}" xid="3148804384763272950"/> for "<x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" </source>
2420 <target state="new"> <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}"/> for "<x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" </target> 2420 <target state="new"> <x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}"/> for "<x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" </target>
2421 2421
2422 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> 2422 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit>
2423 <trans-unit id="3148804384763272950" datatype="html"> 2423 <trans-unit id="3148804384763272950" datatype="html">
2424 <source>{VAR_PLURAL, plural, =1 {result} other {results} }</source> 2424 <source>{VAR_PLURAL, plural, =1 {result} other {results} }</source>
2425 <target>{VAR_PLURAL , plural, =1 {نتيجة} other {نتائج} }</target> 2425 <target>{VAR_PLURAL , plural, =1 {نتيجة} other {نتائج} }</target>
2426 2426
2427 2427
2428 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> 2428 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit>
2429 <trans-unit id="2722270956157821098" datatype="html"> 2429 <trans-unit id="2722270956157821098" datatype="html">
2430 <source>No results.</source> 2430 <source>No results.</source>
2431 <target>لا نتائج.</target> 2431 <target>لا نتائج.</target>
2432 2432
2433 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> 2433 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit>
2434 2434
2435 <trans-unit id="2601639465696257054" datatype="html"> 2435 <trans-unit id="2601639465696257054" datatype="html">
2436 <source>This <x id="INTERPOLATION"/> does not have settings. </source> 2436 <source>This <x id="INTERPOLATION"/> does not have settings. </source>
2437 <target>لا يملك<x id="INTERPOLATION"/> اعدادات </target> 2437 <target>لا يملك<x id="INTERPOLATION"/> اعدادات </target>
@@ -2475,7 +2475,7 @@
2475 <trans-unit id="7427986413651551775" datatype="html"> 2475 <trans-unit id="7427986413651551775" datatype="html">
2476 <source>Video comments</source> 2476 <source>Video comments</source>
2477 <target state="new">Video comments</target> 2477 <target state="new">Video comments</target>
2478 2478
2479 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">109</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">84</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> 2479 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">109</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">84</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit>
2480 <trans-unit id="289582790179344391" datatype="html"> 2480 <trans-unit id="289582790179344391" datatype="html">
2481 <source>This view also shows comments from muted accounts.</source> 2481 <source>This view also shows comments from muted accounts.</source>
@@ -2493,9 +2493,9 @@
2493 <trans-unit id="6110554376228744887" datatype="html"> 2493 <trans-unit id="6110554376228744887" datatype="html">
2494 <source>Select all rows</source> 2494 <source>Select all rows</source>
2495 <target state="translated">حدد كل الأسطر</target> 2495 <target state="translated">حدد كل الأسطر</target>
2496 2496
2497 2497
2498 2498
2499 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> 2499 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit>
2500 <trans-unit id="2719284837486030903" datatype="html"> 2500 <trans-unit id="2719284837486030903" datatype="html">
2501 <source>Job type</source> 2501 <source>Job type</source>
@@ -2576,8 +2576,8 @@
2576 <trans-unit id="1102717806459547726" datatype="html"> 2576 <trans-unit id="1102717806459547726" datatype="html">
2577 <source>Refresh</source> 2577 <source>Refresh</source>
2578 <target>تحديث</target> 2578 <target>تحديث</target>
2579 2579
2580 2580
2581 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> 2581 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit>
2582 <trans-unit id="6052766076365105714" datatype="html"> 2582 <trans-unit id="6052766076365105714" datatype="html">
2583 <source>now</source> 2583 <source>now</source>
@@ -2613,7 +2613,7 @@
2613 <trans-unit id="3008420115644088420" datatype="html"> 2613 <trans-unit id="3008420115644088420" datatype="html">
2614 <source>Configuration</source> 2614 <source>Configuration</source>
2615 <target>الضبط</target> 2615 <target>الضبط</target>
2616 2616
2617 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> 2617 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit>
2618 <trans-unit id="7396175500300709096" datatype="html"> 2618 <trans-unit id="7396175500300709096" datatype="html">
2619 <source>INSTANCE</source> 2619 <source>INSTANCE</source>
@@ -2623,9 +2623,9 @@
2623 <trans-unit id="8953033926734869941" datatype="html"> 2623 <trans-unit id="8953033926734869941" datatype="html">
2624 <source>Name</source> 2624 <source>Name</source>
2625 <target>الاسم</target> 2625 <target>الاسم</target>
2626 2626
2627 2627
2628 2628
2629 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> 2629 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit>
2630 <trans-unit id="2973928033612762715" datatype="html"> 2630 <trans-unit id="2973928033612762715" datatype="html">
2631 <source>Short description</source> 2631 <source>Short description</source>
@@ -2635,14 +2635,14 @@
2635 <trans-unit id="4902817035128594900" datatype="html"> 2635 <trans-unit id="4902817035128594900" datatype="html">
2636 <source>Description</source> 2636 <source>Description</source>
2637 <target>الوصف</target> 2637 <target>الوصف</target>
2638 2638
2639 2639
2640 2640
2641 2641
2642 2642
2643 2643
2644 2644
2645 2645
2646 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">113</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> 2646 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">113</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit>
2647 <trans-unit id="7794655859478571096" datatype="html"> 2647 <trans-unit id="7794655859478571096" datatype="html">
2648 <source>Main instance categories</source> 2648 <source>Main instance categories</source>
@@ -2688,29 +2688,29 @@
2688 <trans-unit id="7350483582490037954" datatype="html"> 2688 <trans-unit id="7350483582490037954" datatype="html">
2689 <source>With <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="&lt;strong>"/>Hide<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="&lt;/strong>"/> or <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="&lt;strong>"/>Blur thumbnails<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="&lt;/strong>"/>, a confirmation will be requested to watch the video. </source> 2689 <source>With <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="&lt;strong>"/>Hide<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="&lt;/strong>"/> or <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="&lt;strong>"/>Blur thumbnails<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="&lt;/strong>"/>, a confirmation will be requested to watch the video. </source>
2690 <target state="translated">الفيديوهات <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="&lt;strong>"/>المخفية<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="&lt;/strong>"/> أو <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="&lt;strong>"/>ذات الصور المطموسة<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="&lt;/strong>"/> سيطلب تأكيدًا لمشاهدتها. </target> 2690 <target state="translated">الفيديوهات <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="&lt;strong>"/>المخفية<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="&lt;/strong>"/> أو <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="&lt;strong>"/>ذات الصور المطموسة<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="&lt;/strong>"/> سيطلب تأكيدًا لمشاهدتها. </target>
2691 2691
2692 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">110</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> 2692 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">110</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit>
2693 <trans-unit id="2544569632476723854" datatype="html"> 2693 <trans-unit id="2544569632476723854" datatype="html">
2694 <source>Terms</source> 2694 <source>Terms</source>
2695 <target>الشروط</target> 2695 <target>الشروط</target>
2696 2696
2697 2697
2698 2698
2699 2699
2700 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">169</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">129</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> 2700 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">169</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">129</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">18</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit>
2701 <trans-unit id="4127416011499804250" datatype="html"> 2701 <trans-unit id="4127416011499804250" datatype="html">
2702 <source>Code of conduct</source> 2702 <source>Code of conduct</source>
2703 <target>قانون السلوك</target> 2703 <target>قانون السلوك</target>
2704 2704
2705 2705
2706 2706
2707 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">155</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">140</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> 2707 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">155</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">140</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit>
2708 <trans-unit id="3076079242537393946" datatype="html"> 2708 <trans-unit id="3076079242537393946" datatype="html">
2709 <source>Moderation information</source> 2709 <source>Moderation information</source>
2710 <target>معلومات الإشراف</target> 2710 <target>معلومات الإشراف</target>
2711 2711
2712 2712
2713 2713
2714 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">141</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> 2714 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">141</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-instance-information.component.html</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-about-accordion.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit>
2715 <trans-unit id="5056489767203690328" datatype="html"> 2715 <trans-unit id="5056489767203690328" datatype="html">
2716 <source>Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc</source> 2716 <source>Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc</source>
@@ -2854,109 +2854,109 @@
2854 <trans-unit id="4809162812315301010" datatype="html"> 2854 <trans-unit id="4809162812315301010" datatype="html">
2855 <source>BROADCAST MESSAGE</source> 2855 <source>BROADCAST MESSAGE</source>
2856 <target>رسالة إذاعية</target> 2856 <target>رسالة إذاعية</target>
2857 2857
2858 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">94</context></context-group></trans-unit> 2858 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">94</context></context-group></trans-unit>
2859 <trans-unit id="7097094470713539753" datatype="html"> 2859 <trans-unit id="7097094470713539753" datatype="html">
2860 <source>Display a message on your instance</source> 2860 <source>Display a message on your instance</source>
2861 <target state="translated">اعرض رسالة على موقعك</target> 2861 <target state="translated">اعرض رسالة على موقعك</target>
2862 2862
2863 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit> 2863 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit>
2864 <trans-unit id="4686199497574248459" datatype="html"> 2864 <trans-unit id="4686199497574248459" datatype="html">
2865 <source>Enable broadcast message</source> 2865 <source>Enable broadcast message</source>
2866 <target>تمكين رسالة البث</target> 2866 <target>تمكين رسالة البث</target>
2867 2867
2868 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> 2868 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit>
2869 <trans-unit id="9192050065623241777" datatype="html"> 2869 <trans-unit id="9192050065623241777" datatype="html">
2870 <source>Allow users to dismiss the broadcast message</source> 2870 <source>Allow users to dismiss the broadcast message</source>
2871 <target>السماح للمستخدمين برفض رسالة البث</target> 2871 <target>السماح للمستخدمين برفض رسالة البث</target>
2872 2872
2873 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">114</context></context-group></trans-unit> 2873 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">114</context></context-group></trans-unit>
2874 <trans-unit id="6582848618760132901" datatype="html"> 2874 <trans-unit id="6582848618760132901" datatype="html">
2875 <source>Broadcast message level</source> 2875 <source>Broadcast message level</source>
2876 <target>مستوى رسالة البث</target> 2876 <target>مستوى رسالة البث</target>
2877 2877
2878 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">119</context></context-group></trans-unit> 2878 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">119</context></context-group></trans-unit>
2879 <trans-unit id="8066608938393600549" datatype="html"> 2879 <trans-unit id="8066608938393600549" datatype="html">
2880 <source>Message</source> 2880 <source>Message</source>
2881 <target>رسالة</target> 2881 <target>رسالة</target>
2882 2882
2883 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">133</context></context-group></trans-unit> 2883 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">133</context></context-group></trans-unit>
2884 <trans-unit id="5631159720194597622" datatype="html"> 2884 <trans-unit id="5631159720194597622" datatype="html">
2885 <source>NEW USERS</source> 2885 <source>NEW USERS</source>
2886 <target>المستخدمون الجدد</target> 2886 <target>المستخدمون الجدد</target>
2887 2887
2888 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">150</context></context-group></trans-unit> 2888 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">150</context></context-group></trans-unit>
2889 <trans-unit id="2669509104300979449" datatype="html"> 2889 <trans-unit id="2669509104300979449" datatype="html">
2890 <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="&lt;a routerLink=&quot;/admin/users&quot;>"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a> "/> to set their quota individually. </source> 2890 <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="&lt;a routerLink=&quot;/admin/users&quot;>"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a> "/> to set their quota individually. </source>
2891 <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="&lt;a routerLink=&quot;/admin/users&quot;>"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a> "/> to set their quota individually. </target> 2891 <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="&lt;a routerLink=&quot;/admin/users&quot;>"/>users<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a> "/> to set their quota individually. </target>
2892 2892
2893 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">151</context></context-group></trans-unit> 2893 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">151</context></context-group></trans-unit>
2894 <trans-unit id="2092224316392295720" datatype="html"> 2894 <trans-unit id="2092224316392295720" datatype="html">
2895 <source>⚠️ This functionality requires a lot of attention and extra moderation.</source> 2895 <source>⚠️ This functionality requires a lot of attention and extra moderation.</source>
2896 <target state="translated">⚠️ تتطلب هذه الوظيفة الكثير من الاهتمام والإشراف الإضافي.</target> 2896 <target state="translated">⚠️ تتطلب هذه الوظيفة الكثير من الاهتمام والإشراف الإضافي.</target>
2897 2897
2898 2898
2899 2899
2900 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">165</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">463</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">476</context></context-group></trans-unit> 2900 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">165</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">463</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">476</context></context-group></trans-unit>
2901 <trans-unit id="4497115134891299867" datatype="html"> 2901 <trans-unit id="4497115134891299867" datatype="html">
2902 <source>Signup requires email verification</source> 2902 <source>Signup requires email verification</source>
2903 <target>يتطلب التسجيل رسالة تأكيد</target> 2903 <target>يتطلب التسجيل رسالة تأكيد</target>
2904 2904
2905 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">173</context></context-group></trans-unit> 2905 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">173</context></context-group></trans-unit>
2906 <trans-unit id="8133107840061687919" datatype="html"> 2906 <trans-unit id="8133107840061687919" datatype="html">
2907 <source>Signup limit</source> 2907 <source>Signup limit</source>
2908 <target>حد التسجيل</target> 2908 <target>حد التسجيل</target>
2909 2909
2910 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> 2910 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit>
2911 <trans-unit id="8497774075394617130" datatype="html"> 2911 <trans-unit id="8497774075394617130" datatype="html">
2912 <source>{VAR_PLURAL, plural, =1 {user} other {users}}</source> 2912 <source>{VAR_PLURAL, plural, =1 {user} other {users}}</source>
2913 <target state="new">{VAR_PLURAL, plural, =1 {user} other {users}}</target> 2913 <target state="new">{VAR_PLURAL, plural, =1 {user} other {users}}</target>
2914 2914
2915 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">184</context></context-group></trans-unit> 2915 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">184</context></context-group></trans-unit>
2916 <trans-unit id="5620049714977547431" datatype="html"> 2916 <trans-unit id="5620049714977547431" datatype="html">
2917 <source>Signup won't be limited to a fixed number of users.</source> 2917 <source>Signup won't be limited to a fixed number of users.</source>
2918 <target state="new">Signup won't be limited to a fixed number of users.</target> 2918 <target state="new">Signup won't be limited to a fixed number of users.</target>
2919 2919
2920 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">189</context></context-group></trans-unit> 2920 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">189</context></context-group></trans-unit>
2921 <trans-unit id="1663379405062033606" datatype="html"> 2921 <trans-unit id="1663379405062033606" datatype="html">
2922 <source>Minimum required age to create an account</source> 2922 <source>Minimum required age to create an account</source>
2923 <target state="new">Minimum required age to create an account</target> 2923 <target state="new">Minimum required age to create an account</target>
2924 2924
2925 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">193</context></context-group></trans-unit> 2925 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">193</context></context-group></trans-unit>
2926 <trans-unit id="8342879272354516454" datatype="html"> 2926 <trans-unit id="8342879272354516454" datatype="html">
2927 <source>{VAR_PLURAL, plural, =1 {year old} other {years old}}</source> 2927 <source>{VAR_PLURAL, plural, =1 {year old} other {years old}}</source>
2928 <target state="new">{VAR_PLURAL, plural, =1 {year old} other {years old}}</target> 2928 <target state="new">{VAR_PLURAL, plural, =1 {year old} other {years old}}</target>
2929 2929
2930 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">200</context></context-group></trans-unit> 2930 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">200</context></context-group></trans-unit>
2931 <trans-unit id="7456307533995141215" datatype="html"> 2931 <trans-unit id="7456307533995141215" datatype="html">
2932 <source>Enable Signup</source> 2932 <source>Enable Signup</source>
2933 <target>تمكين التسجيل</target> 2933 <target>تمكين التسجيل</target>
2934 2934
2935 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> 2935 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit>
2936 <trans-unit id="502260296951057925" datatype="html"> 2936 <trans-unit id="502260296951057925" datatype="html">
2937 <source>Default video quota per user</source> 2937 <source>Default video quota per user</source>
2938 <target>حصة الفيديو الافتراضية لكل مستخدم</target> 2938 <target>حصة الفيديو الافتراضية لكل مستخدم</target>
2939 2939
2940 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">212</context></context-group></trans-unit> 2940 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">212</context></context-group></trans-unit>
2941 <trans-unit id="7169210802367807492" datatype="html"> 2941 <trans-unit id="7169210802367807492" datatype="html">
2942 <source>bytes</source> 2942 <source>bytes</source>
2943 <target state="new">bytes</target> 2943 <target state="new">bytes</target>
2944 2944
2945 2945
2946 2946
2947 2947
2948 2948
2949 2949
2950 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">218</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">232</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">157</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">157</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">178</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">178</context></context-group></trans-unit> 2950 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">218</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">232</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">157</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">157</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">178</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">178</context></context-group></trans-unit>
2951 <trans-unit id="8509882464852636851" datatype="html"> 2951 <trans-unit id="8509882464852636851" datatype="html">
2952 <source>Default daily upload limit per user</source> 2952 <source>Default daily upload limit per user</source>
2953 <target>حد التحميل اليومي الافتراضي لكل مستخدم</target> 2953 <target>حد التحميل اليومي الافتراضي لكل مستخدم</target>
2954 2954
2955 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">226</context></context-group></trans-unit> 2955 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">226</context></context-group></trans-unit>
2956 <trans-unit id="4719342289581047890" datatype="html"> 2956 <trans-unit id="4719342289581047890" datatype="html">
2957 <source>Allow import with a torrent file or a magnet URI</source> 2957 <source>Allow import with a torrent file or a magnet URI</source>
2958 <target>اسمح بالاستيراد عن طريق ملف تورنت أو رابط magnet</target> 2958 <target>اسمح بالاستيراد عن طريق ملف تورنت أو رابط magnet</target>
2959 2959
2960 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">280</context></context-group></trans-unit><trans-unit id="6801844913630625451" datatype="html"> 2960 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">280</context></context-group></trans-unit><trans-unit id="6801844913630625451" datatype="html">
2961 <source>⚠️ We don't recommend to enable this feature if you don't trust your users</source><target state="new">⚠️ We don't recommend to enable this feature if you don't trust your users</target> 2961 <source>⚠️ We don't recommend to enable this feature if you don't trust your users</source><target state="new">⚠️ We don't recommend to enable this feature if you don't trust your users</target>
2962 <context-group purpose="location"> 2962 <context-group purpose="location">
@@ -2967,142 +2967,142 @@
2967 <trans-unit id="3950258704315544174" datatype="html"> 2967 <trans-unit id="3950258704315544174" datatype="html">
2968 <source>Unless a user is marked as trusted, their videos will stay private until a moderator reviews them.</source> 2968 <source>Unless a user is marked as trusted, their videos will stay private until a moderator reviews them.</source>
2969 <target>ما لم يتم وضع علامة موثوق به على المستخدم ، ستظل مقاطع الفيديو الخاصة به خاصة حتى يراجعها المشرف.</target> 2969 <target>ما لم يتم وضع علامة موثوق به على المستخدم ، ستظل مقاطع الفيديو الخاصة به خاصة حتى يراجعها المشرف.</target>
2970 2970
2971 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">301</context></context-group></trans-unit> 2971 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">301</context></context-group></trans-unit>
2972 <trans-unit id="424703522835656806" datatype="html"> 2972 <trans-unit id="424703522835656806" datatype="html">
2973 <source>VIDEO CHANNELS</source> 2973 <source>VIDEO CHANNELS</source>
2974 <target state="new">VIDEO CHANNELS</target> 2974 <target state="new">VIDEO CHANNELS</target>
2975 2975
2976 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">315</context></context-group></trans-unit> 2976 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">315</context></context-group></trans-unit>
2977 <trans-unit id="7026684190224451991" datatype="html"> 2977 <trans-unit id="7026684190224451991" datatype="html">
2978 <source>Max video channels per user</source> 2978 <source>Max video channels per user</source>
2979 <target state="new">Max video channels per user</target> 2979 <target state="new">Max video channels per user</target>
2980 2980
2981 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">320</context></context-group></trans-unit> 2981 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">320</context></context-group></trans-unit>
2982 <trans-unit id="3840267063842708224" datatype="html"> 2982 <trans-unit id="3840267063842708224" datatype="html">
2983 <source>{VAR_PLURAL, plural, =1 {channel} other {channels}}</source> 2983 <source>{VAR_PLURAL, plural, =1 {channel} other {channels}}</source>
2984 <target state="new">{VAR_PLURAL, plural, =1 {channel} other {channels}}</target> 2984 <target state="new">{VAR_PLURAL, plural, =1 {channel} other {channels}}</target>
2985 2985
2986 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">327</context></context-group></trans-unit> 2986 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">327</context></context-group></trans-unit>
2987 <trans-unit id="3428986951244800347" datatype="html"> 2987 <trans-unit id="3428986951244800347" datatype="html">
2988 <source>Block new videos automatically</source> 2988 <source>Block new videos automatically</source>
2989 <target>احجب مقاطع الفيديو الجديدة تلقائيًا</target> 2989 <target>احجب مقاطع الفيديو الجديدة تلقائيًا</target>
2990 2990
2991 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">298</context></context-group></trans-unit> 2991 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">298</context></context-group></trans-unit>
2992 <trans-unit id="2054846790157376783" datatype="html"> 2992 <trans-unit id="2054846790157376783" datatype="html">
2993 <source>SEARCH</source> 2993 <source>SEARCH</source>
2994 <target>بحث</target> 2994 <target>بحث</target>
2995 2995
2996 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">337</context></context-group></trans-unit> 2996 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">337</context></context-group></trans-unit>
2997 <trans-unit id="3442084803796199253" datatype="html"> 2997 <trans-unit id="3442084803796199253" datatype="html">
2998 <source>Allow users to do remote URI/handle search</source> 2998 <source>Allow users to do remote URI/handle search</source>
2999 <target>السماح للمستخدمين بالبحث عن بعد URI / مقبض</target> 2999 <target>السماح للمستخدمين بالبحث عن بعد URI / مقبض</target>
3000 3000
3001 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">348</context></context-group></trans-unit> 3001 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">348</context></context-group></trans-unit>
3002 <trans-unit id="2258148539285928012" datatype="html"> 3002 <trans-unit id="2258148539285928012" datatype="html">
3003 <source>Allow <x id="START_TAG_STRONG"/>your users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</source> 3003 <source>Allow <x id="START_TAG_STRONG"/>your users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</source>
3004 <target state="new">Allow <x id="START_TAG_STRONG"/>your users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</target> 3004 <target state="new">Allow <x id="START_TAG_STRONG"/>your users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</target>
3005 3005
3006 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">351</context></context-group></trans-unit> 3006 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">351</context></context-group></trans-unit>
3007 <trans-unit id="7295422540935146771" datatype="html"> 3007 <trans-unit id="7295422540935146771" datatype="html">
3008 <source>Allow anonymous to do remote URI/handle search</source> 3008 <source>Allow anonymous to do remote URI/handle search</source>
3009 <target>السماح للمجهول بالقيام بالبحث عن بعد URI / مقبض</target> 3009 <target>السماح للمجهول بالقيام بالبحث عن بعد URI / مقبض</target>
3010 3010
3011 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">359</context></context-group></trans-unit> 3011 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">359</context></context-group></trans-unit>
3012 <trans-unit id="7305237807882754643" datatype="html"> 3012 <trans-unit id="7305237807882754643" datatype="html">
3013 <source>Allow <x id="START_TAG_STRONG"/>anonymous users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</source> 3013 <source>Allow <x id="START_TAG_STRONG"/>anonymous users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</source>
3014 <target state="new">Allow <x id="START_TAG_STRONG"/>anonymous users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</target> 3014 <target state="new">Allow <x id="START_TAG_STRONG"/>anonymous users<x id="CLOSE_TAG_STRONG"/> to look up remote videos/actors that may not be federated with your instance</target>
3015 3015
3016 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">362</context></context-group></trans-unit> 3016 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">362</context></context-group></trans-unit>
3017 <trans-unit id="5273935530181504015" datatype="html"> 3017 <trans-unit id="5273935530181504015" datatype="html">
3018 <source>⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select.</source> 3018 <source>⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select.</source>
3019 <target state="translated">⚠️ تعتمد هذه الوظيفة بشكل كبير على اشراف المثيلات التي يتبعها فهرس البحث الذي تحدده.</target> 3019 <target state="translated">⚠️ تعتمد هذه الوظيفة بشكل كبير على اشراف المثيلات التي يتبعها فهرس البحث الذي تحدده.</target>
3020 3020
3021 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">376</context></context-group></trans-unit> 3021 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">376</context></context-group></trans-unit>
3022 <trans-unit id="1886227550697837417" datatype="html"> 3022 <trans-unit id="1886227550697837417" datatype="html">
3023 <source>You should only use moderated search indexes in production, or <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://framagit.org/framasoft/peertube/search-index&quot;>"/>host your own<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/>. </source> 3023 <source>You should only use moderated search indexes in production, or <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://framagit.org/framasoft/peertube/search-index&quot;>"/>host your own<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/>. </source>
3024 <target state="new"> You should only use moderated search indexes in production, or <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://framagit.org/framasoft/peertube/search-index&quot;>"/>host your own<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/>. </target> 3024 <target state="new"> You should only use moderated search indexes in production, or <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://framagit.org/framasoft/peertube/search-index&quot;>"/>host your own<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/>. </target>
3025 3025
3026 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">378</context></context-group></trans-unit> 3026 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">378</context></context-group></trans-unit>
3027 <trans-unit id="2331464426553277323" datatype="html"> 3027 <trans-unit id="2331464426553277323" datatype="html">
3028 <source>Search index URL</source> 3028 <source>Search index URL</source>
3029 <target>عنوان URL لفهرس البحث</target> 3029 <target>عنوان URL لفهرس البحث</target>
3030 3030
3031 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">385</context></context-group></trans-unit> 3031 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">385</context></context-group></trans-unit>
3032 <trans-unit id="8524278911521465398" datatype="html"> 3032 <trans-unit id="8524278911521465398" datatype="html">
3033 <source>Disable local search in search bar</source> 3033 <source>Disable local search in search bar</source>
3034 <target>تعطيل البحث المحلي في شريط البحث</target> 3034 <target>تعطيل البحث المحلي في شريط البحث</target>
3035 3035
3036 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">398</context></context-group></trans-unit> 3036 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">398</context></context-group></trans-unit>
3037 <trans-unit id="6568991917245875948" datatype="html"> 3037 <trans-unit id="6568991917245875948" datatype="html">
3038 <source>Otherwise the local search stays used by default</source> 3038 <source>Otherwise the local search stays used by default</source>
3039 <target>وإلا يبقى البحث المحلي مستخدمًا بشكل افتراضي</target> 3039 <target>وإلا يبقى البحث المحلي مستخدمًا بشكل افتراضي</target>
3040 3040
3041 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">408</context></context-group></trans-unit> 3041 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">408</context></context-group></trans-unit>
3042 <trans-unit id="4444955208013675027" datatype="html"> 3042 <trans-unit id="4444955208013675027" datatype="html">
3043 <source>Search bar uses the global search index by default</source> 3043 <source>Search bar uses the global search index by default</source>
3044 <target>يستخدم شريط البحث فهرس البحث العالمي افتراضيا</target> 3044 <target>يستخدم شريط البحث فهرس البحث العالمي افتراضيا</target>
3045 3045
3046 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">405</context></context-group></trans-unit> 3046 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">405</context></context-group></trans-unit>
3047 <trans-unit id="6476750382562952780" datatype="html"> 3047 <trans-unit id="6476750382562952780" datatype="html">
3048 <source>Enable global search</source> 3048 <source>Enable global search</source>
3049 <target>تمكين البحث العالمي</target> 3049 <target>تمكين البحث العالمي</target>
3050 3050
3051 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">373</context></context-group></trans-unit> 3051 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">373</context></context-group></trans-unit>
3052 <trans-unit id="836183323506117145" datatype="html"> 3052 <trans-unit id="836183323506117145" datatype="html">
3053 <source>FEDERATION</source> 3053 <source>FEDERATION</source>
3054 <target state="translated">الفديرالية</target> 3054 <target state="translated">الفديرالية</target>
3055 3055
3056 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">426</context></context-group></trans-unit> 3056 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">426</context></context-group></trans-unit>
3057 <trans-unit id="252719899360434356" datatype="html"> 3057 <trans-unit id="252719899360434356" datatype="html">
3058 <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="&lt;a routerLink=&quot;/admin/follows&quot;>"/>relations<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a> "/> with other instances. </source> 3058 <source>Manage <x id="START_LINK" ctype="x-a" equiv-text="&lt;a routerLink=&quot;/admin/follows&quot;>"/>relations<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a> "/> with other instances. </source>
3059 <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="&lt;a routerLink=&quot;/admin/follows&quot;>"/>relations<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a> "/> with other instances. </target> 3059 <target state="new"> Manage <x id="START_LINK" ctype="x-a" equiv-text="&lt;a routerLink=&quot;/admin/follows&quot;>"/>relations<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a> "/> with other instances. </target>
3060 3060
3061 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">427</context></context-group></trans-unit> 3061 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">427</context></context-group></trans-unit>
3062 <trans-unit id="9119248927271669654" datatype="html"> 3062 <trans-unit id="9119248927271669654" datatype="html">
3063 <source>Other instances can follow yours</source> 3063 <source>Other instances can follow yours</source>
3064 <target>يمكن أن تتابع مثيلات خادم أخرى مثيلك</target> 3064 <target>يمكن أن تتابع مثيلات خادم أخرى مثيلك</target>
3065 3065
3066 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">440</context></context-group></trans-unit> 3066 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">440</context></context-group></trans-unit>
3067 <trans-unit id="7015551137649102649" datatype="html"> 3067 <trans-unit id="7015551137649102649" datatype="html">
3068 <source>Manually approve new instance followers</source> 3068 <source>Manually approve new instance followers</source>
3069 <target>الموافقة يدويًا على متابعي المثيل الجدد</target> 3069 <target>الموافقة يدويًا على متابعي المثيل الجدد</target>
3070 3070
3071 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">447</context></context-group></trans-unit> 3071 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">447</context></context-group></trans-unit>
3072 <trans-unit id="4803992993548153434" datatype="html"> 3072 <trans-unit id="4803992993548153434" datatype="html">
3073 <source>Automatically follow back instances</source> 3073 <source>Automatically follow back instances</source>
3074 <target>تابع المثيلات التي تتابعك تلقائيًا</target> 3074 <target>تابع المثيلات التي تتابعك تلقائيًا</target>
3075 3075
3076 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">460</context></context-group></trans-unit> 3076 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">460</context></context-group></trans-unit>
3077 <trans-unit id="1718269478813020014" datatype="html"> 3077 <trans-unit id="1718269478813020014" datatype="html">
3078 <source>Index URL</source> 3078 <source>Index URL</source>
3079 <target>عنوان URL الفهرس</target> 3079 <target>عنوان URL الفهرس</target>
3080 3080
3081 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">485</context></context-group></trans-unit> 3081 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">485</context></context-group></trans-unit>
3082 <trans-unit id="173263206605027981" datatype="html"> 3082 <trans-unit id="173263206605027981" datatype="html">
3083 <source>Automatically follow instances of a public index</source> 3083 <source>Automatically follow instances of a public index</source>
3084 <target>تابع مثيلات من فهرس عام تلقائيًا</target> 3084 <target>تابع مثيلات من فهرس عام تلقائيًا</target>
3085 3085
3086 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">473</context></context-group></trans-unit> 3086 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">473</context></context-group></trans-unit>
3087 <trans-unit id="9076632742417302918" datatype="html"> 3087 <trans-unit id="9076632742417302918" datatype="html">
3088 <source>See <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances&quot; rel=&quot;noopener noreferer&quot; target=&quot;_blank&quot;>"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a> "/> for more information about the expected URL </source> 3088 <source>See <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances&quot; rel=&quot;noopener noreferer&quot; target=&quot;_blank&quot;>"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a> "/> for more information about the expected URL </source>
3089 <target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances&quot; rel=&quot;noopener noreferer&quot; target=&quot;_blank&quot;>"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a> "/> for more information about the expected URL </target> 3089 <target state="new"> See <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://docs.joinpeertube.org/admin-following-instances?id=automatically-follow-other-instances&quot; rel=&quot;noopener noreferer&quot; target=&quot;_blank&quot;>"/>the documentation<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a> "/> for more information about the expected URL </target>
3090 3090
3091 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">478</context></context-group></trans-unit> 3091 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">478</context></context-group></trans-unit>
3092 <trans-unit id="3946988229617310200" datatype="html"> 3092 <trans-unit id="3946988229617310200" datatype="html">
3093 <source>ADMINISTRATORS</source> 3093 <source>ADMINISTRATORS</source>
3094 <target>المدراء</target> 3094 <target>المدراء</target>
3095 3095
3096 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">505</context></context-group></trans-unit> 3096 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">505</context></context-group></trans-unit>
3097 <trans-unit id="3171683206914962995" datatype="html"> 3097 <trans-unit id="3171683206914962995" datatype="html">
3098 <source>Admin email</source> 3098 <source>Admin email</source>
3099 <target>البريد الإلكتروني للمدير</target> 3099 <target>البريد الإلكتروني للمدير</target>
3100 3100
3101 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">511</context></context-group></trans-unit> 3101 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">511</context></context-group></trans-unit>
3102 <trans-unit id="4722881456283329321" datatype="html"> 3102 <trans-unit id="4722881456283329321" datatype="html">
3103 <source>Enable contact form</source> 3103 <source>Enable contact form</source>
3104 <target>تمكين نموذج الاتصال</target> 3104 <target>تمكين نموذج الاتصال</target>
3105 3105
3106 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">524</context></context-group></trans-unit> 3106 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">524</context></context-group></trans-unit>
3107 <trans-unit id="5975271795105968425" datatype="html"> 3107 <trans-unit id="5975271795105968425" datatype="html">
3108 <source>Live streaming</source> 3108 <source>Live streaming</source>
@@ -3118,27 +3118,27 @@
3118 <trans-unit id="1765095834299337775" datatype="html"> 3118 <trans-unit id="1765095834299337775" datatype="html">
3119 <source>TWITTER</source> 3119 <source>TWITTER</source>
3120 <target>تويتر</target> 3120 <target>تويتر</target>
3121 3121
3122 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">533</context></context-group></trans-unit> 3122 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">533</context></context-group></trans-unit>
3123 <trans-unit id="3202133522706129143" datatype="html"> 3123 <trans-unit id="3202133522706129143" datatype="html">
3124 <source>Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value.</source> 3124 <source>Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value.</source>
3125 <target state="new"> Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. </target> 3125 <target state="new"> Provide the Twitter account representing your instance to improve link previews. If you don't have a Twitter account, just leave the default value. </target>
3126 3126
3127 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">534</context></context-group></trans-unit> 3127 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">534</context></context-group></trans-unit>
3128 <trans-unit id="4087837092261487511" datatype="html"> 3128 <trans-unit id="4087837092261487511" datatype="html">
3129 <source>Your Twitter username</source> 3129 <source>Your Twitter username</source>
3130 <target>اسم المستخدِم الخاص بك على تويتر</target> 3130 <target>اسم المستخدِم الخاص بك على تويتر</target>
3131 3131
3132 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">546</context></context-group></trans-unit> 3132 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">546</context></context-group></trans-unit>
3133 <trans-unit id="5648651824279408711" datatype="html"> 3133 <trans-unit id="5648651824279408711" datatype="html">
3134 <source>Instance allowed by Twitter</source> 3134 <source>Instance allowed by Twitter</source>
3135 <target>المثيل المسموح به من قبل تويتر</target> 3135 <target>المثيل المسموح به من قبل تويتر</target>
3136 3136
3137 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">559</context></context-group></trans-unit> 3137 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">559</context></context-group></trans-unit>
3138 <trans-unit id="2076338542820061819" datatype="html"> 3138 <trans-unit id="2076338542820061819" datatype="html">
3139 <source>If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br />"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br />"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="&lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> to see if you instance is allowed. </source> 3139 <source>If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br />"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br />"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="&lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> to see if you instance is allowed. </source>
3140 <target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br />"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br />"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="&lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> to see if you instance is allowed. </target> 3140 <target state="new"> If your instance is explicitly allowed by Twitter, a video player will be embedded in the Twitter feed on PeerTube video share.<x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br />"/> If the instance is not, we use an image link card that will redirect to your PeerTube instance.<x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br />"/> Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/w/blabla) on <x id="START_LINK" ctype="x-a" equiv-text="&lt;a target='_blank' rel='noopener noreferrer' href='https://cards-dev.twitter.com/validator'>"/>https://cards-dev.twitter.com/validator<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> to see if you instance is allowed. </target>
3141 3141
3142 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">563</context></context-group></trans-unit> 3142 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">563</context></context-group></trans-unit>
3143 <trans-unit id="493135676263039396" datatype="html"> 3143 <trans-unit id="493135676263039396" datatype="html">
3144 <source>LIVE</source> 3144 <source>LIVE</source>
@@ -3187,7 +3187,7 @@
3187 <trans-unit id="6830777508073747241" datatype="html"> 3187 <trans-unit id="6830777508073747241" datatype="html">
3188 <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> 3188 <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source>
3189 <target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> 3189 <target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target>
3190 3190
3191 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">46</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> 3191 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">46</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit>
3192 <trans-unit id="1521259619066122077" datatype="html"> 3192 <trans-unit id="1521259619066122077" datatype="html">
3193 <source>Max live duration</source> 3193 <source>Max live duration</source>
@@ -3277,7 +3277,7 @@
3277 <context context-type="linenumber">54</context> 3277 <context context-type="linenumber">54</context>
3278 </context-group> 3278 </context-group>
3279 </trans-unit> 3279 </trans-unit>
3280 3280
3281 <trans-unit id="1823941382992046371" datatype="html"> 3281 <trans-unit id="1823941382992046371" datatype="html">
3282 <source>Allow audio files upload</source> 3282 <source>Allow audio files upload</source>
3283 <target>السماح بتحميل الملفات الصوتية</target> 3283 <target>السماح بتحميل الملفات الصوتية</target>
@@ -3511,13 +3511,13 @@ color: red;
3511 <trans-unit id="2409672154570643758" datatype="html"> 3511 <trans-unit id="2409672154570643758" datatype="html">
3512 <source>Display name</source> 3512 <source>Display name</source>
3513 <target>الإسم العلني</target> 3513 <target>الإسم العلني</target>
3514 3514
3515 3515
3516 3516
3517 3517
3518 3518
3519 3519
3520 3520
3521 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit><trans-unit id="2193037168694505715" datatype="html"> 3521 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit><trans-unit id="2193037168694505715" datatype="html">
3522 <source>Short text to tell people how they can support the channel (membership platform...).&lt;br />&lt;br /> 3522 <source>Short text to tell people how they can support the channel (membership platform...).&lt;br />&lt;br />
3523 When a video is uploaded in this channel, the video support field will be automatically filled by this text.</source><target state="new">Short text to tell people how they can support the channel (membership platform...).&lt;br />&lt;br /> 3523 When a video is uploaded in this channel, the video support field will be automatically filled by this text.</source><target state="new">Short text to tell people how they can support the channel (membership platform...).&lt;br />&lt;br />
@@ -3534,24 +3534,24 @@ color: red;
3534 <trans-unit id="5643561794785412000" datatype="html"> 3534 <trans-unit id="5643561794785412000" datatype="html">
3535 <source>Unavailable</source> 3535 <source>Unavailable</source>
3536 <target>غير متوفر</target> 3536 <target>غير متوفر</target>
3537 3537
3538 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> 3538 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit>
3539 <trans-unit id="3686284950598311784" datatype="html"> 3539 <trans-unit id="3686284950598311784" datatype="html">
3540 <source>Private</source> 3540 <source>Private</source>
3541 <target>خاص</target> 3541 <target>خاص</target>
3542 3542
3543 3543
3544 3544
3545 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html</context><context context-type="linenumber">10</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">7</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> 3545 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.html</context><context context-type="linenumber">10</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">7</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit>
3546 <trans-unit id="5263519165976128456" datatype="html"> 3546 <trans-unit id="5263519165976128456" datatype="html">
3547 <source>Edit starts/stops at</source> 3547 <source>Edit starts/stops at</source>
3548 <target>تحرير يبدأ / يتوقف عند</target> 3548 <target>تحرير يبدأ / يتوقف عند</target>
3549 3549
3550 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> 3550 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit>
3551 <trans-unit id="8890926675057871150" datatype="html"> 3551 <trans-unit id="8890926675057871150" datatype="html">
3552 <source>Delete from <x id="INTERPOLATION"/></source> 3552 <source>Delete from <x id="INTERPOLATION"/></source>
3553 <target>احذفه من <x id="INTERPOLATION"/></target> 3553 <target>احذفه من <x id="INTERPOLATION"/></target>
3554 3554
3555 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">100</context></context-group></trans-unit> 3555 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context><context context-type="linenumber">100</context></context-group></trans-unit>
3556 <trans-unit id="7708270344948043036" datatype="html"> 3556 <trans-unit id="7708270344948043036" datatype="html">
3557 <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> 3557 <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source>
@@ -3608,23 +3608,23 @@ color: red;
3608 <trans-unit id="1006562256968398209" datatype="html"> 3608 <trans-unit id="1006562256968398209" datatype="html">
3609 <source>video</source> 3609 <source>video</source>
3610 <target state="translated">فيديو</target> 3610 <target state="translated">فيديو</target>
3611 3611
3612 3612
3613 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">298</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">56</context></context-group></trans-unit> 3613 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">298</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">56</context></context-group></trans-unit>
3614 <trans-unit id="6995024616159044376" datatype="html"> 3614 <trans-unit id="6995024616159044376" datatype="html">
3615 <source>Your video quota is exceeded with this video (video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</source> 3615 <source>Your video quota is exceeded with this video (video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</source>
3616 <target state="new">Your video quota is exceeded with this video (video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> 3616 <target state="new">Your video quota is exceeded with this video (video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target>
3617 3617
3618 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">333</context></context-group></trans-unit> 3618 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">333</context></context-group></trans-unit>
3619 <trans-unit id="7873395933409147217" datatype="html"> 3619 <trans-unit id="7873395933409147217" datatype="html">
3620 <source>Your daily video quota is exceeded with this video (video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</source> 3620 <source>Your daily video quota is exceeded with this video (video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</source>
3621 <target state="new">Your daily video quota is exceeded with this video (video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> 3621 <target state="new">Your daily video quota is exceeded with this video (video size: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target>
3622 3622
3623 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> 3623 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">352</context></context-group></trans-unit>
3624 <trans-unit id="5235042777215655908" datatype="html"> 3624 <trans-unit id="5235042777215655908" datatype="html">
3625 <source>subtitles</source> 3625 <source>subtitles</source>
3626 <target state="translated">ترجمات</target> 3626 <target state="translated">ترجمات</target>
3627 3627
3628 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> 3628 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">57</context></context-group></trans-unit>
3629 <trans-unit id="7539427273132299890" datatype="html"> 3629 <trans-unit id="7539427273132299890" datatype="html">
3630 <source>Unlisted</source> 3630 <source>Unlisted</source>
@@ -3653,8 +3653,8 @@ color: red;
3653 <trans-unit id="9081463435738465430" datatype="html"> 3653 <trans-unit id="9081463435738465430" datatype="html">
3654 <source>Blocked</source> 3654 <source>Blocked</source>
3655 <target>محجوب</target> 3655 <target>محجوب</target>
3656 3656
3657 3657
3658 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">84</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> 3658 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">84</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit>
3659 <trans-unit id="870586304593427318" datatype="html"> 3659 <trans-unit id="870586304593427318" datatype="html">
3660 <source>Are you sure you want to delete these <x id="PH" equiv-text="videos.length"/> videos?</source> 3660 <source>Are you sure you want to delete these <x id="PH" equiv-text="videos.length"/> videos?</source>
@@ -3722,7 +3722,7 @@ color: red;
3722 <trans-unit id="834805431202576194" datatype="html"> 3722 <trans-unit id="834805431202576194" datatype="html">
3723 <source>No results.</source> 3723 <source>No results.</source>
3724 <target state="new">No results.</target> 3724 <target state="new">No results.</target>
3725 3725
3726 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/overview/video-overview.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">23</context></context-group></trans-unit> 3726 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/overview/video-overview.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">23</context></context-group></trans-unit>
3727 <trans-unit id="855178133027341271" datatype="html"> 3727 <trans-unit id="855178133027341271" datatype="html">
3728 <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> 3728 <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source>
@@ -3864,17 +3864,17 @@ color: red;
3864 <trans-unit id="5439158575454281141" datatype="html"> 3864 <trans-unit id="5439158575454281141" datatype="html">
3865 <source>VIDEO SETTINGS</source> 3865 <source>VIDEO SETTINGS</source>
3866 <target>إعدادات الفيديو</target> 3866 <target>إعدادات الفيديو</target>
3867 3867
3868 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> 3868 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit>
3869 <trans-unit id="507542497458686905" datatype="html"> 3869 <trans-unit id="507542497458686905" datatype="html">
3870 <source>NOTIFICATIONS</source> 3870 <source>NOTIFICATIONS</source>
3871 <target>التنبيهات</target> 3871 <target>التنبيهات</target>
3872 3872
3873 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> 3873 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit>
3874 <trans-unit id="9138757724802460941" datatype="html"> 3874 <trans-unit id="9138757724802460941" datatype="html">
3875 <source>INTERFACE</source> 3875 <source>INTERFACE</source>
3876 <target>الواجهة</target> 3876 <target>الواجهة</target>
3877 3877
3878 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> 3878 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit>
3879 <trans-unit id="7789395291034300662" datatype="html"> 3879 <trans-unit id="7789395291034300662" datatype="html">
3880 <source>PASSWORD</source> 3880 <source>PASSWORD</source>
@@ -3976,17 +3976,17 @@ color: red;
3976 <trans-unit id="8181077408762380407" datatype="html"> 3976 <trans-unit id="8181077408762380407" datatype="html">
3977 <source>Channels</source> 3977 <source>Channels</source>
3978 <target state="translated">القنوات</target> 3978 <target state="translated">القنوات</target>
3979 3979
3980 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">200</context></context-group></trans-unit> 3980 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">200</context></context-group></trans-unit>
3981 <trans-unit id="8936704404804793618" datatype="html"> 3981 <trans-unit id="8936704404804793618" datatype="html">
3982 <source>Videos</source> 3982 <source>Videos</source>
3983 <target state="new">Videos</target> 3983 <target state="new">Videos</target>
3984 3984
3985 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-videos/account-videos.component.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">49</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">195</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> 3985 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-videos/account-videos.component.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">49</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">195</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">76</context></context-group></trans-unit>
3986 <trans-unit id="1823843876735462104" datatype="html"> 3986 <trans-unit id="1823843876735462104" datatype="html">
3987 <source>Playlists</source> 3987 <source>Playlists</source>
3988 <target state="new">Playlists</target> 3988 <target state="new">Playlists</target>
3989 3989
3990 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">59</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">205</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> 3990 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">59</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">205</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">85</context></context-group></trans-unit>
3991 <trans-unit id="7391040346436232576" datatype="html"> 3991 <trans-unit id="7391040346436232576" datatype="html">
3992 <source>Initiator</source> 3992 <source>Initiator</source>
@@ -4038,7 +4038,7 @@ color: red;
4038 <trans-unit id="6376690302059877029" datatype="html"> 4038 <trans-unit id="6376690302059877029" datatype="html">
4039 <source>This video was deleted</source> 4039 <source>This video was deleted</source>
4040 <target>تم حذف هذا الفيديو</target> 4040 <target>تم حذف هذا الفيديو</target>
4041 4041
4042 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> 4042 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit>
4043 <trans-unit id="6924803931258995553" datatype="html"> 4043 <trans-unit id="6924803931258995553" datatype="html">
4044 <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> imports</source> 4044 <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> imports</source>
@@ -4067,7 +4067,7 @@ color: red;
4067 <target>صفحة حساب المالك</target> 4067 <target>صفحة حساب المالك</target>
4068 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">27</context></context-group> 4068 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">27</context></context-group>
4069 </trans-unit> 4069 </trans-unit>
4070 4070
4071 <trans-unit id="4781078006040259916" datatype="html"> 4071 <trans-unit id="4781078006040259916" datatype="html">
4072 <source>You don't have any video in your watch history yet.</source> 4072 <source>You don't have any video in your watch history yet.</source>
4073 <target state="translated">لا يوجد فيديو في سجل مشاهداتك.</target> 4073 <target state="translated">لا يوجد فيديو في سجل مشاهداتك.</target>
@@ -4153,14 +4153,14 @@ color: red;
4153 <trans-unit id="5462361983940693567" datatype="html"> 4153 <trans-unit id="5462361983940693567" datatype="html">
4154 <source>Channel</source> 4154 <source>Channel</source>
4155 <target>القناة</target> 4155 <target>القناة</target>
4156 4156
4157 4157
4158 4158
4159 4159
4160 4160
4161 4161
4162 4162
4163 4163
4164 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> 4164 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">6</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit>
4165 <trans-unit id="3943893855105372623" datatype="html"> 4165 <trans-unit id="3943893855105372623" datatype="html">
4166 <source>Playlist thumbnail</source> 4166 <source>Playlist thumbnail</source>
@@ -4176,12 +4176,12 @@ color: red;
4176 <trans-unit id="7040375308762081154" datatype="html"> 4176 <trans-unit id="7040375308762081154" datatype="html">
4177 <source>My video channels</source> 4177 <source>My video channels</source>
4178 <target state="translated">قنواتي</target> 4178 <target state="translated">قنواتي</target>
4179 4179
4180 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts</context><context context-type="linenumber">11</context></context-group></trans-unit> 4180 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels-routing.module.ts</context><context context-type="linenumber">11</context></context-group></trans-unit>
4181 <trans-unit id="7418836785553125957" datatype="html"> 4181 <trans-unit id="7418836785553125957" datatype="html">
4182 <source>Create a new video channel</source> 4182 <source>Create a new video channel</source>
4183 <target state="translated">أنشئ قناة فيديو</target> 4183 <target state="translated">أنشئ قناة فيديو</target>
4184 4184
4185 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/manage-routing.module.ts</context><context context-type="linenumber">12</context></context-group></trans-unit> 4185 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/manage-routing.module.ts</context><context context-type="linenumber">12</context></context-group></trans-unit>
4186 <trans-unit id="8828123061564507501" datatype="html"> 4186 <trans-unit id="8828123061564507501" datatype="html">
4187 <source>Playlist <x id="PH"/>} deleted.</source> 4187 <source>Playlist <x id="PH"/>} deleted.</source>
@@ -4226,7 +4226,7 @@ color: red;
4226 <trans-unit id="7766488542631150871" datatype="html"> 4226 <trans-unit id="7766488542631150871" datatype="html">
4227 <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> 4227 <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source>
4228 <target>{VAR_PLURAL, plural, =0 {بدون فيديوهات} =1 {فيديو واحد} other {<x id="INTERPOLATION"/> فيديو}}</target> 4228 <target>{VAR_PLURAL, plural, =0 {بدون فيديوهات} =1 {فيديو واحد} other {<x id="INTERPOLATION"/> فيديو}}</target>
4229 4229
4230 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> 4230 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-miniature.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit>
4231 <trans-unit id="7152797255397280410" datatype="html"> 4231 <trans-unit id="7152797255397280410" datatype="html">
4232 <source>Do you really want to delete <x id="PH" equiv-text="videoChannel.displayName"/>? 4232 <source>Do you really want to delete <x id="PH" equiv-text="videoChannel.displayName"/>?
@@ -4243,18 +4243,18 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou
4243 <context context-type="linenumber">48</context> 4243 <context context-type="linenumber">48</context>
4244 </context-group> 4244 </context-group>
4245 </trans-unit> 4245 </trans-unit>
4246 4246
4247 <trans-unit id="3428015997161360357" datatype="html"> 4247 <trans-unit id="3428015997161360357" datatype="html">
4248 <source>NEW CHANNEL</source> 4248 <source>NEW CHANNEL</source>
4249 <target>قناة جديدة</target> 4249 <target>قناة جديدة</target>
4250 4250
4251 4251
4252 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit> 4252 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group></trans-unit>
4253 <trans-unit id="5871023634125368211" datatype="html"> 4253 <trans-unit id="5871023634125368211" datatype="html">
4254 <source>CHANNEL</source> 4254 <source>CHANNEL</source>
4255 <target>قناة</target> 4255 <target>قناة</target>
4256 4256
4257 4257
4258 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">9</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit><trans-unit id="5013100494982905528" datatype="html"> 4258 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">9</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit><trans-unit id="5013100494982905528" datatype="html">
4259 <source>Banner image of the channel</source><target state="new">Banner image of the channel</target> 4259 <source>Banner image of the channel</source><target state="new">Banner image of the channel</target>
4260 <context-group purpose="location"> 4260 <context-group purpose="location">
@@ -4266,19 +4266,19 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou
4266 <context context-type="linenumber">13</context> 4266 <context context-type="linenumber">13</context>
4267 </context-group> 4267 </context-group>
4268 </trans-unit> 4268 </trans-unit>
4269 4269
4270 <trans-unit id="626184983378002054" datatype="html"> 4270 <trans-unit id="626184983378002054" datatype="html">
4271 <source>Example: my_channel</source> 4271 <source>Example: my_channel</source>
4272 <target>مثال: قناتي</target> 4272 <target>مثال: قناتي</target>
4273 4273
4274 4274
4275 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> 4275 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit>
4276 4276
4277 <trans-unit id="5278589041647101772" datatype="html"> 4277 <trans-unit id="5278589041647101772" datatype="html">
4278 <source>Overwrite support field of all videos of this channel</source> 4278 <source>Overwrite support field of all videos of this channel</source>
4279 <target>الكتابة فوق حقل الدعم لجميع مقاطع الفيديو لهذه القناة</target> 4279 <target>الكتابة فوق حقل الدعم لجميع مقاطع الفيديو لهذه القناة</target>
4280 4280
4281 4281
4282 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">82</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> 4282 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">82</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-edit.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit>
4283 <trans-unit id="5904811038805050477" datatype="html"> 4283 <trans-unit id="5904811038805050477" datatype="html">
4284 <source>Welcome to PeerTube!</source> 4284 <source>Welcome to PeerTube!</source>
@@ -4347,12 +4347,12 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou
4347 <trans-unit id="7252854992688790751" datatype="html"> 4347 <trans-unit id="7252854992688790751" datatype="html">
4348 <source>This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="&lt;a class=&quot;terms-anchor&quot; (click)=&quot;onTermsClick($event, instanceInformation)&quot; href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/><x id="START_LINK_1" equiv-text="&lt;a class=&quot;terms-link&quot; target=&quot;_blank&quot; routerLink=&quot;/about/instance&quot; fragment=&quot;terms&quot;>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br />"/><x id="START_LINK_2" equiv-text="&lt;a class=&quot;alert-link&quot; href=&quot;https://joinpeertube.org/instances&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;>"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/>. </source> 4348 <source>This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="&lt;a class=&quot;terms-anchor&quot; (click)=&quot;onTermsClick($event, instanceInformation)&quot; href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/><x id="START_LINK_1" equiv-text="&lt;a class=&quot;terms-link&quot; target=&quot;_blank&quot; routerLink=&quot;/about/instance&quot; fragment=&quot;terms&quot;>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br />"/><x id="START_LINK_2" equiv-text="&lt;a class=&quot;alert-link&quot; href=&quot;https://joinpeertube.org/instances&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;>"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/>. </source>
4349 <target state="new"> This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="&lt;a class=&quot;terms-anchor&quot; (click)=&quot;onTermsClick($event, instanceInformation)&quot; href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/><x id="START_LINK_1" equiv-text="&lt;a class=&quot;terms-link&quot; target=&quot;_blank&quot; routerLink=&quot;/about/instance&quot; fragment=&quot;terms&quot;>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br />"/><x id="START_LINK_2" equiv-text="&lt;a class=&quot;alert-link&quot; href=&quot;https://joinpeertube.org/instances&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;>"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/>. </target> 4349 <target state="new"> This instance allows registration. However, be careful to check the <x id="START_LINK" ctype="x-a" equiv-text="&lt;a class=&quot;terms-anchor&quot; (click)=&quot;onTermsClick($event, instanceInformation)&quot; href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/><x id="START_LINK_1" equiv-text="&lt;a class=&quot;terms-link&quot; target=&quot;_blank&quot; routerLink=&quot;/about/instance&quot; fragment=&quot;terms&quot;>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> before creating an account. You may also search for another instance to match your exact needs at: <x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br />"/><x id="START_LINK_2" equiv-text="&lt;a class=&quot;alert-link&quot; href=&quot;https://joinpeertube.org/instances&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;>"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/>. </target>
4350 4350
4351 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> 4351 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit>
4352 <trans-unit id="7215649348148521605" datatype="html"> 4352 <trans-unit id="7215649348148521605" datatype="html">
4353 <source>Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="&lt;a (click)=&quot;onTermsClick($event, instanceInformation)&quot; href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br /> "/><x id="START_LINK_1" equiv-text="&lt;a class=&quot;alert-link&quot; href=&quot;https://joinpeertube.org/instances&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;>"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/>. </source> 4353 <source>Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="&lt;a (click)=&quot;onTermsClick($event, instanceInformation)&quot; href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br /> "/><x id="START_LINK_1" equiv-text="&lt;a class=&quot;alert-link&quot; href=&quot;https://joinpeertube.org/instances&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;>"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/>. </source>
4354 <target state="new"> Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="&lt;a (click)=&quot;onTermsClick($event, instanceInformation)&quot; href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br /> "/><x id="START_LINK_1" equiv-text="&lt;a class=&quot;alert-link&quot; href=&quot;https://joinpeertube.org/instances&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;>"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/>. </target> 4354 <target state="new"> Currently this instance doesn't allow for user registration, you may check the <x id="START_LINK" ctype="x-a" equiv-text="&lt;a (click)=&quot;onTermsClick($event, instanceInformation)&quot; href='#'>"/>Terms<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> for more details or find an instance that gives you the possibility to sign up for an account and upload your videos there. Find yours among multiple instances at: <x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br /> "/><x id="START_LINK_1" equiv-text="&lt;a class=&quot;alert-link&quot; href=&quot;https://joinpeertube.org/instances&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;>"/>https://joinpeertube.org/instances<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/>. </target>
4355 4355
4356 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> 4356 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit>
4357 <trans-unit id="4302331889176439801" datatype="html"> 4357 <trans-unit id="4302331889176439801" datatype="html">
4358 <source>Request email for account verification</source> 4358 <source>Request email for account verification</source>
@@ -4362,14 +4362,14 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou
4362 <trans-unit id="3967269098753656610" datatype="html"> 4362 <trans-unit id="3967269098753656610" datatype="html">
4363 <source>Email address</source> 4363 <source>Email address</source>
4364 <target>عنوان البريد الإلكتروني</target> 4364 <target>عنوان البريد الإلكتروني</target>
4365 4365
4366 4366
4367 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit> 4367 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html</context><context context-type="linenumber">10</context></context-group></trans-unit>
4368 <trans-unit id="7808756054397155068" datatype="html"> 4368 <trans-unit id="7808756054397155068" datatype="html">
4369 <source>Reset</source> 4369 <source>Reset</source>
4370 <target state="new">Reset</target> 4370 <target state="new">Reset</target>
4371 <note priority="1" from="description">Password reset button</note> 4371 <note priority="1" from="description">Password reset button</note>
4372 4372
4373 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">130</context></context-group></trans-unit> 4373 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">130</context></context-group></trans-unit>
4374 <trans-unit id="4027779086550572813" datatype="html"> 4374 <trans-unit id="4027779086550572813" datatype="html">
4375 <source>Send verification email</source> 4375 <source>Send verification email</source>
@@ -4399,60 +4399,60 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou
4399 <trans-unit id="3959826834147169200" datatype="html"> 4399 <trans-unit id="3959826834147169200" datatype="html">
4400 <source>Muted</source> 4400 <source>Muted</source>
4401 <target>مكتوم</target> 4401 <target>مكتوم</target>
4402 4402
4403 4403
4404 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">1</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">192</context></context-group></trans-unit> 4404 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">1</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">192</context></context-group></trans-unit>
4405 <trans-unit id="4572885137800697555" datatype="html"> 4405 <trans-unit id="4572885137800697555" datatype="html">
4406 <source>Instance muted</source> 4406 <source>Instance muted</source>
4407 <target>مثيل الخادم مكتوم</target> 4407 <target>مثيل الخادم مكتوم</target>
4408 4408
4409 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit> 4409 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">2</context></context-group></trans-unit>
4410 <trans-unit id="302022805144581075" datatype="html"> 4410 <trans-unit id="302022805144581075" datatype="html">
4411 <source>Muted by your instance</source> 4411 <source>Muted by your instance</source>
4412 <target>كتَمه عبر مثيل الخادم الخاص بك</target> 4412 <target>كتَمه عبر مثيل الخادم الخاص بك</target>
4413 4413
4414 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> 4414 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit>
4415 <trans-unit id="6860866645734090311" datatype="html"> 4415 <trans-unit id="6860866645734090311" datatype="html">
4416 <source>Instance muted by your instance</source> 4416 <source>Instance muted by your instance</source>
4417 <target>كتم مثيل الخادم بواسطة مثيل الخادم الخاص بك</target> 4417 <target>كتم مثيل الخادم بواسطة مثيل الخادم الخاص بك</target>
4418 4418
4419 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> 4419 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-block-badges.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit>
4420 <trans-unit id="8661266239199665830" datatype="html"> 4420 <trans-unit id="8661266239199665830" datatype="html">
4421 <source>Copy account handle</source> 4421 <source>Copy account handle</source>
4422 <target state="new">Copy account handle</target> 4422 <target state="new">Copy account handle</target>
4423 4423
4424 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> 4424 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit>
4425 <trans-unit id="403587185492002456" datatype="html"> 4425 <trans-unit id="403587185492002456" datatype="html">
4426 <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> 4426 <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source>
4427 <target state="new">{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</target> 4427 <target state="new">{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</target>
4428 4428
4429 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">75</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> 4429 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">75</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit>
4430 <trans-unit id="3061133792040537550" datatype="html"> 4430 <trans-unit id="3061133792040537550" datatype="html">
4431 <source>Show the complete description</source> 4431 <source>Show the complete description</source>
4432 <target state="translated">أظهر الوصف كاملًا</target> 4432 <target state="translated">أظهر الوصف كاملًا</target>
4433 4433
4434 4434
4435 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">53</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> 4435 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">53</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit>
4436 <trans-unit id="9098920722959201547" datatype="html"> 4436 <trans-unit id="9098920722959201547" datatype="html">
4437 <source>Show more...</source> 4437 <source>Show more...</source>
4438 <target state="translated">اعرض المزيد…</target> 4438 <target state="translated">اعرض المزيد…</target>
4439 4439
4440 4440
4441 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> 4441 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit>
4442 <trans-unit id="6808894347744915561" datatype="html"> 4442 <trans-unit id="6808894347744915561" datatype="html">
4443 <source>Manage account</source> 4443 <source>Manage account</source>
4444 <target state="translated">إدارة الحساب</target> 4444 <target state="translated">إدارة الحساب</target>
4445 4445
4446 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> 4446 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit>
4447 <trans-unit id="1311667768861466464" datatype="html"> 4447 <trans-unit id="1311667768861466464" datatype="html">
4448 <source>Search account videos</source> 4448 <source>Search account videos</source>
4449 <target state="translated">ابحث في فيديوهات الحساب</target> 4449 <target state="translated">ابحث في فيديوهات الحساب</target>
4450 4450
4451 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> 4451 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit>
4452 <trans-unit id="5512878593724620692" datatype="html"> 4452 <trans-unit id="5512878593724620692" datatype="html">
4453 <source>CHANNELS</source> 4453 <source>CHANNELS</source>
4454 <target state="translated">القنوات</target> 4454 <target state="translated">القنوات</target>
4455 4455
4456 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> 4456 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit>
4457 <trans-unit id="6479885129995567639" datatype="html"> 4457 <trans-unit id="6479885129995567639" datatype="html">
4458 <source>Video channels</source> 4458 <source>Video channels</source>
@@ -4597,27 +4597,27 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou
4597 <trans-unit id="8685905644837116382" datatype="html"> 4597 <trans-unit id="8685905644837116382" datatype="html">
4598 <source>MODERATION</source> 4598 <source>MODERATION</source>
4599 <target state="translated">الاشراف</target> 4599 <target state="translated">الاشراف</target>
4600 4600
4601 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">128</context></context-group></trans-unit> 4601 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">128</context></context-group></trans-unit>
4602 <trans-unit id="9178042134345945115" datatype="html"> 4602 <trans-unit id="9178042134345945115" datatype="html">
4603 <source>OTHER INFORMATION</source> 4603 <source>OTHER INFORMATION</source>
4604 <target state="translated">معلومات أخرى</target> 4604 <target state="translated">معلومات أخرى</target>
4605 4605
4606 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">185</context></context-group></trans-unit> 4606 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">185</context></context-group></trans-unit>
4607 <trans-unit id="4281738631669138686" datatype="html"> 4607 <trans-unit id="4281738631669138686" datatype="html">
4608 <source>Hardware information</source> 4608 <source>Hardware information</source>
4609 <target>معلومات الأجهزة</target> 4609 <target>معلومات الأجهزة</target>
4610 4610
4611 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">198</context></context-group></trans-unit> 4611 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">198</context></context-group></trans-unit>
4612 <trans-unit id="273909283347871" datatype="html"> 4612 <trans-unit id="273909283347871" datatype="html">
4613 <source>FEATURES</source> 4613 <source>FEATURES</source>
4614 <target>ميزات</target> 4614 <target>ميزات</target>
4615 4615
4616 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">207</context></context-group></trans-unit> 4616 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">207</context></context-group></trans-unit>
4617 <trans-unit id="8932880935037645502" datatype="html"> 4617 <trans-unit id="8932880935037645502" datatype="html">
4618 <source>STATISTICS</source> 4618 <source>STATISTICS</source>
4619 <target>الإحصاء</target> 4619 <target>الإحصاء</target>
4620 4620
4621 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">219</context></context-group></trans-unit> 4621 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">219</context></context-group></trans-unit>
4622 <trans-unit id="1161141363959659794" datatype="html"> 4622 <trans-unit id="1161141363959659794" datatype="html">
4623 <source>PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser.</source> 4623 <source>PeerTube is a self-hosted ActivityPub-federated video streaming platform using P2P directly in your web browser.</source>
@@ -4837,23 +4837,23 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou
4837 <trans-unit id="2392488717875840729" datatype="html"> 4837 <trans-unit id="2392488717875840729" datatype="html">
4838 <source>User</source> 4838 <source>User</source>
4839 <target>المستخدِم</target> 4839 <target>المستخدِم</target>
4840 4840
4841 4841
4842 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-users/user-admin.service.ts</context><context context-type="linenumber">122</context></context-group></trans-unit> 4842 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-users/user-admin.service.ts</context><context context-type="linenumber">122</context></context-group></trans-unit>
4843 <trans-unit id="6386856862203107763" datatype="html"> 4843 <trans-unit id="6386856862203107763" datatype="html">
4844 <source>Create my account</source> 4844 <source>Create my account</source>
4845 <target>أنشئ حسابي</target> 4845 <target>أنشئ حسابي</target>
4846 4846
4847 <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> 4847 <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit>
4848 <trans-unit id="220345070199640496" datatype="html"> 4848 <trans-unit id="220345070199640496" datatype="html">
4849 <source>PeerTube is creating your account...</source> 4849 <source>PeerTube is creating your account...</source>
4850 <target>ينشئ بيرتيوب حسابك ...</target> 4850 <target>ينشئ بيرتيوب حسابك ...</target>
4851 4851
4852 <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> 4852 <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit>
4853 <trans-unit id="397098723873502323" datatype="html"> 4853 <trans-unit id="397098723873502323" datatype="html">
4854 <source>Done</source> 4854 <source>Done</source>
4855 <target>تم</target> 4855 <target>تم</target>
4856 4856
4857 <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit> 4857 <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">51</context></context-group></trans-unit>
4858 <trans-unit id="6294302495409052693" datatype="html"> 4858 <trans-unit id="6294302495409052693" datatype="html">
4859 <source>Who are we?</source> 4859 <source>Who are we?</source>
@@ -4978,20 +4978,20 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou
4978 <trans-unit id="8890553633144307762" datatype="html"> 4978 <trans-unit id="8890553633144307762" datatype="html">
4979 <source>Back</source> 4979 <source>Back</source>
4980 <target state="translated">عُد</target> 4980 <target state="translated">عُد</target>
4981 4981
4982 <note priority="1" from="description">Button on the registration form to go to the previous step</note> 4982 <note priority="1" from="description">Button on the registration form to go to the previous step</note>
4983 <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">42</context></context-group></trans-unit> 4983 <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">42</context></context-group></trans-unit>
4984 <trans-unit id="3885497195825665706" datatype="html"> 4984 <trans-unit id="3885497195825665706" datatype="html">
4985 <source>Next</source> 4985 <source>Next</source>
4986 <target state="translated">التالي</target> 4986 <target state="translated">التالي</target>
4987 4987
4988 <note priority="1" from="description">Button on the registration form to go to the previous step</note> 4988 <note priority="1" from="description">Button on the registration form to go to the previous step</note>
4989 <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> 4989 <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">43</context></context-group></trans-unit>
4990 <trans-unit id="5018804994794983050" datatype="html"> 4990 <trans-unit id="5018804994794983050" datatype="html">
4991 <source>Signup</source> 4991 <source>Signup</source>
4992 <target state="translated">سجّل</target> 4992 <target state="translated">سجّل</target>
4993 <note priority="1" from="description">Button on the registration form to finalize the account and channel creation</note> 4993 <note priority="1" from="description">Button on the registration form to finalize the account and channel creation</note>
4994 4994
4995 <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> 4995 <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">75</context></context-group></trans-unit>
4996 <trans-unit id="1908285951500318953" datatype="html"> 4996 <trans-unit id="1908285951500318953" datatype="html">
4997 <source>Login</source> 4997 <source>Login</source>
@@ -5026,33 +5026,33 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou
5026 <trans-unit id="2101170466365500913" datatype="html"> 5026 <trans-unit id="2101170466365500913" datatype="html">
5027 <source>Logging into an account lets you publish content</source> 5027 <source>Logging into an account lets you publish content</source>
5028 <target state="translated">الولوج للمثيل يسمح لك بنشر محتوى</target> 5028 <target state="translated">الولوج للمثيل يسمح لك بنشر محتوى</target>
5029 5029
5030 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> 5030 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit>
5031 <trans-unit id="3183213940445113677" datatype="html"> 5031 <trans-unit id="3183213940445113677" datatype="html">
5032 <source>Or sign in with</source> 5032 <source>Or sign in with</source>
5033 <target>أو قم بتسجيل الدخول باستخدام</target> 5033 <target>أو قم بتسجيل الدخول باستخدام</target>
5034 5034
5035 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">77</context></context-group></trans-unit> 5035 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">77</context></context-group></trans-unit>
5036 <trans-unit id="3238209155172574367" datatype="html"> 5036 <trans-unit id="3238209155172574367" datatype="html">
5037 <source>Forgot your password</source> 5037 <source>Forgot your password</source>
5038 <target>نسيتَ كلمة المرور</target> 5038 <target>نسيتَ كلمة المرور</target>
5039 5039
5040 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">99</context></context-group></trans-unit> 5040 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">99</context></context-group></trans-unit>
5041 <trans-unit id="87327320394367488" datatype="html"> 5041 <trans-unit id="87327320394367488" datatype="html">
5042 <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> 5042 <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source>
5043 <target>عذرًا ، لا يمكنك استرداد كلمة المرور الخاصة بك لأن مدير مثيل الخادم الخاص بك لم يضبط نظام البريد الإلكتروني لبيرتيوب.</target> 5043 <target>عذرًا ، لا يمكنك استرداد كلمة المرور الخاصة بك لأن مدير مثيل الخادم الخاص بك لم يضبط نظام البريد الإلكتروني لبيرتيوب.</target>
5044 5044
5045 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">106</context></context-group></trans-unit> 5045 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">106</context></context-group></trans-unit>
5046 <trans-unit id="3188014010833256853" datatype="html"> 5046 <trans-unit id="3188014010833256853" datatype="html">
5047 <source>Enter your email address and we will send you a link to reset your password.</source> 5047 <source>Enter your email address and we will send you a link to reset your password.</source>
5048 <target state="translated">أدخل بريدك الإلكتروني وسنرسل لك رسالة لاستعادة كلمة المرور.</target> 5048 <target state="translated">أدخل بريدك الإلكتروني وسنرسل لك رسالة لاستعادة كلمة المرور.</target>
5049 5049
5050 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">110</context></context-group></trans-unit> 5050 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">110</context></context-group></trans-unit>
5051 <trans-unit id="1190256911880544559" datatype="html"> 5051 <trans-unit id="1190256911880544559" datatype="html">
5052 <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. 5052 <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>.
5053The link will expire within 1 hour.</source> 5053The link will expire within 1 hour.</source>
5054 <target state="translated">أُرسل بريد يحوي تعليمات استعادة كلمة المرور الى <x id="PH"/>. ستنتهي صلاحية الرابط خلال ساعة.</target> 5054 <target state="translated">أُرسل بريد يحوي تعليمات استعادة كلمة المرور الى <x id="PH"/>. ستنتهي صلاحية الرابط خلال ساعة.</target>
5055 5055
5056 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">122</context></context-group></trans-unit> 5056 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">122</context></context-group></trans-unit>
5057 <trans-unit id="4319634264526091601" datatype="html"> 5057 <trans-unit id="4319634264526091601" datatype="html">
5058 <source>on this instance</source> 5058 <source>on this instance</source>
@@ -5087,7 +5087,7 @@ The link will expire within 1 hour.</source>
5087 <target> 5087 <target>
5088 <x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> مشترك 5088 <x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> مشترك
5089 </target> 5089 </target>
5090 5090
5091 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> 5091 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit>
5092 <trans-unit id="5146398958364876914" datatype="html"> 5092 <trans-unit id="5146398958364876914" datatype="html">
5093 <source>Sort</source> 5093 <source>Sort</source>
@@ -5146,9 +5146,9 @@ The link will expire within 1 hour.</source>
5146 <trans-unit id="1806667489382256324" datatype="html"> 5146 <trans-unit id="1806667489382256324" datatype="html">
5147 <source>Category</source> 5147 <source>Category</source>
5148 <target>الفئة</target> 5148 <target>الفئة</target>
5149 5149
5150 5150
5151 5151
5152 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">121</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> 5152 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">121</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit>
5153 <trans-unit id="2199290266269383925" datatype="html"> 5153 <trans-unit id="2199290266269383925" datatype="html">
5154 <source>Display all categories</source> 5154 <source>Display all categories</source>
@@ -5158,9 +5158,9 @@ The link will expire within 1 hour.</source>
5158 <trans-unit id="9065795501872450602" datatype="html"> 5158 <trans-unit id="9065795501872450602" datatype="html">
5159 <source>Licence</source> 5159 <source>Licence</source>
5160 <target>الرخصة</target> 5160 <target>الرخصة</target>
5161 5161
5162 5162
5163 5163
5164 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">134</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">80</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> 5164 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">134</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">80</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit>
5165 <trans-unit id="4184995865179898060" datatype="html"> 5165 <trans-unit id="4184995865179898060" datatype="html">
5166 <source>Display all licenses</source> 5166 <source>Display all licenses</source>
@@ -5170,10 +5170,10 @@ The link will expire within 1 hour.</source>
5170 <trans-unit id="2826581353496868063" datatype="html"> 5170 <trans-unit id="2826581353496868063" datatype="html">
5171 <source>Language</source> 5171 <source>Language</source>
5172 <target>اللغة</target> 5172 <target>اللغة</target>
5173 5173
5174 5174
5175 5175
5176 5176
5177 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">147</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">10</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">100</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> 5177 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">147</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">10</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">100</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit>
5178 <trans-unit id="7904142744051432458" datatype="html"> 5178 <trans-unit id="7904142744051432458" datatype="html">
5179 <source>Display all languages</source> 5179 <source>Display all languages</source>
@@ -5207,22 +5207,22 @@ The link will expire within 1 hour.</source>
5207 <trans-unit id="283421392567624698" datatype="html"> 5207 <trans-unit id="283421392567624698" datatype="html">
5208 <source>Search target</source> 5208 <source>Search target</source>
5209 <target>هدف البحث</target> 5209 <target>هدف البحث</target>
5210 5210
5211 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">212</context></context-group></trans-unit> 5211 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">212</context></context-group></trans-unit>
5212 <trans-unit id="2489767671380266270" datatype="html"> 5212 <trans-unit id="2489767671380266270" datatype="html">
5213 <source>Vidiverse</source> 5213 <source>Vidiverse</source>
5214 <target state="translated">Vidiverse</target> 5214 <target state="translated">Vidiverse</target>
5215 5215
5216 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">222</context></context-group></trans-unit> 5216 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">222</context></context-group></trans-unit>
5217 <trans-unit id="5478121364779850827" datatype="html"> 5217 <trans-unit id="5478121364779850827" datatype="html">
5218 <source>Reset</source> 5218 <source>Reset</source>
5219 <target>إعادة تعيين</target> 5219 <target>إعادة تعيين</target>
5220 5220
5221 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">60</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">109</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">122</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">135</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">148</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">163</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">171</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">188</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">229</context></context-group></trans-unit> 5221 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">60</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">109</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">122</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">135</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">148</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">163</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">171</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">188</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">229</context></context-group></trans-unit>
5222 <trans-unit id="8829497237648100098" datatype="html"> 5222 <trans-unit id="8829497237648100098" datatype="html">
5223 <source>Filter</source> 5223 <source>Filter</source>
5224 <target>مرشح</target> 5224 <target>مرشح</target>
5225 5225
5226 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">233</context></context-group></trans-unit> 5226 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">233</context></context-group></trans-unit>
5227 <trans-unit id="1909308046360229945" datatype="html"> 5227 <trans-unit id="1909308046360229945" datatype="html">
5228 <source>Add caption</source> 5228 <source>Add caption</source>
@@ -5247,23 +5247,23 @@ The link will expire within 1 hour.</source>
5247 <trans-unit id="5984574397847510001" datatype="html"> 5247 <trans-unit id="5984574397847510001" datatype="html">
5248 <source>Basic info</source> 5248 <source>Basic info</source>
5249 <target>معلومات أساسية</target> 5249 <target>معلومات أساسية</target>
5250 5250
5251 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> 5251 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit>
5252 <trans-unit id="5701618810648052610" datatype="html"> 5252 <trans-unit id="5701618810648052610" datatype="html">
5253 <source>Title</source> 5253 <source>Title</source>
5254 <target>العنوان</target> 5254 <target>العنوان</target>
5255 5255
5256 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> 5256 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit>
5257 <trans-unit id="7886570921510760899" datatype="html"> 5257 <trans-unit id="7886570921510760899" datatype="html">
5258 <source>Tags</source> 5258 <source>Tags</source>
5259 <target>الوسوم</target> 5259 <target>الوسوم</target>
5260 5260
5261 5261
5262 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> 5262 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit>
5263 <trans-unit id="354332809647287722" datatype="html"> 5263 <trans-unit id="354332809647287722" datatype="html">
5264 <source>Tags could be used to suggest relevant recommendations. <x id="LINE_BREAK"/> There is a maximum of 5 tags. <x id="LINE_BREAK"/> Press <x id="START_TAG_KBD"/>Enter<x id="CLOSE_TAG_KBD"/> to add a new tag. </source> 5264 <source>Tags could be used to suggest relevant recommendations. <x id="LINE_BREAK"/> There is a maximum of 5 tags. <x id="LINE_BREAK"/> Press <x id="START_TAG_KBD"/>Enter<x id="CLOSE_TAG_KBD"/> to add a new tag. </source>
5265 <target state="translated">Tags could be used to suggest relevant recommendations. <x id="LINE_BREAK"/> There is a maximum of 5 tags. <x id="LINE_BREAK"/> Press <x id="START_TAG_KBD"/>Enter<x id="CLOSE_TAG_KBD"/> to add a new tag. </target> 5265 <target state="translated">Tags could be used to suggest relevant recommendations. <x id="LINE_BREAK"/> There is a maximum of 5 tags. <x id="LINE_BREAK"/> Press <x id="START_TAG_KBD"/>Enter<x id="CLOSE_TAG_KBD"/> to add a new tag. </target>
5266 5266
5267 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> 5267 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit>
5268 <trans-unit id="3265632123453688399" datatype="html"> 5268 <trans-unit id="3265632123453688399" datatype="html">
5269 <source>Enter a new tag</source> 5269 <source>Enter a new tag</source>
@@ -5360,11 +5360,11 @@ The link will expire within 1 hour.</source>
5360 <trans-unit id="1460134385691851101" datatype="html"> 5360 <trans-unit id="1460134385691851101" datatype="html">
5361 <source>Advanced filters</source> 5361 <source>Advanced filters</source>
5362 <target state="translated">الترشيح المتقدم</target> 5362 <target state="translated">الترشيح المتقدم</target>
5363 5363
5364 5364
5365 5365
5366 5366
5367 5367
5368 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">40</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> 5368 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">40</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
5369 <trans-unit id="2504502765849142619" datatype="html"> 5369 <trans-unit id="2504502765849142619" datatype="html">
5370 <source>No items found</source> 5370 <source>No items found</source>
@@ -5374,108 +5374,108 @@ The link will expire within 1 hour.</source>
5374 <trans-unit id="8740951153302736329" datatype="html"> 5374 <trans-unit id="8740951153302736329" datatype="html">
5375 <source>Video descriptions are truncated by default and require manual action to expand them.</source> 5375 <source>Video descriptions are truncated by default and require manual action to expand them.</source>
5376 <target>يتم اقتطاع أوصاف الفيديو بشكل افتراضي وتتطلب إجراءً يدويًا لتوسيعها.</target> 5376 <target>يتم اقتطاع أوصاف الفيديو بشكل افتراضي وتتطلب إجراءً يدويًا لتوسيعها.</target>
5377 5377
5378 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> 5378 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit>
5379 <trans-unit id="2090254132451149776" datatype="html"> 5379 <trans-unit id="2090254132451149776" datatype="html">
5380 <source><x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://chooser-beta.creativecommons.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;>"/>Choose<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> the appropriate licence for your work. </source> 5380 <source><x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://chooser-beta.creativecommons.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;>"/>Choose<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> the appropriate licence for your work. </source>
5381 <target state="new"><x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://chooser-beta.creativecommons.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;>"/>Choose<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> the appropriate licence for your work. </target> 5381 <target state="new"><x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://chooser-beta.creativecommons.org/&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;>"/>Choose<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a>"/> the appropriate licence for your work. </target>
5382 5382
5383 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> 5383 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit>
5384 <trans-unit id="9012879216268259096" datatype="html"> 5384 <trans-unit id="9012879216268259096" datatype="html">
5385 <source>Schedule publication (<x id="INTERPOLATION"/>)</source> 5385 <source>Schedule publication (<x id="INTERPOLATION"/>)</source>
5386 <target>نشر مجدول(<x id="INTERPOLATION"/>)</target> 5386 <target>نشر مجدول(<x id="INTERPOLATION"/>)</target>
5387 5387
5388 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">123</context></context-group></trans-unit> 5388 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">123</context></context-group></trans-unit>
5389 <trans-unit id="9155449485123349070" datatype="html"> 5389 <trans-unit id="9155449485123349070" datatype="html">
5390 <source>Contains sensitive content</source> 5390 <source>Contains sensitive content</source>
5391 <target state="translated">يحتوي محتوًا حساساً</target> 5391 <target state="translated">يحتوي محتوًا حساساً</target>
5392 5392
5393 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">137</context></context-group></trans-unit> 5393 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">137</context></context-group></trans-unit>
5394 <trans-unit id="4850841867094321899" datatype="html"> 5394 <trans-unit id="4850841867094321899" datatype="html">
5395 <source>Some instances hide videos containing mature or explicit content by default.</source> 5395 <source>Some instances hide videos containing mature or explicit content by default.</source>
5396 <target state="new">Some instances hide videos containing mature or explicit content by default.</target> 5396 <target state="new">Some instances hide videos containing mature or explicit content by default.</target>
5397 5397
5398 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">141</context></context-group></trans-unit> 5398 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">141</context></context-group></trans-unit>
5399 <trans-unit id="4895908242997839943" datatype="html"> 5399 <trans-unit id="4895908242997839943" datatype="html">
5400 <source>Publish after transcoding</source> 5400 <source>Publish after transcoding</source>
5401 <target state="translated">أنشر بعد تحويل الترميز</target> 5401 <target state="translated">أنشر بعد تحويل الترميز</target>
5402 5402
5403 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">147</context></context-group></trans-unit> 5403 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">147</context></context-group></trans-unit>
5404 <trans-unit id="5596242684708779591" datatype="html"> 5404 <trans-unit id="5596242684708779591" datatype="html">
5405 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source> 5405 <source>If you decide not to wait for transcoding before publishing the video, it could be unplayable until transcoding ends.</source>
5406 <target>إذا قررت عدم الانتظار لتحويل الشفرة قبل نشر الفيديو ، فقد يكون غير قابل للتشغيل حتى ينتهي التحويل.</target> 5406 <target>إذا قررت عدم الانتظار لتحويل الشفرة قبل نشر الفيديو ، فقد يكون غير قابل للتشغيل حتى ينتهي التحويل.</target>
5407 5407
5408 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">151</context></context-group></trans-unit> 5408 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">151</context></context-group></trans-unit>
5409 <trans-unit id="2142169012597585513" datatype="html"> 5409 <trans-unit id="2142169012597585513" datatype="html">
5410 <source>Add another caption</source> 5410 <source>Add another caption</source>
5411 <target>أضف تسمية توضيحية أخرى</target> 5411 <target>أضف تسمية توضيحية أخرى</target>
5412 5412
5413 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">174</context></context-group></trans-unit> 5413 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">174</context></context-group></trans-unit>
5414 <trans-unit id="4525569337497033381" datatype="html"> 5414 <trans-unit id="4525569337497033381" datatype="html">
5415 <source>See the subtitle file</source> 5415 <source>See the subtitle file</source>
5416 <target>اعرض ملف الترجمة</target> 5416 <target>اعرض ملف الترجمة</target>
5417 5417
5418 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">183</context></context-group></trans-unit> 5418 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">183</context></context-group></trans-unit>
5419 <trans-unit id="5600963353867835532" datatype="html"> 5419 <trans-unit id="5600963353867835532" datatype="html">
5420 <source>Already uploaded ✔</source> 5420 <source>Already uploaded ✔</source>
5421 <target>تم الرفع بالفعل ✔</target> 5421 <target>تم الرفع بالفعل ✔</target>
5422 5422
5423 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">187</context></context-group></trans-unit> 5423 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">187</context></context-group></trans-unit>
5424 <trans-unit id="73284819990858102" datatype="html"> 5424 <trans-unit id="73284819990858102" datatype="html">
5425 <source>Will be created on update</source> 5425 <source>Will be created on update</source>
5426 <target>سيتم إنشاؤه عند التحديث</target> 5426 <target>سيتم إنشاؤه عند التحديث</target>
5427 5427
5428 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">195</context></context-group></trans-unit> 5428 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">195</context></context-group></trans-unit>
5429 <trans-unit id="7044449271109607418" datatype="html"> 5429 <trans-unit id="7044449271109607418" datatype="html">
5430 <source>Cancel create</source> 5430 <source>Cancel create</source>
5431 <target>إلغاء الإنشاء</target> 5431 <target>إلغاء الإنشاء</target>
5432 5432
5433 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">197</context></context-group></trans-unit> 5433 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">197</context></context-group></trans-unit>
5434 <trans-unit id="7879454016898626211" datatype="html"> 5434 <trans-unit id="7879454016898626211" datatype="html">
5435 <source>Will be deleted on update</source> 5435 <source>Will be deleted on update</source>
5436 <target>سيتم حذفه عند التحديث</target> 5436 <target>سيتم حذفه عند التحديث</target>
5437 5437
5438 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">203</context></context-group></trans-unit> 5438 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">203</context></context-group></trans-unit>
5439 <trans-unit id="305832955565133216" datatype="html"> 5439 <trans-unit id="305832955565133216" datatype="html">
5440 <source>Cancel deletion</source> 5440 <source>Cancel deletion</source>
5441 <target>إلغاء الحذف</target> 5441 <target>إلغاء الحذف</target>
5442 5442
5443 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">205</context></context-group></trans-unit> 5443 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">205</context></context-group></trans-unit>
5444 <trans-unit id="360396717319152766" datatype="html"> 5444 <trans-unit id="360396717319152766" datatype="html">
5445 <source>No captions for now.</source> 5445 <source>No captions for now.</source>
5446 <target>لا تسمية توضيحية حتى الآن.</target> 5446 <target>لا تسمية توضيحية حتى الآن.</target>
5447 5447
5448 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">210</context></context-group></trans-unit> 5448 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">210</context></context-group></trans-unit>
5449 <trans-unit id="8508836953540308271" datatype="html"> 5449 <trans-unit id="8508836953540308271" datatype="html">
5450 <source>Live settings</source> 5450 <source>Live settings</source>
5451 <target state="translated">إعدادات البث المباشر</target> 5451 <target state="translated">إعدادات البث المباشر</target>
5452 5452
5453 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">219</context></context-group></trans-unit> 5453 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">219</context></context-group></trans-unit>
5454 <trans-unit id="1212376766715456139" datatype="html"> 5454 <trans-unit id="1212376766715456139" datatype="html">
5455 <source>⚠️ If you enable this option, your live will be terminated if you exceed your video quota</source> 5455 <source>⚠️ If you enable this option, your live will be terminated if you exceed your video quota</source>
5456 <target state="translated">⚠️ إذا فعلت هذا الخيار بثوثك ستنهى اذا تجاوزت حصة الفيديو</target> 5456 <target state="translated">⚠️ إذا فعلت هذا الخيار بثوثك ستنهى اذا تجاوزت حصة الفيديو</target>
5457 5457
5458 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">272</context></context-group></trans-unit> 5458 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">272</context></context-group></trans-unit>
5459 <trans-unit id="8891497955962997247" datatype="html"> 5459 <trans-unit id="8891497955962997247" datatype="html">
5460 <source>Automatically publish a replay when your live ends</source> 5460 <source>Automatically publish a replay when your live ends</source>
5461 <target state="new">Automatically publish a replay when your live ends</target> 5461 <target state="new">Automatically publish a replay when your live ends</target>
5462 5462
5463 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">268</context></context-group></trans-unit> 5463 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">268</context></context-group></trans-unit>
5464 <trans-unit id="8821221480638803282" datatype="html"> 5464 <trans-unit id="8821221480638803282" datatype="html">
5465 <source>Advanced settings</source> 5465 <source>Advanced settings</source>
5466 <target>الإعدادات المتقدمة</target> 5466 <target>الإعدادات المتقدمة</target>
5467 5467
5468 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">284</context></context-group></trans-unit> 5468 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">284</context></context-group></trans-unit>
5469 <trans-unit id="1168086599577356916" datatype="html"> 5469 <trans-unit id="1168086599577356916" datatype="html">
5470 <source>Video preview</source> 5470 <source>Video preview</source>
5471 <target>معاينة الفيديو</target> 5471 <target>معاينة الفيديو</target>
5472 5472
5473 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">291</context></context-group></trans-unit> 5473 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">291</context></context-group></trans-unit>
5474 <trans-unit id="2288513108450439427" datatype="html"> 5474 <trans-unit id="2288513108450439427" datatype="html">
5475 <source>Support</source> 5475 <source>Support</source>
5476 <target>الدعم</target> 5476 <target>الدعم</target>
5477 5477
5478 5478
5479 <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">300</context></context-group></trans-unit> 5479 <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">300</context></context-group></trans-unit>
5480 <trans-unit id="1359533927353954373" datatype="html"> 5480 <trans-unit id="1359533927353954373" datatype="html">
5481 <source>View account</source> 5481 <source>View account</source>
@@ -5485,32 +5485,32 @@ The link will expire within 1 hour.</source>
5485 <trans-unit id="3799746968259478616" datatype="html"> 5485 <trans-unit id="3799746968259478616" datatype="html">
5486 <source>View account</source> 5486 <source>View account</source>
5487 <target state="translated">اعرض الحساب</target> 5487 <target state="translated">اعرض الحساب</target>
5488 5488
5489 <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> 5489 <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit>
5490 <trans-unit id="6778225321073009261" datatype="html"> 5490 <trans-unit id="6778225321073009261" datatype="html">
5491 <source>View owner account</source> 5491 <source>View owner account</source>
5492 <target state="translated">اعرض حساب المالك</target> 5492 <target state="translated">اعرض حساب المالك</target>
5493 5493
5494 <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> 5494 <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit>
5495 <trans-unit id="8798391261676185924" datatype="html"> 5495 <trans-unit id="8798391261676185924" datatype="html">
5496 <source>VIDEO CHANNEL</source> 5496 <source>VIDEO CHANNEL</source>
5497 <target state="translated">قناة فيديو</target> 5497 <target state="translated">قناة فيديو</target>
5498 5498
5499 <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> 5499 <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit>
5500 <trans-unit id="5121874940679887597" datatype="html"> 5500 <trans-unit id="5121874940679887597" datatype="html">
5501 <source>Copy channel handle</source> 5501 <source>Copy channel handle</source>
5502 <target state="new">Copy channel handle</target> 5502 <target state="new">Copy channel handle</target>
5503 5503
5504 <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">68</context></context-group></trans-unit> 5504 <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">68</context></context-group></trans-unit>
5505 <trans-unit id="3068011377000255023" datatype="html"> 5505 <trans-unit id="3068011377000255023" datatype="html">
5506 <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> 5506 <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source>
5507 <target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target> 5507 <target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target>
5508 5508
5509 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">78</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> 5509 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">39</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">78</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit>
5510 <trans-unit id="8856905278208146821" datatype="html"> 5510 <trans-unit id="8856905278208146821" datatype="html">
5511 <source> <x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}" xid="8553183884518584864"/> </source> 5511 <source> <x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}" xid="8553183884518584864"/> </source>
5512 <target state="translated"><x id="ICU" equiv-text="{channelVideosCount, plural, =1 {1 videos} other {{{ channelVideosCount }} videos}}"/> </target> 5512 <target state="translated"><x id="ICU" equiv-text="{channelVideosCount, plural, =1 {1 videos} other {{{ channelVideosCount }} videos}}"/> </target>
5513 5513
5514 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">2</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> 5514 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">2</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit>
5515 <trans-unit id="2486917589932345430" datatype="html"> 5515 <trans-unit id="2486917589932345430" datatype="html">
5516 <source>OWNER ACCOUNT</source> 5516 <source>OWNER ACCOUNT</source>
@@ -5520,35 +5520,35 @@ The link will expire within 1 hour.</source>
5520 <trans-unit id="1952020204339597057" datatype="html"> 5520 <trans-unit id="1952020204339597057" datatype="html">
5521 <source>Short text to tell people how they can support you (membership platform...).</source> 5521 <source>Short text to tell people how they can support you (membership platform...).</source>
5522 <target state="translated">نص قصير لإخبار الناس عن طرق دعمهم لك.</target> 5522 <target state="translated">نص قصير لإخبار الناس عن طرق دعمهم لك.</target>
5523 5523
5524 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">303</context></context-group></trans-unit> 5524 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">303</context></context-group></trans-unit>
5525 <trans-unit id="7958716262877895706" datatype="html"> 5525 <trans-unit id="7958716262877895706" datatype="html">
5526 <source>Original publication date</source> 5526 <source>Original publication date</source>
5527 <target>تاريخ النشر الأصلي</target> 5527 <target>تاريخ النشر الأصلي</target>
5528 5528
5529 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">320</context></context-group></trans-unit> 5529 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">320</context></context-group></trans-unit>
5530 <trans-unit id="50985514722149155" datatype="html"> 5530 <trans-unit id="50985514722149155" datatype="html">
5531 <source>This is the date when the content was originally published (e.g. the release date for a film)</source> 5531 <source>This is the date when the content was originally published (e.g. the release date for a film)</source>
5532 <target state="translated">هذا التاريخ الأصلي لنشر المحتوى (مثلا تاريخ صدور الفلم)</target> 5532 <target state="translated">هذا التاريخ الأصلي لنشر المحتوى (مثلا تاريخ صدور الفلم)</target>
5533 5533
5534 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">323</context></context-group></trans-unit> 5534 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">323</context></context-group></trans-unit>
5535 <trans-unit id="1669378369440073270" datatype="html"> 5535 <trans-unit id="1669378369440073270" datatype="html">
5536 <source>Plugin settings</source> 5536 <source>Plugin settings</source>
5537 <target state="translated">اعدادات الاضافة</target> 5537 <target state="translated">اعدادات الاضافة</target>
5538 5538
5539 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="8693603235657020323" datatype="html"> 5539 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="8693603235657020323" datatype="html">
5540 <source>Other</source><target state="new">Other</target> 5540 <source>Other</source><target state="new">Other</target>
5541 5541
5542 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">188</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> 5542 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">188</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit>
5543 <trans-unit id="2200003513633568069" datatype="html"> 5543 <trans-unit id="2200003513633568069" datatype="html">
5544 <source>Enable video comments</source> 5544 <source>Enable video comments</source>
5545 <target>السماح بالتعليق على الفيديوهات</target> 5545 <target>السماح بالتعليق على الفيديوهات</target>
5546 5546
5547 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">341</context></context-group></trans-unit> 5547 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">341</context></context-group></trans-unit>
5548 <trans-unit id="8896564060463626070" datatype="html"> 5548 <trans-unit id="8896564060463626070" datatype="html">
5549 <source>Enable download</source> 5549 <source>Enable download</source>
5550 <target>فعّل التنزيل</target> 5550 <target>فعّل التنزيل</target>
5551 5551
5552 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">346</context></context-group></trans-unit> 5552 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">346</context></context-group></trans-unit>
5553 <trans-unit id="3455474330346212563" datatype="html"> 5553 <trans-unit id="3455474330346212563" datatype="html">
5554 <source>Select the torrent to import</source> 5554 <source>Select the torrent to import</source>
@@ -5582,42 +5582,42 @@ The link will expire within 1 hour.</source>
5582 <trans-unit id="4422946962830681102" datatype="html"> 5582 <trans-unit id="4422946962830681102" datatype="html">
5583 <source>Torrents with only 1 file are supported.</source> 5583 <source>Torrents with only 1 file are supported.</source>
5584 <target state="translated">ملفات التورنت المدعومة هي التي تقود لملف واحد.</target> 5584 <target state="translated">ملفات التورنت المدعومة هي التي تقود لملف واحد.</target>
5585 5585
5586 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> 5586 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit>
5587 <trans-unit id="7860848084471862305" datatype="html"> 5587 <trans-unit id="7860848084471862305" datatype="html">
5588 <source>Cannot create live because this instance have too many created lives</source> 5588 <source>Cannot create live because this instance have too many created lives</source>
5589 <target state="translated">يتعذر إنشاء بث مباشر بسب تواجد العديد من البثوث حاليا على هذا الموقع.</target> 5589 <target state="translated">يتعذر إنشاء بث مباشر بسب تواجد العديد من البثوث حاليا على هذا الموقع.</target>
5590 5590
5591 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> 5591 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit>
5592 <trans-unit id="1278564497286613571" datatype="html"> 5592 <trans-unit id="1278564497286613571" datatype="html">
5593 <source>Cannot create live because you created too many lives</source> 5593 <source>Cannot create live because you created too many lives</source>
5594 <target state="translated">يتعذر إنشاء بث مباشر لأنك أنشأت الكثير منه</target> 5594 <target state="translated">يتعذر إنشاء بث مباشر لأنك أنشأت الكثير منه</target>
5595 5595
5596 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">105</context></context-group></trans-unit> 5596 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">105</context></context-group></trans-unit>
5597 <trans-unit id="2621043320678012413" datatype="html"> 5597 <trans-unit id="2621043320678012413" datatype="html">
5598 <source>Live published.</source> 5598 <source>Live published.</source>
5599 <target state="translated">نُشر البث المباشر.</target> 5599 <target state="translated">نُشر البث المباشر.</target>
5600 5600
5601 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> 5601 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit>
5602 <trans-unit id="5872059367236038160" datatype="html"> 5602 <trans-unit id="5872059367236038160" datatype="html">
5603 <source>Stream only once and save a replay of your live</source> 5603 <source>Stream only once and save a replay of your live</source>
5604 <target state="new">Stream only once and save a replay of your live</target> 5604 <target state="new">Stream only once and save a replay of your live</target>
5605 5605
5606 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">157</context></context-group></trans-unit> 5606 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">157</context></context-group></trans-unit>
5607 <trans-unit id="2360261543675520397" datatype="html"> 5607 <trans-unit id="2360261543675520397" datatype="html">
5608 <source>Stream only once</source> 5608 <source>Stream only once</source>
5609 <target state="new">Stream only once</target> 5609 <target state="new">Stream only once</target>
5610 5610
5611 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">160</context></context-group></trans-unit> 5611 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">160</context></context-group></trans-unit>
5612 <trans-unit id="5168540607709796871" datatype="html"> 5612 <trans-unit id="5168540607709796871" datatype="html">
5613 <source>Stream multiple times, replays can't be saved</source> 5613 <source>Stream multiple times, replays can't be saved</source>
5614 <target state="new">Stream multiple times, replays can't be saved</target> 5614 <target state="new">Stream multiple times, replays can't be saved</target>
5615 5615
5616 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit> 5616 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
5617 <trans-unit id="58134197356653483" datatype="html"> 5617 <trans-unit id="58134197356653483" datatype="html">
5618 <source>Stream multiple times using the same URL</source> 5618 <source>Stream multiple times using the same URL</source>
5619 <target state="new">Stream multiple times using the same URL</target> 5619 <target state="new">Stream multiple times using the same URL</target>
5620 5620
5621 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit> 5621 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
5622 <trans-unit id="8218579597782287078" datatype="html"> 5622 <trans-unit id="8218579597782287078" datatype="html">
5623 <source>Go Live</source> 5623 <source>Go Live</source>
@@ -5655,12 +5655,12 @@ The link will expire within 1 hour.</source>
5655 <trans-unit id="9172233176401579786" datatype="html"> 5655 <trans-unit id="9172233176401579786" datatype="html">
5656 <source>Scheduled</source> 5656 <source>Scheduled</source>
5657 <target>مجدول</target> 5657 <target>مجدول</target>
5658 5658
5659 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">207</context></context-group></trans-unit> 5659 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">207</context></context-group></trans-unit>
5660 <trans-unit id="1435317307066082710" datatype="html"> 5660 <trans-unit id="1435317307066082710" datatype="html">
5661 <source>Hide the video until a specific date</source> 5661 <source>Hide the video until a specific date</source>
5662 <target state="translated">أخفِ الفيديو حتى تاريخ معين</target> 5662 <target state="translated">أخفِ الفيديو حتى تاريخ معين</target>
5663 5663
5664 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">208</context></context-group></trans-unit> 5664 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">208</context></context-group></trans-unit>
5665 <trans-unit id="1087181129481039628" datatype="html"> 5665 <trans-unit id="1087181129481039628" datatype="html">
5666 <source>Normal live</source> 5666 <source>Normal live</source>
@@ -5723,7 +5723,7 @@ The link will expire within 1 hour.</source>
5723 <trans-unit id="6161604372916832458" datatype="html"> 5723 <trans-unit id="6161604372916832458" datatype="html">
5724 <source>Upload on hold</source> 5724 <source>Upload on hold</source>
5725 <target state="new">Upload on hold</target> 5725 <target state="new">Upload on hold</target>
5726 5726
5727 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> 5727 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit>
5728 <trans-unit id="285180972645018518" datatype="html"> 5728 <trans-unit id="285180972645018518" datatype="html">
5729 <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> 5729 <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source>
@@ -5922,27 +5922,27 @@ The link will expire within 1 hour.</source>
5922 <trans-unit id="1068153312491986796" datatype="html"> 5922 <trans-unit id="1068153312491986796" datatype="html">
5923 <source>Display privacy warning</source> 5923 <source>Display privacy warning</source>
5924 <target>اعرض تنبيه الخصوصية</target> 5924 <target>اعرض تنبيه الخصوصية</target>
5925 5925
5926 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">229</context></context-group></trans-unit> 5926 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">229</context></context-group></trans-unit>
5927 <trans-unit id="7540352830225038263" datatype="html"> 5927 <trans-unit id="7540352830225038263" datatype="html">
5928 <source>Display player controls</source> 5928 <source>Display player controls</source>
5929 <target>اعرض أزرار تحكم المشغل</target> 5929 <target>اعرض أزرار تحكم المشغل</target>
5930 5930
5931 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">236</context></context-group></trans-unit> 5931 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">236</context></context-group></trans-unit>
5932 <trans-unit id="805456636864344681" datatype="html"> 5932 <trans-unit id="805456636864344681" datatype="html">
5933 <source>Display PeerTube button link</source> 5933 <source>Display PeerTube button link</source>
5934 <target state="translated">اعرض رابط زر بيرتيوب</target> 5934 <target state="translated">اعرض رابط زر بيرتيوب</target>
5935 5935
5936 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">243</context></context-group></trans-unit> 5936 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">243</context></context-group></trans-unit>
5937 <trans-unit id="2353402732767789211" datatype="html"> 5937 <trans-unit id="2353402732767789211" datatype="html">
5938 <source>More customization</source> 5938 <source>More customization</source>
5939 <target>المزيد من التخصيص</target> 5939 <target>المزيد من التخصيص</target>
5940 5940
5941 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">255</context></context-group></trans-unit> 5941 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">255</context></context-group></trans-unit>
5942 <trans-unit id="1284179134768564307" datatype="html"> 5942 <trans-unit id="1284179134768564307" datatype="html">
5943 <source>Less customization</source> 5943 <source>Less customization</source>
5944 <target>تخصيص أقل</target> 5944 <target>تخصيص أقل</target>
5945 5945
5946 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">263</context></context-group></trans-unit> 5946 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">263</context></context-group></trans-unit>
5947 <trans-unit id="1290987288288099212" datatype="html"> 5947 <trans-unit id="1290987288288099212" datatype="html">
5948 <source>Support <x id="INTERPOLATION" equiv-text="{{ displayName }}"/></source> 5948 <source>Support <x id="INTERPOLATION" equiv-text="{{ displayName }}"/></source>
@@ -5955,7 +5955,7 @@ The link will expire within 1 hour.</source>
5955 <trans-unit id="2454050363478003966" datatype="html"> 5955 <trans-unit id="2454050363478003966" datatype="html">
5956 <source>Login</source> 5956 <source>Login</source>
5957 <target state="translated">تسجل الدخول</target> 5957 <target state="translated">تسجل الدخول</target>
5958 5958
5959 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login-routing.module.ts</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">48</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">103</context></context-group></trans-unit> 5959 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login-routing.module.ts</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">48</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">103</context></context-group></trans-unit>
5960 <trans-unit id="5336944753883027145" datatype="html"> 5960 <trans-unit id="5336944753883027145" datatype="html">
5961 <source>Maybe later</source> 5961 <source>Maybe later</source>
@@ -5970,7 +5970,7 @@ The link will expire within 1 hour.</source>
5970 <trans-unit id="4416005356063364306" datatype="html"> 5970 <trans-unit id="4416005356063364306" datatype="html">
5971 <source>This video is blocked.</source> 5971 <source>This video is blocked.</source>
5972 <target>هذا الفيديو محجوب.</target> 5972 <target>هذا الفيديو محجوب.</target>
5973 5973
5974 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> 5974 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit>
5975 <trans-unit id="2482137713226830428" datatype="html"> 5975 <trans-unit id="2482137713226830428" datatype="html">
5976 <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> 5976 <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source>
@@ -6070,36 +6070,36 @@ The link will expire within 1 hour.</source>
6070 <trans-unit id="4092533321838934102" datatype="html"> 6070 <trans-unit id="4092533321838934102" datatype="html">
6071 <source>The video is being imported, it will be available when the import is finished.</source> 6071 <source>The video is being imported, it will be available when the import is finished.</source>
6072 <target state="translated">هذا الفيديو يستورد، سيتوفر عند أنتهاء العملية.</target> 6072 <target state="translated">هذا الفيديو يستورد، سيتوفر عند أنتهاء العملية.</target>
6073 6073
6074 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit> 6074 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">9</context></context-group></trans-unit>
6075 <trans-unit id="8304621069698650554" datatype="html"> 6075 <trans-unit id="8304621069698650554" datatype="html">
6076 <source>The video is being transcoded, it may not work properly.</source> 6076 <source>The video is being transcoded, it may not work properly.</source>
6077 <target state="translated">يحول ترميز الفيديو ، قد لا يعمل بشكل صحيح.</target> 6077 <target state="translated">يحول ترميز الفيديو ، قد لا يعمل بشكل صحيح.</target>
6078 6078
6079 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> 6079 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit>
6080 <trans-unit id="9080034597841586171" datatype="html"> 6080 <trans-unit id="9080034597841586171" datatype="html">
6081 <source>The video is being moved to an external server, it may not work properly.</source> 6081 <source>The video is being moved to an external server, it may not work properly.</source>
6082 <target state="new"> The video is being moved to an external server, it may not work properly. 6082 <target state="new"> The video is being moved to an external server, it may not work properly.
6083</target> 6083</target>
6084 6084
6085 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> 6085 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit>
6086 <trans-unit id="8619499607322327082" datatype="html"> 6086 <trans-unit id="8619499607322327082" datatype="html">
6087 <source>This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </source> 6087 <source>This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </source>
6088 <target state="new"> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. 6088 <target state="new"> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>.
6089</target> 6089</target>
6090 6090
6091 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> 6091 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit>
6092 <trans-unit id="4262297989675590582" datatype="html"> 6092 <trans-unit id="4262297989675590582" datatype="html">
6093 <source>This live has not started yet.</source> 6093 <source>This live has not started yet.</source>
6094 <target state="new"> This live has not started yet. 6094 <target state="new"> This live has not started yet.
6095</target> 6095</target>
6096 6096
6097 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> 6097 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit>
6098 <trans-unit id="4926204350710628499" datatype="html"> 6098 <trans-unit id="4926204350710628499" datatype="html">
6099 <source>This live has ended.</source> 6099 <source>This live has ended.</source>
6100 <target state="new"> This live has ended. 6100 <target state="new"> This live has ended.
6101</target> 6101</target>
6102 6102
6103 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> 6103 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit>
6104 <trans-unit id="8518611938109939710" datatype="html"> 6104 <trans-unit id="8518611938109939710" datatype="html">
6105 <source>SORT BY</source> 6105 <source>SORT BY</source>
@@ -6221,7 +6221,7 @@ The link will expire within 1 hour.</source>
6221 <trans-unit id="2330577642930707695" datatype="html"> 6221 <trans-unit id="2330577642930707695" datatype="html">
6222 <source>Cancel</source> 6222 <source>Cancel</source>
6223 <target>الغاء</target> 6223 <target>الغاء</target>
6224 6224
6225 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> 6225 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit>
6226 <trans-unit id="2263890353858735493" datatype="html"> 6226 <trans-unit id="2263890353858735493" datatype="html">
6227 <source>You are one step away from commenting</source> 6227 <source>You are one step away from commenting</source>
@@ -6246,7 +6246,7 @@ The link will expire within 1 hour.</source>
6246 <trans-unit id="2662644497259948010" datatype="html"> 6246 <trans-unit id="2662644497259948010" datatype="html">
6247 <source>Comment</source> 6247 <source>Comment</source>
6248 <target state="translated">تعليق</target> 6248 <target state="translated">تعليق</target>
6249 6249
6250 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> 6250 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit>
6251 <trans-unit id="3572897237443938692" datatype="html"> 6251 <trans-unit id="3572897237443938692" datatype="html">
6252 <source>Highlighted comment</source> 6252 <source>Highlighted comment</source>
@@ -6256,7 +6256,7 @@ The link will expire within 1 hour.</source>
6256 <trans-unit id="4502286564339177240" datatype="html"> 6256 <trans-unit id="4502286564339177240" datatype="html">
6257 <source>Reply</source> 6257 <source>Reply</source>
6258 <target>رد</target> 6258 <target>رد</target>
6259 6259
6260 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> 6260 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.ts</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit>
6261 <trans-unit id="2447932355167015019" datatype="html"> 6261 <trans-unit id="2447932355167015019" datatype="html">
6262 <source>This comment has been deleted</source> 6262 <source>This comment has been deleted</source>
@@ -6312,62 +6312,62 @@ The link will expire within 1 hour.</source>
6312 <trans-unit id="5254305728396198887" datatype="html"> 6312 <trans-unit id="5254305728396198887" datatype="html">
6313 <source>Sensitive content</source> 6313 <source>Sensitive content</source>
6314 <target state="new">Sensitive content</target> 6314 <target state="new">Sensitive content</target>
6315 6315
6316 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">116</context></context-group></trans-unit> 6316 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">116</context></context-group></trans-unit>
6317 <trans-unit id="5590086849807274701" datatype="html"> 6317 <trans-unit id="5590086849807274701" datatype="html">
6318 <source>Scope</source> 6318 <source>Scope</source>
6319 <target state="new">Scope</target> 6319 <target state="new">Scope</target>
6320 6320
6321 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">123</context></context-group></trans-unit> 6321 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">123</context></context-group></trans-unit>
6322 <trans-unit id="5019568087038659501" datatype="html"> 6322 <trans-unit id="5019568087038659501" datatype="html">
6323 <source>Federated</source> 6323 <source>Federated</source>
6324 <target state="new">Federated</target> 6324 <target state="new">Federated</target>
6325 6325
6326 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> 6326 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">125</context></context-group></trans-unit>
6327 <trans-unit id="1949800099101277248" datatype="html"> 6327 <trans-unit id="1949800099101277248" datatype="html">
6328 <source>Languages</source> 6328 <source>Languages</source>
6329 <target state="new">Languages</target> 6329 <target state="new">Languages</target>
6330 6330
6331 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> 6331 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">133</context></context-group></trans-unit>
6332 <trans-unit id="1902100407096396858" datatype="html"> 6332 <trans-unit id="1902100407096396858" datatype="html">
6333 <source>Categories</source> 6333 <source>Categories</source>
6334 <target state="new">Categories</target> 6334 <target state="new">Categories</target>
6335 6335
6336 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">142</context></context-group></trans-unit> 6336 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">142</context></context-group></trans-unit>
6337 <trans-unit id="3599150758014724057" datatype="html"> 6337 <trans-unit id="3599150758014724057" datatype="html">
6338 <source>All videos</source> 6338 <source>All videos</source>
6339 <target state="new">All videos</target> 6339 <target state="new">All videos</target>
6340 6340
6341 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">151</context></context-group></trans-unit> 6341 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">151</context></context-group></trans-unit>
6342 <trans-unit id="8466337030143068285" datatype="html"> 6342 <trans-unit id="8466337030143068285" datatype="html">
6343 <source>Blurred</source> 6343 <source>Blurred</source>
6344 <target state="translated">مطموس</target> 6344 <target state="translated">مطموس</target>
6345 6345
6346 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">231</context></context-group></trans-unit> 6346 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">231</context></context-group></trans-unit>
6347 <trans-unit id="7054829409324166420" datatype="html"> 6347 <trans-unit id="7054829409324166420" datatype="html">
6348 <source>hidden</source> 6348 <source>hidden</source>
6349 <target state="new">hidden</target> 6349 <target state="new">hidden</target>
6350 6350
6351 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">237</context></context-group></trans-unit> 6351 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">237</context></context-group></trans-unit>
6352 <trans-unit id="5766954855630346873" datatype="html"> 6352 <trans-unit id="5766954855630346873" datatype="html">
6353 <source>blurred</source> 6353 <source>blurred</source>
6354 <target state="translated">مطموس</target> 6354 <target state="translated">مطموس</target>
6355 6355
6356 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">238</context></context-group></trans-unit> 6356 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">238</context></context-group></trans-unit>
6357 <trans-unit id="1833483831276078393" datatype="html"> 6357 <trans-unit id="1833483831276078393" datatype="html">
6358 <source>displayed</source> 6358 <source>displayed</source>
6359 <target state="new">displayed</target> 6359 <target state="new">displayed</target>
6360 6360
6361 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">240</context></context-group></trans-unit> 6361 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">240</context></context-group></trans-unit>
6362 <trans-unit id="4856575356061361269" datatype="html"> 6362 <trans-unit id="4856575356061361269" datatype="html">
6363 <source><x id="PH"/> direct account followers </source> 6363 <source><x id="PH"/> direct account followers </source>
6364 <target><x id="PH"/> متابعًا مباشرًا للحساب </target> 6364 <target><x id="PH"/> متابعًا مباشرًا للحساب </target>
6365 6365
6366 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">153</context></context-group></trans-unit> 6366 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">153</context></context-group></trans-unit>
6367 <trans-unit id="6250999352462648289" datatype="html"> 6367 <trans-unit id="6250999352462648289" datatype="html">
6368 <source>Report this account</source> 6368 <source>Report this account</source>
6369 <target state="translated">بلِّغ عن هذا الحساب</target> 6369 <target state="translated">بلِّغ عن هذا الحساب</target>
6370 6370
6371 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> 6371 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit>
6372 <trans-unit id="2614607010577950577" datatype="html"> 6372 <trans-unit id="2614607010577950577" datatype="html">
6373 <source>Overview</source> 6373 <source>Overview</source>
@@ -6380,24 +6380,24 @@ The link will expire within 1 hour.</source>
6380 <trans-unit id="1504521795586863905" datatype="html"> 6380 <trans-unit id="1504521795586863905" datatype="html">
6381 <source>VIDEOS</source> 6381 <source>VIDEOS</source>
6382 <target state="translated">فيديوهات</target> 6382 <target state="translated">فيديوهات</target>
6383 6383
6384 6384
6385 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">245</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> 6385 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">83</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">245</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit>
6386 <trans-unit id="25349740244798533" datatype="html"> 6386 <trans-unit id="25349740244798533" datatype="html">
6387 <source>Username copied</source> 6387 <source>Username copied</source>
6388 <target>تم نسخ اسم المستخدم</target> 6388 <target>تم نسخ اسم المستخدم</target>
6389 6389
6390 6390
6391 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">121</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">115</context></context-group></trans-unit> 6391 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">121</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">115</context></context-group></trans-unit>
6392 <trans-unit id="9221735175659318025" datatype="html"> 6392 <trans-unit id="9221735175659318025" datatype="html">
6393 <source>1 subscriber</source> 6393 <source>1 subscriber</source>
6394 <target state="translated">مشترك</target> 6394 <target state="translated">مشترك</target>
6395 6395
6396 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> 6396 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">125</context></context-group></trans-unit>
6397 <trans-unit id="4097331874769079975" datatype="html"> 6397 <trans-unit id="4097331874769079975" datatype="html">
6398 <source><x id="PH"/> subscribers</source> 6398 <source><x id="PH"/> subscribers</source>
6399 <target state="translated"><x id="PH"/> مشتركا</target> 6399 <target state="translated"><x id="PH"/> مشتركا</target>
6400 6400
6401 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> 6401 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit>
6402 <trans-unit id="1035838766454786107" datatype="html"> 6402 <trans-unit id="1035838766454786107" datatype="html">
6403 <source>Audio-only</source> 6403 <source>Audio-only</source>
@@ -6538,8 +6538,8 @@ The link will expire within 1 hour.</source>
6538 <trans-unit id="1305357231288135414" datatype="html"> 6538 <trans-unit id="1305357231288135414" datatype="html">
6539 <source>Homepage</source> 6539 <source>Homepage</source>
6540 <target state="new">Homepage</target> 6540 <target state="new">Homepage</target>
6541 6541
6542 6542
6543 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-homepage.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+home/home-routing.module.ts</context><context context-type="linenumber">11</context></context-group></trans-unit> 6543 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-homepage.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+home/home-routing.module.ts</context><context context-type="linenumber">11</context></context-group></trans-unit>
6544 <trans-unit id="5037437391296624618" datatype="html"> 6544 <trans-unit id="5037437391296624618" datatype="html">
6545 <source>Information</source> 6545 <source>Information</source>
@@ -6554,7 +6554,7 @@ The link will expire within 1 hour.</source>
6554 <trans-unit id="2060042292048624940" datatype="html"> 6554 <trans-unit id="2060042292048624940" datatype="html">
6555 <source>Configuration updated.</source> 6555 <source>Configuration updated.</source>
6556 <target>تم تحديث الإعدادات.</target> 6556 <target>تم تحديث الإعدادات.</target>
6557 6557
6558 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">306</context></context-group></trans-unit> 6558 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">306</context></context-group></trans-unit>
6559 <trans-unit id="6920964195632624609" datatype="html"> 6559 <trans-unit id="6920964195632624609" datatype="html">
6560 <source>INSTANCE HOMEPAGE</source> 6560 <source>INSTANCE HOMEPAGE</source>
@@ -6567,7 +6567,7 @@ The link will expire within 1 hour.</source>
6567 <trans-unit id="3203902538239082422" datatype="html"> 6567 <trans-unit id="3203902538239082422" datatype="html">
6568 <source>You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</source> 6568 <source>You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</source>
6569 <target state="new">You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</target> 6569 <target state="new">You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</target>
6570 6570
6571 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.ts</context><context context-type="linenumber">105</context></context-group></trans-unit> 6571 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.ts</context><context context-type="linenumber">105</context></context-group></trans-unit>
6572 <trans-unit id="6284468333579755406" datatype="html"> 6572 <trans-unit id="6284468333579755406" datatype="html">
6573 <source>Edit custom configuration</source> 6573 <source>Edit custom configuration</source>
@@ -6700,28 +6700,28 @@ The link will expire within 1 hour.</source>
6700 <trans-unit id="7022070615528435141" datatype="html"> 6700 <trans-unit id="7022070615528435141" datatype="html">
6701 <source>Delete</source> 6701 <source>Delete</source>
6702 <target state="translated">احذف</target> 6702 <target state="translated">احذف</target>
6703 6703
6704 6704
6705 6705
6706 6706
6707 6707
6708 6708
6709 6709
6710 6710
6711 6711
6712 6712
6713 6713
6714 6714
6715 6715
6716 6716
6717 6717
6718 6718
6719 6719
6720 6720
6721 6721
6722 6722
6723 6723
6724 6724
6725 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">91</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">100</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">169</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">87</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">201</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">198</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">229</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">127</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">50</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">178</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">219</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">189</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">134</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">376</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">411</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">351</context></context-group></trans-unit> 6725 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.ts</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">91</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">100</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">169</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">87</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">201</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">198</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.ts</context><context context-type="linenumber">229</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">127</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">50</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">151</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">178</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">219</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">189</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">134</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">376</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">411</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/delete-button.component.ts</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">351</context></context-group></trans-unit>
6726 <trans-unit id="2452034338905853167" datatype="html"> 6726 <trans-unit id="2452034338905853167" datatype="html">
6727 <source><x id="PH"/> removed from instance followers </source> 6727 <source><x id="PH"/> removed from instance followers </source>
@@ -6773,7 +6773,7 @@ The link will expire within 1 hour.</source>
6773 <trans-unit id="9160510009013134726" datatype="html"> 6773 <trans-unit id="9160510009013134726" datatype="html">
6774 <source>Unfollow</source> 6774 <source>Unfollow</source>
6775 <target>إلغاء المتابَعة</target> 6775 <target>إلغاء المتابَعة</target>
6776 6776
6777 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit> 6777 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit>
6778 <trans-unit id="3935234189109112926" datatype="html"> 6778 <trans-unit id="3935234189109112926" datatype="html">
6779 <source>You are not following <x id="PH"/> anymore.</source> 6779 <source>You are not following <x id="PH"/> anymore.</source>
@@ -6801,22 +6801,22 @@ The link will expire within 1 hour.</source>
6801 <target state="translated">Redundancy for <x id="PH"/> is <x id="PH_1"/></target> 6801 <target state="translated">Redundancy for <x id="PH"/> is <x id="PH_1"/></target>
6802 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">25</context></context-group> 6802 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">25</context></context-group>
6803 </trans-unit> 6803 </trans-unit>
6804 6804
6805 6805
6806 <trans-unit id="5875705095657098468" datatype="html"> 6806 <trans-unit id="5875705095657098468" datatype="html">
6807 <source>Do you really want to remove this video redundancy?</source> 6807 <source>Do you really want to remove this video redundancy?</source>
6808 <target>هل تريد حقًا إزالة تكرار هذا الفيديو؟</target> 6808 <target>هل تريد حقًا إزالة تكرار هذا الفيديو؟</target>
6809 6809
6810 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">149</context></context-group></trans-unit> 6810 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">149</context></context-group></trans-unit>
6811 <trans-unit id="9098272570113000349" datatype="html"> 6811 <trans-unit id="9098272570113000349" datatype="html">
6812 <source>Remove redundancy</source> 6812 <source>Remove redundancy</source>
6813 <target>إزالة التكرار</target> 6813 <target>إزالة التكرار</target>
6814 6814
6815 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">150</context></context-group></trans-unit> 6815 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">150</context></context-group></trans-unit>
6816 <trans-unit id="6537102123107780785" datatype="html"> 6816 <trans-unit id="6537102123107780785" datatype="html">
6817 <source>Video redundancies removed!</source> 6817 <source>Video redundancies removed!</source>
6818 <target>تمت إزالة تكرار الفيديو!</target> 6818 <target>تمت إزالة تكرار الفيديو!</target>
6819 6819
6820 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">156</context></context-group></trans-unit> 6820 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context><context context-type="linenumber">156</context></context-group></trans-unit>
6821 <trans-unit id="2393853062458645999" datatype="html"> 6821 <trans-unit id="2393853062458645999" datatype="html">
6822 <source>Comment updated.</source> 6822 <source>Comment updated.</source>
@@ -6841,13 +6841,13 @@ The link will expire within 1 hour.</source>
6841 <trans-unit id="8440128775129354214" datatype="html"> 6841 <trans-unit id="8440128775129354214" datatype="html">
6842 <source>Privacy</source> 6842 <source>Privacy</source>
6843 <target state="translated">الخصوصية</target> 6843 <target state="translated">الخصوصية</target>
6844 6844
6845 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">112</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">2</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">22</context></context-group></trans-unit> 6845 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">57</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">112</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">13</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context><context context-type="linenumber">2</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">22</context></context-group></trans-unit>
6846 <trans-unit id="8768506950499277937" datatype="html"> 6846 <trans-unit id="8768506950499277937" datatype="html">
6847 <source>Copyright</source> 6847 <source>Copyright</source>
6848 <target state="translated">حقوق النشر</target> 6848 <target state="translated">حقوق النشر</target>
6849 6849
6850 6850
6851 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">146</context></context-group></trans-unit> 6851 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">146</context></context-group></trans-unit>
6852 <trans-unit id="3776575731053010580" datatype="html"> 6852 <trans-unit id="3776575731053010580" datatype="html">
6853 <source>Server rules</source> 6853 <source>Server rules</source>
@@ -6857,30 +6857,30 @@ The link will expire within 1 hour.</source>
6857 <trans-unit id="6907161397537530258" datatype="html"> 6857 <trans-unit id="6907161397537530258" datatype="html">
6858 <source>Thumbnails</source> 6858 <source>Thumbnails</source>
6859 <target>صور مصغرة</target> 6859 <target>صور مصغرة</target>
6860 6860
6861 6861
6862 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">161</context></context-group></trans-unit> 6862 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">161</context></context-group></trans-unit>
6863 <trans-unit id="6473213678768782133" datatype="html"> 6863 <trans-unit id="6473213678768782133" datatype="html">
6864 <source>Internal actions</source> 6864 <source>Internal actions</source>
6865 <target>الإجراءات الداخلية</target> 6865 <target>الإجراءات الداخلية</target>
6866 6866
6867 6867
6868 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">59</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">244</context></context-group></trans-unit> 6868 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">59</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">244</context></context-group></trans-unit>
6869 <trans-unit id="4559872264406386913" datatype="html"> 6869 <trans-unit id="4559872264406386913" datatype="html">
6870 <source>Delete report</source> 6870 <source>Delete report</source>
6871 <target>احذف البلاغ</target> 6871 <target>احذف البلاغ</target>
6872 6872
6873 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">275</context></context-group></trans-unit> 6873 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">275</context></context-group></trans-unit>
6874 <trans-unit id="5793550984155962433" datatype="html"> 6874 <trans-unit id="5793550984155962433" datatype="html">
6875 <source>Actions for the flagged account</source> 6875 <source>Actions for the flagged account</source>
6876 <target state="translated">الاجراءات للحسابات المعلمة</target> 6876 <target state="translated">الاجراءات للحسابات المعلمة</target>
6877 6877
6878 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">286</context></context-group></trans-unit> 6878 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">286</context></context-group></trans-unit>
6879 <trans-unit id="4903651219400691248" datatype="html"> 6879 <trans-unit id="4903651219400691248" datatype="html">
6880 <source>Mute account</source> 6880 <source>Mute account</source>
6881 <target state="translated">أكتم حسابا</target> 6881 <target state="translated">أكتم حسابا</target>
6882 6882
6883 6883
6884 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">292</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">391</context></context-group></trans-unit> 6884 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">292</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">391</context></context-group></trans-unit>
6885 <trans-unit id="4021487547497211597" datatype="html"> 6885 <trans-unit id="4021487547497211597" datatype="html">
6886 <source>Open video actions</source> 6886 <source>Open video actions</source>
@@ -6907,112 +6907,112 @@ The link will expire within 1 hour.</source>
6907 <trans-unit id="3719503424625455635" datatype="html"> 6907 <trans-unit id="3719503424625455635" datatype="html">
6908 <source>Mute server account</source> 6908 <source>Mute server account</source>
6909 <target state="translated">اكتم حساب خادم</target> 6909 <target state="translated">اكتم حساب خادم</target>
6910 6910
6911 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">298</context></context-group></trans-unit> 6911 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">298</context></context-group></trans-unit>
6912 <trans-unit id="1679841953757186358" datatype="html"> 6912 <trans-unit id="1679841953757186358" datatype="html">
6913 <source>Mark as accepted</source> 6913 <source>Mark as accepted</source>
6914 <target>وضع علامة "مقبول"</target> 6914 <target>وضع علامة "مقبول"</target>
6915 6915
6916 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">260</context></context-group></trans-unit> 6916 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">260</context></context-group></trans-unit>
6917 <trans-unit id="7993358694073742566" datatype="html"> 6917 <trans-unit id="7993358694073742566" datatype="html">
6918 <source>Mark as rejected</source> 6918 <source>Mark as rejected</source>
6919 <target>وضع علامة مرفوض</target> 6919 <target>وضع علامة مرفوض</target>
6920 6920
6921 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">265</context></context-group></trans-unit> 6921 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">265</context></context-group></trans-unit>
6922 <trans-unit id="4175703770051343108" datatype="html"> 6922 <trans-unit id="4175703770051343108" datatype="html">
6923 <source>Add internal note</source> 6923 <source>Add internal note</source>
6924 <target state="translated">أضف ملاحظة داخلية</target> 6924 <target state="translated">أضف ملاحظة داخلية</target>
6925 6925
6926 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">270</context></context-group></trans-unit> 6926 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">270</context></context-group></trans-unit>
6927 <trans-unit id="296166371893775555" datatype="html"> 6927 <trans-unit id="296166371893775555" datatype="html">
6928 <source>Actions for the video</source> 6928 <source>Actions for the video</source>
6929 <target>الإجراءات على هذه الفيديو</target> 6929 <target>الإجراءات على هذه الفيديو</target>
6930 6930
6931 6931
6932 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">82</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">334</context></context-group></trans-unit> 6932 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">82</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">334</context></context-group></trans-unit>
6933 <trans-unit id="3924877328520650445" datatype="html"> 6933 <trans-unit id="3924877328520650445" datatype="html">
6934 <source>Block video</source> 6934 <source>Block video</source>
6935 <target>احجب الفيديو</target> 6935 <target>احجب الفيديو</target>
6936 6936
6937 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">339</context></context-group></trans-unit> 6937 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">339</context></context-group></trans-unit>
6938 <trans-unit id="4762794934098378428" datatype="html"> 6938 <trans-unit id="4762794934098378428" datatype="html">
6939 <source>Video blocked.</source> 6939 <source>Video blocked.</source>
6940 <target>حُجب الفيديو.</target> 6940 <target>حُجب الفيديو.</target>
6941 6941
6942 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> 6942 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">345</context></context-group></trans-unit>
6943 <trans-unit id="4328862996304258770" datatype="html"> 6943 <trans-unit id="4328862996304258770" datatype="html">
6944 <source>Unblock video</source> 6944 <source>Unblock video</source>
6945 <target>إلغاء حجب الفيديو</target> 6945 <target>إلغاء حجب الفيديو</target>
6946 6946
6947 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">355</context></context-group></trans-unit> 6947 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">355</context></context-group></trans-unit>
6948 <trans-unit id="9065327551191479877" datatype="html"> 6948 <trans-unit id="9065327551191479877" datatype="html">
6949 <source>Video unblocked.</source> 6949 <source>Video unblocked.</source>
6950 <target>حُجب الفيديو.</target> 6950 <target>حُجب الفيديو.</target>
6951 6951
6952 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">361</context></context-group></trans-unit> 6952 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">361</context></context-group></trans-unit>
6953 <trans-unit id="2909684945706361544" datatype="html"> 6953 <trans-unit id="2909684945706361544" datatype="html">
6954 <source>Delete video</source> 6954 <source>Delete video</source>
6955 <target>حذف الفيديو</target> 6955 <target>حذف الفيديو</target>
6956 6956
6957 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">371</context></context-group></trans-unit> 6957 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">371</context></context-group></trans-unit>
6958 <trans-unit id="2210418817778733727" datatype="html"> 6958 <trans-unit id="2210418817778733727" datatype="html">
6959 <source>Actions for the comment</source> 6959 <source>Actions for the comment</source>
6960 <target state="translated">إجراءات على التعليق</target> 6960 <target state="translated">إجراءات على التعليق</target>
6961 6961
6962 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">400</context></context-group></trans-unit> 6962 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">400</context></context-group></trans-unit>
6963 <trans-unit id="7978668497183230348" datatype="html"> 6963 <trans-unit id="7978668497183230348" datatype="html">
6964 <source>Delete comment</source> 6964 <source>Delete comment</source>
6965 <target state="translated">أزل التعليق</target> 6965 <target state="translated">أزل التعليق</target>
6966 6966
6967 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">406</context></context-group></trans-unit> 6967 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">406</context></context-group></trans-unit>
6968 <trans-unit id="6747218355168080191" datatype="html"> 6968 <trans-unit id="6747218355168080191" datatype="html">
6969 <source>Do you really want to delete this comment?</source> 6969 <source>Do you really want to delete this comment?</source>
6970 <target state="translated">أتريد إزالة هذا التعليق؟</target> 6970 <target state="translated">أتريد إزالة هذا التعليق؟</target>
6971 6971
6972 6972
6973 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">172</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">410</context></context-group></trans-unit> 6973 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.ts</context><context context-type="linenumber">172</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">410</context></context-group></trans-unit>
6974 <trans-unit id="7837272126865175984" datatype="html"> 6974 <trans-unit id="7837272126865175984" datatype="html">
6975 <source>Comment deleted.</source> 6975 <source>Comment deleted.</source>
6976 <target state="translated">حُذف التعليق.</target> 6976 <target state="translated">حُذف التعليق.</target>
6977 6977
6978 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">418</context></context-group></trans-unit> 6978 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">418</context></context-group></trans-unit>
6979 <trans-unit id="3622946684246476652" datatype="html"> 6979 <trans-unit id="3622946684246476652" datatype="html">
6980 <source>Do you really want to delete this video?</source> 6980 <source>Do you really want to delete this video?</source>
6981 <target>متأكد من حذف هذا الفيديو؟</target> 6981 <target>متأكد من حذف هذا الفيديو؟</target>
6982 6982
6983 6983
6984 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">375</context></context-group></trans-unit> 6984 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">375</context></context-group></trans-unit>
6985 <trans-unit id="3941342949736653028" datatype="html"> 6985 <trans-unit id="3941342949736653028" datatype="html">
6986 <source>Video deleted.</source> 6986 <source>Video deleted.</source>
6987 <target>تم حذف الفيديو.</target> 6987 <target>تم حذف الفيديو.</target>
6988 6988
6989 6989
6990 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">101</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> 6990 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-block-list/video-block-list.component.ts</context><context context-type="linenumber">101</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">383</context></context-group></trans-unit>
6991 <trans-unit id="5072091387445907742" datatype="html"> 6991 <trans-unit id="5072091387445907742" datatype="html">
6992 <source>Actions for the reporter</source> 6992 <source>Actions for the reporter</source>
6993 <target>إجراءات على المبلِّغ</target> 6993 <target>إجراءات على المبلِّغ</target>
6994 6994
6995 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">310</context></context-group></trans-unit> 6995 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">310</context></context-group></trans-unit>
6996 <trans-unit id="6599069899275412095" datatype="html"> 6996 <trans-unit id="6599069899275412095" datatype="html">
6997 <source>Mute reporter</source> 6997 <source>Mute reporter</source>
6998 <target>أكتم المبلِّغ</target> 6998 <target>أكتم المبلِّغ</target>
6999 6999
7000 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">316</context></context-group></trans-unit> 7000 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">316</context></context-group></trans-unit>
7001 <trans-unit id="2558977494773636050" datatype="html"> 7001 <trans-unit id="2558977494773636050" datatype="html">
7002 <source>Account <x id="PH"/> muted by the instance.</source> 7002 <source>Account <x id="PH"/> muted by the instance.</source>
7003 <target>كُتم حساب <x id="PH"/> بواسطة المثيل.</target> 7003 <target>كُتم حساب <x id="PH"/> بواسطة المثيل.</target>
7004 7004
7005 7005
7006 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit> 7006 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">174</context></context-group></trans-unit>
7007 <trans-unit id="1595779426198793580" datatype="html"> 7007 <trans-unit id="1595779426198793580" datatype="html">
7008 <source>Mute server</source> 7008 <source>Mute server</source>
7009 <target>أكتم الخادم</target> 7009 <target>أكتم الخادم</target>
7010 7010
7011 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">322</context></context-group></trans-unit> 7011 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">322</context></context-group></trans-unit>
7012 <trans-unit id="8014491157078444256" datatype="html"> 7012 <trans-unit id="8014491157078444256" datatype="html">
7013 <source>Server <x id="PH"/> muted by the instance.</source> 7013 <source>Server <x id="PH"/> muted by the instance.</source>
7014 <target>كُتم الخادم <x id="PH"/> بواسطة المثيل.</target> 7014 <target>كُتم الخادم <x id="PH"/> بواسطة المثيل.</target>
7015 7015
7016 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">446</context></context-group></trans-unit> 7016 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">446</context></context-group></trans-unit>
7017 <trans-unit id="2044813052587776285" datatype="html"> 7017 <trans-unit id="2044813052587776285" datatype="html">
7018 <source>Add a message to communicate with the reporter</source> 7018 <source>Add a message to communicate with the reporter</source>
@@ -7037,22 +7037,22 @@ The link will expire within 1 hour.</source>
7037 <trans-unit id="6282990098351939529" datatype="html"> 7037 <trans-unit id="6282990098351939529" datatype="html">
7038 <source>Deleted comment</source> 7038 <source>Deleted comment</source>
7039 <target state="translated">تعليق محذوف</target> 7039 <target state="translated">تعليق محذوف</target>
7040 7040
7041 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">215</context></context-group></trans-unit> 7041 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">215</context></context-group></trans-unit>
7042 <trans-unit id="9196775343330824083" datatype="html"> 7042 <trans-unit id="9196775343330824083" datatype="html">
7043 <source>Messages with reporter</source> 7043 <source>Messages with reporter</source>
7044 <target state="translated">راسل المبلِّغ</target> 7044 <target state="translated">راسل المبلِّغ</target>
7045 7045
7046 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">249</context></context-group></trans-unit> 7046 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">249</context></context-group></trans-unit>
7047 <trans-unit id="8770468575924421391" datatype="html"> 7047 <trans-unit id="8770468575924421391" datatype="html">
7048 <source>Messages with moderators</source> 7048 <source>Messages with moderators</source>
7049 <target state="translated">راسل المشرفين</target> 7049 <target state="translated">راسل المشرفين</target>
7050 7050
7051 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit> 7051 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">250</context></context-group></trans-unit>
7052 <trans-unit id="8528549800795985099" datatype="html"> 7052 <trans-unit id="8528549800795985099" datatype="html">
7053 <source>Update internal note</source> 7053 <source>Update internal note</source>
7054 <target state="translated">حدِّث الملاحظة الداخلية</target> 7054 <target state="translated">حدِّث الملاحظة الداخلية</target>
7055 7055
7056 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">255</context></context-group></trans-unit> 7056 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">255</context></context-group></trans-unit>
7057 <trans-unit id="3962242315365992494" datatype="html"> 7057 <trans-unit id="3962242315365992494" datatype="html">
7058 <source>Switch video block to manual</source> 7058 <source>Switch video block to manual</source>
@@ -7086,101 +7086,101 @@ The link will expire within 1 hour.</source>
7086 <trans-unit id="212615365039028546" datatype="html"> 7086 <trans-unit id="212615365039028546" datatype="html">
7087 <source>You don't have plugins installed yet.</source> 7087 <source>You don't have plugins installed yet.</source>
7088 <target>حاليا ليس لديك أية إضافة مثبتة.</target> 7088 <target>حاليا ليس لديك أية إضافة مثبتة.</target>
7089 7089
7090 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">87</context></context-group></trans-unit> 7090 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">87</context></context-group></trans-unit>
7091 <trans-unit id="1710094819987243777" datatype="html"> 7091 <trans-unit id="1710094819987243777" datatype="html">
7092 <source>You don't have themes installed yet.</source> 7092 <source>You don't have themes installed yet.</source>
7093 <target>ليس لديك سمات مثبتة.</target> 7093 <target>ليس لديك سمات مثبتة.</target>
7094 7094
7095 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">90</context></context-group></trans-unit> 7095 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">90</context></context-group></trans-unit>
7096 <trans-unit id="931472057457682240" datatype="html"> 7096 <trans-unit id="931472057457682240" datatype="html">
7097 <source>Update to <x id="PH"/> </source> 7097 <source>Update to <x id="PH"/> </source>
7098 <target>تحديث إلى 7098 <target>تحديث إلى
7099 <x id="PH"/> 7099 <x id="PH"/>
7100 </target> 7100 </target>
7101 7101
7102 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">98</context></context-group></trans-unit> 7102 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">98</context></context-group></trans-unit>
7103 <trans-unit id="9107383323119159110" datatype="html"> 7103 <trans-unit id="9107383323119159110" datatype="html">
7104 <source>Do you really want to uninstall <x id="PH"/>?</source> 7104 <source>Do you really want to uninstall <x id="PH"/>?</source>
7105 <target>أتريد حقا إلغاء تثبيت <x id="PH"/>؟</target> 7105 <target>أتريد حقا إلغاء تثبيت <x id="PH"/>؟</target>
7106 7106
7107 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">111</context></context-group></trans-unit> 7107 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">111</context></context-group></trans-unit>
7108 <trans-unit id="4474510732215437338" datatype="html"> 7108 <trans-unit id="4474510732215437338" datatype="html">
7109 <source>Uninstall</source> 7109 <source>Uninstall</source>
7110 <target state="translated">ألغِ التثبيت</target> 7110 <target state="translated">ألغِ التثبيت</target>
7111 7111
7112 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">112</context></context-group></trans-unit> 7112 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">21</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">112</context></context-group></trans-unit>
7113 <trans-unit id="3773378957693174719" datatype="html"> 7113 <trans-unit id="3773378957693174719" datatype="html">
7114 <source><x id="PH"/> uninstalled. </source> 7114 <source><x id="PH"/> uninstalled. </source>
7115 <target>أُلغي تثبيت <x id="PH"/>. </target> 7115 <target>أُلغي تثبيت <x id="PH"/>. </target>
7116 7116
7117 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">119</context></context-group></trans-unit> 7117 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">119</context></context-group></trans-unit>
7118 <trans-unit id="7914215986085479339" datatype="html"> 7118 <trans-unit id="7914215986085479339" datatype="html">
7119 <source>This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes.</source> 7119 <source>This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes.</source>
7120 <target state="new">This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes.</target> 7120 <target state="new">This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes.</target>
7121 7121
7122 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> 7122 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit>
7123 <trans-unit id="2849750161085431718" datatype="html"> 7123 <trans-unit id="2849750161085431718" datatype="html">
7124 <source>Upgrade</source> 7124 <source>Upgrade</source>
7125 <target state="new">Upgrade</target> 7125 <target state="new">Upgrade</target>
7126 7126
7127 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit> 7127 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit>
7128 <trans-unit id="7686590072950686188" datatype="html"> 7128 <trans-unit id="7686590072950686188" datatype="html">
7129 <source>Proceed upgrade</source> 7129 <source>Proceed upgrade</source>
7130 <target state="new">Proceed upgrade</target> 7130 <target state="new">Proceed upgrade</target>
7131 7131
7132 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">137</context></context-group></trans-unit> 7132 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">137</context></context-group></trans-unit>
7133 <trans-unit id="7830308409197461339" datatype="html"> 7133 <trans-unit id="7830308409197461339" datatype="html">
7134 <source><x id="PH"/> updated. </source> 7134 <source><x id="PH"/> updated. </source>
7135 <target>حُدّث <x id="PH"/>. </target> 7135 <target>حُدّث <x id="PH"/>. </target>
7136 7136
7137 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">151</context></context-group></trans-unit> 7137 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">151</context></context-group></trans-unit>
7138 <trans-unit id="3229595422546554334" datatype="html"> 7138 <trans-unit id="3229595422546554334" datatype="html">
7139 <source>Jobs</source> 7139 <source>Jobs</source>
7140 <target state="translated">وظائف</target> 7140 <target state="translated">وظائف</target>
7141 7141
7142 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">154</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">24</context></context-group></trans-unit> 7142 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">154</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">24</context></context-group></trans-unit>
7143 <trans-unit id="4804785061014590286" datatype="html"> 7143 <trans-unit id="4804785061014590286" datatype="html">
7144 <source>Logs</source> 7144 <source>Logs</source>
7145 <target state="translated">سجلات</target> 7145 <target state="translated">سجلات</target>
7146 7146
7147 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">162</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> 7147 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">162</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">35</context></context-group></trans-unit>
7148 <trans-unit id="3150704904301058778" datatype="html"> 7148 <trans-unit id="3150704904301058778" datatype="html">
7149 <source>The plugin index is not available. Please retry later.</source> 7149 <source>The plugin index is not available. Please retry later.</source>
7150 <target>قائمة الإضافات غير متوفرة حاليا. يرجى إعادة المحاولة لاحقا.</target> 7150 <target>قائمة الإضافات غير متوفرة حاليا. يرجى إعادة المحاولة لاحقا.</target>
7151 7151
7152 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">99</context></context-group></trans-unit> 7152 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">99</context></context-group></trans-unit>
7153 <trans-unit id="1387301493234848481" datatype="html"> 7153 <trans-unit id="1387301493234848481" datatype="html">
7154 <source>Please only install plugins or themes you trust, since they can execute any code on your instance.</source> 7154 <source>Please only install plugins or themes you trust, since they can execute any code on your instance.</source>
7155 <target>يُرجى تثبيت المكونات الإضافية أو السمات التي تثق بها فقط ، حيث يمكنها تنفيذ أي شيفرة على مثيل الخادم.</target> 7155 <target>يُرجى تثبيت المكونات الإضافية أو السمات التي تثق بها فقط ، حيث يمكنها تنفيذ أي شيفرة على مثيل الخادم.</target>
7156 7156
7157 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> 7157 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit>
7158 <trans-unit id="2994182849694226596" datatype="html"> 7158 <trans-unit id="2994182849694226596" datatype="html">
7159 <source>Install <x id="PH"/>?</source> 7159 <source>Install <x id="PH"/>?</source>
7160 <target>تثبيت <x id="PH"/>؟</target> 7160 <target>تثبيت <x id="PH"/>؟</target>
7161 7161
7162 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">130</context></context-group></trans-unit> 7162 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">130</context></context-group></trans-unit>
7163 <trans-unit id="6703720397495603345" datatype="html"> 7163 <trans-unit id="6703720397495603345" datatype="html">
7164 <source><x id="PH"/> installed. </source> 7164 <source><x id="PH"/> installed. </source>
7165 <target>ثُبت <x id="PH"/>. </target> 7165 <target>ثُبت <x id="PH"/>. </target>
7166 7166
7167 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">142</context></context-group></trans-unit> 7167 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">142</context></context-group></trans-unit>
7168 <trans-unit id="1875025899004073421" datatype="html"> 7168 <trans-unit id="1875025899004073421" datatype="html">
7169 <source>Settings updated.</source> 7169 <source>Settings updated.</source>
7170 <target>تم تحديث الإعدادات.</target> 7170 <target>تم تحديث الإعدادات.</target>
7171 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts</context><context context-type="linenumber">55</context></context-group> 7171 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts</context><context context-type="linenumber">55</context></context-group>
7172 </trans-unit> 7172 </trans-unit>
7173 7173
7174 7174
7175 <trans-unit id="2941409202780782189" datatype="html"> 7175 <trans-unit id="2941409202780782189" datatype="html">
7176 <source>plugin</source> 7176 <source>plugin</source>
7177 <target>إضافة</target> 7177 <target>إضافة</target>
7178 7178
7179 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">30</context></context-group></trans-unit> 7179 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">30</context></context-group></trans-unit>
7180 <trans-unit id="840045833311458646" datatype="html"> 7180 <trans-unit id="840045833311458646" datatype="html">
7181 <source>theme</source> 7181 <source>theme</source>
7182 <target>سمة</target> 7182 <target>سمة</target>
7183 7183
7184 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">33</context></context-group></trans-unit> 7184 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">33</context></context-group></trans-unit>
7185 <trans-unit id="2483018961011868950" datatype="html"> 7185 <trans-unit id="2483018961011868950" datatype="html">
7186 <source>IP address</source> 7186 <source>IP address</source>
@@ -7292,23 +7292,23 @@ The link will expire within 1 hour.</source>
7292 <trans-unit id="3422890808980876594" datatype="html"> 7292 <trans-unit id="3422890808980876594" datatype="html">
7293 <source>Debug</source> 7293 <source>Debug</source>
7294 <target state="translated">تنقيح</target> 7294 <target state="translated">تنقيح</target>
7295 7295
7296 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">170</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> 7296 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">170</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">46</context></context-group></trans-unit>
7297 <trans-unit id="314315645942131479" datatype="html"> 7297 <trans-unit id="314315645942131479" datatype="html">
7298 <source>Info</source> 7298 <source>Info</source>
7299 <target>معلومات</target> 7299 <target>معلومات</target>
7300 7300
7301 7301
7302 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">11</context></context-group></trans-unit> 7302 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">43</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">11</context></context-group></trans-unit>
7303 <trans-unit id="4116911651502837995" datatype="html"> 7303 <trans-unit id="4116911651502837995" datatype="html">
7304 <source>Files</source> 7304 <source>Files</source>
7305 <target state="new">Files</target> 7305 <target state="new">Files</target>
7306 7306
7307 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> 7307 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit>
7308 <trans-unit id="4767765747214995164" datatype="html"> 7308 <trans-unit id="4767765747214995164" datatype="html">
7309 <source>Published <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="&lt;p-sortIcon field=&quot;publishedAt&quot;>"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="&lt;/p-sortIcon>"/></source> 7309 <source>Published <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="&lt;p-sortIcon field=&quot;publishedAt&quot;>"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="&lt;/p-sortIcon>"/></source>
7310 <target state="new">Published <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="&lt;p-sortIcon field=&quot;publishedAt&quot;>"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="&lt;/p-sortIcon>"/></target> 7310 <target state="new">Published <x id="START_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="&lt;p-sortIcon field=&quot;publishedAt&quot;>"/><x id="CLOSE_TAG_P_SORTICON" ctype="x-p_sorticon" equiv-text="&lt;/p-sortIcon>"/></target>
7311 7311
7312 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> 7312 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit>
7313 <trans-unit id="6759205696902713848" datatype="html"> 7313 <trans-unit id="6759205696902713848" datatype="html">
7314 <source>Warning</source> 7314 <source>Warning</source>
@@ -7318,8 +7318,8 @@ The link will expire within 1 hour.</source>
7318 <trans-unit id="1519954996184640001" datatype="html"> 7318 <trans-unit id="1519954996184640001" datatype="html">
7319 <source>Error</source> 7319 <source>Error</source>
7320 <target>خطأ</target> 7320 <target>خطأ</target>
7321 7321
7322 7322
7323 <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">105</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">18</context></context-group></trans-unit> 7323 <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">105</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">18</context></context-group></trans-unit>
7324 <trans-unit id="5076187961693950167" datatype="html"> 7324 <trans-unit id="5076187961693950167" datatype="html">
7325 <source>Standard logs</source> 7325 <source>Standard logs</source>
@@ -7334,12 +7334,12 @@ The link will expire within 1 hour.</source>
7334 <trans-unit id="1886888801485703107" datatype="html"> 7334 <trans-unit id="1886888801485703107" datatype="html">
7335 <source>User <x id="PH"/> created.</source> 7335 <source>User <x id="PH"/> created.</source>
7336 <target>أُنشئ المستخدم <x id="PH"/>.</target> 7336 <target>أُنشئ المستخدم <x id="PH"/>.</target>
7337 7337
7338 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-create.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> 7338 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-create.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit>
7339 <trans-unit id="8286337167859377104" datatype="html"> 7339 <trans-unit id="8286337167859377104" datatype="html">
7340 <source>Create user</source> 7340 <source>Create user</source>
7341 <target state="translated">أنشئ مستخدما</target> 7341 <target state="translated">أنشئ مستخدما</target>
7342 7342
7343 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-create.component.ts</context><context context-type="linenumber">97</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> 7343 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-create.component.ts</context><context context-type="linenumber">97</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit>
7344 <trans-unit id="7098180453085889026" datatype="html"> 7344 <trans-unit id="7098180453085889026" datatype="html">
7345 <source>Blocked videos</source> 7345 <source>Blocked videos</source>
@@ -7354,27 +7354,27 @@ The link will expire within 1 hour.</source>
7354 <trans-unit id="5974506725502681113" datatype="html"> 7354 <trans-unit id="5974506725502681113" datatype="html">
7355 <source>Password changed for user <x id="PH"/>.</source> 7355 <source>Password changed for user <x id="PH"/>.</source>
7356 <target>غُيرت كلمة المرور للمستخدم <x id="PH"/>.</target> 7356 <target>غُيرت كلمة المرور للمستخدم <x id="PH"/>.</target>
7357 7357
7358 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-password.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> 7358 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-password.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit>
7359 <trans-unit id="149953821752893163" datatype="html"> 7359 <trans-unit id="149953821752893163" datatype="html">
7360 <source>Update user password</source> 7360 <source>Update user password</source>
7361 <target>حدّث كلمة مرور المستخدم</target> 7361 <target>حدّث كلمة مرور المستخدم</target>
7362 7362
7363 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-password.component.ts</context><context context-type="linenumber">54</context></context-group></trans-unit> 7363 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-password.component.ts</context><context context-type="linenumber">54</context></context-group></trans-unit>
7364 <trans-unit id="780323526182667308" datatype="html"> 7364 <trans-unit id="780323526182667308" datatype="html">
7365 <source>User <x id="PH"/> updated.</source> 7365 <source>User <x id="PH"/> updated.</source>
7366 <target>حُدّث حساب المستخدم <x id="PH"/>.</target> 7366 <target>حُدّث حساب المستخدم <x id="PH"/>.</target>
7367 7367
7368 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-update.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> 7368 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-update.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit>
7369 <trans-unit id="1349763489797682899" datatype="html"> 7369 <trans-unit id="1349763489797682899" datatype="html">
7370 <source>Update user</source> 7370 <source>Update user</source>
7371 <target>تحديث المستخدِم</target> 7371 <target>تحديث المستخدِم</target>
7372 7372
7373 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-update.component.ts</context><context context-type="linenumber">113</context></context-group></trans-unit> 7373 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-update.component.ts</context><context context-type="linenumber">113</context></context-group></trans-unit>
7374 <trans-unit id="8819563010322372715" datatype="html"> 7374 <trans-unit id="8819563010322372715" datatype="html">
7375 <source>An email asking for password reset has been sent to <x id="PH"/>.</source> 7375 <source>An email asking for password reset has been sent to <x id="PH"/>.</source>
7376 <target>أُرسل بريد لاستعادة كلمة المرور الى <x id="PH"/>.</target> 7376 <target>أُرسل بريد لاستعادة كلمة المرور الى <x id="PH"/>.</target>
7377 7377
7378 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-update.component.ts</context><context context-type="linenumber">120</context></context-group></trans-unit> 7378 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-update.component.ts</context><context context-type="linenumber">120</context></context-group></trans-unit>
7379 <trans-unit id="7483807629538115183" datatype="html"> 7379 <trans-unit id="7483807629538115183" datatype="html">
7380 <source>Users list</source> 7380 <source>Users list</source>
@@ -7444,148 +7444,148 @@ The link will expire within 1 hour.</source>
7444 <trans-unit id="8564701209009684429" datatype="html"> 7444 <trans-unit id="8564701209009684429" datatype="html">
7445 <source>Federation</source> 7445 <source>Federation</source>
7446 <target state="translated">الشبكة المتحدة</target> 7446 <target state="translated">الشبكة المتحدة</target>
7447 7447
7448 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> 7448 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit>
7449 <trans-unit id="3767259920053407667" datatype="html"> 7449 <trans-unit id="3767259920053407667" datatype="html">
7450 <source>Videos will be deleted, comments will be tombstoned.</source> 7450 <source>Videos will be deleted, comments will be tombstoned.</source>
7451 <target state="translated">سيحذف مقاطع الفيديو ، ستحذف التعليقات.</target> 7451 <target state="translated">سيحذف مقاطع الفيديو ، ستحذف التعليقات.</target>
7452 7452
7453 7453
7454 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">88</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">329</context></context-group></trans-unit> 7454 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">88</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">329</context></context-group></trans-unit>
7455 <trans-unit id="4209525355702493436" datatype="html"> 7455 <trans-unit id="4209525355702493436" datatype="html">
7456 <source>Ban</source> 7456 <source>Ban</source>
7457 <target state="translated">حظر</target> 7457 <target state="translated">حظر</target>
7458 7458
7459 7459
7460 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">93</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">334</context></context-group></trans-unit> 7460 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">93</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">334</context></context-group></trans-unit>
7461 <trans-unit id="3855396975723886053" datatype="html"> 7461 <trans-unit id="3855396975723886053" datatype="html">
7462 <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> 7462 <source>User won't be able to login anymore, but videos and comments will be kept as is.</source>
7463 <target>لن يتمكن المستخدم من تسجيل الدخول بعد الآن ، ولكن سيتم الاحتفاظ بمقاطع الفيديو والتعليقات كما هي.</target> 7463 <target>لن يتمكن المستخدم من تسجيل الدخول بعد الآن ، ولكن سيتم الاحتفاظ بمقاطع الفيديو والتعليقات كما هي.</target>
7464 7464
7465 7465
7466 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">335</context></context-group></trans-unit> 7466 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">94</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">335</context></context-group></trans-unit>
7467 <trans-unit id="4451482225013335720" datatype="html"> 7467 <trans-unit id="4451482225013335720" datatype="html">
7468 <source>Unban</source> 7468 <source>Unban</source>
7469 <target>ألغ الحظر</target> 7469 <target>ألغ الحظر</target>
7470 7470
7471 7471
7472 7472
7473 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">99</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">178</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> 7473 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">99</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">178</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit>
7474 <trans-unit id="7210277223053877333" datatype="html"> 7474 <trans-unit id="7210277223053877333" datatype="html">
7475 <source>Set Email as Verified</source> 7475 <source>Set Email as Verified</source>
7476 <target>تعيين البريد الإلكتروني كمتحقق منه</target> 7476 <target>تعيين البريد الإلكتروني كمتحقق منه</target>
7477 7477
7478 7478
7479 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">106</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">346</context></context-group></trans-unit> 7479 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">106</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">346</context></context-group></trans-unit>
7480 <trans-unit id="4207916966377787111" datatype="html"> 7480 <trans-unit id="4207916966377787111" datatype="html">
7481 <source>Created</source> 7481 <source>Created</source>
7482 <target state="new">Created</target> 7482 <target state="new">Created</target>
7483 7483
7484 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> 7484 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit>
7485 <trans-unit id="8140268298586972139" datatype="html"> 7485 <trans-unit id="8140268298586972139" datatype="html">
7486 <source>Daily quota</source> 7486 <source>Daily quota</source>
7487 <target state="new">Daily quota</target> 7487 <target state="new">Daily quota</target>
7488 7488
7489 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> 7489 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit>
7490 <trans-unit id="7910076708497708162" datatype="html"> 7490 <trans-unit id="7910076708497708162" datatype="html">
7491 <source>Last login</source> 7491 <source>Last login</source>
7492 <target state="new">Last login</target> 7492 <target state="new">Last login</target>
7493 7493
7494 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> 7494 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit>
7495 <trans-unit id="3403978719736970622" datatype="html"> 7495 <trans-unit id="3403978719736970622" datatype="html">
7496 <source>You cannot ban root.</source> 7496 <source>You cannot ban root.</source>
7497 <target>لا يمكنك حظر المستخدم الجذر.</target> 7497 <target>لا يمكنك حظر المستخدم الجذر.</target>
7498 7498
7499 7499
7500 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">165</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> 7500 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">165</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit>
7501 <trans-unit id="4884272193574287483" datatype="html"> 7501 <trans-unit id="4884272193574287483" datatype="html">
7502 <source>Do you really want to unban <x id="PH"/> users?</source> 7502 <source>Do you really want to unban <x id="PH"/> users?</source>
7503 <target>هل تريد إلغاء الحظر عن <x id="PH"/>؟</target> 7503 <target>هل تريد إلغاء الحظر عن <x id="PH"/>؟</target>
7504 7504
7505 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">178</context></context-group></trans-unit> 7505 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">178</context></context-group></trans-unit>
7506 <trans-unit id="8712248120167780385" datatype="html"> 7506 <trans-unit id="8712248120167780385" datatype="html">
7507 <source><x id="PH"/> users unbanned. </source> 7507 <source><x id="PH"/> users unbanned. </source>
7508 <target>أُلغي الحظر عن <x id="PH"/> مستخدما </target> 7508 <target>أُلغي الحظر عن <x id="PH"/> مستخدما </target>
7509 7509
7510 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit> 7510 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">184</context></context-group></trans-unit>
7511 <trans-unit id="5325873477837320044" datatype="html"> 7511 <trans-unit id="5325873477837320044" datatype="html">
7512 <source>You cannot delete root.</source> 7512 <source>You cannot delete root.</source>
7513 <target>لا يمكنك حذف المسخدم الجذر.</target> 7513 <target>لا يمكنك حذف المسخدم الجذر.</target>
7514 7514
7515 7515
7516 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">195</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> 7516 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">195</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit>
7517 <trans-unit id="4086135983283545219" datatype="html"> 7517 <trans-unit id="4086135983283545219" datatype="html">
7518 <source>If you remove these users, you will not be able to create others with the same username!</source> 7518 <source>If you remove these users, you will not be able to create others with the same username!</source>
7519 <target>إذا قمت بإزالة هؤلاء المستخدمين ، فلن تتمكن من إنشاء آخرين بنفس اسم المستخدم!</target> 7519 <target>إذا قمت بإزالة هؤلاء المستخدمين ، فلن تتمكن من إنشاء آخرين بنفس اسم المستخدم!</target>
7520 7520
7521 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit> 7521 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">200</context></context-group></trans-unit>
7522 <trans-unit id="7166936623843420016" datatype="html"> 7522 <trans-unit id="7166936623843420016" datatype="html">
7523 <source><x id="PH"/> users deleted. </source> 7523 <source><x id="PH"/> users deleted. </source>
7524 <target>حُذف <x id="PH"/> مستخدما. </target> 7524 <target>حُذف <x id="PH"/> مستخدما. </target>
7525 7525
7526 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">207</context></context-group></trans-unit> 7526 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">207</context></context-group></trans-unit>
7527 <trans-unit id="8360664597512051242" datatype="html"> 7527 <trans-unit id="8360664597512051242" datatype="html">
7528 <source><x id="PH"/> users email set as verified. </source> 7528 <source><x id="PH"/> users email set as verified. </source>
7529 <target>عيِّن البريد الالكتروني ل<x id="PH"/> مستخدما كمتحقق منه. </target> 7529 <target>عيِّن البريد الالكتروني ل<x id="PH"/> مستخدما كمتحقق منه. </target>
7530 7530
7531 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">219</context></context-group></trans-unit> 7531 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-list/user-list.component.ts</context><context context-type="linenumber">219</context></context-group></trans-unit>
7532 <trans-unit id="1266887509445371246" datatype="html"> 7532 <trans-unit id="1266887509445371246" datatype="html">
7533 <source>Incorrect username or password.</source> 7533 <source>Incorrect username or password.</source>
7534 <target>اسم المستخدم أو كلمة المرور خاطئة.</target> 7534 <target>اسم المستخدم أو كلمة المرور خاطئة.</target>
7535 7535
7536 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">164</context></context-group></trans-unit> 7536 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">164</context></context-group></trans-unit>
7537 <trans-unit id="6974874606619467663" datatype="html"> 7537 <trans-unit id="6974874606619467663" datatype="html">
7538 <source>Your account is blocked.</source> 7538 <source>Your account is blocked.</source>
7539 <target state="translated">حسابك محجوب.</target> 7539 <target state="translated">حسابك محجوب.</target>
7540 7540
7541 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit> 7541 <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
7542 <trans-unit id="1137937154872046253" datatype="html"> 7542 <trans-unit id="1137937154872046253" datatype="html">
7543 <source>Video channel <x id="PH"/> created.</source> 7543 <source>Video channel <x id="PH"/> created.</source>
7544 <target>أُنشئت قناة الفيديو <x id="PH"/>.</target> 7544 <target>أُنشئت قناة الفيديو <x id="PH"/>.</target>
7545 7545
7546 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-create.component.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> 7546 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-create.component.ts</context><context context-type="linenumber">66</context></context-group></trans-unit>
7547 <trans-unit id="8723777130353305761" datatype="html"> 7547 <trans-unit id="8723777130353305761" datatype="html">
7548 <source>This name already exists on this instance.</source> 7548 <source>This name already exists on this instance.</source>
7549 <target>هذا الإسم موجود على هذا المثيل.</target> 7549 <target>هذا الإسم موجود على هذا المثيل.</target>
7550 7550
7551 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-create.component.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> 7551 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-create.component.ts</context><context context-type="linenumber">72</context></context-group></trans-unit>
7552 <trans-unit id="7589345916094713536" datatype="html"> 7552 <trans-unit id="7589345916094713536" datatype="html">
7553 <source>Video channel <x id="PH"/> updated.</source> 7553 <source>Video channel <x id="PH"/> updated.</source>
7554 <target>حُدثت قناة فيديو <x id="PH"/>.</target> 7554 <target>حُدثت قناة فيديو <x id="PH"/>.</target>
7555 7555
7556 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">97</context></context-group></trans-unit> 7556 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">97</context></context-group></trans-unit>
7557 <trans-unit id="8407755843502300957" datatype="html"> 7557 <trans-unit id="8407755843502300957" datatype="html">
7558 <source>Banner changed.</source> 7558 <source>Banner changed.</source>
7559 <target state="new">Banner changed.</target> 7559 <target state="new">Banner changed.</target>
7560 7560
7561 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">142</context></context-group></trans-unit> 7561 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">142</context></context-group></trans-unit>
7562 <trans-unit id="689638706960732906" datatype="html"> 7562 <trans-unit id="689638706960732906" datatype="html">
7563 <source>banner</source> 7563 <source>banner</source>
7564 <target state="new">banner</target> 7564 <target state="new">banner</target>
7565 7565
7566 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">149</context></context-group></trans-unit> 7566 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">149</context></context-group></trans-unit>
7567 <trans-unit id="3230561499965076671" datatype="html"> 7567 <trans-unit id="3230561499965076671" datatype="html">
7568 <source>Banner deleted.</source> 7568 <source>Banner deleted.</source>
7569 <target state="new">Banner deleted.</target> 7569 <target state="new">Banner deleted.</target>
7570 7570
7571 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">159</context></context-group></trans-unit> 7571 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">159</context></context-group></trans-unit>
7572 <trans-unit id="3525866160632851851" datatype="html"> 7572 <trans-unit id="3525866160632851851" datatype="html">
7573 <source>Avatar changed.</source> 7573 <source>Avatar changed.</source>
7574 <target>تم تغيير صورتك الرمزية.</target> 7574 <target>تم تغيير صورتك الرمزية.</target>
7575 7575
7576 7576
7577 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">112</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">44</context></context-group></trans-unit> 7577 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">112</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">44</context></context-group></trans-unit>
7578 <trans-unit id="8920809083620698740" datatype="html"> 7578 <trans-unit id="8920809083620698740" datatype="html">
7579 <source>avatar</source> 7579 <source>avatar</source>
7580 <target state="new">avatar</target> 7580 <target state="new">avatar</target>
7581 7581
7582 7582
7583 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">119</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> 7583 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">119</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit>
7584 <trans-unit id="2775050991871557896" datatype="html"> 7584 <trans-unit id="2775050991871557896" datatype="html">
7585 <source>Avatar deleted.</source> 7585 <source>Avatar deleted.</source>
7586 <target state="new">Avatar deleted.</target> 7586 <target state="new">Avatar deleted.</target>
7587 7587
7588 7588
7589 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">129</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> 7589 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">129</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit>
7590 <trans-unit id="624066830180032195" datatype="html"> 7590 <trans-unit id="624066830180032195" datatype="html">
7591 <source>Video channel <x id="PH"/> deleted.</source> 7591 <source>Video channel <x id="PH"/> deleted.</source>
@@ -7656,7 +7656,7 @@ The link will expire within 1 hour.</source>
7656 <trans-unit id="6059091237492573541" datatype="html"> 7656 <trans-unit id="6059091237492573541" datatype="html">
7657 <source>Update video channel</source> 7657 <source>Update video channel</source>
7658 <target state="translated">حدّث قناة فيديو</target> 7658 <target state="translated">حدّث قناة فيديو</target>
7659 7659
7660 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/manage-routing.module.ts</context><context context-type="linenumber">21</context></context-group></trans-unit> 7660 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/manage-routing.module.ts</context><context context-type="linenumber">21</context></context-group></trans-unit>
7661 <trans-unit id="6595008830732269870" datatype="html"> 7661 <trans-unit id="6595008830732269870" datatype="html">
7662 <source>Not found</source> 7662 <source>Not found</source>
@@ -7698,32 +7698,32 @@ The link will expire within 1 hour.</source>
7698 <trans-unit id="5551551295632950210" datatype="html"> 7698 <trans-unit id="5551551295632950210" datatype="html">
7699 <source>Videos history is enabled</source> 7699 <source>Videos history is enabled</source>
7700 <target>سجل مقاطع الفيديو مفعل</target> 7700 <target>سجل مقاطع الفيديو مفعل</target>
7701 7701
7702 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">96</context></context-group></trans-unit> 7702 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">96</context></context-group></trans-unit>
7703 <trans-unit id="9136227503281311926" datatype="html"> 7703 <trans-unit id="9136227503281311926" datatype="html">
7704 <source>Videos history is disabled</source> 7704 <source>Videos history is disabled</source>
7705 <target>سِجِل الفيديوهات معطّل</target> 7705 <target>سِجِل الفيديوهات معطّل</target>
7706 7706
7707 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">97</context></context-group></trans-unit> 7707 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">97</context></context-group></trans-unit>
7708 <trans-unit id="8966726118414892732" datatype="html"> 7708 <trans-unit id="8966726118414892732" datatype="html">
7709 <source>Delete videos history</source> 7709 <source>Delete videos history</source>
7710 <target>احذف سِجِل الفيديوهات</target> 7710 <target>احذف سِجِل الفيديوهات</target>
7711 7711
7712 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">120</context></context-group></trans-unit> 7712 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">120</context></context-group></trans-unit>
7713 <trans-unit id="2482543433481435105" datatype="html"> 7713 <trans-unit id="2482543433481435105" datatype="html">
7714 <source>Are you sure you want to delete all your videos history?</source> 7714 <source>Are you sure you want to delete all your videos history?</source>
7715 <target>هل أنت متأكد من أنك تريد حذف سجل الفيديو بأكمله؟</target> 7715 <target>هل أنت متأكد من أنك تريد حذف سجل الفيديو بأكمله؟</target>
7716 7716
7717 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> 7717 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit>
7718 <trans-unit id="4051606152827088952" datatype="html"> 7718 <trans-unit id="4051606152827088952" datatype="html">
7719 <source>Videos history deleted</source> 7719 <source>Videos history deleted</source>
7720 <target>تم حذف سجل مقاطع الفيديو</target> 7720 <target>تم حذف سجل مقاطع الفيديو</target>
7721 7721
7722 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> 7722 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit>
7723 <trans-unit id="1486537403020619891" datatype="html"> 7723 <trans-unit id="1486537403020619891" datatype="html">
7724 <source>My watch history</source> 7724 <source>My watch history</source>
7725 <target state="new">My watch history</target> 7725 <target state="new">My watch history</target>
7726 7726
7727 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> 7727 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit>
7728 <trans-unit id="3656932706364053858" datatype="html"> 7728 <trans-unit id="3656932706364053858" datatype="html">
7729 <source>Track watch history</source> 7729 <source>Track watch history</source>
@@ -7768,16 +7768,16 @@ The link will expire within 1 hour.</source>
7768 <target>حُدثت كلمة المرور.</target> 7768 <target>حُدثت كلمة المرور.</target>
7769 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context><context context-type="linenumber">53</context></context-group> 7769 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context><context context-type="linenumber">53</context></context-group>
7770 </trans-unit> 7770 </trans-unit>
7771 7771
7772 <trans-unit id="6897292459203320054" datatype="html"> 7772 <trans-unit id="6897292459203320054" datatype="html">
7773 <source>Type your username to confirm</source> 7773 <source>Type your username to confirm</source>
7774 <target>أدخل اسم المستخدِم للتأكيد</target> 7774 <target>أدخل اسم المستخدِم للتأكيد</target>
7775 7775
7776 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">29</context></context-group></trans-unit> 7776 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">29</context></context-group></trans-unit>
7777 <trans-unit id="3122895472333547524" datatype="html"> 7777 <trans-unit id="3122895472333547524" datatype="html">
7778 <source>Delete your account</source> 7778 <source>Delete your account</source>
7779 <target state="translated">احذف حسابك</target> 7779 <target state="translated">احذف حسابك</target>
7780 7780
7781 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">31</context></context-group></trans-unit><trans-unit id="577064441120663273" datatype="html"> 7781 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">31</context></context-group></trans-unit><trans-unit id="577064441120663273" datatype="html">
7782 <source>Are you sure you want to delete your account?</source><target state="new">Are you sure you want to delete your account?</target> 7782 <source>Are you sure you want to delete your account?</source><target state="new">Are you sure you want to delete your account?</target>
7783 <context-group purpose="location"> 7783 <context-group purpose="location">
@@ -7800,12 +7800,12 @@ The link will expire within 1 hour.</source>
7800 <trans-unit id="2520605306994744004" datatype="html"> 7800 <trans-unit id="2520605306994744004" datatype="html">
7801 <source>Delete my account</source> 7801 <source>Delete my account</source>
7802 <target>احذف حسابي</target> 7802 <target>احذف حسابي</target>
7803 7803
7804 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> 7804 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">32</context></context-group></trans-unit>
7805 <trans-unit id="3902597758945766483" datatype="html"> 7805 <trans-unit id="3902597758945766483" datatype="html">
7806 <source>Your account is deleted.</source> 7806 <source>Your account is deleted.</source>
7807 <target>حُذف حسابك.</target> 7807 <target>حُذف حسابك.</target>
7808 7808
7809 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> 7809 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
7810 <trans-unit id="77907918814566205" datatype="html"> 7810 <trans-unit id="77907918814566205" datatype="html">
7811 <source>New video from your subscriptions</source> 7811 <source>New video from your subscriptions</source>
@@ -7938,8 +7938,8 @@ The link will expire within 1 hour.</source>
7938 <trans-unit id="5674286808255988565" datatype="html"> 7938 <trans-unit id="5674286808255988565" datatype="html">
7939 <source>Create</source> 7939 <source>Create</source>
7940 <target state="translated">أنشئ</target> 7940 <target state="translated">أنشئ</target>
7941 7941
7942 7942
7943 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-create.component.ts</context><context context-type="linenumber">102</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts</context><context context-type="linenumber">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> 7943 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-create.component.ts</context><context context-type="linenumber">102</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts</context><context context-type="linenumber">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit>
7944 <trans-unit id="8869957234869568361" datatype="html"> 7944 <trans-unit id="8869957234869568361" datatype="html">
7945 <source>Update playlist</source> 7945 <source>Update playlist</source>
@@ -7950,14 +7950,14 @@ The link will expire within 1 hour.</source>
7950 <trans-unit id="5851560788527570644" datatype="html"> 7950 <trans-unit id="5851560788527570644" datatype="html">
7951 <source>Notifications</source> 7951 <source>Notifications</source>
7952 <target state="translated">التنبيهات</target> 7952 <target state="translated">التنبيهات</target>
7953 7953
7954 7954
7955 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">1</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">108</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> 7955 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-notifications/my-account-notifications.component.html</context><context context-type="linenumber">1</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">108</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit>
7956 <trans-unit id="6658000829978978023" datatype="html"> 7956 <trans-unit id="6658000829978978023" datatype="html">
7957 <source>Applications</source> 7957 <source>Applications</source>
7958 <target state="translated">التطبيقات</target> 7958 <target state="translated">التطبيقات</target>
7959 7959
7960 7960
7961 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">126</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> 7961 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">126</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">60</context></context-group></trans-unit>
7962 <trans-unit id="104404386496394770" datatype="html"> 7962 <trans-unit id="104404386496394770" datatype="html">
7963 <source>Delete playlist</source> 7963 <source>Delete playlist</source>
@@ -7972,7 +7972,7 @@ The link will expire within 1 hour.</source>
7972 <trans-unit id="4844578664427956129" datatype="html"> 7972 <trans-unit id="4844578664427956129" datatype="html">
7973 <source>Change ownership</source> 7973 <source>Change ownership</source>
7974 <target state="new">Change ownership</target> 7974 <target state="new">Change ownership</target>
7975 7975
7976 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">214</context></context-group></trans-unit> 7976 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">214</context></context-group></trans-unit>
7977 <trans-unit id="3380608219513805292" datatype="html"> 7977 <trans-unit id="3380608219513805292" datatype="html">
7978 <source>Playlist <x id="PH"/> deleted.</source> 7978 <source>Playlist <x id="PH"/> deleted.</source>
@@ -7982,7 +7982,7 @@ The link will expire within 1 hour.</source>
7982 <trans-unit id="5752861278140673787" datatype="html"> 7982 <trans-unit id="5752861278140673787" datatype="html">
7983 <source>Ownership changes</source> 7983 <source>Ownership changes</source>
7984 <target state="new">Ownership changes</target> 7984 <target state="new">Ownership changes</target>
7985 7985
7986 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> 7986 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">117</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit>
7987 <trans-unit id="8197117721861453263" datatype="html"> 7987 <trans-unit id="8197117721861453263" datatype="html">
7988 <source>Do you really want to delete <x id="PH"/> videos?</source> 7988 <source>Do you really want to delete <x id="PH"/> videos?</source>
@@ -8005,7 +8005,7 @@ The link will expire within 1 hour.</source>
8005 <trans-unit id="2027805873922338635" datatype="html"> 8005 <trans-unit id="2027805873922338635" datatype="html">
8006 <source>Do you really want to delete <x id="PH"/>? </source> 8006 <source>Do you really want to delete <x id="PH"/>? </source>
8007 <target>هل تريد حذف <x id="PH"/>؟ </target> 8007 <target>هل تريد حذف <x id="PH"/>؟ </target>
8008 8008
8009 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">126</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">177</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">217</context></context-group></trans-unit> 8009 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts</context><context context-type="linenumber">126</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.ts</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">177</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">217</context></context-group></trans-unit>
8010 <trans-unit id="2767660806989176400" datatype="html"> 8010 <trans-unit id="2767660806989176400" datatype="html">
8011 <source>Video <x id="PH"/> deleted.</source> 8011 <source>Video <x id="PH"/> deleted.</source>
@@ -8029,8 +8029,8 @@ The link will expire within 1 hour.</source>
8029 <trans-unit id="3058024914967508975" datatype="html"> 8029 <trans-unit id="3058024914967508975" datatype="html">
8030 <source>My videos</source> 8030 <source>My videos</source>
8031 <target state="translated">فيديوهاتي</target> 8031 <target state="translated">فيديوهاتي</target>
8032 8032
8033 8033
8034 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> 8034 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">77</context></context-group></trans-unit>
8035 <trans-unit id="3108704604266608109" datatype="html"> 8035 <trans-unit id="3108704604266608109" datatype="html">
8036 <source>My video imports</source> 8036 <source>My video imports</source>
@@ -8045,12 +8045,12 @@ The link will expire within 1 hour.</source>
8045 <trans-unit id="7545420287297803988" datatype="html"> 8045 <trans-unit id="7545420287297803988" datatype="html">
8046 <source>My playlists</source> 8046 <source>My playlists</source>
8047 <target>قوائم التشغيل الخاصة بي</target> 8047 <target>قوائم التشغيل الخاصة بي</target>
8048 8048
8049 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">40</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">86</context></context-group></trans-unit> 8049 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">40</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlists.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">86</context></context-group></trans-unit>
8050 <trans-unit id="2527931602940887636" datatype="html"> 8050 <trans-unit id="2527931602940887636" datatype="html">
8051 <source>My subscriptions</source> 8051 <source>My subscriptions</source>
8052 <target>اشتراكاتي</target> 8052 <target>اشتراكاتي</target>
8053 8053
8054 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">99</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> 8054 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-follows/my-subscriptions.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">99</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">92</context></context-group></trans-unit>
8055 <trans-unit id="5177154708872200221" datatype="html"> 8055 <trans-unit id="5177154708872200221" datatype="html">
8056 <source>You don't have any subscription yet.</source> 8056 <source>You don't have any subscription yet.</source>
@@ -8065,8 +8065,8 @@ The link will expire within 1 hour.</source>
8065 <trans-unit id="4180693983967989981" datatype="html"> 8065 <trans-unit id="4180693983967989981" datatype="html">
8066 <source>Unable to find user id or verification string.</source> 8066 <source>Unable to find user id or verification string.</source>
8067 <target>تعذر العثور على معرف المستخدم أو سلسلة التحقق.</target> 8067 <target>تعذر العثور على معرف المستخدم أو سلسلة التحقق.</target>
8068 8068
8069 8069
8070 <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> 8070 <context-group purpose="location"><context context-type="sourcefile">src/app/+reset-password/reset-password.component.ts</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-email/verify-account-email.component.ts</context><context context-type="linenumber">34</context></context-group></trans-unit>
8071 <trans-unit id="8781423666414310853" datatype="html"> 8071 <trans-unit id="8781423666414310853" datatype="html">
8072 <source>Your password has been successfully reset!</source> 8072 <source>Your password has been successfully reset!</source>
@@ -8076,9 +8076,9 @@ The link will expire within 1 hour.</source>
8076 <trans-unit id="6048892649018070225" datatype="html"> 8076 <trans-unit id="6048892649018070225" datatype="html">
8077 <source>Today</source> 8077 <source>Today</source>
8078 <target>اليوم</target> 8078 <target>اليوم</target>
8079 8079
8080 8080
8081 8081
8082 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">40</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">123</context></context-group></trans-unit> 8082 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">40</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">123</context></context-group></trans-unit>
8083 <trans-unit id="4498682414491138092" datatype="html"> 8083 <trans-unit id="4498682414491138092" datatype="html">
8084 <source>Yesterday</source> 8084 <source>Yesterday</source>
@@ -8108,86 +8108,86 @@ The link will expire within 1 hour.</source>
8108 <trans-unit id="5036991421517255667" datatype="html"> 8108 <trans-unit id="5036991421517255667" datatype="html">
8109 <source>Cannot load more videos. Try again later.</source> 8109 <source>Cannot load more videos. Try again later.</source>
8110 <target state="translated">لا يمكن تحميل مزيد من الفيديوهات. أعد المحاولة لاحقا.</target> 8110 <target state="translated">لا يمكن تحميل مزيد من الفيديوهات. أعد المحاولة لاحقا.</target>
8111 8111
8112 8112
8113 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">227</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> 8113 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">227</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit>
8114 <trans-unit id="4873149362496451858" datatype="html"> 8114 <trans-unit id="4873149362496451858" datatype="html">
8115 <source>Last 7 days</source> 8115 <source>Last 7 days</source>
8116 <target>الأسبوع الماضي</target> 8116 <target>الأسبوع الماضي</target>
8117 8117
8118 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">44</context></context-group></trans-unit> 8118 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">44</context></context-group></trans-unit>
8119 <trans-unit id="2949150997160654358" datatype="html"> 8119 <trans-unit id="2949150997160654358" datatype="html">
8120 <source>Last 30 days</source> 8120 <source>Last 30 days</source>
8121 <target>الشهر الماضي</target> 8121 <target>الشهر الماضي</target>
8122 8122
8123 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> 8123 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit>
8124 <trans-unit id="5328600704510694984" datatype="html"> 8124 <trans-unit id="5328600704510694984" datatype="html">
8125 <source>Last 365 days</source> 8125 <source>Last 365 days</source>
8126 <target>السنة الماضية</target> 8126 <target>السنة الماضية</target>
8127 8127
8128 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> 8128 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit>
8129 <trans-unit id="2392481201920342009" datatype="html"> 8129 <trans-unit id="2392481201920342009" datatype="html">
8130 <source>VOD videos</source> 8130 <source>VOD videos</source>
8131 <target state="new">VOD videos</target> 8131 <target state="new">VOD videos</target>
8132 8132
8133 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">109</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">165</context></context-group></trans-unit> 8133 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">34</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">109</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
8134 <trans-unit id="2180217594100853008" datatype="html"> 8134 <trans-unit id="2180217594100853008" datatype="html">
8135 <source>Live videos</source> 8135 <source>Live videos</source>
8136 <target state="needs-translation">فيديوهات مباشرة</target> 8136 <target state="needs-translation">فيديوهات مباشرة</target>
8137 8137
8138 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">104</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">159</context></context-group></trans-unit> 8138 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context><context context-type="linenumber">104</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">159</context></context-group></trans-unit>
8139 <trans-unit id="8487565500496466433" datatype="html"> 8139 <trans-unit id="8487565500496466433" datatype="html">
8140 <source>Short (&lt; 4 min)</source> 8140 <source>Short (&lt; 4 min)</source>
8141 <target>قصير (&lt; 4 دقائق)</target> 8141 <target>قصير (&lt; 4 دقائق)</target>
8142 8142
8143 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">59</context></context-group></trans-unit> 8143 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">59</context></context-group></trans-unit>
8144 <trans-unit id="3642535017283477339" datatype="html"> 8144 <trans-unit id="3642535017283477339" datatype="html">
8145 <source>Medium (4-10 min)</source> 8145 <source>Medium (4-10 min)</source>
8146 <target>متوسط (4-10 دقائق)</target> 8146 <target>متوسط (4-10 دقائق)</target>
8147 8147
8148 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> 8148 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit>
8149 <trans-unit id="6613870447286561244" datatype="html"> 8149 <trans-unit id="6613870447286561244" datatype="html">
8150 <source>Long (> 10 min)</source> 8150 <source>Long (> 10 min)</source>
8151 <target>طويل (> 10 دقائق)</target> 8151 <target>طويل (> 10 دقائق)</target>
8152 8152
8153 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> 8153 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit>
8154 <trans-unit id="1787083504545967" datatype="html"> 8154 <trans-unit id="1787083504545967" datatype="html">
8155 <source>Relevance</source> 8155 <source>Relevance</source>
8156 <target>ملاءمة</target> 8156 <target>ملاءمة</target>
8157 8157
8158 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">74</context></context-group></trans-unit> 8158 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">74</context></context-group></trans-unit>
8159 <trans-unit id="7944277186358179990" datatype="html"> 8159 <trans-unit id="7944277186358179990" datatype="html">
8160 <source>Publish date</source> 8160 <source>Publish date</source>
8161 <target>تاريخ النشر</target> 8161 <target>تاريخ النشر</target>
8162 8162
8163 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> 8163 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit>
8164 <trans-unit id="2123659921722214537" datatype="html"> 8164 <trans-unit id="2123659921722214537" datatype="html">
8165 <source>Views</source> 8165 <source>Views</source>
8166 <target>عدد المشاهدات</target> 8166 <target>عدد المشاهدات</target>
8167 8167
8168 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> 8168 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit>
8169 <trans-unit id="3208627574396957172" datatype="html"> 8169 <trans-unit id="3208627574396957172" datatype="html">
8170 <source>Search index is unavailable. Retrying with instance results instead.</source> 8170 <source>Search index is unavailable. Retrying with instance results instead.</source>
8171 <target>فهرس البحث غير متاح. بدلا من ذلك يعيد المحاولة باستخدام نتائج المثيل.</target> 8171 <target>فهرس البحث غير متاح. بدلا من ذلك يعيد المحاولة باستخدام نتائج المثيل.</target>
8172 8172
8173 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">159</context></context-group></trans-unit> 8173 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">159</context></context-group></trans-unit>
8174 <trans-unit id="307702206382241469" datatype="html"> 8174 <trans-unit id="307702206382241469" datatype="html">
8175 <source>Search error</source> 8175 <source>Search error</source>
8176 <target>خطأ في البحث</target> 8176 <target>خطأ في البحث</target>
8177 8177
8178 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">160</context></context-group></trans-unit> 8178 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">160</context></context-group></trans-unit>
8179 <trans-unit id="8491751845906232809" datatype="html"> 8179 <trans-unit id="8491751845906232809" datatype="html">
8180 <source>PeerTube instance host filter is invalid</source> 8180 <source>PeerTube instance host filter is invalid</source>
8181 <target state="new">PeerTube instance host filter is invalid</target> 8181 <target state="new">PeerTube instance host filter is invalid</target>
8182 8182
8183 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">327</context></context-group></trans-unit> 8183 <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">327</context></context-group></trans-unit>
8184 <trans-unit id="4580988005648117665" datatype="html"> 8184 <trans-unit id="4580988005648117665" datatype="html">
8185 <source>Search</source> 8185 <source>Search</source>
8186 <target state="translated">ابحث</target> 8186 <target state="translated">ابحث</target>
8187 8187
8188 8188
8189 8189
8190 8190
8191 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-navigation.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">255</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">122</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">13</context></context-group></trans-unit><trans-unit id="320689395528621696" datatype="html"> 8191 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-navigation.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">255</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">8</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">122</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">13</context></context-group></trans-unit><trans-unit id="320689395528621696" datatype="html">
8192 <source>Navigate between plugins and themes</source><target state="new">Navigate between plugins and themes</target> 8192 <source>Navigate between plugins and themes</source><target state="new">Navigate between plugins and themes</target>
8193 <context-group purpose="location"> 8193 <context-group purpose="location">
@@ -8206,28 +8206,28 @@ The link will expire within 1 hour.</source>
8206 <trans-unit id="6537885755702623401" datatype="html"> 8206 <trans-unit id="6537885755702623401" datatype="html">
8207 <source>Now please check your emails to verify your account and complete signup.</source> 8207 <source>Now please check your emails to verify your account and complete signup.</source>
8208 <target>يرجى مراجعة رسائل بريدك الإلكتروني للتحقق من حسابك وإكمال التسجيل.</target> 8208 <target>يرجى مراجعة رسائل بريدك الإلكتروني للتحقق من حسابك وإكمال التسجيل.</target>
8209 8209
8210 <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">137</context></context-group></trans-unit> 8210 <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">137</context></context-group></trans-unit>
8211 <trans-unit id="2847376451647729886" datatype="html"> 8211 <trans-unit id="2847376451647729886" datatype="html">
8212 <source>You are now logged in as <x id="PH"/>!</source> 8212 <source>You are now logged in as <x id="PH"/>!</source>
8213 <target>أنت مسجل ك <x id="PH"/>!</target> 8213 <target>أنت مسجل ك <x id="PH"/>!</target>
8214 8214
8215 <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">145</context></context-group></trans-unit> 8215 <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">145</context></context-group></trans-unit>
8216 <trans-unit id="2687679787442328897" datatype="html"> 8216 <trans-unit id="2687679787442328897" datatype="html">
8217 <source>An email with verification link will be sent to <x id="PH"/>.</source> 8217 <source>An email with verification link will be sent to <x id="PH"/>.</source>
8218 <target>سيرسل بريد يحتوي رابط التفعيل الى <x id="PH"/>.</target> 8218 <target>سيرسل بريد يحتوي رابط التفعيل الى <x id="PH"/>.</target>
8219 8219
8220 <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> 8220 <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">40</context></context-group></trans-unit>
8221 <trans-unit id="1783173774503340906" datatype="html"> 8221 <trans-unit id="1783173774503340906" datatype="html">
8222 <source>Subscribe to the account</source> 8222 <source>Subscribe to the account</source>
8223 <target>الاشتراك في الحساب</target> 8223 <target>الاشتراك في الحساب</target>
8224 8224
8225 8225
8226 <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">76</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">747</context></context-group></trans-unit> 8226 <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">76</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">747</context></context-group></trans-unit>
8227 <trans-unit id="3131904093925601441" datatype="html"> 8227 <trans-unit id="3131904093925601441" datatype="html">
8228 <source>PLAYLISTS</source> 8228 <source>PLAYLISTS</source>
8229 <target state="new">PLAYLISTS</target> 8229 <target state="new">PLAYLISTS</target>
8230 8230
8231 <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> 8231 <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit>
8232 <trans-unit id="6950140976689343775" datatype="html"> 8232 <trans-unit id="6950140976689343775" datatype="html">
8233 <source>Sunday</source> 8233 <source>Sunday</source>
@@ -8376,20 +8376,20 @@ The link will expire within 1 hour.</source>
8376 <note priority="1" from="description">Day name min</note> 8376 <note priority="1" from="description">Day name min</note>
8377 <note priority="1" from="meaning">Saturday min name</note> 8377 <note priority="1" from="meaning">Saturday min name</note>
8378 </trans-unit> 8378 </trans-unit>
8379 8379
8380 8380
8381 8381
8382 8382
8383 8383
8384 8384
8385 8385
8386 8386
8387 8387
8388 8388
8389 8389
8390 8390
8391 8391
8392 8392
8393 <trans-unit id="3913843642962116845" datatype="html"> 8393 <trans-unit id="3913843642962116845" datatype="html">
8394 <source>January</source> 8394 <source>January</source>
8395 <target>جانفي</target> 8395 <target>جانفي</target>
@@ -8413,8 +8413,8 @@ The link will expire within 1 hour.</source>
8413 <trans-unit id="8469692700277617405" datatype="html"> 8413 <trans-unit id="8469692700277617405" datatype="html">
8414 <source>May</source> 8414 <source>May</source>
8415 <target>ماي</target> 8415 <target>ماي</target>
8416 8416
8417 8417
8418 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">44</context></context-group></trans-unit> 8418 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">44</context></context-group></trans-unit>
8419 <trans-unit id="9055297580745330415" datatype="html"> 8419 <trans-unit id="9055297580745330415" datatype="html">
8420 <source>June</source> 8420 <source>June</source>
@@ -8547,17 +8547,17 @@ The link will expire within 1 hour.</source>
8547 <note priority="1" from="description">Month name short</note> 8547 <note priority="1" from="description">Month name short</note>
8548 <note priority="1" from="meaning">December short name</note> 8548 <note priority="1" from="meaning">December short name</note>
8549 </trans-unit> 8549 </trans-unit>
8550 8550
8551 8551
8552 8552
8553 8553
8554 8554
8555 8555
8556 8556
8557 8557
8558 8558
8559 8559
8560 8560
8561 <trans-unit id="8700121026680200191" datatype="html"> 8561 <trans-unit id="8700121026680200191" datatype="html">
8562 <source>Clear</source> 8562 <source>Clear</source>
8563 <target>مسح</target> 8563 <target>مسح</target>
@@ -8572,49 +8572,49 @@ The link will expire within 1 hour.</source>
8572 <trans-unit id="2830831449226931729" datatype="html"> 8572 <trans-unit id="2830831449226931729" datatype="html">
8573 <source>Instance languages</source> 8573 <source>Instance languages</source>
8574 <target state="translated">لغات المثيل</target> 8574 <target state="translated">لغات المثيل</target>
8575 8575
8576 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">191</context></context-group></trans-unit> 8576 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">191</context></context-group></trans-unit>
8577 <trans-unit id="40119547597591062" datatype="html"> 8577 <trans-unit id="40119547597591062" datatype="html">
8578 <source>All languages</source> 8578 <source>All languages</source>
8579 <target state="translated">كل اللغات</target> 8579 <target state="translated">كل اللغات</target>
8580 8580
8581 8581
8582 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">192</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> 8582 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">192</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">25</context></context-group></trans-unit>
8583 <trans-unit id="5210096066382592800" datatype="html"> 8583 <trans-unit id="5210096066382592800" datatype="html">
8584 <source>Video to import updated.</source> 8584 <source>Video to import updated.</source>
8585 <target>تم تحديث الفيديو المراد استيراده.</target> 8585 <target>تم تحديث الفيديو المراد استيراده.</target>
8586 8586
8587 8587
8588 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts</context><context context-type="linenumber">138</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> 8588 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts</context><context context-type="linenumber">138</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit>
8589 <trans-unit id="3284171506518522275" datatype="html"> 8589 <trans-unit id="3284171506518522275" datatype="html">
8590 <source>Your video was uploaded to your account and is private.</source> 8590 <source>Your video was uploaded to your account and is private.</source>
8591 <target>تم رفع الفيديو الخاص بك إلى حسابك وهو خاص.</target> 8591 <target>تم رفع الفيديو الخاص بك إلى حسابك وهو خاص.</target>
8592 8592
8593 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">123</context></context-group></trans-unit> 8593 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">123</context></context-group></trans-unit>
8594 <trans-unit id="5699822024600815733" datatype="html"> 8594 <trans-unit id="5699822024600815733" datatype="html">
8595 <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> 8595 <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source>
8596 <target>ولكن ستفقد البيانات المرتبطة (العلامات ،الوصف...) ، هل تريد بالتأكيد مغادرة هذه الصفحة؟</target> 8596 <target>ولكن ستفقد البيانات المرتبطة (العلامات ،الوصف...) ، هل تريد بالتأكيد مغادرة هذه الصفحة؟</target>
8597 8597
8598 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> 8598 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit>
8599 <trans-unit id="1219739004043110649" datatype="html"> 8599 <trans-unit id="1219739004043110649" datatype="html">
8600 <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> 8600 <source>Your video is not uploaded yet, are you sure you want to leave this page?</source>
8601 <target>لم يرفع الفيديو الخاص بك حتى الآن ، هل تريد بالتأكيد مغادرة هذه الصفحة؟</target> 8601 <target>لم يرفع الفيديو الخاص بك حتى الآن ، هل تريد بالتأكيد مغادرة هذه الصفحة؟</target>
8602 8602
8603 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> 8603 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit>
8604 <trans-unit id="6932865105766151309" datatype="html"> 8604 <trans-unit id="6932865105766151309" datatype="html">
8605 <source>Upload</source> 8605 <source>Upload</source>
8606 <target state="translated">رفع</target> 8606 <target state="translated">رفع</target>
8607 8607
8608 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">233</context></context-group></trans-unit> 8608 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">233</context></context-group></trans-unit>
8609 <trans-unit id="8278735427925094503" datatype="html"> 8609 <trans-unit id="8278735427925094503" datatype="html">
8610 <source>Upload <x id="PH"/> </source> 8610 <source>Upload <x id="PH"/> </source>
8611 <target>ارفع <x id="PH"/> </target> 8611 <target>ارفع <x id="PH"/> </target>
8612 8612
8613 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">235</context></context-group></trans-unit> 8613 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">235</context></context-group></trans-unit>
8614 <trans-unit id="5981816353437801748" datatype="html"> 8614 <trans-unit id="5981816353437801748" datatype="html">
8615 <source>Video published.</source> 8615 <source>Video published.</source>
8616 <target>نُشر الفيديو.</target> 8616 <target>نُشر الفيديو.</target>
8617 8617
8618 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">256</context></context-group></trans-unit> 8618 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">256</context></context-group></trans-unit>
8619 <trans-unit id="764164089183618119" datatype="html"> 8619 <trans-unit id="764164089183618119" datatype="html">
8620 <source>You have unsaved changes! If you leave, your changes will be lost.</source> 8620 <source>You have unsaved changes! If you leave, your changes will be lost.</source>
@@ -8624,7 +8624,7 @@ The link will expire within 1 hour.</source>
8624 <trans-unit id="8306050839443016954" datatype="html"> 8624 <trans-unit id="8306050839443016954" datatype="html">
8625 <source>Video updated.</source> 8625 <source>Video updated.</source>
8626 <target>حُدث الفيديو.</target> 8626 <target>حُدث الفيديو.</target>
8627 8627
8628 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">146</context></context-group></trans-unit> 8628 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">146</context></context-group></trans-unit>
8629 <trans-unit id="5512208811126492983" datatype="html"> 8629 <trans-unit id="5512208811126492983" datatype="html">
8630 <source>Report comment</source> 8630 <source>Report comment</source>
@@ -8634,7 +8634,7 @@ The link will expire within 1 hour.</source>
8634 <trans-unit id="1729036051846673606" datatype="html"> 8634 <trans-unit id="1729036051846673606" datatype="html">
8635 <source>When active, the next video is automatically played after the current one.</source> 8635 <source>When active, the next video is automatically played after the current one.</source>
8636 <target>عندما ينشط ، يشغل الفيديو التالي تلقائيًا بعد الفيديو الحالي.</target> 8636 <target>عندما ينشط ، يشغل الفيديو التالي تلقائيًا بعد الفيديو الحالي.</target>
8637 8637
8638 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> 8638 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit>
8639 <trans-unit id="2222108104954671970" datatype="html"> 8639 <trans-unit id="2222108104954671970" datatype="html">
8640 <source><x id="PH"/> sec </source> 8640 <source><x id="PH"/> sec </source>
@@ -8649,27 +8649,27 @@ The link will expire within 1 hour.</source>
8649 <trans-unit id="4930506384627295710" datatype="html"> 8649 <trans-unit id="4930506384627295710" datatype="html">
8650 <source>Settings</source> 8650 <source>Settings</source>
8651 <target state="new">Settings</target> 8651 <target state="new">Settings</target>
8652 8652
8653 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">1</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit> 8653 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context><context context-type="linenumber">12</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">1</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account.component.ts</context><context context-type="linenumber">50</context></context-group></trans-unit>
8654 <trans-unit id="6775540171466219199" datatype="html"> 8654 <trans-unit id="6775540171466219199" datatype="html">
8655 <source>Stop autoplaying next video</source> 8655 <source>Stop autoplaying next video</source>
8656 <target>أوقف التشغيل التلقائي للفيديو التالي</target> 8656 <target>أوقف التشغيل التلقائي للفيديو التالي</target>
8657 8657
8658 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">228</context></context-group></trans-unit> 8658 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">228</context></context-group></trans-unit>
8659 <trans-unit id="5149234672404299151" datatype="html"> 8659 <trans-unit id="5149234672404299151" datatype="html">
8660 <source>Autoplay next video</source> 8660 <source>Autoplay next video</source>
8661 <target>شغل الفيديو التالي تلقائيًا</target> 8661 <target>شغل الفيديو التالي تلقائيًا</target>
8662 8662
8663 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> 8663 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit>
8664 <trans-unit id="5870421136141540382" datatype="html"> 8664 <trans-unit id="5870421136141540382" datatype="html">
8665 <source>Stop looping playlist videos</source> 8665 <source>Stop looping playlist videos</source>
8666 <target state="translated">أوقف تكرار تشغيل مقاطع قائمة التشغيل</target> 8666 <target state="translated">أوقف تكرار تشغيل مقاطع قائمة التشغيل</target>
8667 8667
8668 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">234</context></context-group></trans-unit> 8668 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">234</context></context-group></trans-unit>
8669 <trans-unit id="1599585307037758139" datatype="html"> 8669 <trans-unit id="1599585307037758139" datatype="html">
8670 <source>Loop playlist videos</source> 8670 <source>Loop playlist videos</source>
8671 <target state="translated">تكرار تشغيل مقاطع قائمة التشغيل</target> 8671 <target state="translated">تكرار تشغيل مقاطع قائمة التشغيل</target>
8672 8672
8673 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">235</context></context-group></trans-unit> 8673 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/playlist/video-watch-playlist.component.ts</context><context context-type="linenumber">235</context></context-group></trans-unit>
8674 <trans-unit id="3704292036525161260" datatype="html"> 8674 <trans-unit id="3704292036525161260" datatype="html">
8675 <source>Placeholder image</source> 8675 <source>Placeholder image</source>
@@ -8708,88 +8708,88 @@ The link will expire within 1 hour.</source>
8708 <trans-unit id="961774488937452220" datatype="html"> 8708 <trans-unit id="961774488937452220" datatype="html">
8709 <source>This video is not available on this instance. Do you want to be redirected on the origin instance: &lt;a href="<x id="PH"/>"><x id="PH_1"/>&lt;/a>?</source> 8709 <source>This video is not available on this instance. Do you want to be redirected on the origin instance: &lt;a href="<x id="PH"/>"><x id="PH_1"/>&lt;/a>?</source>
8710 <target state="translated">هذا الفيديو ليس متوفرا على هذا المثيل. هل تريد التوجه المثيل الأصلي: &lt;a href="<x id="PH"/>"><x id="PH_1"/>&lt;/a> ؟</target> 8710 <target state="translated">هذا الفيديو ليس متوفرا على هذا المثيل. هل تريد التوجه المثيل الأصلي: &lt;a href="<x id="PH"/>"><x id="PH_1"/>&lt;/a> ؟</target>
8711 8711
8712 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">301</context></context-group></trans-unit> 8712 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">301</context></context-group></trans-unit>
8713 <trans-unit id="5761611056224181752" datatype="html"> 8713 <trans-unit id="5761611056224181752" datatype="html">
8714 <source>Redirection</source> 8714 <source>Redirection</source>
8715 <target state="translated">اعادة توجيه</target> 8715 <target state="translated">اعادة توجيه</target>
8716 8716
8717 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">302</context></context-group></trans-unit> 8717 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">302</context></context-group></trans-unit>
8718 <trans-unit id="8858527736400081688" datatype="html"> 8718 <trans-unit id="8858527736400081688" datatype="html">
8719 <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> 8719 <source>This video contains mature or explicit content. Are you sure you want to watch it?</source>
8720 <target>يحتوي هذا الفيديو على محتوى للبالغين أو محتوى صريح. أمتأكد من مشاهدته؟</target> 8720 <target>يحتوي هذا الفيديو على محتوى للبالغين أو محتوى صريح. أمتأكد من مشاهدته؟</target>
8721 8721
8722 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">351</context></context-group></trans-unit> 8722 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">351</context></context-group></trans-unit>
8723 <trans-unit id="3937119019020041049" datatype="html"> 8723 <trans-unit id="3937119019020041049" datatype="html">
8724 <source>Mature or explicit content</source> 8724 <source>Mature or explicit content</source>
8725 <target>محتوى للبالغين أو محتوى صريح</target> 8725 <target>محتوى للبالغين أو محتوى صريح</target>
8726 8726
8727 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> 8727 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">352</context></context-group></trans-unit>
8728 <trans-unit id="1755474755114288376" datatype="html"> 8728 <trans-unit id="1755474755114288376" datatype="html">
8729 <source>Up Next</source> 8729 <source>Up Next</source>
8730 <target>التالي</target> 8730 <target>التالي</target>
8731 8731
8732 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">424</context></context-group></trans-unit> 8732 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">424</context></context-group></trans-unit>
8733 <trans-unit id="2159130950882492111" datatype="html"> 8733 <trans-unit id="2159130950882492111" datatype="html">
8734 <source>Cancel</source> 8734 <source>Cancel</source>
8735 <target state="translated">ألغ</target> 8735 <target state="translated">ألغ</target>
8736 8736
8737 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">48</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">125</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">81</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">73</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">425</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">90</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">46</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">152</context></context-group></trans-unit> 8737 <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context><context context-type="linenumber">48</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">33</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">125</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-imports/my-video-imports.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/modals/video-change-ownership.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-caption-add-modal.component.html</context><context context-type="linenumber">37</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">69</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.html</context><context context-type="linenumber">81</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">73</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">425</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/moderation-comment-modal.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/report.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">90</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">46</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">152</context></context-group></trans-unit>
8738 <trans-unit id="3354816756665089864" datatype="html"> 8738 <trans-unit id="3354816756665089864" datatype="html">
8739 <source>Autoplay is suspended</source> 8739 <source>Autoplay is suspended</source>
8740 <target>أُوقف التشغيل التلقائي</target> 8740 <target>أُوقف التشغيل التلقائي</target>
8741 8741
8742 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">426</context></context-group></trans-unit><trans-unit id="5856931617181450881" datatype="html"> 8742 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">426</context></context-group></trans-unit><trans-unit id="5856931617181450881" datatype="html">
8743 <source>Enter/exit fullscreen</source><target state="new">Enter/exit fullscreen</target> 8743 <source>Enter/exit fullscreen</source><target state="new">Enter/exit fullscreen</target>
8744 8744
8745 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="2971009377468404076" datatype="html"> 8745 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">716</context></context-group></trans-unit><trans-unit id="2971009377468404076" datatype="html">
8746 <source>Play/Pause the video</source><target state="new">Play/Pause the video</target> 8746 <source>Play/Pause the video</source><target state="new">Play/Pause the video</target>
8747 8747
8748 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">717</context></context-group></trans-unit><trans-unit id="4147087312411482964" datatype="html"> 8748 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">717</context></context-group></trans-unit><trans-unit id="4147087312411482964" datatype="html">
8749 <source>Mute/unmute the video</source><target state="new">Mute/unmute the video</target> 8749 <source>Mute/unmute the video</source><target state="new">Mute/unmute the video</target>
8750 8750
8751 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">718</context></context-group></trans-unit><trans-unit id="4791956574676305640" datatype="html"> 8751 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">718</context></context-group></trans-unit><trans-unit id="4791956574676305640" datatype="html">
8752 <source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source><target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target> 8752 <source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source><target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
8753 8753
8754 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">720</context></context-group></trans-unit><trans-unit id="3887762369650091344" datatype="html"> 8754 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">720</context></context-group></trans-unit><trans-unit id="3887762369650091344" datatype="html">
8755 <source>Increase the volume</source><target state="new">Increase the volume</target> 8755 <source>Increase the volume</source><target state="new">Increase the volume</target>
8756 8756
8757 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">722</context></context-group></trans-unit><trans-unit id="1363382131573461910" datatype="html"> 8757 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">722</context></context-group></trans-unit><trans-unit id="1363382131573461910" datatype="html">
8758 <source>Decrease the volume</source><target state="new">Decrease the volume</target> 8758 <source>Decrease the volume</source><target state="new">Decrease the volume</target>
8759 8759
8760 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">723</context></context-group></trans-unit><trans-unit id="2541031516422557760" datatype="html"> 8760 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">723</context></context-group></trans-unit><trans-unit id="2541031516422557760" datatype="html">
8761 <source>Seek the video forward</source><target state="new">Seek the video forward</target> 8761 <source>Seek the video forward</source><target state="new">Seek the video forward</target>
8762 8762
8763 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">725</context></context-group></trans-unit><trans-unit id="8813023402019364882" datatype="html"> 8763 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">725</context></context-group></trans-unit><trans-unit id="8813023402019364882" datatype="html">
8764 <source>Seek the video backward</source><target state="new">Seek the video backward</target> 8764 <source>Seek the video backward</source><target state="new">Seek the video backward</target>
8765 8765
8766 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">726</context></context-group></trans-unit><trans-unit id="581757752202843950" datatype="html"> 8766 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">726</context></context-group></trans-unit><trans-unit id="581757752202843950" datatype="html">
8767 <source>Increase playback rate</source><target state="new">Increase playback rate</target> 8767 <source>Increase playback rate</source><target state="new">Increase playback rate</target>
8768 8768
8769 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">728</context></context-group></trans-unit><trans-unit id="5467642834854681120" datatype="html"> 8769 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">728</context></context-group></trans-unit><trans-unit id="5467642834854681120" datatype="html">
8770 <source>Decrease playback rate</source><target state="new">Decrease playback rate</target> 8770 <source>Decrease playback rate</source><target state="new">Decrease playback rate</target>
8771 8771
8772 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">729</context></context-group></trans-unit><trans-unit id="3860402955823859506" datatype="html"> 8772 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">729</context></context-group></trans-unit><trans-unit id="3860402955823859506" datatype="html">
8773 <source>Navigate in the video to the previous frame</source><target state="new">Navigate in the video to the previous frame</target> 8773 <source>Navigate in the video to the previous frame</source><target state="new">Navigate in the video to the previous frame</target>
8774 8774
8775 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="8232494782895420700" datatype="html"> 8775 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">731</context></context-group></trans-unit><trans-unit id="8232494782895420700" datatype="html">
8776 <source>Navigate in the video to the next frame</source><target state="new">Navigate in the video to the next frame</target> 8776 <source>Navigate in the video to the next frame</source><target state="new">Navigate in the video to the next frame</target>
8777 8777
8778 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">732</context></context-group></trans-unit><trans-unit id="8223917068580581095" datatype="html"> 8778 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">732</context></context-group></trans-unit><trans-unit id="8223917068580581095" datatype="html">
8779 <source>Toggle theater mode</source><target state="new">Toggle theater mode</target> 8779 <source>Toggle theater mode</source><target state="new">Toggle theater mode</target>
8780 8780
8781 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">737</context></context-group></trans-unit> 8781 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">737</context></context-group></trans-unit>
8782 8782
8783 8783
8784 8784
8785 8785
8786 8786
8787 8787
8788 8788
8789 8789
8790 8790
8791 8791
8792 8792
8793 <trans-unit id="8025996572234182184" datatype="html"> 8793 <trans-unit id="8025996572234182184" datatype="html">
8794 <source>Like the video</source> 8794 <source>Like the video</source>
8795 <target>أعجبني الفيديو</target> 8795 <target>أعجبني الفيديو</target>
@@ -8814,14 +8814,14 @@ The link will expire within 1 hour.</source>
8814 <trans-unit id="1812379335568847528" datatype="html"> 8814 <trans-unit id="1812379335568847528" datatype="html">
8815 <source>Subscriptions</source> 8815 <source>Subscriptions</source>
8816 <target state="translated">الاشتراكات</target> 8816 <target state="translated">الاشتراكات</target>
8817 8817
8818 8818
8819 8819
8820 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">91</context></context-group></trans-unit> 8820 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">91</context></context-group></trans-unit>
8821 <trans-unit id="186236568870281953" datatype="html"> 8821 <trans-unit id="186236568870281953" datatype="html">
8822 <source>History</source> 8822 <source>History</source>
8823 <target state="new">History</target> 8823 <target state="new">History</target>
8824 8824
8825 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">80</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">97</context></context-group></trans-unit> 8825 <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">80</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">97</context></context-group></trans-unit>
8826 <trans-unit id="5237588857224999862" datatype="html"> 8826 <trans-unit id="5237588857224999862" datatype="html">
8827 <source>Open actions</source> 8827 <source>Open actions</source>
@@ -8892,74 +8892,74 @@ The link will expire within 1 hour.</source>
8892 <trans-unit id="8212906256415538361" datatype="html"> 8892 <trans-unit id="8212906256415538361" datatype="html">
8893 <source>Upload a video</source> 8893 <source>Upload a video</source>
8894 <target state="translated">ارفع فيديو</target> 8894 <target state="translated">ارفع فيديو</target>
8895 8895
8896 <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">101</context></context-group></trans-unit> 8896 <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">101</context></context-group></trans-unit>
8897 <trans-unit id="7590784934397800835" datatype="html"> 8897 <trans-unit id="7590784934397800835" datatype="html">
8898 <source>Edit a video</source> 8898 <source>Edit a video</source>
8899 <target state="translated">حرر فيديو</target> 8899 <target state="translated">حرر فيديو</target>
8900 8900
8901 <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">110</context></context-group></trans-unit> 8901 <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">110</context></context-group></trans-unit>
8902 <trans-unit id="7709367721354853232" datatype="html"> 8902 <trans-unit id="7709367721354853232" datatype="html">
8903 <source>Focus the search bar</source> 8903 <source>Focus the search bar</source>
8904 <target>ركز شريط البحث</target> 8904 <target>ركز شريط البحث</target>
8905 8905
8906 <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit> 8906 <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit>
8907 <trans-unit id="4049262826107502276" datatype="html"> 8907 <trans-unit id="4049262826107502276" datatype="html">
8908 <source>Toggle the left menu</source> 8908 <source>Toggle the left menu</source>
8909 <target>بدّل القائمة اليسرى</target> 8909 <target>بدّل القائمة اليسرى</target>
8910 8910
8911 <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">279</context></context-group></trans-unit> 8911 <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">279</context></context-group></trans-unit>
8912 <trans-unit id="5409372033656550095" datatype="html"> 8912 <trans-unit id="5409372033656550095" datatype="html">
8913 <source>Go to the discover videos page</source> 8913 <source>Go to the discover videos page</source>
8914 <target>إنتقل إلى صفحة اكتشاف الفيديوهات</target> 8914 <target>إنتقل إلى صفحة اكتشاف الفيديوهات</target>
8915 8915
8916 <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">284</context></context-group></trans-unit> 8916 <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">284</context></context-group></trans-unit>
8917 <trans-unit id="4278050445961255445" datatype="html"> 8917 <trans-unit id="4278050445961255445" datatype="html">
8918 <source>Go to the trending videos page</source> 8918 <source>Go to the trending videos page</source>
8919 <target>انتقل إلى صفحة الفيديوهات الشائعة</target> 8919 <target>انتقل إلى صفحة الفيديوهات الشائعة</target>
8920 8920
8921 <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> 8921 <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit>
8922 <trans-unit id="3242234958443825475" datatype="html"> 8922 <trans-unit id="3242234958443825475" datatype="html">
8923 <source>Go to the recently added videos page</source> 8923 <source>Go to the recently added videos page</source>
8924 <target>انتقل إلى صفحةالفيديوهات المضافة حديثا</target> 8924 <target>انتقل إلى صفحةالفيديوهات المضافة حديثا</target>
8925 8925
8926 <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">294</context></context-group></trans-unit> 8926 <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">294</context></context-group></trans-unit>
8927 <trans-unit id="2887122197778293919" datatype="html"> 8927 <trans-unit id="2887122197778293919" datatype="html">
8928 <source>Go to the local videos page</source> 8928 <source>Go to the local videos page</source>
8929 <target>انتقل إلى صفحة الفيديوهات المحلية</target> 8929 <target>انتقل إلى صفحة الفيديوهات المحلية</target>
8930 8930
8931 <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">299</context></context-group></trans-unit> 8931 <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">299</context></context-group></trans-unit>
8932 <trans-unit id="8009065619559214982" datatype="html"> 8932 <trans-unit id="8009065619559214982" datatype="html">
8933 <source>Go to the videos upload page</source> 8933 <source>Go to the videos upload page</source>
8934 <target>انتقل إلى صفحة رفع الفيديوهات</target> 8934 <target>انتقل إلى صفحة رفع الفيديوهات</target>
8935 8935
8936 <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">304</context></context-group></trans-unit> 8936 <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">304</context></context-group></trans-unit>
8937 <trans-unit id="3779524668013120370" datatype="html"> 8937 <trans-unit id="3779524668013120370" datatype="html">
8938 <source>Go to my subscriptions</source> 8938 <source>Go to my subscriptions</source>
8939 <target>انتقل إلى اشتراكاتي</target> 8939 <target>انتقل إلى اشتراكاتي</target>
8940 8940
8941 <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> 8941 <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">61</context></context-group></trans-unit>
8942 <trans-unit id="1136469849928650779" datatype="html"> 8942 <trans-unit id="1136469849928650779" datatype="html">
8943 <source>Go to my videos</source> 8943 <source>Go to my videos</source>
8944 <target>انتقل إلى فيديوهاتي</target> 8944 <target>انتقل إلى فيديوهاتي</target>
8945 8945
8946 <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">65</context></context-group></trans-unit> 8946 <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">65</context></context-group></trans-unit>
8947 <trans-unit id="7836683738999600376" datatype="html"> 8947 <trans-unit id="7836683738999600376" datatype="html">
8948 <source>Go to my imports</source> 8948 <source>Go to my imports</source>
8949 <target>انتقل إلى مستورداتي</target> 8949 <target>انتقل إلى مستورداتي</target>
8950 8950
8951 <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> 8951 <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">69</context></context-group></trans-unit>
8952 <trans-unit id="7511292153332773503" datatype="html"> 8952 <trans-unit id="7511292153332773503" datatype="html">
8953 <source>Go to my channels</source> 8953 <source>Go to my channels</source>
8954 <target>انتقل إلى قنواتي</target> 8954 <target>انتقل إلى قنواتي</target>
8955 8955
8956 <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">73</context></context-group></trans-unit> 8956 <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">73</context></context-group></trans-unit>
8957 <trans-unit id="2013324644839511073" datatype="html"> 8957 <trans-unit id="2013324644839511073" datatype="html">
8958 <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="err.text"/>. 8958 <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="err.text"/>.
8959Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> 8959Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source>
8960 <target state="new">Cannot retrieve OAuth Client credentials: <x id="PH"/>. 8960 <target state="new">Cannot retrieve OAuth Client credentials: <x id="PH"/>.
8961Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</target> 8961Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</target>
8962 8962
8963 <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">100</context></context-group></trans-unit> 8963 <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">100</context></context-group></trans-unit>
8964 <trans-unit id="375263728166936544" datatype="html"> 8964 <trans-unit id="375263728166936544" datatype="html">
8965 <source>You need to reconnect.</source> 8965 <source>You need to reconnect.</source>
@@ -9015,17 +9015,17 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
9015 <trans-unit id="968295009933361070" datatype="html"> 9015 <trans-unit id="968295009933361070" datatype="html">
9016 <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> 9016 <source>Too many attempts, please try again after <x id="PH"/> minutes.</source>
9017 <target>أكثرت المحاولات، حاول لاحقا بعد <x id="PH"/> دقيقة.</target> 9017 <target>أكثرت المحاولات، حاول لاحقا بعد <x id="PH"/> دقيقة.</target>
9018 9018
9019 <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> 9019 <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">66</context></context-group></trans-unit>
9020 <trans-unit id="4965472196059235310" datatype="html"> 9020 <trans-unit id="4965472196059235310" datatype="html">
9021 <source>Too many attempts, please try again later.</source> 9021 <source>Too many attempts, please try again later.</source>
9022 <target>أكثرت المحاولات، حاول لاحقا.</target> 9022 <target>أكثرت المحاولات، حاول لاحقا.</target>
9023 9023
9024 <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">68</context></context-group></trans-unit> 9024 <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">68</context></context-group></trans-unit>
9025 <trans-unit id="1693549688987384699" datatype="html"> 9025 <trans-unit id="1693549688987384699" datatype="html">
9026 <source>Server error. Please retry later.</source> 9026 <source>Server error. Please retry later.</source>
9027 <target>خطأ في السيرفر. يرجى إعادة المحاولة لاحقا.</target> 9027 <target>خطأ في السيرفر. يرجى إعادة المحاولة لاحقا.</target>
9028 9028
9029 <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">71</context></context-group></trans-unit> 9029 <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">71</context></context-group></trans-unit>
9030 <trans-unit id="4670312387769733978" datatype="html"> 9030 <trans-unit id="4670312387769733978" datatype="html">
9031 <source>All unsaved data will be lost, are you sure you want to leave this page?</source> 9031 <source>All unsaved data will be lost, are you sure you want to leave this page?</source>
@@ -9035,12 +9035,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
9035 <trans-unit id="2149300564474427551" datatype="html"> 9035 <trans-unit id="2149300564474427551" datatype="html">
9036 <source>Administrator</source> 9036 <source>Administrator</source>
9037 <target>المدير</target> 9037 <target>المدير</target>
9038 9038
9039 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-users/user-admin.service.ts</context><context context-type="linenumber">123</context></context-group></trans-unit> 9039 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-users/user-admin.service.ts</context><context context-type="linenumber">123</context></context-group></trans-unit>
9040 <trans-unit id="4968151111061046122" datatype="html"> 9040 <trans-unit id="4968151111061046122" datatype="html">
9041 <source>Moderator</source> 9041 <source>Moderator</source>
9042 <target>مشرف</target> 9042 <target>مشرف</target>
9043 9043
9044 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-users/user-admin.service.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> 9044 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-users/user-admin.service.ts</context><context context-type="linenumber">124</context></context-group></trans-unit>
9045 <trans-unit id="2279527393438260622" datatype="html"> 9045 <trans-unit id="2279527393438260622" datatype="html">
9046 <source>Search videos, playlists, channels…</source> 9046 <source>Search videos, playlists, channels…</source>
@@ -9053,32 +9053,32 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
9053 <trans-unit id="5633144232269377096" datatype="html"> 9053 <trans-unit id="5633144232269377096" datatype="html">
9054 <source>hide</source> 9054 <source>hide</source>
9055 <target>أخف</target> 9055 <target>أخف</target>
9056 9056
9057 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">311</context></context-group></trans-unit> 9057 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">311</context></context-group></trans-unit>
9058 <trans-unit id="8603861867909474404" datatype="html"> 9058 <trans-unit id="8603861867909474404" datatype="html">
9059 <source>blur</source> 9059 <source>blur</source>
9060 <target>طمس</target> 9060 <target>طمس</target>
9061 9061
9062 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">315</context></context-group></trans-unit> 9062 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">315</context></context-group></trans-unit>
9063 <trans-unit id="4534458451100881847" datatype="html"> 9063 <trans-unit id="4534458451100881847" datatype="html">
9064 <source>display</source> 9064 <source>display</source>
9065 <target>اعرض</target> 9065 <target>اعرض</target>
9066 9066
9067 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">319</context></context-group></trans-unit> 9067 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">319</context></context-group></trans-unit>
9068 <trans-unit id="4467323362722952678" datatype="html"> 9068 <trans-unit id="4467323362722952678" datatype="html">
9069 <source>Unknown</source> 9069 <source>Unknown</source>
9070 <target>مجهول</target> 9070 <target>مجهول</target>
9071 9071
9072 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">206</context></context-group></trans-unit> 9072 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">206</context></context-group></trans-unit>
9073 <trans-unit id="7939914198003891823" datatype="html"> 9073 <trans-unit id="7939914198003891823" datatype="html">
9074 <source>any language</source> 9074 <source>any language</source>
9075 <target>أي لغة</target> 9075 <target>أي لغة</target>
9076 9076
9077 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">276</context></context-group></trans-unit> 9077 <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">276</context></context-group></trans-unit>
9078 <trans-unit id="9178182467454450952" datatype="html"> 9078 <trans-unit id="9178182467454450952" datatype="html">
9079 <source>Confirm</source> 9079 <source>Confirm</source>
9080 <target>أكد</target> 9080 <target>أكد</target>
9081 9081
9082 <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> 9082 <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.ts</context><context context-type="linenumber">40</context></context-group></trans-unit>
9083 <trans-unit id="2127446333083057097" datatype="html"> 9083 <trans-unit id="2127446333083057097" datatype="html">
9084 <source>Domain is required.</source> 9084 <source>Domain is required.</source>
@@ -9678,46 +9678,46 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
9678 <trans-unit id="7220386604464537651" datatype="html"> 9678 <trans-unit id="7220386604464537651" datatype="html">
9679 <source>Live RTMP Url</source> 9679 <source>Live RTMP Url</source>
9680 <target state="new">Live RTMP Url</target> 9680 <target state="new">Live RTMP Url</target>
9681 9681
9682 9682
9683 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">229</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> 9683 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">229</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit>
9684 <trans-unit id="4956017863340142734" datatype="html"> 9684 <trans-unit id="4956017863340142734" datatype="html">
9685 <source>Live RTMPS Url</source> 9685 <source>Live RTMPS Url</source>
9686 <target state="new">Live RTMPS Url</target> 9686 <target state="new">Live RTMPS Url</target>
9687 9687
9688 9688
9689 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">234</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> 9689 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">234</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit>
9690 <trans-unit id="1225050607125362052" datatype="html"> 9690 <trans-unit id="1225050607125362052" datatype="html">
9691 <source>Live stream key</source> 9691 <source>Live stream key</source>
9692 <target state="new">Live stream key</target> 9692 <target state="new">Live stream key</target>
9693 9693
9694 9694
9695 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">239</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> 9695 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">239</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit>
9696 <trans-unit id="5058286083557987083" datatype="html"> 9696 <trans-unit id="5058286083557987083" datatype="html">
9697 <source>⚠️ Never share your stream key with anyone.</source> 9697 <source>⚠️ Never share your stream key with anyone.</source>
9698 <target state="new">⚠️ Never share your stream key with anyone.</target> 9698 <target state="new">⚠️ Never share your stream key with anyone.</target>
9699 9699
9700 9700
9701 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">242</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> 9701 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">242</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit>
9702 <trans-unit id="5941639683192662500" datatype="html"> 9702 <trans-unit id="5941639683192662500" datatype="html">
9703 <source>This is a normal live</source> 9703 <source>This is a normal live</source>
9704 <target state="new">This is a normal live</target> 9704 <target state="new">This is a normal live</target>
9705 9705
9706 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">248</context></context-group></trans-unit> 9706 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">248</context></context-group></trans-unit>
9707 <trans-unit id="7263323611663811322" datatype="html"> 9707 <trans-unit id="7263323611663811322" datatype="html">
9708 <source>You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL</source> 9708 <source>You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL</source>
9709 <target state="new"> You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL </target> 9709 <target state="new"> You can't stream multiple times in a normal live, but you can save a replay of it that will use the same URL </target>
9710 9710
9711 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">250</context></context-group></trans-unit> 9711 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">250</context></context-group></trans-unit>
9712 <trans-unit id="2261925229535541622" datatype="html"> 9712 <trans-unit id="2261925229535541622" datatype="html">
9713 <source>This is a permanent/recurring live</source> 9713 <source>This is a permanent/recurring live</source>
9714 <target state="new">This is a permanent/recurring live</target> 9714 <target state="new">This is a permanent/recurring live</target>
9715 9715
9716 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">257</context></context-group></trans-unit> 9716 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">257</context></context-group></trans-unit>
9717 <trans-unit id="6791299537270100091" datatype="html"> 9717 <trans-unit id="6791299537270100091" datatype="html">
9718 <source>You can stream multiple times in a permanent/recurring live. The URL for your viewers won't change but you cannot save replays of your lives</source> 9718 <source>You can stream multiple times in a permanent/recurring live. The URL for your viewers won't change but you cannot save replays of your lives</source>
9719 <target state="new"> You can stream multiple times in a permanent/recurring live. The URL for your viewers won't change but you cannot save replays of your lives </target> 9719 <target state="new"> You can stream multiple times in a permanent/recurring live. The URL for your viewers won't change but you cannot save replays of your lives </target>
9720 9720
9721 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">259</context></context-group></trans-unit> 9721 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">259</context></context-group></trans-unit>
9722 <trans-unit id="3112273530390098557" datatype="html"> 9722 <trans-unit id="3112273530390098557" datatype="html">
9723 <source>Replay will be saved</source> 9723 <source>Replay will be saved</source>
@@ -9882,8 +9882,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
9882 <trans-unit id="8929218224642530466" datatype="html"> 9882 <trans-unit id="8929218224642530466" datatype="html">
9883 <source>Displayed</source> 9883 <source>Displayed</source>
9884 <target>معروض</target> 9884 <target>معروض</target>
9885 9885
9886 9886
9887 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">233</context></context-group></trans-unit> 9887 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">233</context></context-group></trans-unit>
9888 <trans-unit id="6291055174438137560" datatype="html"> 9888 <trans-unit id="6291055174438137560" datatype="html">
9889 <source>~ 1 minute</source> 9889 <source>~ 1 minute</source>
@@ -10009,7 +10009,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
10009 <trans-unit id="2516633974298697807" datatype="html"> 10009 <trans-unit id="2516633974298697807" datatype="html">
10010 <source>Emphasis</source> 10010 <source>Emphasis</source>
10011 <target>تشديد</target> 10011 <target>تشديد</target>
10012 10012
10013 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> 10013 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit>
10014 <trans-unit id="7565716024468232322" datatype="html"> 10014 <trans-unit id="7565716024468232322" datatype="html">
10015 <source>Links</source> 10015 <source>Links</source>
@@ -10024,7 +10024,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
10024 <trans-unit id="8756167649220050929" datatype="html"> 10024 <trans-unit id="8756167649220050929" datatype="html">
10025 <source>Lists</source> 10025 <source>Lists</source>
10026 <target>القوائم</target> 10026 <target>القوائم</target>
10027 10027
10028 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> 10028 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comment-add.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit>
10029 <trans-unit id="414887388288176527" datatype="html"> 10029 <trans-unit id="414887388288176527" datatype="html">
10030 <source>Images</source> 10030 <source>Images</source>
@@ -10039,22 +10039,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
10039 <trans-unit id="2439066254855913806" datatype="html"> 10039 <trans-unit id="2439066254855913806" datatype="html">
10040 <source>Only I can see this video</source> 10040 <source>Only I can see this video</source>
10041 <target>أنا الوحيد القادر على مشاهدة هذا الفيديو</target> 10041 <target>أنا الوحيد القادر على مشاهدة هذا الفيديو</target>
10042 10042
10043 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">367</context></context-group></trans-unit> 10043 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">367</context></context-group></trans-unit>
10044 <trans-unit id="6767380569816110388" datatype="html"> 10044 <trans-unit id="6767380569816110388" datatype="html">
10045 <source>Only shareable via a private link</source> 10045 <source>Only shareable via a private link</source>
10046 <target state="translated">يمكن مشاركته عبر رابط خاص فقط</target> 10046 <target state="translated">يمكن مشاركته عبر رابط خاص فقط</target>
10047 10047
10048 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">368</context></context-group></trans-unit> 10048 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">368</context></context-group></trans-unit>
10049 <trans-unit id="6828965264297239528" datatype="html"> 10049 <trans-unit id="6828965264297239528" datatype="html">
10050 <source>Anyone can see this video</source> 10050 <source>Anyone can see this video</source>
10051 <target>يمكن لأي شخص أن يرى هذا الفيديو</target> 10051 <target>يمكن لأي شخص أن يرى هذا الفيديو</target>
10052 10052
10053 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">369</context></context-group></trans-unit> 10053 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">369</context></context-group></trans-unit>
10054 <trans-unit id="1425933035739773115" datatype="html"> 10054 <trans-unit id="1425933035739773115" datatype="html">
10055 <source>Only users of this instance can see this video</source> 10055 <source>Only users of this instance can see this video</source>
10056 <target>يمكن لمستخدمي هذا المثيلة فقط مشاهدة هذا الفيديو</target> 10056 <target>يمكن لمستخدمي هذا المثيلة فقط مشاهدة هذا الفيديو</target>
10057 10057
10058 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">370</context></context-group></trans-unit> 10058 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">370</context></context-group></trans-unit>
10059 <trans-unit id="8312101634344200207" datatype="html"> 10059 <trans-unit id="8312101634344200207" datatype="html">
10060 <source><x id="PH" equiv-text="this.views"/> viewers</source> 10060 <source><x id="PH" equiv-text="this.views"/> viewers</source>
@@ -10069,8 +10069,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
10069 <trans-unit id="7390990800435887351" datatype="html"> 10069 <trans-unit id="7390990800435887351" datatype="html">
10070 <source>Account <x id="PH"/> unmuted.</source> 10070 <source>Account <x id="PH"/> unmuted.</source>
10071 <target>أُلغي كتم حساب <x id="PH"/>.</target> 10071 <target>أُلغي كتم حساب <x id="PH"/>.</target>
10072 10072
10073 10073
10074 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">132</context></context-group></trans-unit> 10074 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/account-blocklist.component.ts</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">132</context></context-group></trans-unit>
10075 <trans-unit id="8639315630141911544" datatype="html"> 10075 <trans-unit id="8639315630141911544" datatype="html">
10076 <source>Account <x id="PH"/> unmuted by your instance.</source> 10076 <source>Account <x id="PH"/> unmuted by your instance.</source>
@@ -10085,12 +10085,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
10085 <trans-unit id="1909009883731319373" datatype="html"> 10085 <trans-unit id="1909009883731319373" datatype="html">
10086 <source>Report <x id="PH"/> </source> 10086 <source>Report <x id="PH"/> </source>
10087 <target state="translated">بلّغ عن <x id="PH"/> </target> 10087 <target state="translated">بلّغ عن <x id="PH"/> </target>
10088 10088
10089 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/account-report.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> 10089 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/account-report.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit>
10090 <trans-unit id="5065410539274460415" datatype="html"> 10090 <trans-unit id="5065410539274460415" datatype="html">
10091 <source>Account reported.</source> 10091 <source>Account reported.</source>
10092 <target state="translated">بُلّغ عن الحساب.</target> 10092 <target state="translated">بُلّغ عن الحساب.</target>
10093 10093
10094 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/account-report.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> 10094 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/account-report.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit>
10095 <trans-unit id="6245265026120479954" datatype="html"> 10095 <trans-unit id="6245265026120479954" datatype="html">
10096 <source>Comment reported.</source> 10096 <source>Comment reported.</source>
@@ -10100,8 +10100,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
10100 <trans-unit id="7246356397085094208" datatype="html"> 10100 <trans-unit id="7246356397085094208" datatype="html">
10101 <source>Instance <x id="PH"/> unmuted.</source> 10101 <source>Instance <x id="PH"/> unmuted.</source>
10102 <target>أُلغي كتم مثيل <x id="PH"/>.</target> 10102 <target>أُلغي كتم مثيل <x id="PH"/>.</target>
10103 10103
10104 10104
10105 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">160</context></context-group></trans-unit> 10105 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">160</context></context-group></trans-unit>
10106 <trans-unit id="3371601176452094961" datatype="html"> 10106 <trans-unit id="3371601176452094961" datatype="html">
10107 <source>Instance <x id="PH"/> unmuted by your instance.</source> 10107 <source>Instance <x id="PH"/> unmuted by your instance.</source>
@@ -10116,207 +10116,207 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
10116 <trans-unit id="5708680277917691451" datatype="html"> 10116 <trans-unit id="5708680277917691451" datatype="html">
10117 <source><x id="PH"/> users banned. </source> 10117 <source><x id="PH"/> users banned. </source>
10118 <target><x id="PH"/> مستخدما محظورا </target> 10118 <target><x id="PH"/> مستخدما محظورا </target>
10119 10119
10120 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> 10120 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">58</context></context-group></trans-unit>
10121 <trans-unit id="2448281151916042849" datatype="html"> 10121 <trans-unit id="2448281151916042849" datatype="html">
10122 <source>User <x id="PH"/> banned.</source> 10122 <source>User <x id="PH"/> banned.</source>
10123 <target>حُظر المستخدم <x id="PH"/>.</target> 10123 <target>حُظر المستخدم <x id="PH"/>.</target>
10124 10124
10125 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">59</context></context-group></trans-unit> 10125 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">59</context></context-group></trans-unit>
10126 <trans-unit id="8269144351796756896" datatype="html"> 10126 <trans-unit id="8269144351796756896" datatype="html">
10127 <source>Do you really want to unban <x id="PH"/>?</source> 10127 <source>Do you really want to unban <x id="PH"/>?</source>
10128 <target>هل تريد إلغاء الحظر عن <x id="PH"/>؟</target> 10128 <target>هل تريد إلغاء الحظر عن <x id="PH"/>؟</target>
10129 10129
10130 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> 10130 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit>
10131 <trans-unit id="1794219875546376069" datatype="html"> 10131 <trans-unit id="1794219875546376069" datatype="html">
10132 <source>User <x id="PH"/> unbanned.</source> 10132 <source>User <x id="PH"/> unbanned.</source>
10133 <target>أُلغي حظر المستخدم <x id="PH"/>.</target> 10133 <target>أُلغي حظر المستخدم <x id="PH"/>.</target>
10134 10134
10135 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">73</context></context-group></trans-unit> 10135 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">73</context></context-group></trans-unit>
10136 <trans-unit id="9208009623124569456" datatype="html"> 10136 <trans-unit id="9208009623124569456" datatype="html">
10137 <source>If you remove user <x id="PH" equiv-text="user.username"/>, you won't be able to create another with the same username!</source> 10137 <source>If you remove user <x id="PH" equiv-text="user.username"/>, you won't be able to create another with the same username!</source>
10138 <target state="new">If you remove user <x id="PH" equiv-text="user.username"/>, you won't be able to create another with the same username!</target> 10138 <target state="new">If you remove user <x id="PH" equiv-text="user.username"/>, you won't be able to create another with the same username!</target>
10139 10139
10140 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">87</context></context-group></trans-unit> 10140 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">87</context></context-group></trans-unit>
10141 <trans-unit id="6307826440781941134" datatype="html"> 10141 <trans-unit id="6307826440781941134" datatype="html">
10142 <source>Delete <x id="PH" equiv-text="user.username"/></source> 10142 <source>Delete <x id="PH" equiv-text="user.username"/></source>
10143 <target state="new">Delete <x id="PH" equiv-text="user.username"/></target> 10143 <target state="new">Delete <x id="PH" equiv-text="user.username"/></target>
10144 10144
10145 10145
10146 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">88</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">222</context></context-group></trans-unit> 10146 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">88</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">222</context></context-group></trans-unit>
10147 <trans-unit id="6301381219225831298" datatype="html"> 10147 <trans-unit id="6301381219225831298" datatype="html">
10148 <source>User <x id="PH"/> deleted.</source> 10148 <source>User <x id="PH"/> deleted.</source>
10149 <target>حُذف المستخدم <x id="PH"/>.</target> 10149 <target>حُذف المستخدم <x id="PH"/>.</target>
10150 10150
10151 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> 10151 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit>
10152 <trans-unit id="3896582359861826661" datatype="html"> 10152 <trans-unit id="3896582359861826661" datatype="html">
10153 <source>User <x id="PH"/> email set as verified</source> 10153 <source>User <x id="PH"/> email set as verified</source>
10154 <target>عُين بريد المستخدم <x id="PH"/> كمتحقق منه</target> 10154 <target>عُين بريد المستخدم <x id="PH"/> كمتحقق منه</target>
10155 10155
10156 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">106</context></context-group></trans-unit> 10156 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">106</context></context-group></trans-unit>
10157 <trans-unit id="8150022485860412528" datatype="html"> 10157 <trans-unit id="8150022485860412528" datatype="html">
10158 <source>Account <x id="PH"/> muted.</source> 10158 <source>Account <x id="PH"/> muted.</source>
10159 <target>كُتم حساب <x id="PH"/>.</target> 10159 <target>كُتم حساب <x id="PH"/>.</target>
10160 10160
10161 10161
10162 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">118</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit> 10162 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">118</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">254</context></context-group></trans-unit>
10163 <trans-unit id="1598375456114200087" datatype="html"> 10163 <trans-unit id="1598375456114200087" datatype="html">
10164 <source>Instance <x id="PH"/> muted. </source> 10164 <source>Instance <x id="PH"/> muted. </source>
10165 <target>كُتم مثيل <x id="PH"/>. </target> 10165 <target>كُتم مثيل <x id="PH"/>. </target>
10166 10166
10167 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">68</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">146</context></context-group></trans-unit> 10167 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/server-blocklist.component.ts</context><context context-type="linenumber">68</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">146</context></context-group></trans-unit>
10168 <trans-unit id="3085641638748358969" datatype="html"> 10168 <trans-unit id="3085641638748358969" datatype="html">
10169 <source>Account <x id="PH"/> unmuted by the instance.</source> 10169 <source>Account <x id="PH"/> unmuted by the instance.</source>
10170 <target>أُلغي كتم حساب <x id="PH"/> بواسطة المثيل.</target> 10170 <target>أُلغي كتم حساب <x id="PH"/> بواسطة المثيل.</target>
10171 10171
10172 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">188</context></context-group></trans-unit> 10172 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">188</context></context-group></trans-unit>
10173 <trans-unit id="4991892477258601737" datatype="html"> 10173 <trans-unit id="4991892477258601737" datatype="html">
10174 <source>Instance <x id="PH"/> muted by the instance.</source> 10174 <source>Instance <x id="PH"/> muted by the instance.</source>
10175 <target>كُتم مثيل <x id="PH"/> بواسطة المثيل.</target> 10175 <target>كُتم مثيل <x id="PH"/> بواسطة المثيل.</target>
10176 10176
10177 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> 10177 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit>
10178 <trans-unit id="4379430340167561220" datatype="html"> 10178 <trans-unit id="4379430340167561220" datatype="html">
10179 <source>Instance <x id="PH"/> unmuted by the instance.</source> 10179 <source>Instance <x id="PH"/> unmuted by the instance.</source>
10180 <target>أُلغي كتم مثيل <x id="PH"/> بواسطة المثيل.</target> 10180 <target>أُلغي كتم مثيل <x id="PH"/> بواسطة المثيل.</target>
10181 10181
10182 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">216</context></context-group></trans-unit> 10182 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">216</context></context-group></trans-unit>
10183 <trans-unit id="8173437618471379044" datatype="html"> 10183 <trans-unit id="8173437618471379044" datatype="html">
10184 <source>Are you sure you want to remove all the comments of this account?</source> 10184 <source>Are you sure you want to remove all the comments of this account?</source>
10185 <target>هل أنت متأكد من أنك تريد إزالة جميع التعليقات هذا الحساب؟</target> 10185 <target>هل أنت متأكد من أنك تريد إزالة جميع التعليقات هذا الحساب؟</target>
10186 10186
10187 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">227</context></context-group></trans-unit> 10187 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">227</context></context-group></trans-unit>
10188 <trans-unit id="6315346579373254461" datatype="html"> 10188 <trans-unit id="6315346579373254461" datatype="html">
10189 <source>Delete account comments</source> 10189 <source>Delete account comments</source>
10190 <target>احذف تعليقات الحساب</target> 10190 <target>احذف تعليقات الحساب</target>
10191 10191
10192 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">228</context></context-group></trans-unit> 10192 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">228</context></context-group></trans-unit>
10193 <trans-unit id="8559170154828316298" datatype="html"> 10193 <trans-unit id="8559170154828316298" datatype="html">
10194 <source>Will remove comments of this account (may take several minutes).</source> 10194 <source>Will remove comments of this account (may take several minutes).</source>
10195 <target>ستزيل التعليقات من هذا الحساب (قد تستغرق عدة دقائق).</target> 10195 <target>ستزيل التعليقات من هذا الحساب (قد تستغرق عدة دقائق).</target>
10196 10196
10197 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">234</context></context-group></trans-unit> 10197 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">234</context></context-group></trans-unit>
10198 <trans-unit id="4268530178786707817" datatype="html"> 10198 <trans-unit id="4268530178786707817" datatype="html">
10199 <source>My account moderation</source> 10199 <source>My account moderation</source>
10200 <target state="new">My account moderation</target> 10200 <target state="new">My account moderation</target>
10201 10201
10202 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit> 10202 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit>
10203 <trans-unit id="7187838764371214919" datatype="html"> 10203 <trans-unit id="7187838764371214919" datatype="html">
10204 <source>Edit user</source> 10204 <source>Edit user</source>
10205 <target>حرر المستخدم</target> 10205 <target>حرر المستخدم</target>
10206 10206
10207 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">323</context></context-group></trans-unit> 10207 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">323</context></context-group></trans-unit>
10208 <trans-unit id="4728427543536046034" datatype="html"> 10208 <trans-unit id="4728427543536046034" datatype="html">
10209 <source>Change quota, role, and more.</source> 10209 <source>Change quota, role, and more.</source>
10210 <target>غيّر الحصة والدور والمزيد.</target> 10210 <target>غيّر الحصة والدور والمزيد.</target>
10211 10211
10212 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">324</context></context-group></trans-unit> 10212 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">324</context></context-group></trans-unit>
10213 <trans-unit id="7913022656086109932" datatype="html"> 10213 <trans-unit id="7913022656086109932" datatype="html">
10214 <source>Delete user</source> 10214 <source>Delete user</source>
10215 <target>احذف المستخدم</target> 10215 <target>احذف المستخدم</target>
10216 10216
10217 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">328</context></context-group></trans-unit> 10217 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">328</context></context-group></trans-unit>
10218 <trans-unit id="7577876364431026966" datatype="html"> 10218 <trans-unit id="7577876364431026966" datatype="html">
10219 <source>Unban user</source> 10219 <source>Unban user</source>
10220 <target>ألغ حظر المستخدم</target> 10220 <target>ألغ حظر المستخدم</target>
10221 10221
10222 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> 10222 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">340</context></context-group></trans-unit>
10223 <trans-unit id="3508163549683020253" datatype="html"> 10223 <trans-unit id="3508163549683020253" datatype="html">
10224 <source>Allow the user to login and create videos/comments again</source> 10224 <source>Allow the user to login and create videos/comments again</source>
10225 <target>اسمح للمستخدم بتسجيل الدخول وإنشاء مقاطع فيديو / تعليقات مرة أخرى</target> 10225 <target>اسمح للمستخدم بتسجيل الدخول وإنشاء مقاطع فيديو / تعليقات مرة أخرى</target>
10226 10226
10227 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> 10227 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">341</context></context-group></trans-unit>
10228 <trans-unit id="1888272455383898478" datatype="html"> 10228 <trans-unit id="1888272455383898478" datatype="html">
10229 <source>Mute this account</source> 10229 <source>Mute this account</source>
10230 <target>أكتم هذا الحساب</target> 10230 <target>أكتم هذا الحساب</target>
10231 10231
10232 10232
10233 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">279</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">357</context></context-group></trans-unit> 10233 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">279</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">357</context></context-group></trans-unit>
10234 <trans-unit id="2365286519320230773" datatype="html"> 10234 <trans-unit id="2365286519320230773" datatype="html">
10235 <source>Hide any content from that user from you.</source> 10235 <source>Hide any content from that user from you.</source>
10236 <target state="new">Hide any content from that user from you.</target> 10236 <target state="new">Hide any content from that user from you.</target>
10237 10237
10238 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">280</context></context-group></trans-unit> 10238 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">280</context></context-group></trans-unit>
10239 <trans-unit id="4043508901590508211" datatype="html"> 10239 <trans-unit id="4043508901590508211" datatype="html">
10240 <source>Unmute this account</source> 10240 <source>Unmute this account</source>
10241 <target>ألغ الكتم عن هذا الحساب</target> 10241 <target>ألغ الكتم عن هذا الحساب</target>
10242 10242
10243 10243
10244 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">285</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">363</context></context-group></trans-unit> 10244 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">285</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">363</context></context-group></trans-unit>
10245 <trans-unit id="2843593344827160627" datatype="html"> 10245 <trans-unit id="2843593344827160627" datatype="html">
10246 <source>Show back content from that user for you.</source> 10246 <source>Show back content from that user for you.</source>
10247 <target>أعد عرض محتوى هذا المستخدم .</target> 10247 <target>أعد عرض محتوى هذا المستخدم .</target>
10248 10248
10249 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">286</context></context-group></trans-unit> 10249 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">286</context></context-group></trans-unit>
10250 <trans-unit id="6198109035280957164" datatype="html"> 10250 <trans-unit id="6198109035280957164" datatype="html">
10251 <source>Mute the instance</source> 10251 <source>Mute the instance</source>
10252 <target>أكتم مثيل الخادم</target> 10252 <target>أكتم مثيل الخادم</target>
10253 10253
10254 10254
10255 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">291</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">375</context></context-group></trans-unit> 10255 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">291</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">375</context></context-group></trans-unit>
10256 <trans-unit id="4537735378779630558" datatype="html"> 10256 <trans-unit id="4537735378779630558" datatype="html">
10257 <source>Hide any content from that instance for you.</source> 10257 <source>Hide any content from that instance for you.</source>
10258 <target>إخف عنك أي محتوى من هذا المنصة.</target> 10258 <target>إخف عنك أي محتوى من هذا المنصة.</target>
10259 10259
10260 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">292</context></context-group></trans-unit> 10260 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">292</context></context-group></trans-unit>
10261 <trans-unit id="6247487021683085858" datatype="html"> 10261 <trans-unit id="6247487021683085858" datatype="html">
10262 <source>Unmute the instance</source> 10262 <source>Unmute the instance</source>
10263 <target>ألغ الكتم عن مثيل الخادم</target> 10263 <target>ألغ الكتم عن مثيل الخادم</target>
10264 10264
10265 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">297</context></context-group></trans-unit> 10265 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">297</context></context-group></trans-unit>
10266 <trans-unit id="4024846984475742259" datatype="html"> 10266 <trans-unit id="4024846984475742259" datatype="html">
10267 <source>Show back content from that instance for you.</source> 10267 <source>Show back content from that instance for you.</source>
10268 <target>أعد عرض محتوى هذا المثيل .</target> 10268 <target>أعد عرض محتوى هذا المثيل .</target>
10269 10269
10270 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">298</context></context-group></trans-unit> 10270 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">298</context></context-group></trans-unit>
10271 <trans-unit id="3108200185023875257" datatype="html"> 10271 <trans-unit id="3108200185023875257" datatype="html">
10272 <source>Remove comments from your videos</source> 10272 <source>Remove comments from your videos</source>
10273 <target>أزل التعليقات مِن فيديوهاتك</target> 10273 <target>أزل التعليقات مِن فيديوهاتك</target>
10274 10274
10275 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">303</context></context-group></trans-unit> 10275 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">303</context></context-group></trans-unit>
10276 <trans-unit id="4810478487244286994" datatype="html"> 10276 <trans-unit id="4810478487244286994" datatype="html">
10277 <source>Remove comments made by this account on your videos.</source> 10277 <source>Remove comments made by this account on your videos.</source>
10278 <target state="new">Remove comments made by this account on your videos.</target> 10278 <target state="new">Remove comments made by this account on your videos.</target>
10279 10279
10280 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">304</context></context-group></trans-unit> 10280 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">304</context></context-group></trans-unit>
10281 <trans-unit id="2077144178298031252" datatype="html"> 10281 <trans-unit id="2077144178298031252" datatype="html">
10282 <source>Hide any content from that user from you, your instance and its users.</source> 10282 <source>Hide any content from that user from you, your instance and its users.</source>
10283 <target state="new">Hide any content from that user from you, your instance and its users.</target> 10283 <target state="new">Hide any content from that user from you, your instance and its users.</target>
10284 10284
10285 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">358</context></context-group></trans-unit> 10285 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">358</context></context-group></trans-unit>
10286 <trans-unit id="7675070596643104983" datatype="html"> 10286 <trans-unit id="7675070596643104983" datatype="html">
10287 <source>Show this user's content to the users of this instance again.</source> 10287 <source>Show this user's content to the users of this instance again.</source>
10288 <target state="new">Show this user's content to the users of this instance again.</target> 10288 <target state="new">Show this user's content to the users of this instance again.</target>
10289 10289
10290 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">364</context></context-group></trans-unit> 10290 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">364</context></context-group></trans-unit>
10291 <trans-unit id="525915681688649453" datatype="html"> 10291 <trans-unit id="525915681688649453" datatype="html">
10292 <source>Hide any content from that instance from you, your instance and its users.</source> 10292 <source>Hide any content from that instance from you, your instance and its users.</source>
10293 <target state="new">Hide any content from that instance from you, your instance and its users.</target> 10293 <target state="new">Hide any content from that instance from you, your instance and its users.</target>
10294 10294
10295 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">376</context></context-group></trans-unit> 10295 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">376</context></context-group></trans-unit>
10296 <trans-unit id="5325628963747139770" datatype="html"> 10296 <trans-unit id="5325628963747139770" datatype="html">
10297 <source>Unmute the instance by your instance</source> 10297 <source>Unmute the instance by your instance</source>
10298 <target>ألغ كتم المثيل باستخدام مثيلك</target> 10298 <target>ألغ كتم المثيل باستخدام مثيلك</target>
10299 10299
10300 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">381</context></context-group></trans-unit> 10300 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">381</context></context-group></trans-unit>
10301 <trans-unit id="758471033841077314" datatype="html"> 10301 <trans-unit id="758471033841077314" datatype="html">
10302 <source>Show back content from that instance for you, your instance and its users.</source> 10302 <source>Show back content from that instance for you, your instance and its users.</source>
10303 <target>أعد عرض محتوى هذا المثيل ، لك و لمثيلك وجميع مستخدميه.</target> 10303 <target>أعد عرض محتوى هذا المثيل ، لك و لمثيلك وجميع مستخدميه.</target>
10304 10304
10305 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> 10305 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">382</context></context-group></trans-unit>
10306 <trans-unit id="3785095284194008197" datatype="html"> 10306 <trans-unit id="3785095284194008197" datatype="html">
10307 <source>Remove comments from your instance</source> 10307 <source>Remove comments from your instance</source>
10308 <target>أزل التعليقات من مثيلك</target> 10308 <target>أزل التعليقات من مثيلك</target>
10309 10309
10310 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">392</context></context-group></trans-unit> 10310 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">392</context></context-group></trans-unit>
10311 <trans-unit id="4809327075591089709" datatype="html"> 10311 <trans-unit id="4809327075591089709" datatype="html">
10312 <source>Remove comments made by this account from your instance.</source> 10312 <source>Remove comments made by this account from your instance.</source>
10313 <target state="new">Remove comments made by this account from your instance.</target> 10313 <target state="new">Remove comments made by this account from your instance.</target>
10314 10314
10315 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">393</context></context-group></trans-unit> 10315 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">393</context></context-group></trans-unit>
10316 <trans-unit id="6504240011224861621" datatype="html"> 10316 <trans-unit id="6504240011224861621" datatype="html">
10317 <source>Instance moderation</source> 10317 <source>Instance moderation</source>
10318 <target state="new">Instance moderation</target> 10318 <target state="new">Instance moderation</target>
10319 10319
10320 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">402</context></context-group></trans-unit> 10320 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">402</context></context-group></trans-unit>
10321 <trans-unit id="8546847443058492245" datatype="html"> 10321 <trans-unit id="8546847443058492245" datatype="html">
10322 <source>Block <x id="INTERPOLATION" equiv-text="{{ videos.length }}"/> videos</source> 10322 <source>Block <x id="INTERPOLATION" equiv-text="{{ videos.length }}"/> videos</source>
@@ -10329,73 +10329,73 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
10329 <trans-unit id="6746743143272021955" datatype="html"> 10329 <trans-unit id="6746743143272021955" datatype="html">
10330 <source>Violent or repulsive</source> 10330 <source>Violent or repulsive</source>
10331 <target>عنيف أو بغيض</target> 10331 <target>عنيف أو بغيض</target>
10332 10332
10333 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> 10333 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">124</context></context-group></trans-unit>
10334 <trans-unit id="5272553814105457319" datatype="html"> 10334 <trans-unit id="5272553814105457319" datatype="html">
10335 <source>Contains offensive, violent, or coarse language or iconography.</source> 10335 <source>Contains offensive, violent, or coarse language or iconography.</source>
10336 <target>يحتوي على إيقونية مسيئة أو لغة بذيئة أوعنف أو تجريح.</target> 10336 <target>يحتوي على إيقونية مسيئة أو لغة بذيئة أوعنف أو تجريح.</target>
10337 10337
10338 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> 10338 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">125</context></context-group></trans-unit>
10339 <trans-unit id="6979166468838302269" datatype="html"> 10339 <trans-unit id="6979166468838302269" datatype="html">
10340 <source>Hateful or abusive</source> 10340 <source>Hateful or abusive</source>
10341 <target>يحض على الكراهية أو مسيء</target> 10341 <target>يحض على الكراهية أو مسيء</target>
10342 10342
10343 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> 10343 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">129</context></context-group></trans-unit>
10344 <trans-unit id="8006612645824137458" datatype="html"> 10344 <trans-unit id="8006612645824137458" datatype="html">
10345 <source>Contains abusive, racist or sexist language or iconography.</source> 10345 <source>Contains abusive, racist or sexist language or iconography.</source>
10346 <target>يحتوي على إيقونية مسيئة أو عنصرية أو عنصرية جنسية.</target> 10346 <target>يحتوي على إيقونية مسيئة أو عنصرية أو عنصرية جنسية.</target>
10347 10347
10348 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">130</context></context-group></trans-unit> 10348 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">130</context></context-group></trans-unit>
10349 <trans-unit id="5413552012131573970" datatype="html"> 10349 <trans-unit id="5413552012131573970" datatype="html">
10350 <source>Spam, ad or false news</source> 10350 <source>Spam, ad or false news</source>
10351 <target>إزعاج أو اعلان أو أخبار كاذبة</target> 10351 <target>إزعاج أو اعلان أو أخبار كاذبة</target>
10352 10352
10353 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> 10353 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">134</context></context-group></trans-unit>
10354 <trans-unit id="6374940465448453212" datatype="html"> 10354 <trans-unit id="6374940465448453212" datatype="html">
10355 <source>Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</source> 10355 <source>Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</source>
10356 <target>يحتوي على تسويق أو إزعاج أو أخبار مضللة عن قصد أو صورة مصغرة/نص/وسم مضلل. يرجى تقديم مصادر موثوقة للإبلاغ عن الخداع.</target> 10356 <target>يحتوي على تسويق أو إزعاج أو أخبار مضللة عن قصد أو صورة مصغرة/نص/وسم مضلل. يرجى تقديم مصادر موثوقة للإبلاغ عن الخداع.</target>
10357 10357
10358 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">136</context></context-group></trans-unit> 10358 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">136</context></context-group></trans-unit>
10359 <trans-unit id="7401289443263903223" datatype="html"> 10359 <trans-unit id="7401289443263903223" datatype="html">
10360 <source>Privacy breach or doxxing</source> 10360 <source>Privacy breach or doxxing</source>
10361 <target>انتهاك الخصوصية أو كشف للخصوصيات</target> 10361 <target>انتهاك الخصوصية أو كشف للخصوصيات</target>
10362 10362
10363 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">140</context></context-group></trans-unit> 10363 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">140</context></context-group></trans-unit>
10364 <trans-unit id="8363008638081993167" datatype="html"> 10364 <trans-unit id="8363008638081993167" datatype="html">
10365 <source>Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).</source> 10365 <source>Contains personal information that could be used to track, identify, contact or impersonate someone (e.g. name, address, phone number, email, or credit card details).</source>
10366 <target>يحتوي على معلومات شخصية يمكن استخدامها لتتبع شخص ما أو تحديد هويته أو الاتصال به أو انتحال شخصيته (مثل الاسم أو العنوان أو رقم الهاتف أو البريد الإلكتروني أو تفاصيل بطاقة الائتمان).</target> 10366 <target>يحتوي على معلومات شخصية يمكن استخدامها لتتبع شخص ما أو تحديد هويته أو الاتصال به أو انتحال شخصيته (مثل الاسم أو العنوان أو رقم الهاتف أو البريد الإلكتروني أو تفاصيل بطاقة الائتمان).</target>
10367 10367
10368 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">142</context></context-group></trans-unit> 10368 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">142</context></context-group></trans-unit>
10369 <trans-unit id="380450014369168564" datatype="html"> 10369 <trans-unit id="380450014369168564" datatype="html">
10370 <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> 10370 <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source>
10371 <target state="translated">ينتهك حقوق النشر خاصتك. أو القوانين الاقليمية المغروضة على الخادم.</target> 10371 <target state="translated">ينتهك حقوق النشر خاصتك. أو القوانين الاقليمية المغروضة على الخادم.</target>
10372 10372
10373 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">147</context></context-group></trans-unit> 10373 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">147</context></context-group></trans-unit>
10374 <trans-unit id="1378933246324202613" datatype="html"> 10374 <trans-unit id="1378933246324202613" datatype="html">
10375 <source>Breaks server rules</source> 10375 <source>Breaks server rules</source>
10376 <target>يكسر قواعد الخادم</target> 10376 <target>يكسر قواعد الخادم</target>
10377 10377
10378 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">151</context></context-group></trans-unit> 10378 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">151</context></context-group></trans-unit>
10379 <trans-unit id="7930601470861156366" datatype="html"> 10379 <trans-unit id="7930601470861156366" datatype="html">
10380 <source>Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.</source> 10380 <source>Anything not included in the above that breaks the terms of service, code of conduct, or general rules in place on the server.</source>
10381 <target>أي شيء غير مذكور أعلاه يخالف شروط الخدمة أو قواعد السلوك أو القواعد العامة المعمول بها على الخادم.</target> 10381 <target>أي شيء غير مذكور أعلاه يخالف شروط الخدمة أو قواعد السلوك أو القواعد العامة المعمول بها على الخادم.</target>
10382 10382
10383 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">153</context></context-group></trans-unit> 10383 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">153</context></context-group></trans-unit>
10384 <trans-unit id="8700771664729810984" datatype="html"> 10384 <trans-unit id="8700771664729810984" datatype="html">
10385 <source>The above can only be seen in thumbnails.</source> 10385 <source>The above can only be seen in thumbnails.</source>
10386 <target>يمكن رؤية ما سبق فقط في الصور المصغرة.</target> 10386 <target>يمكن رؤية ما سبق فقط في الصور المصغرة.</target>
10387 10387
10388 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">162</context></context-group></trans-unit> 10388 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">162</context></context-group></trans-unit>
10389 <trans-unit id="2602773901491715295" datatype="html"> 10389 <trans-unit id="2602773901491715295" datatype="html">
10390 <source>Captions</source> 10390 <source>Captions</source>
10391 <target state="translated">تسميات توضيحية</target> 10391 <target state="translated">تسميات توضيحية</target>
10392 10392
10393 10393
10394 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">166</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> 10394 <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">166</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.ts</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">166</context></context-group></trans-unit>
10395 <trans-unit id="5779804235244672536" datatype="html"> 10395 <trans-unit id="5779804235244672536" datatype="html">
10396 <source>The above can only be seen in captions (please describe which).</source> 10396 <source>The above can only be seen in captions (please describe which).</source>
10397 <target>لا يمكن رؤية ما ورد أعلاه إلا في التسميات التوضيحية (يرجى وصفها).</target> 10397 <target>لا يمكن رؤية ما ورد أعلاه إلا في التسميات التوضيحية (يرجى وصفها).</target>
10398 10398
10399 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">167</context></context-group></trans-unit> 10399 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">167</context></context-group></trans-unit>
10400 <trans-unit id="1472171759957681533" datatype="html"> 10400 <trans-unit id="1472171759957681533" datatype="html">
10401 <source>Video reported.</source> 10401 <source>Video reported.</source>
@@ -10426,7 +10426,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
10426 <trans-unit id="1233062525939746039" datatype="html"> 10426 <trans-unit id="1233062525939746039" datatype="html">
10427 <source>Unknown language</source> 10427 <source>Unknown language</source>
10428 <target>لغة غير معروفة</target> 10428 <target>لغة غير معروفة</target>
10429 10429
10430 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">42</context></context-group></trans-unit> 10430 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">42</context></context-group></trans-unit>
10431 <trans-unit id="3761504852202418603" datatype="html"> 10431 <trans-unit id="3761504852202418603" datatype="html">
10432 <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> 10432 <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source>
@@ -10492,7 +10492,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
10492 <trans-unit id="3099741642167775297" datatype="html"> 10492 <trans-unit id="3099741642167775297" datatype="html">
10493 <source>Download</source> 10493 <source>Download</source>
10494 <target state="translated">نزّل</target> 10494 <target state="translated">نزّل</target>
10495 10495
10496 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">315</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> 10496 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">315</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit>
10497 <trans-unit id="7672331870004528654" datatype="html"> 10497 <trans-unit id="7672331870004528654" datatype="html">
10498 <source>Display live information</source> 10498 <source>Display live information</source>
@@ -10503,11 +10503,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
10503 <trans-unit id="4021752662928002901" datatype="html"> 10503 <trans-unit id="4021752662928002901" datatype="html">
10504 <source>Update</source> 10504 <source>Update</source>
10505 <target state="translated">حدّث</target> 10505 <target state="translated">حدّث</target>
10506 10506
10507 10507
10508 10508
10509 10509
10510 10510
10511 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">181</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">115</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">62</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">68</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">61</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">327</context></context-group></trans-unit> 10511 <context-group purpose="location"><context context-type="sourcefile">src/app/+manage/video-channel-edit/video-channel-update.component.ts</context><context context-type="linenumber">181</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-playlists/my-video-playlist-update.component.ts</context><context context-type="linenumber">115</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">62</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html</context><context context-type="linenumber">68</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-import-url.component.html</context><context context-type="linenumber">61</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">20</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/edit-button.component.ts</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">327</context></context-group></trans-unit>
10512 <trans-unit id="420763834450076269" datatype="html"> 10512 <trans-unit id="420763834450076269" datatype="html">
10513 <source>Block</source> 10513 <source>Block</source>
@@ -10580,7 +10580,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
10580 <trans-unit id="7008439939460403347" datatype="html"> 10580 <trans-unit id="7008439939460403347" datatype="html">
10581 <source>Report</source> 10581 <source>Report</source>
10582 <target state="translated">أبلغ</target> 10582 <target state="translated">أبلغ</target>
10583 10583
10584 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">198</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">357</context></context-group></trans-unit> 10584 <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">198</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-details.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">357</context></context-group></trans-unit>
10585 <trans-unit id="4814285799071780083" datatype="html"> 10585 <trans-unit id="4814285799071780083" datatype="html">
10586 <source>Remove</source> 10586 <source>Remove</source>
@@ -10826,17 +10826,17 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
10826 <trans-unit id="4887724548587271148" datatype="html"> 10826 <trans-unit id="4887724548587271148" datatype="html">
10827 <source>Waiting transcoding</source> 10827 <source>Waiting transcoding</source>
10828 <target>ينتظار تحويل الترميز</target> 10828 <target>ينتظار تحويل الترميز</target>
10829 10829
10830 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">187</context></context-group></trans-unit> 10830 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">187</context></context-group></trans-unit>
10831 <trans-unit id="4517785179607945981" datatype="html"> 10831 <trans-unit id="4517785179607945981" datatype="html">
10832 <source>To transcode</source> 10832 <source>To transcode</source>
10833 <target>لتحويل الترميز</target> 10833 <target>لتحويل الترميز</target>
10834 10834
10835 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">191</context></context-group></trans-unit> 10835 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">191</context></context-group></trans-unit>
10836 <trans-unit id="3299576663551440736" datatype="html"> 10836 <trans-unit id="3299576663551440736" datatype="html">
10837 <source>To import</source> 10837 <source>To import</source>
10838 <target>للاستيراد</target> 10838 <target>للاستيراد</target>
10839 10839
10840 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit> 10840 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">195</context></context-group></trans-unit>
10841 <trans-unit id="8492933894084361602" datatype="html"> 10841 <trans-unit id="8492933894084361602" datatype="html">
10842 <source>Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</source> 10842 <source>Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</source>
@@ -10849,45 +10849,45 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
10849 <trans-unit id="187187500641108332" datatype="html"> 10849 <trans-unit id="187187500641108332" datatype="html">
10850 <source><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></source> 10850 <source><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></source>
10851 <target state="new"><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></target> 10851 <target state="new"><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></target>
10852 10852
10853 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">79</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">110</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">14</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">78</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">89</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">101</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> 10853 <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/overview/videos/video-list.component.html</context><context context-type="linenumber">79</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context><context context-type="linenumber">4</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-go-live.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">77</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">110</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context><context context-type="linenumber">22</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">14</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/top-menu-dropdown.component.html</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">52</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">78</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">89</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">101</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit>
10854 <trans-unit id="3723085768598852106" datatype="html"> 10854 <trans-unit id="3723085768598852106" datatype="html">
10855 <source>Video removed from <x id="PH"/> </source> 10855 <source>Video removed from <x id="PH"/> </source>
10856 <target>أُزيل الفيديو من <x id="PH"/> </target> 10856 <target>أُزيل الفيديو من <x id="PH"/> </target>
10857 10857
10858 10858
10859 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">309</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">97</context></context-group></trans-unit> 10859 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">309</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">97</context></context-group></trans-unit>
10860 <trans-unit id="1056145626640340519" datatype="html"> 10860 <trans-unit id="1056145626640340519" datatype="html">
10861 <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> 10861 <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source>
10862 <target>أُضيف الفيديو الى <x id="PH"/> على<x id="PH_1"/></target> 10862 <target>أُضيف الفيديو الى <x id="PH"/> على<x id="PH_1"/></target>
10863 10863
10864 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">379</context></context-group></trans-unit> 10864 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">379</context></context-group></trans-unit>
10865 <trans-unit id="7754186870520534716" datatype="html"> 10865 <trans-unit id="7754186870520534716" datatype="html">
10866 <source>Video added in <x id="PH"/> </source> 10866 <source>Video added in <x id="PH"/> </source>
10867 <target>أضيف الفيديو الى <x id="PH"/> </target> 10867 <target>أضيف الفيديو الى <x id="PH"/> </target>
10868 10868
10869 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">380</context></context-group></trans-unit> 10869 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">380</context></context-group></trans-unit>
10870 <trans-unit id="985751964589921228" datatype="html"> 10870 <trans-unit id="985751964589921228" datatype="html">
10871 <source>Timestamps updated</source> 10871 <source>Timestamps updated</source>
10872 <target state="translated">تم تحديث الطوابع الزمنية</target> 10872 <target state="translated">تم تحديث الطوابع الزمنية</target>
10873 10873
10874 10874
10875 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">277</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">116</context></context-group></trans-unit> 10875 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context><context context-type="linenumber">277</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">116</context></context-group></trans-unit>
10876 <trans-unit id="6421445850411984665" datatype="html"> 10876 <trans-unit id="6421445850411984665" datatype="html">
10877 <source>Starts at</source> 10877 <source>Starts at</source>
10878 <target state="translated">يبدأ في</target> 10878 <target state="translated">يبدأ في</target>
10879 10879
10880 10880
10881 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">139</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">142</context></context-group></trans-unit> 10881 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">139</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">142</context></context-group></trans-unit>
10882 <trans-unit id="7145200412085189912" datatype="html"> 10882 <trans-unit id="7145200412085189912" datatype="html">
10883 <source>Stops at</source> 10883 <source>Stops at</source>
10884 <target state="translated">توقف عند</target> 10884 <target state="translated">توقف عند</target>
10885 10885
10886 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">140</context></context-group></trans-unit> 10886 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">140</context></context-group></trans-unit>
10887 <trans-unit id="921225940108335688" datatype="html"> 10887 <trans-unit id="921225940108335688" datatype="html">
10888 <source>and stops at</source> 10888 <source>and stops at</source>
10889 <target state="translated">ويتوقف عند</target> 10889 <target state="translated">ويتوقف عند</target>
10890 10890
10891 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">142</context></context-group></trans-unit> 10891 <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts</context><context context-type="linenumber">142</context></context-group></trans-unit>
10892 </body> 10892 </body>
10893 </file> 10893 </file>