File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 91
91
"layout_spotlight_label" : " Spotlight" ,
92
92
"lobby" : {
93
93
"ask_to_join" : " Ask to join call" ,
94
+ "join_as_guest" : " Join as guest" ,
94
95
"join_button" : " Join call" ,
95
96
"leave_button" : " Back to recents" ,
96
97
"waiting_for_invite" : " Request sent"
128
129
"register_confirm_password_label" : " Confirm password" ,
129
130
"register_heading" : " Create your account" ,
130
131
"return_home_button" : " Return to home screen" ,
131
- "room_auth_view_eula_caption " : " By clicking \" Join call now \" , you agree to our <2>End User Licensing Agreement (EULA)</2> " ,
132
- "room_auth_view_join_button " : " Join call now " ,
132
+ "room_auth_view_continue_button " : " Continue " ,
133
+ "room_auth_view_eula_caption " : " By clicking \" Continue \" , you agree to our <2>End User Licensing Agreement (EULA)</2> " ,
133
134
"screenshare_button_label" : " Share screen" ,
134
135
"settings" : {
135
136
"developer_settings_label" : " Developer Settings" ,
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ export const RoomAuthView: FC = () => {
64
64
< div className = { styles . container } >
65
65
< main className = { styles . main } >
66
66
< Heading size = "xl" weight = "semibold" className = { styles . headline } >
67
- { t ( "lobby.join_button " ) }
67
+ { t ( "lobby.join_as_guest " ) }
68
68
</ Heading >
69
69
< Form className = { styles . form } onSubmit = { onSubmit } >
70
70
< FieldRow >
@@ -98,7 +98,9 @@ export const RoomAuthView: FC = () => {
98
98
disabled = { loading }
99
99
data-testid = "joincall_joincall"
100
100
>
101
- { loading ? t ( "common.loading" ) : t ( "room_auth_view_join_button" ) }
101
+ { loading
102
+ ? t ( "common.loading" )
103
+ : t ( "room_auth_view_continue_button" ) }
102
104
</ Button >
103
105
< div id = { recaptchaId } />
104
106
</ Form >
You can’t perform that action at this time.
0 commit comments