Consolidate some similar strings
This commit is contained in:
parent
6ec2e9c822
commit
402f62e09a
3 changed files with 3 additions and 5 deletions
|
@ -70,7 +70,6 @@
|
|||
"Mute microphone": "Mute microphone",
|
||||
"No": "No",
|
||||
"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>",
|
||||
"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",
|
||||
|
@ -91,9 +90,8 @@
|
|||
"Save": "Save",
|
||||
"Saving…": "Saving…",
|
||||
"Select an option": "Select an option",
|
||||
"Send debug log": "Send debug log",
|
||||
"Send debug logs": "Send debug logs",
|
||||
"Sending debug log…": "Sending debug log…",
|
||||
"Sending debug logs…": "Sending debug logs…",
|
||||
"Sending…": "Sending…",
|
||||
"Settings": "Settings",
|
||||
"Share screen": "Share screen",
|
||||
|
|
|
@ -62,7 +62,7 @@ export const RageshakeRequestModal: FC<Props> = ({
|
|||
}
|
||||
disabled={sending}
|
||||
>
|
||||
{sending ? t("Sending debug log…") : t("Send debug log")}
|
||||
{sending ? t("Sending debug logs…") : t("Send debug logs")}
|
||||
</Button>
|
||||
</FieldRow>
|
||||
{error && (
|
||||
|
|
|
@ -98,7 +98,7 @@ export function RoomAuthView() {
|
|||
</main>
|
||||
<Body className={styles.footer}>
|
||||
<Trans>
|
||||
{"Not registered yet? "}
|
||||
Not registered yet?{" "}
|
||||
<Link
|
||||
color="primary"
|
||||
to={{ pathname: "/login", state: { from: location } }}
|
||||
|
|
Loading…
Add table
Reference in a new issue