mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-25 16:40:58 -05:00
fix: grammar, update command for dev mode
This commit is contained in:
parent
f03a88bd78
commit
5a738b7c68
4 changed files with 24 additions and 20 deletions
|
@ -118,20 +118,20 @@ export default function MemberList({
|
||||||
return (
|
return (
|
||||||
<NoOomfie>
|
<NoOomfie>
|
||||||
<div>
|
<div>
|
||||||
Offline users temporarily disabled for this
|
Offline users have temporarily been disabled for
|
||||||
server, see issue{" "}
|
larger servers - see{" "}
|
||||||
<a
|
<a
|
||||||
href="https://github.com/revoltchat/delta/issues/128"
|
href="https://github.com/revoltchat/backend/issues/178"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noreferrer">
|
rel="noreferrer">
|
||||||
#128
|
issue #178
|
||||||
</a>{" "}
|
</a>{" "}
|
||||||
for when this will be resolved.
|
for when this will be resolved.
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
You may re-enable them in{" "}
|
You may re-enable them{" "}
|
||||||
<Link to="/settings/experiments">
|
<Link to="/settings/experiments">
|
||||||
<a>experiments</a>
|
<a>here</a>
|
||||||
</Link>
|
</Link>
|
||||||
.
|
.
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -29,13 +29,13 @@ export const EXPERIMENTS: {
|
||||||
[key in Experiment]: { title: string; description: string };
|
[key in Experiment]: { title: string; description: string };
|
||||||
} = {
|
} = {
|
||||||
dummy: {
|
dummy: {
|
||||||
title: "Dummy Experiment",
|
title: "Placeholder Experiment",
|
||||||
description: "This is a dummy experiment.",
|
description: "This is a placeholder experiment.",
|
||||||
},
|
},
|
||||||
offline_users: {
|
offline_users: {
|
||||||
title: "Re-enable offline users in large servers (>10k members)",
|
title: "Re-enable offline users in large servers (>10k members)",
|
||||||
description:
|
description:
|
||||||
"If you can take the performance hit (for example, you're on desktop), you can re-enable offline users for big servers such as Revolt Lounge.",
|
"If you can take the performance hit - for example, if you're on desktop - you can re-enable offline users for big servers such as the Revolt Lounge.",
|
||||||
},
|
},
|
||||||
plugins: {
|
plugins: {
|
||||||
title: "Experimental Plugin API",
|
title: "Experimental Plugin API",
|
||||||
|
@ -45,7 +45,7 @@ export const EXPERIMENTS: {
|
||||||
picker: {
|
picker: {
|
||||||
title: "Custom Emoji",
|
title: "Custom Emoji",
|
||||||
description:
|
description:
|
||||||
"This will enable a work-in-progress emoji picker, custom emoji settings and reaction picker.",
|
"This will enable a work-in-progress emoji picker, custom emoji settings and a reaction picker.",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -165,18 +165,22 @@ export function Native() {
|
||||||
title="I understand there's no going back."
|
title="I understand there's no going back."
|
||||||
description={
|
description={
|
||||||
<>
|
<>
|
||||||
This will change the app to the 'dev' branch,
|
{
|
||||||
instead loading the app from a local server on
|
"This will change the app to the 'dev' branch, instead loading the app from a local server on your machine."
|
||||||
your machine.
|
}
|
||||||
<br />
|
<br />
|
||||||
<b>
|
<b>
|
||||||
Without a server running,{" "}
|
{"Without a server running, "}
|
||||||
<span style={{ color: "var(--error)" }}>
|
<span style={{ color: "var(--error)" }}>
|
||||||
the app will not load!
|
{"the app will not load!"}
|
||||||
</span>
|
</span>
|
||||||
</b>
|
</b>
|
||||||
<br />
|
<br />
|
||||||
<code>yarn dev --port 3001</code>
|
{
|
||||||
|
"Make sure the app is available on port 3001 by running "
|
||||||
|
}
|
||||||
|
<code>{"yarn dev --port 3001 --host"}</code>
|
||||||
|
{"."}
|
||||||
</>
|
</>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -96,14 +96,14 @@ export const Overview = observer(({ server }: Props) => {
|
||||||
<div className={styles.markdown}>
|
<div className={styles.markdown}>
|
||||||
<Markdown size="24" />
|
<Markdown size="24" />
|
||||||
<h5>
|
<h5>
|
||||||
Descriptions support Markdown formatting,{" "}
|
{"Server descriptions support Markdown formatting. "}
|
||||||
<a
|
<a
|
||||||
href="https://developers.revolt.chat/markdown"
|
href="https://support.revolt.chat/kb/interface/messages/formatting-your-messages"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noreferrer">
|
rel="noreferrer">
|
||||||
learn more here
|
{"Learn more here"}
|
||||||
</a>
|
</a>
|
||||||
.
|
{"."}
|
||||||
</h5>
|
</h5>
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
|
|
Loading…
Reference in a new issue