From e669ecacf3d840a2b882b1695ee5ea8188cfeacd Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Mon, 14 Aug 2023 15:50:23 +0200 Subject: [PATCH] Update systeminfo.php Update "System" submenu with new translation variables New translation variable "Systeminfo_System_Uptime" New translation variable "Systeminfo_System_Kernel" New translation variable "Systeminfo_System_System" New translation variable "Systeminfo_System_OSVersion" New translation variable "Systeminfo_System_Uname" New translation variable "Systeminfo_System_Architecture" New translation variable "Systeminfo_System_AVG" --- front/systeminfo.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/front/systeminfo.php b/front/systeminfo.php index abfb0e36..d5fce318 100644 --- a/front/systeminfo.php +++ b/front/systeminfo.php @@ -187,31 +187,31 @@ echo '
-
Uptime:
+
' . lang('Systeminfo_System_Uptime') . '
' . $stat['uptime'] . '
-
Kernel:
+
' . lang('Systeminfo_System_Kernel') . '
' . $system_namekernel . '
-
System:
+
' . lang('Systeminfo_System_System') . '
' . $system_namesystem . '
-
Operating System:
+
' . lang('Systeminfo_System_OSVersion') . '
' . $stat['os_version'] . '
-
Uname:
+
' . lang('Systeminfo_System_Uname') . '
' . $system_full . '
-
Architecture:
+
' . lang('Systeminfo_System_Architecture') . '
' . $system_architecture . '
-
Load AVG:
+
' . lang('Systeminfo_System_AVG') . '
'. $load_average[0] .' '. $load_average[1] .' '. $load_average[2] .'