Add defaultWelcome lang string
All checks were successful
Build & Push Docker Image / build (push) Successful in 1m19s

This commit is contained in:
2026-02-26 09:53:29 +01:00
parent 1e19aa24dd
commit 32cc4d724b
3 changed files with 5 additions and 3 deletions

View File

@@ -43,7 +43,7 @@ export async function createMeeting(room, logoutURL, loginURL = null) {
const { moderatorPW, attendeePW } = getRoomPasswords(room.uid);
// Build welcome message with guest invite link
let welcome = room.welcome_message || 'Welcome to this meeting!';
let welcome = room.welcome_message || t('defaultWelcome');
if (logoutURL) {
const guestLink = `${logoutURL}/join/${room.uid}`;
welcome += `<br><br>To invite other participants, share this link:<br><a href="${guestLink}">${guestLink}</a>`;