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+?",
|
"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",
|
||||||
|
|||||||
@ -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");
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user