diff --git a/components/casting/player/CastPlayerEpisodeControls.tsx b/components/casting/player/CastPlayerEpisodeControls.tsx
index 394e86758..c0b5ee527 100644
--- a/components/casting/player/CastPlayerEpisodeControls.tsx
+++ b/components/casting/player/CastPlayerEpisodeControls.tsx
@@ -8,8 +8,10 @@
import { Ionicons } from "@expo/vector-icons";
import type { BaseItemDto } from "@jellyfin/sdk/lib/generated-client";
import type { Router } from "expo-router";
+import { useTranslation } from "react-i18next";
import { Pressable, View } from "react-native";
import type { RemoteMediaClient } from "react-native-google-cast";
+import { Text } from "@/components/common/Text";
interface CastPlayerEpisodeControlsProps {
/** Bottom safe-area inset, used to offset the fixed control row. */
@@ -40,6 +42,8 @@ export function CastPlayerEpisodeControls({
loadEpisode,
router,
}: CastPlayerEpisodeControlsProps) {
+ const { t } = useTranslation();
+
const hasEpisodeList = episodes.length > 0;
const hasPrevious = episodes.findIndex((ep) => ep.Id === currentItemId) > 0;
const hasNext = nextEpisode != null;
@@ -48,6 +52,9 @@ export function CastPlayerEpisodeControls({
const buttonCount =
1 + (hasEpisodeList ? 1 : 0) + (hasPrevious ? 1 : 0) + (hasNext ? 1 : 0);
+ // When Stop is the only button (movies), render it full-width with a label.
+ const isLoneStop = buttonCount === 1;
+
// Each button stretches evenly only when the row holds more than one;
// a lone Stop button keeps its intrinsic size and stays centered.
const buttonStyle = {
@@ -137,9 +144,14 @@ export function CastPlayerEpisodeControls({
}
}
}}
- style={buttonStyle}
+ style={[buttonStyle, isLoneStop && { flex: 1, gap: 8 }]}
>
+ {isLoneStop && (
+
+ {t("casting_player.stop")}
+
+ )}
);
diff --git a/translations/en.json b/translations/en.json
index c1b1a28c8..4d3a57f6f 100644
--- a/translations/en.json
+++ b/translations/en.json
@@ -68,6 +68,7 @@
"device_name": "Device Name",
"playback_settings": "Playback Settings",
"version": "Version",
+ "stop": "Stop",
"quality": "Quality",
"audio": "Audio",
"subtitles": "Subtitles",