From 719b3e57052b24ef5e5badb006c6d77482eb1541 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Mon, 14 Aug 2023 16:50:53 +0200 Subject: [PATCH] Update systeminfo.php Update "Motherboard" submenu with new translation variables New translation variable "Systeminfo_Motherboard_BIOS New translation variable "Systeminfo_Motherboard_BIOS_Date" New translation variable "Systeminfo_Motherboard_BIOS_Vendor" New translation variable "Systeminfo_Motherboard_Manufactured" New translation variable "Systeminfo_Motherboard_Name" New translation variable "Systeminfo_Motherboard_Revision" --- front/systeminfo.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/front/systeminfo.php b/front/systeminfo.php index d5fce318..9097cf19 100644 --- a/front/systeminfo.php +++ b/front/systeminfo.php @@ -224,27 +224,27 @@ echo '
-
Name:
+
' . lang('Systeminfo_Motherboard_Name') . '
' . $motherboard_name . '
-
Manufactured by:
+
' . lang('Systeminfo_Motherboard_Manufactured') . '
' . $motherboard_manufactured . '
-
Revision:
+
' . lang('Systeminfo_Motherboard_Revision') . '
' . $motherboard_revision. '
-
BIOS:
+
' . lang('Systeminfo_Motherboard_BIOS') . '
' . $motherboard_bios . '
-
BIOS date:
+
' . lang('Systeminfo_Motherboard_BIOS_Date') . '
' . $motherboard_biosdate . '
-
BIOS vendor:
+
' . lang('Systeminfo_Motherboard_BIOS_Vendor') . '
' . $motherboard_biosvendor . '