Remove event navigation labels from player controls and update localization file

This commit is contained in:
Ran Mizrachi 2025-10-26 10:57:24 +02:00
parent 4a660262fc
commit 997882ed31
2 changed files with 0 additions and 6 deletions

View File

@ -6,10 +6,6 @@
"title": "Submit this frame to Frigate+?", "title": "Submit this frame to Frigate+?",
"submit": "Submit" "submit": "Submit"
}, },
"eventNavigation": {
"previous": "Previous Event",
"next": "Next Event"
},
"livePlayerRequiredIOSVersion": "iOS 17.1 or greater is required for this live stream type.", "livePlayerRequiredIOSVersion": "iOS 17.1 or greater is required for this live stream type.",
"streamOffline": { "streamOffline": {
"title": "Stream Offline", "title": "Stream Offline",

View File

@ -302,7 +302,6 @@ export default function VideoControls({
<> <>
<IoMdSkipBackward <IoMdSkipBackward
className="size-5 cursor-pointer" className="size-5 cursor-pointer"
title={t("eventNavigation.previous")}
onClick={(e) => { onClick={(e) => {
e.stopPropagation(); e.stopPropagation();
onJumpToEvent("previous"); onJumpToEvent("previous");
@ -310,7 +309,6 @@ export default function VideoControls({
/> />
<IoMdSkipForward <IoMdSkipForward
className="size-5 cursor-pointer" className="size-5 cursor-pointer"
title={t("eventNavigation.next")}
onClick={(e) => { onClick={(e) => {
e.stopPropagation(); e.stopPropagation();
onJumpToEvent("next"); onJumpToEvent("next");