From 9aeb329b64057da8ba6cad7886dc22b9b012ed9f Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Wed, 15 Apr 2026 03:43:23 +0200 Subject: [PATCH] Remove tvOS scrub hint labels from progress bar --- Yattee/Localizable.xcstrings | 20 ------------------- .../Player/tvOS/TVPlayerProgressBar.swift | 13 ------------ 2 files changed, 33 deletions(-) diff --git a/Yattee/Localizable.xcstrings b/Yattee/Localizable.xcstrings index 325388a8..f9040fc1 100644 --- a/Yattee/Localizable.xcstrings +++ b/Yattee/Localizable.xcstrings @@ -7063,26 +7063,6 @@ } } }, - "player.tvos.scrubHint" : { - "localizations" : { - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Press to scrub" - } - } - } - }, - "player.tvos.seekHint" : { - "localizations" : { - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Swipe ← → • press to seek" - } - } - } - }, "player.tvos.volumeDown" : { "extractionState" : "stale", "localizations" : { diff --git a/Yattee/Views/Player/tvOS/TVPlayerProgressBar.swift b/Yattee/Views/Player/tvOS/TVPlayerProgressBar.swift index 16001742..64efcb4e 100644 --- a/Yattee/Views/Player/tvOS/TVPlayerProgressBar.swift +++ b/Yattee/Views/Player/tvOS/TVPlayerProgressBar.swift @@ -198,19 +198,6 @@ struct TVPlayerProgressBar: View { Spacer() - // Scrub hint when focused (only for non-live) - if !isLive && isFocused && !isScrubbing { - Text(String(localized: "player.tvos.scrubHint")) - .font(.caption) - .foregroundStyle(.white.opacity(0.5)) - } else if !isLive && isScrubbing { - Text(String(localized: "player.tvos.seekHint")) - .font(.caption) - .foregroundStyle(.white.opacity(0.7)) - } - - Spacer() - // Remaining time (only for non-live) if !isLive { Text("-\(max(0, duration - displayTime).formattedAsTimestamp)")