Skip to content

Commit 17f92b1

Browse files
committed
i18n: change wording around private site
1 parent deb4f9b commit 17f92b1

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

locale/en/client.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
"modal.deletecomment.text": "This process is irreversible. <0>Are you sure?</0>",
8484
"modal.showvotes.message.zeromatches": "No users found matching <0>{0}</0>.",
8585
"modal.showvotes.query.placeholder": "Search for users by name...",
86-
"modal.signin.header": "Sign in to post and vote",
86+
"modal.signin.header": "Sign in to participate and vote",
8787
"mynotifications.label.readrecently": "Read on last 30 days.",
8888
"mynotifications.message.nounread": "No unread notifications.",
8989
"mynotifications.page.subtitle": "Stay up to date with what's happening",
@@ -148,6 +148,6 @@
148148
"signin.message.locked.title": "<0>{0}</0> is currently locked.",
149149
"signin.message.onlyadmins": "Currently only allowed to sign in to an administrator account",
150150
"signin.message.private.text": "If you have an account or an invitation, you may use following options to sign in.",
151-
"signin.message.private.title": "<0>{0}</0> is a private space and requires an invitation to join it.",
151+
"signin.message.private.title": "<0>{0}</0> is a private space, you must sign in to participate and vote.",
152152
"{count, plural, one {# tag} other {# tags}}": "{count, plural, one {# tag} other {# tags}}"
153153
}

public/components/SignInModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const SignInModal: React.StatelessComponent<SignInModalProps> = (props) =
4646
return (
4747
<Modal.Window isOpen={props.isOpen} onClose={closeModal}>
4848
<Modal.Header>
49-
<Trans id="modal.signin.header">Sign in to post and vote</Trans>
49+
<Trans id="modal.signin.header">Sign in to participate and vote</Trans>
5050
</Modal.Header>
5151
<Modal.Content>{content}</Modal.Content>
5252
<LegalFooter />

public/pages/Administration/pages/PrivacySettings.page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ export default class PrivacySettingsPage extends AdminBasePage<any, PrivacySetti
4141
<Field label="Private Site">
4242
<Toggle disabled={!Fider.session.user.isAdministrator} active={this.state.isPrivate} onToggle={this.toggle} />
4343
<p className="text-muted mt-1">
44-
A private site prevents unauthenticated users from viewing or interacting with its content. <br /> If enabled, only already registered, as well as
45-
invited users will have access to this site.
44+
A private site prevents unauthenticated users from viewing or interacting with its content. <br /> When enabled, only already registered users,
45+
invited users and users from trusted OAuth providers will have access to this site.
4646
</p>
4747
</Field>
4848
</Form>

public/pages/SignIn/SignIn.page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const Private = (): JSX.Element => {
2424
<>
2525
<p className="text-title">
2626
<Trans id="signin.message.private.title">
27-
<strong>{fider.session.tenant.name}</strong> is a private space and requires an invitation to join it.
27+
<strong>{fider.session.tenant.name}</strong> is a private space, you must sign in to participate and vote.
2828
</Trans>
2929
</p>
3030
<Trans id="signin.message.private.text">If you have an account or an invitation, you may use following options to sign in.</Trans>

0 commit comments

Comments
 (0)