diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-11-12 21:09:17 +0100 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2020-11-12 21:09:28 +0100 |
commit | dc5bb5cea5bf7e906caa6d9c5468e6de36e605de (patch) | |
tree | 9176c9f6d2f508a11ea444cef8105840486960c6 /client/src/app/+about | |
parent | 501af82d999a79e277f87794f6296d0e3495775c (diff) | |
download | PeerTube-dc5bb5cea5bf7e906caa6d9c5468e6de36e605de.tar.gz PeerTube-dc5bb5cea5bf7e906caa6d9c5468e6de36e605de.tar.zst PeerTube-dc5bb5cea5bf7e906caa6d9c5468e6de36e605de.zip |
reword unclear sentences, check for grammar
fixes #3222
Diffstat (limited to 'client/src/app/+about')
4 files changed, 4 insertions, 5 deletions
diff --git a/client/src/app/+about/about-follows/about-follows.component.html b/client/src/app/+about/about-follows/about-follows.component.html index dd50cda74..6d38e2109 100644 --- a/client/src/app/+about/about-follows/about-follows.component.html +++ b/client/src/app/+about/about-follows/about-follows.component.html | |||
@@ -13,7 +13,7 @@ | |||
13 | <div class="col-xl-6 col-md-12"> | 13 | <div class="col-xl-6 col-md-12"> |
14 | <h2 i18n class="subtitle">Followings instances</h2> | 14 | <h2 i18n class="subtitle">Followings instances</h2> |
15 | 15 | ||
16 | <div i18n class="no-results" *ngIf="followingsPagination.totalItems === 0">This instance does not have instances followings.</div> | 16 | <div i18n class="no-results" *ngIf="followingsPagination.totalItems === 0">This instance is not following any other.</div> |
17 | 17 | ||
18 | <a *ngFor="let following of followings" [href]="buildLink(following)" target="_blank" rel="noopener noreferrer"> | 18 | <a *ngFor="let following of followings" [href]="buildLink(following)" target="_blank" rel="noopener noreferrer"> |
19 | {{ following }} | 19 | {{ following }} |
diff --git a/client/src/app/+about/about-peertube/about-peertube.component.html b/client/src/app/+about/about-peertube/about-peertube.component.html index 93670fe4e..65e06b3a1 100644 --- a/client/src/app/+about/about-peertube/about-peertube.component.html +++ b/client/src/app/+about/about-peertube/about-peertube.component.html | |||
@@ -11,7 +11,7 @@ | |||
11 | </p> | 11 | </p> |
12 | 12 | ||
13 | <p i18n> | 13 | <p i18n> |
14 | It is a free and open-source software, under the <a href="https://github.com/Chocobozzz/PeerTube/blob/develop/LICENSE">AGPLv3 | 14 | It is free and open-source software, under <a href="https://github.com/Chocobozzz/PeerTube/blob/develop/LICENSE">AGPLv3 |
15 | licence</a>. | 15 | licence</a>. |
16 | </p> | 16 | </p> |
17 | 17 | ||
@@ -156,7 +156,6 @@ | |||
156 | <li i18n>We set a limit to the number of peers sent by the tracker</li> | 156 | <li i18n>We set a limit to the number of peers sent by the tracker</li> |
157 | <li i18n>We set a limit on the request frequency received by the tracker</li> | 157 | <li i18n>We set a limit on the request frequency received by the tracker</li> |
158 | <li i18n>Allow instance admins to disable P2P from the administration interface</li> | 158 | <li i18n>Allow instance admins to disable P2P from the administration interface</li> |
159 | <li i18n>Automatic video redundancy from some instances: one doesn't know if the IP downloaded the video on purpose or if it a server</li> | ||
160 | </ul> | 159 | </ul> |
161 | 160 | ||
162 | <p i18n> | 161 | <p i18n> |
diff --git a/client/src/app/+about/about-routing.module.ts b/client/src/app/+about/about-routing.module.ts index 828b2884c..96a737555 100644 --- a/client/src/app/+about/about-routing.module.ts +++ b/client/src/app/+about/about-routing.module.ts | |||
@@ -44,7 +44,7 @@ const aboutRoutes: Routes = [ | |||
44 | component: AboutFollowsComponent, | 44 | component: AboutFollowsComponent, |
45 | data: { | 45 | data: { |
46 | meta: { | 46 | meta: { |
47 | title: $localize`About follows` | 47 | title: $localize`About this instance's network` |
48 | } | 48 | } |
49 | } | 49 | } |
50 | } | 50 | } |
diff --git a/client/src/app/+about/about.component.html b/client/src/app/+about/about.component.html index b89e6aeeb..1ab00c5df 100644 --- a/client/src/app/+about/about.component.html +++ b/client/src/app/+about/about.component.html | |||
@@ -6,7 +6,7 @@ | |||
6 | 6 | ||
7 | <a i18n routerLink="peertube" routerLinkActive="active" class="title-page title-page-about">PeerTube</a> | 7 | <a i18n routerLink="peertube" routerLinkActive="active" class="title-page title-page-about">PeerTube</a> |
8 | 8 | ||
9 | <a i18n routerLink="follows" routerLinkActive="active" class="title-page title-page-about">Follows</a> | 9 | <a i18n routerLink="follows" routerLinkActive="active" class="title-page title-page-about">Network</a> |
10 | </div> | 10 | </div> |
11 | </div> | 11 | </div> |
12 | 12 | ||