dalexhd/SteamSpeak

View on GitHub
packages/server/src/locales/es/steam/status.ts

Summary

Maintainability
A
2 hrs
Test Coverage
const {
    Offline,
    Online,
    Busy,
    Away,
    Snooze,
    LookingToTrade,
    LookingToPlay,
    Invisible,
    Max
} = require('steam-user').EPersonaState;

export default {
    [Offline]: 'Desconectado',
    [Online]: 'Conectado',
    [Busy]: 'Ocupado',
    [Away]: 'Ausente',
    [Snooze]: 'Snooze',
    [LookingToTrade]: 'Deseando trade',
    [LookingToPlay]: 'Deseando jugar',
    [Invisible]: 'Invisible',
    [Max]: 'Max',
    Playing: 'Jugando'
};