Compare commits

...

2 Commits

Author SHA1 Message Date
apocaliss92
f862ef5d0c Add Scrypted - Frigate bridge plugin information (#21365) 2025-12-22 08:13:37 -07:00
GuoQing Liu
f74df040bb fix: fix password setting overlay time i18n (#21387) 2025-12-22 05:56:19 -06:00
2 changed files with 5 additions and 1 deletions

View File

@@ -38,3 +38,7 @@ This is a fork (with fixed errors and new features) of [original Double Take](ht
## [Periscope](https://github.com/maksz42/periscope)
[Periscope](https://github.com/maksz42/periscope) is a lightweight Android app that turns old devices into live viewers for Frigate. It works on Android 2.2 and above, including Android TV. It supports authentication and HTTPS.
## [Scrypted - Frigate bridge plugin](https://github.com/apocaliss92/scrypted-frigate-bridge)
[Scrypted - Frigate bridge](https://github.com/apocaliss92/scrypted-frigate-bridge) is an plugin that allows to ingest Frigate detections, motion, videoclips on Scrypted as well as provide templates to export rebroadcast configurations on Frigate.

View File

@@ -54,7 +54,7 @@ export default function SetPasswordDialog({
config?.auth?.refresh_time ?? undefined;
const refreshTimeLabel = refreshSeconds
? formatSecondsToDuration(refreshSeconds)
: "30 minutes";
: t("time.30minutes", { ns: "common" });
// visibility toggles for password fields
const [showOldPassword, setShowOldPassword] = useState<boolean>(false);