File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 59
59
"username" : " Username" ,
60
60
"video" : " Video"
61
61
},
62
+ "crypto_version" : " Crypto version: {{version}}" ,
62
63
"device_id" : " Device ID: {{id}}" ,
63
64
"disconnected_banner" : " Connectivity to the server has been lost." ,
64
65
"full_screen_view_description" : " <0>Submitting debug logs will help us track down the problem.</0>" ,
156
157
"unauthenticated_view_eula_caption" : " By clicking \" Go\" , you agree to our <2>End User Licensing Agreement (EULA)</2>" ,
157
158
"unauthenticated_view_login_button" : " Login to your account" ,
158
159
"unmute_microphone_button_label" : " Unmute microphone" ,
159
- "version" : " Version : {{version}}" ,
160
+ "version" : " {{productName}} version : {{version}}" ,
160
161
"video_tile" : {
161
162
"always_show" : " Always show" ,
162
163
"change_fit_contain" : " Fit to frame" ,
Original file line number Diff line number Diff line change @@ -241,9 +241,15 @@ export const SettingsModal: FC<Props> = ({
241
241
>
242
242
< p >
243
243
{ t ( "version" , {
244
+ productName : import . meta. env . VITE_PRODUCT_NAME || "Element Call" ,
244
245
version : import . meta. env . VITE_APP_VERSION || "dev" ,
245
246
} ) }
246
247
</ p >
248
+ < p >
249
+ { t ( "crypto_version" , {
250
+ version : client . getCrypto ( ) ?. getVersion ( ) || "unknown" ,
251
+ } ) }
252
+ </ p >
247
253
< p >
248
254
{ t ( "matrix_id" , {
249
255
id : client . getUserId ( ) || "unknown" ,
You can’t perform that action at this time.
0 commit comments