mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-07-27 02:04:39 +10:00
Fixes wrong values used in RAM usage section (#344)
This commit is contained in:
@@ -294,7 +294,7 @@
|
|||||||
"activeInactiveUsers": "Aktive/inaktive Benutzer",
|
"activeInactiveUsers": "Aktive/inaktive Benutzer",
|
||||||
"activeUsers": "Aktive Benutzer",
|
"activeUsers": "Aktive Benutzer",
|
||||||
"allVersionsCombined": "Alle Versionen zusammen",
|
"allVersionsCombined": "Alle Versionen zusammen",
|
||||||
"availableRam": "({freeRam} / {totalRam})",
|
"availableRam": "({usedRam} / {totalRam})",
|
||||||
"biggestGamesOnServer": "Größte Spiele auf dem Server",
|
"biggestGamesOnServer": "Größte Spiele auf dem Server",
|
||||||
"biggestGamesToDownload": "Die größten Spiele zum Herunterladen",
|
"biggestGamesToDownload": "Die größten Spiele zum Herunterladen",
|
||||||
"cpuUsage": "CPU Nutzung",
|
"cpuUsage": "CPU Nutzung",
|
||||||
|
|||||||
@@ -347,7 +347,7 @@
|
|||||||
"activeInactiveUsers": "Active/inactive users",
|
"activeInactiveUsers": "Active/inactive users",
|
||||||
"activeUsers": "Active users",
|
"activeUsers": "Active users",
|
||||||
"allVersionsCombined": "All versions combined",
|
"allVersionsCombined": "All versions combined",
|
||||||
"availableRam": "({freeRam} / {totalRam})",
|
"availableRam": "({usedRam} / {totalRam})",
|
||||||
"biggestGamesOnServer": "Biggest games on server",
|
"biggestGamesOnServer": "Biggest games on server",
|
||||||
"biggestGamesToDownload": "Biggest games to download",
|
"biggestGamesToDownload": "Biggest games to download",
|
||||||
"cpuUsage": "CPU usage",
|
"cpuUsage": "CPU usage",
|
||||||
|
|||||||
@@ -294,7 +294,7 @@
|
|||||||
"activeInactiveUsers": "Utilisateurs actifs/inactifs",
|
"activeInactiveUsers": "Utilisateurs actifs/inactifs",
|
||||||
"activeUsers": "Utilisateurs actifs",
|
"activeUsers": "Utilisateurs actifs",
|
||||||
"allVersionsCombined": "Toutes les versions combinées",
|
"allVersionsCombined": "Toutes les versions combinées",
|
||||||
"availableRam": "({freeRam} / {totalRam})",
|
"availableRam": "({usedRam} / {totalRam})",
|
||||||
"biggestGamesOnServer": "Les plus gros jeux sur le serveur",
|
"biggestGamesOnServer": "Les plus gros jeux sur le serveur",
|
||||||
"biggestGamesToDownload": "Les plus gros jeux à télécharger",
|
"biggestGamesToDownload": "Les plus gros jeux à télécharger",
|
||||||
"cpuUsage": "Utilisation du processeur",
|
"cpuUsage": "Utilisation du processeur",
|
||||||
|
|||||||
@@ -131,7 +131,9 @@
|
|||||||
<div class="flex-1 text-sm grow text-right self-center">
|
<div class="flex-1 text-sm grow text-right self-center">
|
||||||
{{
|
{{
|
||||||
$t("home.admin.availableRam", {
|
$t("home.admin.availableRam", {
|
||||||
freeRam: formatBytes(systemData.freeRam),
|
usedRam: formatBytes(
|
||||||
|
systemData.totalRam - systemData.freeRam,
|
||||||
|
),
|
||||||
totalRam: formatBytes(systemData.totalRam),
|
totalRam: formatBytes(systemData.totalRam),
|
||||||
})
|
})
|
||||||
}}
|
}}
|
||||||
|
|||||||
Reference in New Issue
Block a user