mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-18 11:06:42 +03:00
Remove event navigation labels from player controls and update localization file
This commit is contained in:
parent
4a660262fc
commit
997882ed31
@ -6,10 +6,6 @@
|
||||
"title": "Submit this frame to Frigate+?",
|
||||
"submit": "Submit"
|
||||
},
|
||||
"eventNavigation": {
|
||||
"previous": "Previous Event",
|
||||
"next": "Next Event"
|
||||
},
|
||||
"livePlayerRequiredIOSVersion": "iOS 17.1 or greater is required for this live stream type.",
|
||||
"streamOffline": {
|
||||
"title": "Stream Offline",
|
||||
|
||||
@ -302,7 +302,6 @@ export default function VideoControls({
|
||||
<>
|
||||
<IoMdSkipBackward
|
||||
className="size-5 cursor-pointer"
|
||||
title={t("eventNavigation.previous")}
|
||||
onClick={(e) => {
|
||||
e.stopPropagation();
|
||||
onJumpToEvent("previous");
|
||||
@ -310,7 +309,6 @@ export default function VideoControls({
|
||||
/>
|
||||
<IoMdSkipForward
|
||||
className="size-5 cursor-pointer"
|
||||
title={t("eventNavigation.next")}
|
||||
onClick={(e) => {
|
||||
e.stopPropagation();
|
||||
onJumpToEvent("next");
|
||||
|
||||
Loading…
Reference in New Issue
Block a user