pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

update translations

Pas 3b4b8915 bd94364a

+16 -4
+7
src/assets/locales/en.json
··· 1326 1326 "tidb": { 1327 1327 "description": "Contribute to TheIntroDB by leaving feedback on intro, recap, and credits segments. <0>Learn more.</0>", 1328 1328 "tokenLabel": "API Key" 1329 + }, 1330 + "trakt": { 1331 + "title": "Trakt", 1332 + "description": "Sync your watchlist and history with Trakt.", 1333 + "connect": "Connect Trakt", 1334 + "syncing": "Syncing...", 1335 + "disconnect": "Disconnect" 1329 1336 } 1330 1337 }, 1331 1338 "preferences": {
+9 -4
src/pages/parts/settings/ConnectionsPart.tsx
··· 775 775 } 776 776 777 777 export function TraktEdit() { 778 + const { t } = useTranslation(); 778 779 const { user, status, logout, error } = useTraktStore(); 779 780 const config = conf(); 780 781 ··· 796 797 <SettingsCard> 797 798 <div className="flex justify-between items-center gap-4"> 798 799 <div className="my-3"> 799 - <p className="text-white font-bold mb-3">Trakt</p> 800 + <p className="text-white font-bold mb-3"> 801 + {t("settings.connections.trakt.title")} 802 + </p> 800 803 <p className="max-w-[30rem] font-medium"> 801 - Sync your watchlist and history with Trakt. 804 + {t("settings.connections.trakt.description")} 802 805 </p> 803 806 {error && <p className="text-type-danger mt-2">{error}</p>} 804 807 </div> ··· 816 819 <span className="font-bold">{user.name || user.username}</span> 817 820 </div> 818 821 <Button theme="danger" onClick={logout}> 819 - Disconnect 822 + {t("settings.connections.trakt.disconnect")} 820 823 </Button> 821 824 </div> 822 825 ) : ( ··· 825 828 onClick={connect} 826 829 disabled={status === "syncing"} 827 830 > 828 - {status === "syncing" ? "Syncing..." : "Connect Trakt"} 831 + {status === "syncing" 832 + ? t("settings.connections.trakt.syncing") 833 + : t("settings.connections.trakt.connect")} 829 834 </Button> 830 835 )} 831 836 </div>