feat: default locale Russian, geo determines language for other countries

- localization-svc: defaultLocale ru, resolveLocale only by geo
- web-svc: DEFAULT_LOCALE ru, layout lang=ru, embeddedTranslations fallback ru
- countryToLocale: default ru when no country or unknown country

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
home
2026-02-23 15:10:38 +03:00
parent 8fc82a3b90
commit cd6b7857ba
606 changed files with 26148 additions and 14297 deletions

View File

@@ -3,25 +3,20 @@
"version": "1.12.1",
"license": "MIT",
"private": true,
"workspaces": [
"apps/*"
],
"workspaces": ["services/*"],
"author": "ItzCrazyKns",
"scripts": {
"dev": "npm run dev -w frontend",
"build": "npm run build -w frontend",
"start": "npm run start -w frontend",
"lint": "npm run lint -w frontend",
"build": "npm run build -w web-svc",
"lint": "npm run lint -w web-svc",
"format:write": "prettier . --write",
"docker:build": "docker build -f docker/Dockerfile -t gooseek:latest .",
"docker:up": "docker compose -f docker/docker-compose.yaml up -d",
"docker:down": "docker compose -f docker/docker-compose.yaml down",
"chatwoot:up": "docker compose -f chatwoot/docker-compose.yaml up -d",
"chatwoot:down": "docker compose -f chatwoot/docker-compose.yaml down",
"dev:geo": "npm run dev -w geo-device-service",
"dev:locale": "npm run dev -w localization-service"
"db:library-migrate": "npm run db:migrate -w library-svc",
"db:memory-migrate": "npm run db:migrate -w memory-svc",
"db:notifications-migrate": "npm run db:migrate -w notifications-svc",
"db:billing-migrate": "npm run db:migrate -w billing-svc",
"db:profile-migrate": "npm run db:migrate -w profile-svc",
"db:auth-migrate": "npm run db:migrate -w auth-svc"
},
"devDependencies": {
"prettier": "^3.2.5"
}
}
}