Personalizzato e tradotto

This commit is contained in:
MrFreasy
2023-12-22 13:10:21 +01:00
parent 9b7426eb43
commit 785285a7ac
7 changed files with 36 additions and 37 deletions

View File

@ -1,12 +1,12 @@
const SORT_OPTIONS = [
{
getName: () => 'Players',
getName: () => 'Giocatori',
sortFunc: (a, b) => b.playerCount - a.playerCount,
highlightedValue: 'player-count'
},
{
getName: (app) => {
return `${app.publicConfig.graphDurationLabel} Peak`
return `Picco di ${app.publicConfig.graphDurationLabel}`
},
sortFunc: (a, b) => {
if (!a.lastPeakData && !b.lastPeakData) {