Scheduler, Systeminfo.php, Plugin obj insertion fixes

This commit is contained in:
Jokob-sk
2023-08-19 07:00:40 +10:00
parent 486e245c14
commit 50699ed01f
8 changed files with 62 additions and 32 deletions

0
front/php/templates/build.php Normal file → Executable file
View File

View File

@@ -271,6 +271,7 @@
"Maintenance_lang_es_es" : "Spanish (ES)",
"Maintenance_lang_selector_text" : "The change takes place on the client side, so it affects only the current browser.",
"Maintenance_lang_selector_apply" : "Apply",
"Maintenance_Status" : "Status",
"Maintenance_Tools_Tab_Settings" : "Settings",
"Maintenance_Tools_Tab_UISettings" : "UI Settings",
"Maintenance_Tools_Tab_Tools" : "Tools",

0
front/php/templates/version.php Normal file → Executable file
View File

0
front/report.php Normal file → Executable file
View File

2
front/systeminfo.php Normal file → Executable file
View File

@@ -371,7 +371,7 @@ for ($x = 0; $x < sizeof($hdd_devices); $x++) {
echo '<div class="row">';
echo '<div class="col-sm-4 sysinfo_storage_usage_a">"' . lang('Systeminfo_Storage_Usage_Mount') . ' ' . $hdd_devices_mount[$x] . '"</div>';
echo '<div class="col-sm-2 sysinfo_storage_usage_b">' . lang('Systeminfo_Storage_Usage_Total') . ' ' . $temp_total . ' GB</div>';
echo '<div class="col-sm-3 sysinfo_storage_usage_b">' . lang('Systeminfo_Storage_Usage_Used') . ' ' . $temp_used . ' GB (' . number_format($hdd_devices_percent[$x], 1, ',', '.') . '%)</div>';
echo '<div class="col-sm-3 sysinfo_storage_usage_b">' . lang('Systeminfo_Storage_Usage_Used') . ' ' . $temp_used . ' GB (' . $hdd_devices_percent[$x]. ')</div>';
echo '<div class="col-sm-2 sysinfo_storage_usage_b">' . lang('Systeminfo_Storage_Usage_Free') . ' ' . $temp_free . ' GB</div>';
echo '</div>';
}