-
Notifications
You must be signed in to change notification settings - Fork 65
Description
The uptime info contains not localised strings "days", "hours", "minutes", "seconds"

It comes from this function:
private function formatUptime(int $uptime): string {
if ($uptime === -1) {
return 'Unknown';
}
try {
$boot = new \DateTime($uptime . ' seconds ago');
} catch (\Exception $e) {
return 'Unknown';
}
$interval = $boot->diff(new \DateTime());
if ($interval->days > 0) {
return $interval->format('%a days, %h hours, %i minutes, %s seconds');
}
return $interval->format('%h hours, %i minutes, %s seconds');
}
So, localisation tags are to be added there.
Reactions are currently unavailable