Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
21 lines
726 B
TypeScript
21 lines
726 B
TypeScript
import { translateToHTML } from '../i18n/functions';
|
|
|
|
import { SECURITY_URL } from './contants';
|
|
|
|
/**
|
|
* Gets the unsafe room text for the given context.
|
|
*
|
|
* @param {Function} t - The translation function.
|
|
* @param {'meeting'|'prejoin'|'welcome'} context - The given context of the warning.
|
|
* @returns {string}
|
|
*/
|
|
export default function getUnsafeRoomText(t: Function, context: 'meeting' | 'prejoin' | 'welcome') {
|
|
const securityUrl = APP.store.getState()['features/base/config'].legalUrls?.security ?? SECURITY_URL;
|
|
const options = {
|
|
recommendAction: t(`security.unsafeRoomActions.${context}`),
|
|
securityUrl
|
|
};
|
|
|
|
return translateToHTML(t, 'security.insecureRoomNameWarningWeb', options);
|
|
}
|