Polish pass 12 — sentence case on ArticleView, ComposeBox, DMView, SettingsView

- ArticleView: Back, Save/Saved, Repost/Reposted, Comment, Copy link,
  Like/Liked, Post — all button labels capitalised (header + footer)
- ComposeBox: Post, Post poll, Posting…
- DMView: Send, Start
- SettingsView: mute keyword placeholder + Remove button
This commit is contained in:
Jure
2026-04-09 19:49:24 +02:00
parent 63a0f05e92
commit 721a552f91
4 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -227,7 +227,7 @@ function ThreadPanel({
disabled={!text.trim() || sending}
className="px-3 self-end py-2 text-[11px] bg-accent hover:bg-accent-hover text-accent-text transition-colors disabled:opacity-30 disabled:cursor-not-allowed shrink-0 focus-visible:ring-1 focus-visible:ring-accent"
>
{sending ? "…" : "send"}
{sending ? "…" : "Send"}
</button>
</div>
<p className="text-text-dim text-[10px] mt-1">Ctrl+Enter to send · gift-wrapped (NIP-17)</p>
@@ -276,7 +276,7 @@ function NewConvInput({ onStart }: { onStart: (pubkey: string) => void }) {
disabled={!input.trim()}
className="px-2 py-1.5 text-[10px] border border-border text-text-dim hover:text-accent hover:border-accent/40 transition-colors disabled:opacity-30 shrink-0"
>
start
Start
</button>
</div>
{error && <p className="text-danger text-[10px] mt-1">{error}</p>}