Merge pull request #627 from robintown/dedup-strings

Consolidate some similar strings
This commit is contained in:
Robin 2022-10-15 09:16:45 -04:00 committed by GitHub
commit 5e57a56d21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 5 deletions

View file

@ -70,7 +70,6 @@
"Mute microphone": "Mute microphone", "Mute microphone": "Mute microphone",
"No": "No", "No": "No",
"Not now, return to home screen": "Not now, return to home screen", "Not now, return to home screen": "Not now, return to home screen",
"Not registered yet? <1>Create an account</1>": "Not registered yet? <1>Create an account</1>",
"Not registered yet? <2>Create an account</2>": "Not registered yet? <2>Create an account</2>", "Not registered yet? <2>Create an account</2>": "Not registered yet? <2>Create an account</2>",
"Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}</1>": "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}</1>", "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}</1>": "Other users are trying to join this call from incompatible versions. These users should ensure that they have refreshed their browsers:<1>{userLis}</1>",
"Password": "Password", "Password": "Password",
@ -91,9 +90,8 @@
"Save": "Save", "Save": "Save",
"Saving…": "Saving…", "Saving…": "Saving…",
"Select an option": "Select an option", "Select an option": "Select an option",
"Send debug log": "Send debug log",
"Send debug logs": "Send debug logs", "Send debug logs": "Send debug logs",
"Sending debug log…": "Sending debug log…", "Sending debug logs…": "Sending debug logs…",
"Sending…": "Sending…", "Sending…": "Sending…",
"Settings": "Settings", "Settings": "Settings",
"Share screen": "Share screen", "Share screen": "Share screen",

View file

@ -62,7 +62,7 @@ export const RageshakeRequestModal: FC<Props> = ({
} }
disabled={sending} disabled={sending}
> >
{sending ? t("Sending debug log…") : t("Send debug log")} {sending ? t("Sending debug logs…") : t("Send debug logs")}
</Button> </Button>
</FieldRow> </FieldRow>
{error && ( {error && (

View file

@ -98,7 +98,7 @@ export function RoomAuthView() {
</main> </main>
<Body className={styles.footer}> <Body className={styles.footer}>
<Trans> <Trans>
{"Not registered yet? "} Not registered yet?{" "}
<Link <Link
color="primary" color="primary"
to={{ pathname: "/login", state: { from: location } }} to={{ pathname: "/login", state: { from: location } }}