/** * Shared Mana/Credits FAQ content * Reusable across all apps that have a /mana subscription page */ import type { FAQItem, FeatureItem } from './content.js'; /** * Returns shared FAQ items explaining the Mana credit system. * Apps can spread these into their help content's faq array. * * @example * ```ts * import { getManaFAQs } from './content'; * * export function getMyAppHelpContent(locale: string): HelpContent { * return { * faq: [ * ...appSpecificFaqs, * ...getManaFAQs(locale), * ], * ... * }; * } * ``` */ export function getManaFAQs(locale: string): FAQItem[] { const isDE = locale === 'de'; return [ { id: 'faq-mana-what', question: isDE ? 'Was ist Mana?' : 'What is Mana?', answer: isDE ? '
Mana ist die universelle Währung im ManaCore-Ökosystem. Mit Mana bezahlst du für Premium-Funktionen wie KI-Generierungen, Cloud-Modelle und erweiterte Features — app-übergreifend mit einem einzigen Guthaben.
Mana is the universal currency in the ManaCore ecosystem. With Mana you pay for premium features like AI generations, cloud models, and advanced features — across all apps with a single balance.
Es gibt drei Wege, Mana zu erhalten:
Abonnenten können außerdem Mana an andere Nutzer verschenken.
' : 'There are three ways to get Mana:
Subscribers can also gift Mana to other users.
', category: 'billing', order: 91, language: isDE ? 'de' : 'en', tags: isDE ? ['mana', 'kaufen', 'abo', 'kostenlos', 'stream', 'trank'] : ['mana', 'buy', 'subscription', 'free', 'stream', 'potion'], }, { id: 'faq-mana-use', question: isDE ? 'Wofür wird Mana verwendet?' : 'What is Mana used for?', answer: isDE ? 'Mana wird für Premium-Funktionen innerhalb der ManaCore-Apps verwendet:
Basis-Funktionen wie Aufgaben, Kalender, Kontakte, Dateien und Chats mit lokalen Modellen sind immer kostenlos.
' : 'Mana is used for premium features within ManaCore apps:
Core features like tasks, calendar, contacts, files, and chats with local models are always free.
', category: 'billing', order: 92, language: isDE ? 'de' : 'en', tags: isDE ? ['mana', 'verbrauch', 'kosten', 'kostenlos'] : ['mana', 'usage', 'costs', 'free'], }, ]; } /** * Returns a shared feature item for the Mana credit system. */ export function getManaFeature(locale: string): FeatureItem { const isDE = locale === 'de'; return { id: 'feature-mana', title: isDE ? 'Mana-Credits' : 'Mana Credits', description: isDE ? 'Universelles Guthaben für Premium-Features in allen ManaCore-Apps — 150 Mana/Monat kostenlos.' : 'Universal balance for premium features across all ManaCore apps — 150 Mana/month for free.', icon: '✨', category: 'core', highlights: isDE ? ['150 Mana/Monat kostenlos', 'App-übergreifend', 'Abos & Einmalkäufe', 'Mana verschenken'] : ['150 Mana/month free', 'Cross-app', 'Subscriptions & one-time', 'Gift Mana'], content: '', order: 99, language: isDE ? 'de' : 'en', }; }