Ran translations and minor fix to filter url.

This commit is contained in:
Ylian Saint-Hilaire 2023-11-12 15:28:52 -08:00
parent bc0550a791
commit 4a6703b63a
6 changed files with 3185 additions and 3097 deletions

View File

@ -1,9 +1,9 @@
<html><head></head><body><div>[[[SERVERNAME]]] - "[[[DEVICENAME]]]" Help Request</div>
<html><head></head><body><div>[[[SERVERNAME]]] - "[[[DEVICENAME]]]" Solicitud de ayuda</div>
<div style="font-family:Arial,Helvetica,sans-serif">
<table style="background-color:#003366;color:lightgray;width:100%" cellpadding="8">
<tbody><tr>
<td>
<b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Help Request</b>
<b style="font-size:20px;font-family:Arial,Helvetica,sans-serif">[[[SERVERNAME]]] - Solicitud de ayuda</b>
</td>
</tr>
</tbody></table>

View File

@ -1,4 +1,4 @@
[[[SERVERNAME]]] - Device Help Request
[[[SERVERNAME]]] - Solicitud de ayuda del dispositivo
Device "[[[DEVICENAME]]]" requested assistance.
User: "[[[HELPUSERNAME]]]"

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@ -5024,20 +5024,20 @@
function onMultiDesktopStateChange(desk, state) { try { QH('skvmid_' + desk.shortid, ["Disconnected", "Connecting...", "Setup...", '', ''][state]); } catch (ex) {} }
function onDeviceSearchChanged(e) {
var url = new URL(window.location.href);
if (e != null) {
if ((e != null) && (e.target.value != '')) {
if (e.target.id == 'SearchInput') {
Q('KvmSearchInput').value = Q('SearchInput').value;
} else {
Q('SearchInput').value = Q('KvmSearchInput').value;
}
url.searchParams.set('filter', e.target.value);
if(urlargs.filter){ urlargs.filter = e.target.value; }
}else{
if (urlargs.filter) { urlargs.filter = e.target.value; }
} else {
url.searchParams.delete('filter');
if(urlargs.filter){ delete urlargs.filter; }
if (urlargs.filter) { delete urlargs.filter; }
}
if (((features & 0x10000000) == 0) && (xxcurrentView > 0)) {
try { window.history.replaceState({}, document.title, decodeURIComponent(url.toString())); } catch(e) { }
try { window.history.replaceState({}, document.title, decodeURIComponent(url.toString())); } catch(ex) { }
}
mainUpdate(5);
}