mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 17:09:40 +02:00
Move inactive projects out of active workspace: - bauntown (community website) - maerchenzauber (AI story generation) - memoro (voice memo app) - news (news aggregation) - nutriphi (nutrition tracking) - reader (reading app) - uload (URL shortener) - wisekeep (AI wisdom extraction) Update CLAUDE.md documentation: - Add presi to active projects - Document archived projects section - Update workspace configuration Archived apps can be re-activated by moving back to apps/ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
41 lines
1 KiB
TypeScript
41 lines
1 KiB
TypeScript
/**
|
|
* Constants for the memos feature
|
|
*/
|
|
|
|
// Default memo titles
|
|
export const DEFAULT_MEMO_TITLES = {
|
|
UNNAMED: 'Unbenanntes Memo',
|
|
NEW_RECORDING: 'Neue Aufnahme',
|
|
};
|
|
|
|
// Database table names
|
|
export const DB_TABLES = {
|
|
TAGS: 'tags',
|
|
MEMO_TAGS: 'memo_tags',
|
|
MEMO_SPACES: 'memo_spaces',
|
|
SPACES: 'spaces',
|
|
};
|
|
|
|
// RPC function names
|
|
export const RPC_FUNCTIONS = {
|
|
ADD_TAG_TO_MEMO: 'add_tag_to_memo',
|
|
};
|
|
|
|
// Processing status text
|
|
export const PROCESSING_STATUS_TEXT = {
|
|
UPLOADING: 'Memo uploading...',
|
|
TRANSCRIBING: 'Memo transcribing...',
|
|
GENERATING_HEADLINE: 'Headline generating...',
|
|
ERROR: 'Error processing memo',
|
|
};
|
|
|
|
// Context menu actions
|
|
export const CONTEXT_MENU_ACTIONS = [
|
|
{ title: 'Teilen', systemIcon: 'square.and.arrow.up' },
|
|
{ title: 'Kopieren', systemIcon: 'doc.on.doc' },
|
|
{ title: 'Transkript kopieren', systemIcon: 'text.bubble' },
|
|
{ title: 'An den Anfang pinnen', systemIcon: 'pin' },
|
|
{ title: 'Löschen', systemIcon: 'trash', destructive: true },
|
|
];
|
|
|
|
// Date formatting moved to ~/utils/sharedConstants.ts
|