Files
InvestPlay/packages/i18n/src/locales/en/gamification.json
Lefteris Notas e75f913f1c
Some checks failed
CI / Lint (push) Has been cancelled
CI / TypeCheck (push) Has been cancelled
CI / Test (push) Has been cancelled
Deploy / Docker Build & Push (map[context:. dockerfile:apps/api/Dockerfile name:api]) (push) Has been cancelled
Deploy / Docker Build & Push (map[context:. dockerfile:apps/cms/Dockerfile name:cms]) (push) Has been cancelled
Deploy / Docker Build & Push (map[context:. dockerfile:apps/web/Dockerfile name:web]) (push) Has been cancelled
CI / Build (push) Has been cancelled
Deploy / Deploy (push) Has been cancelled
feat: complete Phase 1 foundation scaffold
- Monorepo: Turborepo + pnpm workspaces with 7 apps/packages
- Backend: NestJS scaffold with 9 modules (auth, tenant, curriculum, simulation, portfolio, ai-coach, analytics, classroom, gamification)
- Frontend: React 18 + Vite + TailwindCSS + shadcn/ui with 10 pages, 14 UI primitives, 3 Zustand stores
- Database: Prisma schema with 19 models, 13 enums, seed script, multi-tenant ready
- Docker: Dev, production, and Portainer Compose files with Traefik reverse proxy
- Configuration: .env.example (47 vars), Zod validation, frontend-safe env exposure
- i18n: English + Greek locale files (10 files), ICU MessageFormat, react-i18next
- Shared packages: @investplay/types, @investplay/ui, @investplay/i18n, @investplay/utils
- CI/CD: GitHub Actions (lint, typecheck, test, build, deploy, PR checks)
- Documentation: CONTEXT.md, ARCHITECTURE.md (10 Mermaid diagrams), API.md, LOCALIZATION.md, DEVELOPMENT-ROADMAP.md
- Infrastructure: Dockerfiles (dev + prod), nginx configs, backup/healthcheck scripts
- Security: JWT auth guards, role-based access, rate limiting, Helmet, CORS, PII sanitization
2026-06-12 19:32:57 +03:00

63 lines
1.7 KiB
JSON

{
"xp": {
"label": "XP",
"earned": "{{count}} XP earned",
"needed": "{{count}} XP to next level",
"reason": {
"lessonCompleted": "Lesson completed",
"quizPassed": "Quiz passed",
"streakMaintained": "Streak maintained",
"challengeCompleted": "Challenge completed",
"simulationCompleted": "Simulation completed",
"diversification": "Portfolio diversified",
"riskManagement": "Good risk management",
"hypeAvoided": "Avoided market hype",
"debtPaidOff": "Debt paid off"
}
},
"level": {
"label": "Level",
"current": "Level {{level}}",
"progress": "Level {{current}} — {{progress}}% to Level {{next}}"
},
"badges": {
"title": "Badges",
"unlocked": "Badge Unlocked!",
"locked": "Locked",
"progress": "{{count}} of {{total}} badges",
"categories": {
"milestone": "Milestones",
"skill": "Skills",
"behavior": "Behaviors",
"special": "Special"
}
},
"achievements": {
"title": "Achievements",
"recent": "Recent Achievements",
"all": "All Achievements",
"empty": "Complete lessons to earn achievements"
},
"streaks": {
"label": "Streak",
"current": "{{count}}-day streak",
"longest": "Longest: {{count}} days",
"days": "{{count}} day",
"days_plural": "{{count}} days",
"maintain": "Complete a lesson today to keep your streak!",
"lost": "Streak lost. Start again tomorrow!"
},
"leaderboard": {
"title": "Leaderboard",
"rank": "Rank",
"player": "Player",
"xp": "XP",
"level": "Level",
"badges": "Badges",
"yourRank": "Your Rank",
"empty": "No rankings yet. Start learning!",
"classroom": "Classroom Leaderboard",
"global": "Global Leaderboard"
}
}