mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-07-08 21:42:52 +01:00
Enhances README with comprehensive feature categorization including Media Playback, Media Management, and Advanced Features sections Expands documentation for music library support, search providers (Marlin, Streamystats, Jellysearch), and plugin functionality Updates FAQ section with more detailed answers about library visibility, downloads, subtitles, TV platform support, and Seerr integration Corrects typos throughout the application: - Fixes "liraries" to "libraries" in hide libraries settings - Changes "centralised" to "centralized" for consistency - Updates "Jellyseerr" references to "Seerr" throughout codebase Adds missing translations for player settings including aspect ratio options, alignment controls, and MPV subtitle customization Improves consistency in capitalization and punctuation across translation strings
44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import { useTranslation } from "react-i18next";
|
|
import useRouter from "@/hooks/useAppRouter";
|
|
import { useSettings } from "@/utils/atoms/settings";
|
|
import { ListGroup } from "../list/ListGroup";
|
|
import { ListItem } from "../list/ListItem";
|
|
|
|
export const PluginSettings = () => {
|
|
const { settings } = useSettings();
|
|
|
|
const router = useRouter();
|
|
|
|
const { t } = useTranslation();
|
|
|
|
if (!settings) return null;
|
|
|
|
return (
|
|
<ListGroup
|
|
title={t("home.settings.plugins.plugins_title")}
|
|
className='mb-4'
|
|
>
|
|
<ListItem
|
|
onPress={() => router.push("/settings/plugins/jellyseerr/page")}
|
|
title={"Seerr"}
|
|
showArrow
|
|
/>
|
|
<ListItem
|
|
onPress={() => router.push("/settings/plugins/streamystats/page")}
|
|
title={"Streamystats"}
|
|
showArrow
|
|
/>
|
|
<ListItem
|
|
onPress={() => router.push("/settings/plugins/marlin-search/page")}
|
|
title={"Marlin Search"}
|
|
showArrow
|
|
/>
|
|
<ListItem
|
|
onPress={() => router.push("/settings/plugins/kefinTweaks/page")}
|
|
title={"KefinTweaks"}
|
|
showArrow
|
|
/>
|
|
</ListGroup>
|
|
);
|
|
};
|