mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-10 03:45:18 +01:00
feat: Add link to Discord in menu UI feat: Add Discord and Google login functionality Add container around discord and google icons refactor: Update environment variable names for Discord and Google client IDs feat: Add "Or use" translation for login options in multiple languages feat: Update menu UI translations for multiple languages Code review fixes refactor: Update Discord and Google client IDs in environment variables
28 lines
1.0 KiB
TypeScript
28 lines
1.0 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const menuUiHandler: SimpleTranslationEntries = {
|
|
"GAME_SETTINGS": "Configurações",
|
|
"ACHIEVEMENTS": "Conquistas",
|
|
"STATS": "Estatísticas",
|
|
"VOUCHERS": "Vouchers",
|
|
"EGG_LIST": "Incubadora",
|
|
"EGG_GACHA": "Gacha de ovos",
|
|
"MANAGE_DATA": "Gerenciar dados",
|
|
"COMMUNITY": "Comunidade",
|
|
"SAVE_AND_QUIT": "Salvar e sair",
|
|
"LOG_OUT": "Logout",
|
|
"slot": "Slot {{slotNumber}}",
|
|
"importSession": "Importar sessão",
|
|
"importSlotSelect": "Selecione um slot para importar.",
|
|
"exportSession": "Exportar sessão",
|
|
"exportSlotSelect": "Selecione um slot para exportar.",
|
|
"importData": "Importar dados",
|
|
"exportData": "Exportar dados",
|
|
"linkDiscord": "Conectar Discord",
|
|
"unlinkDiscord": "Desconectar Discord",
|
|
"linkGoogle": "Conectar Google",
|
|
"unlinkGoogle": "Desconectar Google",
|
|
"cancel": "Cancelar",
|
|
"losingProgressionWarning": "Você vai perder todo o progresso desde o início da batalha. Confirmar?"
|
|
} as const;
|