[mirotalk] - add missing

This commit is contained in:
Miroslav Pejic
2025-01-26 16:08:40 +01:00
parent 4da1938372
commit e65365b571
4 changed files with 6 additions and 2 deletions
+1
View File
@@ -10,6 +10,7 @@ module.exports = {
'Start your next video call with a single click. No download, plug-in, or login is required. Just get straight to talking, messaging, and sharing your screen.',
joinDescription: 'Pick a room name.<br />How about this one?',
joinButtonLabel: 'JOIN ROOM',
joinLastLabel: 'Your recent room:',
},
site: {
landingTitle: 'MiroTalk a Free Secure Video Calls, Chat & Screen Sharing.',
+3
View File
@@ -21,6 +21,7 @@ const appleTouchIcon = document.getElementById('appleTouchIcon');
const appTitle = document.getElementById('appTitle');
const appDescription = document.getElementById('appDescription');
const appJoinDescription = document.getElementById('appJoinDescription');
const appJoinLastRoom = document.getElementById('appJoinLastRoom');
const features = document.getElementById('features');
const browsers = document.getElementById('browsers');
@@ -42,6 +43,7 @@ let brand = {
'Start your next video call with a single click. No download, plug-in, or login is required. Just get straight to talking, messaging, and sharing your screen.',
joinDescription: 'Pick a room name.<br />How about this one?',
joinButtonLabel: 'JOIN ROOM',
joinLastLabel: 'Your recent room:',
},
site: {
landingTitle: 'MiroTalk a Free Secure Video Calls, Chat & Screen Sharing.',
@@ -139,6 +141,7 @@ function handleBrand() {
if (appDescription) appDescription.textContent = brand.app.description;
if (appJoinDescription) appJoinDescription.innerHTML = brand.app.joinDescription;
if (joinRoomButton) joinRoomButton.innerText = brand.app.joinButtonLabel; // common.js
if (appJoinLastRoom) appJoinLastRoom.innerText = brand.app.joinLastLabel;
!brand.html.features && elementDisplay(features, false);
!brand.html.browsers && elementDisplay(browsers, false);
+1 -1
View File
@@ -155,7 +155,7 @@
</div>
</div>
<div id="lastRoomContainer" class="last-room">
<span>Your recent room:</span>
<span id="appJoinLastRoom">Your recent room:</span>
<a id="lastRoom"></a>
</div>
</div>
+1 -1
View File
@@ -149,7 +149,7 @@
</div>
</div>
<div id="lastRoomContainer" class="last-room">
<span>Your recent room:</span>
<span id="appJoinLastRoom">Your recent room:</span>
<a id="lastRoom"></a>
</div>
</div>