Skip to content

Commit af1d53a

Browse files
wesmclaude
andcommitted
fix: Final branding cleanup - quit dialog and widgets
Fixed remaining user-visible 'Monarch' references: - screens/credential_screens.py: 'Quit Monarch TUI?' → 'Quit moneyflow?' - screens/review_screen.py: 'Commit to Monarch (C)' → 'Commit Changes (C)' - widgets/__init__.py: 'Monarch TUI' → 'moneyflow TUI' in docstring All user-facing text now uses 'moneyflow' branding consistently. Remaining 'Monarch' references are appropriate: - MonarchTUI class name (internal implementation detail) - backends/monarch.py (Monarch backend implementation) - monarchmoney.py (external GraphQL client) - Comments mentioning Monarch as a supported platform All 465 tests passing, pyright clean. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 8f5ce3e commit af1d53a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

moneyflow/screens/credential_screens.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ def __init__(self, has_unsaved_changes: bool = False):
465465

466466
def compose(self) -> ComposeResult:
467467
with Container(id="quit-dialog"):
468-
yield Label("⚠️ Quit Monarch TUI?", id="quit-title")
468+
yield Label("⚠️ Quit moneyflow?", id="quit-title")
469469

470470
if self.has_unsaved_changes:
471471
yield Static(

moneyflow/screens/review_screen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def compose(self) -> ComposeResult:
8686
with Container(id="review-footer"):
8787
yield Static("c=Commit | Esc=Cancel", classes="footer-instructions")
8888
with Container(id="button-container"):
89-
yield Button("Commit to Monarch (C)", variant="primary", id="commit-button")
89+
yield Button("Commit Changes (C)", variant="primary", id="commit-button")
9090
yield Button("Cancel (Esc)", variant="default", id="cancel-button")
9191

9292
async def on_mount(self) -> None:

moneyflow/widgets/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Custom Textual widgets for Monarch TUI."""
1+
"""Custom Textual widgets for moneyflow TUI."""
22

33
from .help_screen import HelpScreen
44

0 commit comments

Comments
 (0)