Improve grammar within sign-up flow (#6026)

* Update signup-success-after-email.component.html

* Update signup-success-before-email.component.html
This commit is contained in:
Sarah Lewis 2023-11-08 21:41:03 -08:00 committed by GitHub
parent 7ca4de2d98
commit adfce264a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -7,7 +7,7 @@
<p i18n>Your email has been verified and your account request has been sent!</p> <p i18n>Your email has been verified and your account request has been sent!</p>
<p i18n> <p i18n>
A moderator will check your registration request soon and you'll receive an email when it will be accepted or rejected. A moderator will check your registration request soon and you'll receive an email when it is accepted or rejected.
</p> </p>
</ng-container> </ng-container>
@ -15,7 +15,7 @@
<p i18n>Your email has been verified and your account has been created!</p> <p i18n>Your email has been verified and your account has been created!</p>
<p i18n> <p i18n>
If you need help to use PeerTube, you can have a look at the <a class="link-orange" href="https://docs.joinpeertube.org/use/setup-account" target="_blank" rel="noopener noreferrer">documentation</a>. If you need help using PeerTube, you can have a look at the <a class="link-orange" href="https://docs.joinpeertube.org/use/setup-account" target="_blank" rel="noopener noreferrer">documentation</a>.
</p> </p>
</ng-container> </ng-container>
</div> </div>

View File

@ -15,21 +15,21 @@
<ng-container *ngIf="requiresEmailVerification"> <ng-container *ngIf="requiresEmailVerification">
<p i18n *ngIf="requiresApproval"> <p i18n *ngIf="requiresApproval">
<strong>Check your emails</strong> to validate your account and complete your registration request. <strong>Check your email</strong> to validate your account and complete your registration request.
</p> </p>
<p i18n *ngIf="!requiresApproval"> <p i18n *ngIf="!requiresApproval">
<strong>Check your emails</strong> to validate your account and complete your registration. <strong>Check your email</strong> to validate your account and complete your registration.
</p> </p>
</ng-container> </ng-container>
<ng-container *ngIf="!requiresEmailVerification"> <ng-container *ngIf="!requiresEmailVerification">
<p i18n *ngIf="requiresApproval"> <p i18n *ngIf="requiresApproval">
A moderator will check your registration request soon and you'll receive an email when it will be accepted or rejected. A moderator will check your registration request soon and you'll receive an email when it is accepted or rejected.
</p> </p>
<p *ngIf="!requiresApproval" i18n> <p *ngIf="!requiresApproval" i18n>
If you need help to use PeerTube, you can have a look at the <a class="link-orange" href="https://docs.joinpeertube.org/use/setup-account" target="_blank" rel="noopener noreferrer">documentation</a>. If you need help using PeerTube, you can have a look at the <a class="link-orange" href="https://docs.joinpeertube.org/use/setup-account" target="_blank" rel="noopener noreferrer">documentation</a>.
</p> </p>
</ng-container> </ng-container>
</div> </div>