refactor: rename zitare -> quotes (Zitate)

Zitare was opaque Latin/Italian-flavored branding. Renamed to clear
English "quotes" (DE: Zitate) matching short-concrete-noun cluster.

- Module, routes, API, i18n, standalone landing app, plans dirs
- Dexie tables: quotesFavorites, quotesLists, quotesListTags,
  customQuotes (dropped redundant "quotes" prefix on the last)
- Logo QuotesLogo, theme quotes.css, search provider, dashboard
  widget QuoteWidget
- German user-facing label "Zitate" (English brand stays Quotes)

Pre-launch, no data migration needed.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-04-14 20:59:16 +02:00
parent 7a1f11c971
commit 851a281e5a
196 changed files with 891 additions and 776 deletions

View file

@ -243,22 +243,22 @@ const APP_CONFIGS = [
},
},
// Zitare Backend: REMOVED — migrated to local-first
// Quotes Backend: REMOVED — migrated to local-first
// Zitare Mobile (Expo)
// Quotes Mobile (Expo)
{
path: 'apps/zitare/apps/mobile/.env',
path: 'apps/quotes/apps/mobile/.env',
vars: {
EXPO_PUBLIC_BACKEND_URL: (env) => `http://localhost:${env.ZITARE_BACKEND_PORT || '3007'}`,
EXPO_PUBLIC_BACKEND_URL: (env) => `http://localhost:${env.QUOTES_BACKEND_PORT || '3007'}`,
EXPO_PUBLIC_MANA_AUTH_URL: (env) => env.MANA_AUTH_URL,
},
},
// Zitare Web (SvelteKit)
// Quotes Web (SvelteKit)
{
path: 'apps/zitare/apps/web/.env',
path: 'apps/quotes/apps/web/.env',
vars: {
PUBLIC_BACKEND_URL: (env) => `http://localhost:${env.ZITARE_BACKEND_PORT || '3007'}`,
PUBLIC_BACKEND_URL: (env) => `http://localhost:${env.QUOTES_BACKEND_PORT || '3007'}`,
PUBLIC_MANA_AUTH_URL: (env) => env.MANA_AUTH_URL,
PUBLIC_GLITCHTIP_DSN: (env) => env.PUBLIC_GLITCHTIP_DSN || '',
},
@ -645,14 +645,14 @@ const APP_CONFIGS = [
},
},
// Zitare Telegram Bot
// Quotes Telegram Bot
{
path: 'services/telegram-zitare-bot/.env',
path: 'services/telegram-quotes-bot/.env',
vars: {
NODE_ENV: () => 'development',
PORT: (env) => env.ZITARE_BOT_PORT || '3303',
TELEGRAM_BOT_TOKEN: (env) => env.ZITARE_BOT_TELEGRAM_TOKEN,
DATABASE_URL: (env) => env.ZITARE_BOT_DATABASE_URL,
PORT: (env) => env.QUOTES_BOT_PORT || '3303',
TELEGRAM_BOT_TOKEN: (env) => env.QUOTES_BOT_TELEGRAM_TOKEN,
DATABASE_URL: (env) => env.QUOTES_BOT_DATABASE_URL,
},
},