From 0a4261bba461d096e63529f4663ce2fd7cb2eedc Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 18:32:20 +0200 Subject: [PATCH 01/34] Update systeminfo.php Updated name "BIOS date" --- front/systeminfo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/systeminfo.php b/front/systeminfo.php index 845612b8..c2f394b3 100644 --- a/front/systeminfo.php +++ b/front/systeminfo.php @@ -240,7 +240,7 @@ echo '
' . $motherboard_bios . '
-
BIOS date_
+
BIOS date:
' . $motherboard_biosdate . '
From 824825860fd36292a8b9099741d2103cc05b4d96 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 18:34:43 +0200 Subject: [PATCH 02/34] Update systeminfo.php Added name variable in tr "Systeminfo_Services_Name" Added name variable in tr "Systeminfo_Services_Description" --- front/systeminfo.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front/systeminfo.php b/front/systeminfo.php index c2f394b3..8fe64c8d 100644 --- a/front/systeminfo.php +++ b/front/systeminfo.php @@ -491,8 +491,8 @@ exec('systemctl --type=service --state=running', $running_services); echo ''; echo ' - - + + '; $table_color = 'odd'; From d392be05a23c333bd844382ec47ba0cca2cfd004 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 18:36:42 +0200 Subject: [PATCH 03/34] Update systeminfo.php Added name variable in tr "Systeminfo_Storage_Usage_Mount" Added name variable in tr "Systeminfo_Storage_Usage_Total" Added name variable in tr "Systeminfo_Storage_Usage_Used" Added name variable in tr "Systeminfo_Storage_Usage_Free" --- front/systeminfo.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/front/systeminfo.php b/front/systeminfo.php index 8fe64c8d..c2183c27 100644 --- a/front/systeminfo.php +++ b/front/systeminfo.php @@ -369,10 +369,10 @@ for ($x = 0; $x < sizeof($hdd_devices); $x++) { if ($hdd_devices_used[$x] == 0) {$temp_used = 0;} else { $temp_used = number_format(round(($hdd_devices_used[$x] / 1024 / 1024), 2), 2, ',', '.'); $temp_used = trim($temp_total);} if ($hdd_devices_free[$x] == 0) {$temp_free = 0;} else { $temp_free = number_format(round(($hdd_devices_free[$x] / 1024 / 1024), 2), 2, ',', '.'); $temp_free = trim($temp_total);} echo '
'; - echo '
Mount point "' . $hdd_devices_mount[$x] . '"
'; - echo '
Total: ' . $temp_total . ' GB
'; - echo '
Used: ' . $temp_used . ' GB (' . number_format($hdd_devices_percent[$x], 1, ',', '.') . '%)
'; - echo '
Free: ' . $temp_free . ' GB
'; + echo '
"' . lang('Systeminfo_Storage_Usage_Mount') . ' ' . $hdd_devices_mount[$x] . '"
'; + echo '
' . lang('Systeminfo_Storage_Usage_Total') . ' ' . $temp_total . ' GB
'; + echo '
' . lang('Systeminfo_Storage_Usage_Used') . ' ' . $temp_used . ' GB (' . number_format($hdd_devices_percent[$x], 1, ',', '.') . '%)
'; + echo '
' . lang('Systeminfo_Storage_Usage_Free') . ' ' . $temp_free . ' GB
'; echo '
'; } } From 4a0265ef259164936ead7a440caa6e3aa61d09fd Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 18:38:17 +0200 Subject: [PATCH 04/34] Update systeminfo.php Added name variable in tr "Systeminfo_Storage_Mount" Added name variable in tr "Systeminfo_Storage_Device" Added name variable in tr "Systeminfo_Storage_Size" Added name variable in tr "Systeminfo_Storage_Type" --- front/systeminfo.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/front/systeminfo.php b/front/systeminfo.php index c2183c27..974557a1 100644 --- a/front/systeminfo.php +++ b/front/systeminfo.php @@ -344,13 +344,13 @@ for ($x = 0; $x < sizeof($storage_lsblk_line); $x++) { //if (stristr($hdd_devices[$x], '/dev/')) { echo '
'; if (preg_match('~[0-9]+~', $storage_lsblk_line[$x][0])) { - echo '
Mount point "' . $storage_lsblk_line[$x][3] . '"
'; + echo '
"' . lang('Systeminfo_Storage_Mount') . ' ' . $storage_lsblk_line[$x][3] . '"
'; } else { echo '
"' . str_replace('_', ' ', $storage_lsblk_line[$x][3]) . '"
'; } - echo '
Device: /dev/' . $storage_lsblk_line[$x][0] . '
'; - echo '
Size: ' . $storage_lsblk_line[$x][1] . '
'; - echo '
Type: ' . $storage_lsblk_line[$x][2] . '
'; + echo '
' . lang('Systeminfo_Storage_Device') . ' /dev/' . $storage_lsblk_line[$x][0] . '
'; + echo '
' . lang('Systeminfo_Storage_Size') . ' ' . $storage_lsblk_line[$x][1] . '
'; + echo '
' . lang('Systeminfo_Storage_Type') . ' ' . $storage_lsblk_line[$x][2] . '
'; echo '
'; //} } From 8c91357fbb088aecddfbbbf723f655ad720d9e0c Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 18:45:01 +0200 Subject: [PATCH 05/34] Update es_es.json Added translation variable "Systeminfo_Services_Name" Added translation variable "Systeminfo_Services_Description" --- front/php/templates/language/es_es.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/front/php/templates/language/es_es.json b/front/php/templates/language/es_es.json index 06926bad..d9a8b861 100755 --- a/front/php/templates/language/es_es.json +++ b/front/php/templates/language/es_es.json @@ -595,6 +595,8 @@ "Systeminfo_Network": "Red", "Systeminfo_Network_Hardware": "Hardware de red", "Systeminfo_Services": "Servicios", - "Systeminfo_USB_Devices": "Dispositivos USB" + "Systeminfo_USB_Devices": "Dispositivos USB", + "Systeminfo_Services_Name": "Nombre del servicio", + "Systeminfo_Services_Description": "Descripción del servicio" } } From c9f22aa0c7ca7e63b1694dc2576dd29a7304c25a Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 18:47:24 +0200 Subject: [PATCH 06/34] Update es_es.json Added translation variable "Systeminfo_Storage_Usage_Mount" Added translation variable "Systeminfo_Storage_Usage_Total" Added translation variable "Systeminfo_Storage_Usage_Used" Added translation variable "Systeminfo_Storage_Usage_Free" --- front/php/templates/language/es_es.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/front/php/templates/language/es_es.json b/front/php/templates/language/es_es.json index d9a8b861..664d1d5b 100755 --- a/front/php/templates/language/es_es.json +++ b/front/php/templates/language/es_es.json @@ -592,11 +592,15 @@ "Systeminfo_Memory": "Memoria", "Systeminfo_Storage": "Almacenamiento", "Systeminfo_Storage_usage": "Uso de almacenamiento", + "Systeminfo_Storage_Usage_Mount": "Punto de montaje:", + "Systeminfo_Storage_Usage_Total": "Total:", + "Systeminfo_Storage_Usage_Used": "Usado:", + "Systeminfo_Storage_Usage_Free": "Libre:", "Systeminfo_Network": "Red", "Systeminfo_Network_Hardware": "Hardware de red", "Systeminfo_Services": "Servicios", - "Systeminfo_USB_Devices": "Dispositivos USB", "Systeminfo_Services_Name": "Nombre del servicio", - "Systeminfo_Services_Description": "Descripción del servicio" + "Systeminfo_Services_Description": "Descripción del servicio" + "Systeminfo_USB_Devices": "Dispositivos USB" } } From 5bf12e4e7d4ddf2b6ef3b68cb20f9ab81c611dca Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 18:49:37 +0200 Subject: [PATCH 07/34] Update es_es.json Update translation variable "Systeminfo_Storage_Usage" Added translation variable "Systeminfo_Storage_Mount" Added translation variable "Systeminfo_Storage_Device" Added translation variable "Systeminfo_Storage_Size" Added translation variable "Systeminfo_Storage_Type" --- front/php/templates/language/es_es.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/front/php/templates/language/es_es.json b/front/php/templates/language/es_es.json index 664d1d5b..393e7c86 100755 --- a/front/php/templates/language/es_es.json +++ b/front/php/templates/language/es_es.json @@ -591,7 +591,11 @@ "Systeminfo_CPU" : "CPU", "Systeminfo_Memory": "Memoria", "Systeminfo_Storage": "Almacenamiento", - "Systeminfo_Storage_usage": "Uso de almacenamiento", + "Systeminfo_Storage_Mount": "Punto de montaje:", + "Systeminfo_Storage_Device" : "Dispositivo:", + "Systeminfo_Storage_Size": "Tamaño:", + "Systeminfo_Storage_Type": "Tipo:", + "Systeminfo_Storage_Usage": "Uso de almacenamiento", "Systeminfo_Storage_Usage_Mount": "Punto de montaje:", "Systeminfo_Storage_Usage_Total": "Total:", "Systeminfo_Storage_Usage_Used": "Usado:", From df0afdc7beface6e08a1ead51240a778cd533816 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 18:51:25 +0200 Subject: [PATCH 08/34] Update es_es.json Update translation variable "Systeminfo_Services_Description" --- front/php/templates/language/es_es.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/php/templates/language/es_es.json b/front/php/templates/language/es_es.json index 393e7c86..fd7c6a98 100755 --- a/front/php/templates/language/es_es.json +++ b/front/php/templates/language/es_es.json @@ -604,7 +604,7 @@ "Systeminfo_Network_Hardware": "Hardware de red", "Systeminfo_Services": "Servicios", "Systeminfo_Services_Name": "Nombre del servicio", - "Systeminfo_Services_Description": "Descripción del servicio" + "Systeminfo_Services_Description": "Descripción del servicio", "Systeminfo_USB_Devices": "Dispositivos USB" } } From 5805c94c8a8ef5b1f010f7f1620cc715be3d6371 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 18:52:39 +0200 Subject: [PATCH 09/34] Update en_us.json Update translation variable "Systeminfo_Storage_Usage" Added translation variable "Systeminfo_Services_Name" Added translation variable "Systeminfo_Services_Description" --- front/php/templates/language/en_us.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/front/php/templates/language/en_us.json b/front/php/templates/language/en_us.json index b556ce54..938adc23 100755 --- a/front/php/templates/language/en_us.json +++ b/front/php/templates/language/en_us.json @@ -594,10 +594,12 @@ "Systeminfo_CPU" : "CPU", "Systeminfo_Memory" : "Memory", "Systeminfo_Storage" : "Storage", - "Systeminfo_Storage_usage" : "Storage usage", + "Systeminfo_Storage_Usage" : "Storage usage", "Systeminfo_Network" : "Network", "Systeminfo_Network_Hardware" : "Network Hardware", "Systeminfo_Services" : "Services", + "Systeminfo_Services_Name" : "Service Name", + "Systeminfo_Services_Description" : "Service Description", "Systeminfo_USB_Devices" : "USB Devices" } } From a58ef98a9c0c2ba6602970c4a18a57f347923648 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 18:53:48 +0200 Subject: [PATCH 10/34] Update en_us.json Added translation variable "Systeminfo_Storage_Usage_Mount" Added translation variable "Systeminfo_Storage_Usage_Total" Added translation variable "Systeminfo_Storage_Usage_Used" Added translation variable "Systeminfo_Storage_Usage_Free" --- front/php/templates/language/en_us.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/front/php/templates/language/en_us.json b/front/php/templates/language/en_us.json index 938adc23..30c6cf50 100755 --- a/front/php/templates/language/en_us.json +++ b/front/php/templates/language/en_us.json @@ -595,6 +595,10 @@ "Systeminfo_Memory" : "Memory", "Systeminfo_Storage" : "Storage", "Systeminfo_Storage_Usage" : "Storage usage", + "Systeminfo_Storage_Usage_Mount" : "Mount point:", + "Systeminfo_Storage_Usage_Total" : "Total:", + "Systeminfo_Storage_Usage_Used" : "Used:", + "Systeminfo_Storage_Usage_Free" : "Free:", "Systeminfo_Network" : "Network", "Systeminfo_Network_Hardware" : "Network Hardware", "Systeminfo_Services" : "Services", From 7e6fa9fcbdd5df9bab0af4029cb02111a0fa4126 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 18:55:20 +0200 Subject: [PATCH 11/34] Update en_us.json Added translation variable "Systeminfo_Storage_Mount" Added translation variable "Systeminfo_Storage_Device" Added translation variable "Systeminfo_Storage_Size" Added translation variable "Systeminfo_Storage_Type" --- front/php/templates/language/en_us.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/front/php/templates/language/en_us.json b/front/php/templates/language/en_us.json index 30c6cf50..8d4c1151 100755 --- a/front/php/templates/language/en_us.json +++ b/front/php/templates/language/en_us.json @@ -594,6 +594,10 @@ "Systeminfo_CPU" : "CPU", "Systeminfo_Memory" : "Memory", "Systeminfo_Storage" : "Storage", + "Systeminfo_Storage_Mount" : "Mount point:", + "Systeminfo_Storage_Device" : "Device:", + "Systeminfo_Storage_Size" : "Size:", + "Systeminfo_Storage_Type" : "Type:", "Systeminfo_Storage_Usage" : "Storage usage", "Systeminfo_Storage_Usage_Mount" : "Mount point:", "Systeminfo_Storage_Usage_Total" : "Total:", From d69227a8f1d974aed0ea4c9e5372491b8ec91761 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 18:56:27 +0200 Subject: [PATCH 12/34] Update de_de.json Added translation variable "Systeminfo_Services_Name" Added translation variable "Systeminfo_Services_Description" --- front/php/templates/language/de_de.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/front/php/templates/language/de_de.json b/front/php/templates/language/de_de.json index 19167c84..6d6d874e 100755 --- a/front/php/templates/language/de_de.json +++ b/front/php/templates/language/de_de.json @@ -333,6 +333,8 @@ "Systeminfo_Network" : "Netzwerk", "Systeminfo_Network_Hardware" : "Netzwerk Hardware", "Systeminfo_Services" : "Dienste", + "Systeminfo_Services_Name": "Dienstname", + "Systeminfo_Services_Description": "Dienstbeschreibung", "Systeminfo_USB_Devices" : "USB-Geräte" } } From 01d7730ffbc646340bee0cd904a018eef67ce6f6 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 18:56:49 +0200 Subject: [PATCH 13/34] Update de_de.json Update translation variable "Systeminfo_Storage_Usage" --- front/php/templates/language/de_de.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/php/templates/language/de_de.json b/front/php/templates/language/de_de.json index 6d6d874e..d0e42ba7 100755 --- a/front/php/templates/language/de_de.json +++ b/front/php/templates/language/de_de.json @@ -329,7 +329,7 @@ "Systeminfo_CPU" : "CPU", "Systeminfo_Memory" : "Speicher", "Systeminfo_Storage" : "Lagerung", - "Systeminfo_Storage_usage" : "Speicherverwendung", + "Systeminfo_Storage_Usage" : "Speicherverwendung", "Systeminfo_Network" : "Netzwerk", "Systeminfo_Network_Hardware" : "Netzwerk Hardware", "Systeminfo_Services" : "Dienste", From 477d43b67504ac1c480c010817fa6f33a37e36f9 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 18:58:29 +0200 Subject: [PATCH 14/34] Update de_de.json Added translation variable "Systeminfo_Storage_Usage_Mount" Added translation variable "Systeminfo_Storage_Usage_Total" Added translation variable "Systeminfo_Storage_Usage_Used" Added translation variable "Systeminfo_Storage_Usage_Free" --- front/php/templates/language/de_de.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/front/php/templates/language/de_de.json b/front/php/templates/language/de_de.json index d0e42ba7..c9f45d39 100755 --- a/front/php/templates/language/de_de.json +++ b/front/php/templates/language/de_de.json @@ -330,6 +330,10 @@ "Systeminfo_Memory" : "Speicher", "Systeminfo_Storage" : "Lagerung", "Systeminfo_Storage_Usage" : "Speicherverwendung", + "Systeminfo_Storage_Usage_Mount": "Mountpunkt:", + "Systeminfo_Storage_Usage_Total": "Gesamt:", + "Systeminfo_Storage_Usage_Used": "Verwendet:", + "Systeminfo_Storage_Usage_Free": "Kostenlos:", "Systeminfo_Network" : "Netzwerk", "Systeminfo_Network_Hardware" : "Netzwerk Hardware", "Systeminfo_Services" : "Dienste", @@ -338,4 +342,3 @@ "Systeminfo_USB_Devices" : "USB-Geräte" } } - From e98035e418612d4a4d0cb2cc7014569063599f47 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 18:59:07 +0200 Subject: [PATCH 15/34] Update de_de.json Added translation variable "Systeminfo_Storage_Mount" Added translation variable "Systeminfo_Storage_Device" Added translation variable "Systeminfo_Storage_Size" Added translation variable "Systeminfo_Storage_Type" --- front/php/templates/language/de_de.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/front/php/templates/language/de_de.json b/front/php/templates/language/de_de.json index c9f45d39..910689b8 100755 --- a/front/php/templates/language/de_de.json +++ b/front/php/templates/language/de_de.json @@ -329,6 +329,10 @@ "Systeminfo_CPU" : "CPU", "Systeminfo_Memory" : "Speicher", "Systeminfo_Storage" : "Lagerung", + "Systeminfo_Storage_Mount": "Mountpunkt:", + "Systeminfo_Storage_Device": "Gerät:", + "Systeminfo_Storage_Size": "Größe:", + "Systeminfo_Storage_Type": "Typ:", "Systeminfo_Storage_Usage" : "Speicherverwendung", "Systeminfo_Storage_Usage_Mount": "Mountpunkt:", "Systeminfo_Storage_Usage_Total": "Gesamt:", From 3200b3bc10ce9b25331c8c97f5f80c120842c099 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:01:29 +0200 Subject: [PATCH 16/34] Update systeminfo.php Updated translation variable "Systeminfo_Storage_Usage" --- front/systeminfo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/systeminfo.php b/front/systeminfo.php index 974557a1..e2a0e75f 100644 --- a/front/systeminfo.php +++ b/front/systeminfo.php @@ -360,7 +360,7 @@ echo ' // Storage usage ---------------------------------------------------------- echo '
-

' . lang('Systeminfo_Storage_usage') . '

+

' . lang('Systeminfo_Storage_Usage') . '

'; for ($x = 0; $x < sizeof($hdd_devices); $x++) { From 367dec40243a24033672aaa2938d72824fa52f4b Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:12:57 +0200 Subject: [PATCH 17/34] Update systeminfo.php Added translation variable "Systeminfo_General_Full_Date" Added translation variable "Systeminfo_General_Date" Added translation variable "Systeminfo_General_Date2" Added translation variable "Systeminfo_General_TimeZone" --- front/systeminfo.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/front/systeminfo.php b/front/systeminfo.php index e2a0e75f..b6711bac 100644 --- a/front/systeminfo.php +++ b/front/systeminfo.php @@ -134,19 +134,19 @@ echo '
-
Full Date:
+
' . lang('Systeminfo_General_Full_Date') . '
' . $formatted_date . '
-
Date:
+
' . lang('Systeminfo_General_Date') . '
' . $formatted_date2 . '
-
Date2:
+
' . lang('Systeminfo_General_Date2') . '
' . $formatted_date3 . '
-
Timezone:
+
' . lang('Systeminfo_General_TimeZone') . '
' . $timeZone . '
From 9735085328abd740b37e9627b09ae062ebab59d8 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:15:22 +0200 Subject: [PATCH 18/34] Update systeminfo.php Added translation variable "Systeminfo_Client_User_Agent" Added translation variable "Systeminfo_Client_Resolution" --- front/systeminfo.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front/systeminfo.php b/front/systeminfo.php index b6711bac..62f1b804 100644 --- a/front/systeminfo.php +++ b/front/systeminfo.php @@ -159,11 +159,11 @@ echo '
-
User Agent:
+
' . lang('Systeminfo_Client_User_Agent') . '
' . $_SERVER['HTTP_USER_AGENT'] . '
-
Browser Resolution:
+
' . lang('Systeminfo_Client_Resolution') . '
From 00942ba48f1c9d68e960d7e347231bc1fc349ec8 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:19:09 +0200 Subject: [PATCH 19/34] Update en_us.json Added translation variable "Systeminfo_Client_User_Agent" Added translation variable "Systeminfo_Client_Resolution" Added translation variable "Systeminfo_General_Date2" Added translation variable "Systeminfo_General_TimeZone" --- front/php/templates/language/en_us.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/front/php/templates/language/en_us.json b/front/php/templates/language/en_us.json index 8d4c1151..329252d9 100755 --- a/front/php/templates/language/en_us.json +++ b/front/php/templates/language/en_us.json @@ -588,6 +588,10 @@ "API_CUSTOM_SQL_name" : "Custom endpoint", "API_CUSTOM_SQL_description" : "You can specify a custom SQL query which will generate a JSON file and then expose it via the table_custom_endpoint.json file endpoint.", "Systeminfo_General" : "General", + "Systeminfo_General_Full_Date": "Full Date:", + "Systeminfo_General_Date": "Date:", + "Systeminfo_General_Date2": "Date2:", + "Systeminfo_General_TimeZone": "Timezone:", "Systeminfo_This_Client" : "This Client", "Systeminfo_System" : "System", "Systeminfo_Motherboard" : "Motherboard", From eb63964a90f089cb4a1dccb768aad484a1f9b0eb Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:20:54 +0200 Subject: [PATCH 20/34] Update en_us.json Added translation variable "Systeminfo_Client_User_Agent" Added translation variable "Systeminfo_Client_Resolution" --- front/php/templates/language/en_us.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/front/php/templates/language/en_us.json b/front/php/templates/language/en_us.json index 329252d9..3d6d81e2 100755 --- a/front/php/templates/language/en_us.json +++ b/front/php/templates/language/en_us.json @@ -588,11 +588,13 @@ "API_CUSTOM_SQL_name" : "Custom endpoint", "API_CUSTOM_SQL_description" : "You can specify a custom SQL query which will generate a JSON file and then expose it via the table_custom_endpoint.json file endpoint.", "Systeminfo_General" : "General", - "Systeminfo_General_Full_Date": "Full Date:", - "Systeminfo_General_Date": "Date:", - "Systeminfo_General_Date2": "Date2:", - "Systeminfo_General_TimeZone": "Timezone:", + "Systeminfo_General_Full_Date": "Full Date:", + "Systeminfo_General_Date": "Date:", + "Systeminfo_General_Date2": "Date2:", + "Systeminfo_General_TimeZone": "Timezone:", "Systeminfo_This_Client" : "This Client", + "Systeminfo_Client_User_Agent": "User Agent:", + "Systeminfo_Client_Resolution": "Browser Resolution:", "Systeminfo_System" : "System", "Systeminfo_Motherboard" : "Motherboard", "Systeminfo_CPU" : "CPU", From 96de41e4f03846f318e3722c4a8fe77413d99500 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:22:19 +0200 Subject: [PATCH 21/34] Update es_es.json Added translation variable "Systeminfo_Client_User_Agent" Added translation variable "Systeminfo_Client_Resolution" Added translation variable "Systeminfo_General_Date2" Added translation variable "Systeminfo_General_TimeZone" --- front/php/templates/language/es_es.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/front/php/templates/language/es_es.json b/front/php/templates/language/es_es.json index fd7c6a98..81b4320a 100755 --- a/front/php/templates/language/es_es.json +++ b/front/php/templates/language/es_es.json @@ -585,6 +585,10 @@ "API_CUSTOM_SQL_name" : "Endpoint personalizado", "API_CUSTOM_SQL_description" : "Puede especificar una consulta SQL personalizada que generará un archivo JSON y luego lo expondrá a través del archivo table_custom_endpoint.json.", "Systeminfo_General" : "General", + "Systeminfo_General_Full_Date": "Fecha completa:", + "Systeminfo_General_Date": "Fecha:", + "Systeminfo_General_Date2": "Fecha2:", + "Systeminfo_General_TimeZone": "Zona horaria:", "Systeminfo_This_Client": "Este cliente", "Systeminfo_System": "Sistema", "Systeminfo_Motherboard" : "Placa base", From df7c51d303389eb28c111900f0ba80adc0a9cf66 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:23:18 +0200 Subject: [PATCH 22/34] Update es_es.json Added translation variable "Systeminfo_Client_User_Agent" Added translation variable "Systeminfo_Client_Resolution" --- front/php/templates/language/es_es.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/front/php/templates/language/es_es.json b/front/php/templates/language/es_es.json index 81b4320a..923d9ab0 100755 --- a/front/php/templates/language/es_es.json +++ b/front/php/templates/language/es_es.json @@ -590,6 +590,8 @@ "Systeminfo_General_Date2": "Fecha2:", "Systeminfo_General_TimeZone": "Zona horaria:", "Systeminfo_This_Client": "Este cliente", + "Systeminfo_Client_User_Agent": "Agente de usuario:", + "Systeminfo_Client_Resolution": "Resolución del navegador:", "Systeminfo_System": "Sistema", "Systeminfo_Motherboard" : "Placa base", "Systeminfo_CPU" : "CPU", From ddde35ec1c0fe21b9c953c902e897976f36f1270 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:24:18 +0200 Subject: [PATCH 23/34] Update de_de.json Added translation variable "Systeminfo_Client_User_Agent" Added translation variable "Systeminfo_Client_Resolution" Added translation variable "Systeminfo_General_Date2" Added translation variable "Systeminfo_General_TimeZone" --- front/php/templates/language/de_de.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/front/php/templates/language/de_de.json b/front/php/templates/language/de_de.json index 910689b8..f036d4d5 100755 --- a/front/php/templates/language/de_de.json +++ b/front/php/templates/language/de_de.json @@ -323,6 +323,10 @@ "SYSTEM_TITLE" : "Systeminformationen", "Plugins_Out_of" : "von", "Systeminfo_General" : "Allgemein", + "Systeminfo_General_Full_Date": "Vollständiges Datum:", + "Systeminfo_General_Date": "Datum:", + "Systeminfo_General_Date2" "Datum2:", + "Systeminfo_General_TimeZone": "Zeitzone:", "Systeminfo_This_Client" : "Dieser Mandant", "Systeminfo_System" : "System", "Systeminfo_Motherboard" : "Hauptplatine", From f8b5cc98b2233260d8e950712b2a14b5cb436674 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:26:37 +0200 Subject: [PATCH 24/34] Update de_de.json Added translation variable "Systeminfo_Client_User_Agent" Added translation variable "Systeminfo_Client_Resolution" --- front/php/templates/language/de_de.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/front/php/templates/language/de_de.json b/front/php/templates/language/de_de.json index f036d4d5..4338c281 100755 --- a/front/php/templates/language/de_de.json +++ b/front/php/templates/language/de_de.json @@ -328,6 +328,8 @@ "Systeminfo_General_Date2" "Datum2:", "Systeminfo_General_TimeZone": "Zeitzone:", "Systeminfo_This_Client" : "Dieser Mandant", + "Systeminfo_Client_User_Agent": "Benutzeragent:", + "Systeminfo_Client_Resolution": "Browserauflösung:", "Systeminfo_System" : "System", "Systeminfo_Motherboard" : "Hauptplatine", "Systeminfo_CPU" : "CPU", From 7c9229e9c936024097f4af2d9289eb060b19e207 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:32:00 +0200 Subject: [PATCH 25/34] Update systeminfo.php Added translation variable "Memory_Usage_Percent" Added translation variable "Systeminfo_Memory_Usage" Added translation variable "Systeminfo_Memory_Total_Memory" --- front/systeminfo.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/front/systeminfo.php b/front/systeminfo.php index 62f1b804..67578532 100644 --- a/front/systeminfo.php +++ b/front/systeminfo.php @@ -306,15 +306,15 @@ echo '
-
Memory %:
+
' . $Systeminfo_Memory_Usage_Percent . '
' . $memory_usage_percent . ' %
-
Use memory:
+
' . $Systeminfo_Memory_Usage . '
' . $mem_used . ' MB / ' . $total_memorymb . ' MB
-
Total memory:
+
' . $Systeminfo_Memory_Total_Memory . '
' . $total_memorymb . ' MB (' . $total_memorykb . ' KB)
From 67cac33779ff4a992f4416df488293e3d8ad8da9 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:36:39 +0200 Subject: [PATCH 26/34] Update es_es.json Added translation variable "Systeminfo_Memory_Usage" Added translation variable "Systeminfo_Memory_Usage_Percent" Added translation variable "Systeminfo_Memory_Total_Memory" --- front/php/templates/language/es_es.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/front/php/templates/language/es_es.json b/front/php/templates/language/es_es.json index 923d9ab0..0a5daea4 100755 --- a/front/php/templates/language/es_es.json +++ b/front/php/templates/language/es_es.json @@ -596,6 +596,9 @@ "Systeminfo_Motherboard" : "Placa base", "Systeminfo_CPU" : "CPU", "Systeminfo_Memory": "Memoria", + "Systeminfo_Memory_Usage": "Memoria en uso:", + "Systeminfo_Memory_Usage_Percent": "Memoria %:", + "Systeminfo_Memory_Total_Memory": "Memoria total:", "Systeminfo_Storage": "Almacenamiento", "Systeminfo_Storage_Mount": "Punto de montaje:", "Systeminfo_Storage_Device" : "Dispositivo:", From 48303fce62dd535d4703479365104e8456269e25 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:37:54 +0200 Subject: [PATCH 27/34] Update en_us.json Added translation variable "Systeminfo_Memory_Usage" Added translation variable "Systeminfo_Memory_Usage_Percent" Added translation variable "Systeminfo_Memory_Total_Memory" --- front/php/templates/language/en_us.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/front/php/templates/language/en_us.json b/front/php/templates/language/en_us.json index 3d6d81e2..d40e4cec 100755 --- a/front/php/templates/language/en_us.json +++ b/front/php/templates/language/en_us.json @@ -599,6 +599,9 @@ "Systeminfo_Motherboard" : "Motherboard", "Systeminfo_CPU" : "CPU", "Systeminfo_Memory" : "Memory", + "Systeminfo_Memory_Usage": "Memory usage:", + "Systeminfo_Memory_Usage_Percent": "Memory %:", + "Systeminfo_Memory_Total_Memory": "Total memory:", "Systeminfo_Storage" : "Storage", "Systeminfo_Storage_Mount" : "Mount point:", "Systeminfo_Storage_Device" : "Device:", From 7c1c33ecdcf7b09e61cbe4605242fa20d96bbf6b Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:39:11 +0200 Subject: [PATCH 28/34] Update de_de.json Added translation variable "Systeminfo_Memory_Usage" Added translation variable "Systeminfo_Memory_Usage_Percent" Added translation variable "Systeminfo_Memory_Total_Memory" --- front/php/templates/language/de_de.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/front/php/templates/language/de_de.json b/front/php/templates/language/de_de.json index 4338c281..db18cdb2 100755 --- a/front/php/templates/language/de_de.json +++ b/front/php/templates/language/de_de.json @@ -334,6 +334,9 @@ "Systeminfo_Motherboard" : "Hauptplatine", "Systeminfo_CPU" : "CPU", "Systeminfo_Memory" : "Speicher", + "Systeminfo_Memory_Usage": "Speichernutzung:", + "Systeminfo_Memory_Usage_Percent": "Speicher %:", + "Systeminfo_Memory_Total_Memory": "Gesamtspeicher:", "Systeminfo_Storage" : "Lagerung", "Systeminfo_Storage_Mount": "Mountpunkt:", "Systeminfo_Storage_Device": "Gerät:", From 64694a1ead6661d7e6c4533aba91950b7fcb0c89 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:48:23 +0200 Subject: [PATCH 29/34] Update systeminfo.php Updated "Memory" section --- front/systeminfo.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/front/systeminfo.php b/front/systeminfo.php index 67578532..8f3fb719 100644 --- a/front/systeminfo.php +++ b/front/systeminfo.php @@ -306,15 +306,15 @@ echo '
-
' . $Systeminfo_Memory_Usage_Percent . '
+
' . lang('Systeminfo_Memory_Usage_Percent') . '
' . $memory_usage_percent . ' %
-
' . $Systeminfo_Memory_Usage . '
+
' . lang('Systeminfo_Memory_Usage') . '
' . $mem_used . ' MB / ' . $total_memorymb . ' MB
-
' . $Systeminfo_Memory_Total_Memory . '
+
' . lang('Systeminfo_Memory_Total_Memory') . '
' . $total_memorymb . ' MB (' . $total_memorykb . ' KB)
From e0e1250592198fd668ae463a63b77fe244f97865 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:56:45 +0200 Subject: [PATCH 30/34] Update systeminfo.php Updated "CPU" section Added translation variable "Systeminfo_CPU_Vendor" Added translation variable "Systeminfo_CPU_Name" Added translation variable "Systeminfo_CPU_Cores" Added translation variable "Systeminfo_CPU_Speed" Added translation variable "Systeminfo_CPU_Temp" --- front/systeminfo.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/front/systeminfo.php b/front/systeminfo.php index 8f3fb719..abfb0e36 100644 --- a/front/systeminfo.php +++ b/front/systeminfo.php @@ -257,23 +257,23 @@ echo '
-
CPU Vendor:
+
' . lang('Systeminfo_CPU_Vendor') . '
' . $cpu_vendor . '
-
CPU Name:
+
' . lang('Systeminfo_CPU_Name') . '
' . $stat['cpu_model'] . '
-
CPU Cores:
+
' . lang('Systeminfo_CPU_Cores') . '
' . $stat['cpu'] . '
-
CPU Speed:
+
' . lang('Systeminfo_CPU_Speed') . '
' . $stat['cpu_frequ'] . ' MHz
-
CPU Temp:
+
' . lang('Systeminfo_CPU_Temp') . '
'. $cpu_temp .' °C
'; // Get the number of CPU cores From 8c64b65942920681719085702233fa367a016f10 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:58:58 +0200 Subject: [PATCH 31/34] Update en_us.json Added translation variable "Systeminfo_CPU_Vendor" Added translation variable "Systeminfo_CPU_Name" Added translation variable "Systeminfo_CPU_Cores" Added translation variable "Systeminfo_CPU_Speed" Added translation variable "Systeminfo_CPU_Temp" --- front/php/templates/language/en_us.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/front/php/templates/language/en_us.json b/front/php/templates/language/en_us.json index d40e4cec..edb7323e 100755 --- a/front/php/templates/language/en_us.json +++ b/front/php/templates/language/en_us.json @@ -598,6 +598,11 @@ "Systeminfo_System" : "System", "Systeminfo_Motherboard" : "Motherboard", "Systeminfo_CPU" : "CPU", + "Systeminfo_CPU_Vendor": "CPU Vendor:", + "Systeminfo_CPU_Name": "CPU Name:", + "Systeminfo_CPU_Cores": "CPU Cores:", + "Systeminfo_CPU_Speed": "CPU Speed:", + "Systeminfo_CPU_Temp": "CPU Temp:", "Systeminfo_Memory" : "Memory", "Systeminfo_Memory_Usage": "Memory usage:", "Systeminfo_Memory_Usage_Percent": "Memory %:", From b016f6fefe789855ba643635ff94d0c43b3932eb Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:59:57 +0200 Subject: [PATCH 32/34] Update es_es.json Added translation variable "Systeminfo_CPU_Vendor" Added translation variable "Systeminfo_CPU_Name" Added translation variable "Systeminfo_CPU_Cores" Added translation variable "Systeminfo_CPU_Speed" Added translation variable "Systeminfo_CPU_Temp" --- front/php/templates/language/es_es.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/front/php/templates/language/es_es.json b/front/php/templates/language/es_es.json index 0a5daea4..83493d5b 100755 --- a/front/php/templates/language/es_es.json +++ b/front/php/templates/language/es_es.json @@ -595,6 +595,11 @@ "Systeminfo_System": "Sistema", "Systeminfo_Motherboard" : "Placa base", "Systeminfo_CPU" : "CPU", + "Systeminfo_CPU_Vendor": "Proveedor de CPU:", + "Systeminfo_CPU_Name": "Nombre de la CPU:", + "Systeminfo_CPU_Cores": "Núcleos de CPU:", + "Systeminfo_CPU_Speed": "Velocidad de la CPU:", + "Systeminfo_CPU_Temp": "Temperatura de la CPU:", "Systeminfo_Memory": "Memoria", "Systeminfo_Memory_Usage": "Memoria en uso:", "Systeminfo_Memory_Usage_Percent": "Memoria %:", From 1ecdc1249c8cd5e34e149751e5b3810af9ec5da5 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 20:01:24 +0200 Subject: [PATCH 33/34] Update de_de.json Added translation variable "Systeminfo_CPU_Vendor" Added translation variable "Systeminfo_CPU_Name" Added translation variable "Systeminfo_CPU_Cores" Added translation variable "Systeminfo_CPU_Speed" Added translation variable "Systeminfo_CPU_Temp" --- front/php/templates/language/de_de.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/front/php/templates/language/de_de.json b/front/php/templates/language/de_de.json index db18cdb2..da784686 100755 --- a/front/php/templates/language/de_de.json +++ b/front/php/templates/language/de_de.json @@ -333,6 +333,11 @@ "Systeminfo_System" : "System", "Systeminfo_Motherboard" : "Hauptplatine", "Systeminfo_CPU" : "CPU", + "Systeminfo_CPU_Vendor": "CPU-Anbieter:", + "Systeminfo_CPU_Name": "CPU-Name:", + "Systeminfo_CPU_Cores": "CPU-Kerne:", + "Systeminfo_CPU_Speed": "CPU-Geschwindigkeit:", + "Systeminfo_CPU_Temp": "CPU-Temp:", "Systeminfo_Memory" : "Speicher", "Systeminfo_Memory_Usage": "Speichernutzung:", "Systeminfo_Memory_Usage_Percent": "Speicher %:", From ea05fd58c19bfb4f70be3d557c2814f070e0f95a Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Sun, 13 Aug 2023 20:25:57 +0200 Subject: [PATCH 34/34] Update de_de.json Updated translation variable "Systeminfo_CPU_Vendor" --- front/php/templates/language/de_de.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/php/templates/language/de_de.json b/front/php/templates/language/de_de.json index da784686..018ce52c 100755 --- a/front/php/templates/language/de_de.json +++ b/front/php/templates/language/de_de.json @@ -333,7 +333,7 @@ "Systeminfo_System" : "System", "Systeminfo_Motherboard" : "Hauptplatine", "Systeminfo_CPU" : "CPU", - "Systeminfo_CPU_Vendor": "CPU-Anbieter:", + "Systeminfo_CPU_Vendor": "CPU-Anbieter:", "Systeminfo_CPU_Name": "CPU-Name:", "Systeminfo_CPU_Cores": "CPU-Kerne:", "Systeminfo_CPU_Speed": "CPU-Geschwindigkeit:",