From dc5bb5cea5bf7e906caa6d9c5468e6de36e605de Mon Sep 17 00:00:00 2001
From: Rigel Kent
- It is a free and open-source software, under the AGPLv3
+ It is free and open-source software, under AGPLv3
licence.
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 = [
component: AboutFollowsComponent,
data: {
meta: {
- title: $localize`About follows`
+ title: $localize`About this instance's network`
}
}
}
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 @@
PeerTube
- Follows
+ Network
Followings instances
-
- If the instance is not, we use an image link card that will redirect on your PeerTube instance.
+ If the instance is not, we use an image link card that will redirect to your PeerTube instance.
Check this checkbox, save the configuration and test with a video URL of your instance (https://example.com/videos/watch/blabla) on
https://cards-dev.twitter.com/validator
to see if you instance is allowed.
@@ -708,7 +708,7 @@
- If you want to open registrations, please decide what are your moderation rules, fill your instance - terms - and specify the categories and languages you speak. This way, you will help users to register on the - appropriate - PeerTube instance. + If you want to open registrations, please decide what your moderation rules and instance + terms of service are, as well as specify the categories and languages and your moderators speak. + This way, you will help users to register on the appropriate PeerTube instance.
diff --git a/client/src/app/shared/form-validators/user-validators.ts b/client/src/app/shared/form-validators/user-validators.ts index 18199505c..9efc5180d 100644 --- a/client/src/app/shared/form-validators/user-validators.ts +++ b/client/src/app/shared/form-validators/user-validators.ts @@ -27,7 +27,7 @@ export const USER_CHANNEL_NAME_VALIDATOR: BuildFormValidator = { 'required': $localize`Channel name is required.`, 'minlength': $localize`Channel name must be at least 1 character long.`, 'maxlength': $localize`Channel name cannot be more than 50 characters long.`, - 'pattern': $localize`Channel name should be lowercase alphanumeric; dots and underscores are allowed.` + 'pattern': $localize`Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.` } } diff --git a/client/src/app/shared/shared-main/users/user-notifications.component.html b/client/src/app/shared/shared-main/users/user-notifications.component.html index a56a0859b..91a4c8dc3 100644 --- a/client/src/app/shared/shared-main/users/user-notifications.component.html +++ b/client/src/app/shared/shared-main/users/user-notifications.component.html @@ -187,7 +187,7 @@ diff --git a/client/src/app/shared/shared-moderation/user-moderation-dropdown.component.ts b/client/src/app/shared/shared-moderation/user-moderation-dropdown.component.ts index 44aefa853..f59910d1c 100644 --- a/client/src/app/shared/shared-moderation/user-moderation-dropdown.component.ts +++ b/client/src/app/shared/shared-moderation/user-moderation-dropdown.component.ts @@ -295,7 +295,7 @@ export class UserModerationDropdownComponent implements OnInit, OnChanges { this.userActions.push([ { label: $localize`Mute this account`, - description: $localize`Hide any content from that user for you.`, + description: $localize`Hide any content from that user from you.`, isDisplayed: ({ account }) => account.mutedByUser === false, handler: ({ account }) => this.blockAccountByUser(account) }, @@ -319,7 +319,7 @@ export class UserModerationDropdownComponent implements OnInit, OnChanges { }, { label: $localize`Remove comments from your videos`, - description: $localize`Remove comments of this account from your videos.`, + description: $localize`Remove comments made by this account on your videos.`, handler: ({ account }) => this.bulkRemoveCommentsOf({ accountName: account.nameWithHost, scope: 'my-videos' }) } ]) @@ -331,13 +331,13 @@ export class UserModerationDropdownComponent implements OnInit, OnChanges { instanceActions = instanceActions.concat([ { label: $localize`Mute this account by your instance`, - description: $localize`Hide any content from that user for you, your instance and its users.`, + description: $localize`Hide any content from that user from you, your instance and its users.`, isDisplayed: ({ account }) => account.mutedByInstance === false, handler: ({ account }) => this.blockAccountByInstance(account) }, { label: $localize`Unmute this account by your instance`, - description: $localize`Show back content from that user for you, your instance and its users.`, + description: $localize`Show this user's content to the users of this instance again.`, isDisplayed: ({ account }) => account.mutedByInstance === true, handler: ({ account }) => this.unblockAccountByInstance(account) } @@ -349,7 +349,7 @@ export class UserModerationDropdownComponent implements OnInit, OnChanges { instanceActions = instanceActions.concat([ { label: $localize`Mute the instance by your instance`, - description: $localize`Hide any content from that instance for you, your instance and its users.`, + description: $localize`Hide any content from that instance from you, your instance and its users.`, isDisplayed: ({ account }) => !account.userId && account.mutedServerByInstance === false, handler: ({ account }) => this.blockServerByInstance(account.host) }, @@ -366,7 +366,7 @@ export class UserModerationDropdownComponent implements OnInit, OnChanges { instanceActions = instanceActions.concat([ { label: $localize`Remove comments from your instance`, - description: $localize`Remove comments of this account from your instance.`, + description: $localize`Remove comments made by this account from your instance.`, handler: ({ account }) => this.bulkRemoveCommentsOf({ accountName: account.nameWithHost, scope: 'instance' }) } ]) -- cgit v1.2.3