Update the strings on the join as guest screen
Hugh pointed out that the button labeled "Join call now" on this screen is misleading, because it does not join you to the call but rather send you to the lobby. Meanwhile, the designs call for this screen to use the words "Join as guest" and "Continue", so let's go with that.
This commit is contained in:
@@ -91,6 +91,7 @@
|
|||||||
"layout_spotlight_label": "Spotlight",
|
"layout_spotlight_label": "Spotlight",
|
||||||
"lobby": {
|
"lobby": {
|
||||||
"ask_to_join": "Ask to join call",
|
"ask_to_join": "Ask to join call",
|
||||||
|
"join_as_guest": "Join as guest",
|
||||||
"join_button": "Join call",
|
"join_button": "Join call",
|
||||||
"leave_button": "Back to recents",
|
"leave_button": "Back to recents",
|
||||||
"waiting_for_invite": "Request sent"
|
"waiting_for_invite": "Request sent"
|
||||||
@@ -128,8 +129,8 @@
|
|||||||
"register_confirm_password_label": "Confirm password",
|
"register_confirm_password_label": "Confirm password",
|
||||||
"register_heading": "Create your account",
|
"register_heading": "Create your account",
|
||||||
"return_home_button": "Return to home screen",
|
"return_home_button": "Return to home screen",
|
||||||
"room_auth_view_eula_caption": "By clicking \"Join call now\", you agree to our <2>End User Licensing Agreement (EULA)</2>",
|
"room_auth_view_continue_button": "Continue",
|
||||||
"room_auth_view_join_button": "Join call now",
|
"room_auth_view_eula_caption": "By clicking \"Continue\", you agree to our <2>End User Licensing Agreement (EULA)</2>",
|
||||||
"screenshare_button_label": "Share screen",
|
"screenshare_button_label": "Share screen",
|
||||||
"settings": {
|
"settings": {
|
||||||
"developer_settings_label": "Developer Settings",
|
"developer_settings_label": "Developer Settings",
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ export const RoomAuthView: FC = () => {
|
|||||||
<div className={styles.container}>
|
<div className={styles.container}>
|
||||||
<main className={styles.main}>
|
<main className={styles.main}>
|
||||||
<Heading size="xl" weight="semibold" className={styles.headline}>
|
<Heading size="xl" weight="semibold" className={styles.headline}>
|
||||||
{t("lobby.join_button")}
|
{t("lobby.join_as_guest")}
|
||||||
</Heading>
|
</Heading>
|
||||||
<Form className={styles.form} onSubmit={onSubmit}>
|
<Form className={styles.form} onSubmit={onSubmit}>
|
||||||
<FieldRow>
|
<FieldRow>
|
||||||
@@ -98,7 +98,9 @@ export const RoomAuthView: FC = () => {
|
|||||||
disabled={loading}
|
disabled={loading}
|
||||||
data-testid="joincall_joincall"
|
data-testid="joincall_joincall"
|
||||||
>
|
>
|
||||||
{loading ? t("common.loading") : t("room_auth_view_join_button")}
|
{loading
|
||||||
|
? t("common.loading")
|
||||||
|
: t("room_auth_view_continue_button")}
|
||||||
</Button>
|
</Button>
|
||||||
<div id={recaptchaId} />
|
<div id={recaptchaId} />
|
||||||
</Form>
|
</Form>
|
||||||
|
|||||||
Reference in New Issue
Block a user