2019-01-25 14:28:47 +00:00
from db import MatchmakingStatus
class SafeDict ( dict ) :
def __missing__ ( self , key ) :
2019-02-01 19:05:21 +00:00
return key
2019-01-25 14:28:47 +00:00
def safely_format_string ( string , * * kwargs ) :
return string . format_map ( SafeDict ( * * kwargs ) )
2019-01-28 21:55:55 +00:00
# Generic telegram errors
class TELEGRAM :
2019-02-01 18:21:46 +00:00
BOT_STARTED = " ✅ Hai autorizzato il bot ad inviarti messaggi privati. "
2019-01-25 14:28:47 +00:00
class ERRORS :
2019-01-28 21:55:55 +00:00
CRITICAL_ERROR = " ☢ <b>ERRORE CRITICO!</b> \n Il bot ha ignorato il comando. \n Una segnalazione di errore è stata automaticamente mandata a @Steffo. \n \n Dettagli dell ' errore: \n <pre> {exc_info} </pre> "
2019-02-01 19:05:21 +00:00
TELEGRAM_NOT_LINKED = " ⚠ Il tuo account Telegram non è registrato a Royalnet! Registrati con <code>/register (NomeUtenteRoyalnet)</code>. "
2019-01-25 14:28:47 +00:00
2019-01-28 21:55:55 +00:00
PONG = " 🏓 Pong! "
# Royalnet linking
class LINKING :
SUCCESSFUL = " ✅ Collegamento riuscito! "
class ERRORS :
2019-02-01 19:05:21 +00:00
INVALID_SYNTAX = " ⚠ Non hai specificato un username! \n Sintassi del comando: <code>/register (NomeUtenteRoyalnet)</code> "
2019-01-28 21:55:55 +00:00
NOT_FOUND = " ⚠ Non esiste nessun account Royalnet con quel nome. "
ALREADY_EXISTING = " ⚠ Questo account è già collegato a un account Royalnet. "
2019-01-28 19:45:31 +00:00
# Markov strings
class MARKOV :
class ERRORS :
NO_MODEL = " ⚠ La catena di Markov non è disponibile. "
GENERATION_FAILED = " ⚠ <code>markovify</code> non è riuscito a generare una frase. Prova di nuovo? \n E ' un ' avvenimento sorprendentemente raro... "
SPECIFIC_WORD_FAILED = " ⚠ <code>markovify</code> non è riuscito a generare una frase partendo da questa parola. Provane una diversa... "
MISSING_WORD = " ⚠ La parola specificata non è presente nella catena di Markov. Provane una diversa... "
2019-01-25 14:28:47 +00:00
# Matchmaking service strings
class MATCHMAKING :
TICKER_TEXT = {
" match_ready " : " 🔵 Hai detto che sei pronto per giocare! " ,
" match_wait_for_me " : " 🕒 Hai chiesto agli altri di aspettarti. " ,
" match_maybe " : " ❔ Hai detto che forse ci sarai. " ,
" match_someone_else " : " 💬 Hai detto che vuoi aspettare che venga qualcun altro. " ,
" match_ignore " : " ❌ Non hai intenzione di partecipare. " ,
" match_close " : " 🚩 Hai notificato tutti che la partita sta iniziando. " ,
" match_cancel " : " 🗑 Hai annullato la partita. "
}
GAME_START = {
MatchmakingStatus . READY : " 🔵 Che <b> {match_title} </b> abbia inizio! " ,
MatchmakingStatus . WAIT_FOR_ME : " 🕒 Sbrigati! <b> {match_title} </b> sta per iniziare! " ,
MatchmakingStatus . SOMEONE_ELSE : " ❔ <b> {match_title} </b> sta iniziando. Se vuoi partecipare, fai in fretta! " ,
MatchmakingStatus . MAYBE : " 💬 <b> {match_title} </b> sta per iniziare, e ci sono {active_players} giocatori. "
}
BUTTONS = {
" match_ready " : " 🔵 Sono pronto per iniziare! " ,
" match_wait_for_me " : " 🕒 Ci sarò, aspettatemi! " ,
" match_maybe " : " ❔ Forse vengo, se non ci sono fate senza di me. " ,
" match_someone_else " : " 💬 Solo se viene anche qualcun altro... " ,
" match_ignore " : " ❌ Non ci sarò. " ,
" match_close " : " 🚩 ADMIN: Avvia la partita " ,
" match_cancel " : " 🗑 ADMIN: Annulla la partita "
}
class ERRORS :
2019-02-01 19:05:21 +00:00
INVALID_SYNTAX = " ⚠ Sintassi del comando errata. \n Sintassi: <pre>/mm [minplayers-][maxplayers] per (gamename) \\ n[descrizione]</pre> "
2019-01-25 14:28:47 +00:00
NOT_ADMIN = " ⚠ Non sei il creatore di questo match! "
MATCH_CLOSED = " ⚠ Il matchmaking per questa partita è terminato! "
2019-01-28 22:37:01 +00:00
UNAUTHORIZED = " ⚠ Non sono autorizzato a inviare messaggi a {mention} . \n Per piacere, {mention} , inviami un messaggio in privata! "
# Diario search
2019-02-01 18:21:46 +00:00
class DIARIOSEARCH :
2019-02-01 18:46:00 +00:00
HEADER = " ℹ ️ Risultati della ricerca di {term} : \n "
2019-01-28 22:37:01 +00:00
class ERRORS :
2019-02-01 19:05:21 +00:00
INVALID_SYNTAX = " ⚠ Non hai specificato un termine da cercare! \n Sintassi: <pre>/ {command} (termine)</pre> "
RESULTS_TOO_LONG = " ⚠ Sono presenti troppi risultati da visualizzare! Prova a restringere la ricerca. "