From 78266cf2020eb037a799a175404e79ef0a772173 Mon Sep 17 00:00:00 2001 From: Jake Jarvis Date: Thu, 19 Mar 2026 15:06:02 -0400 Subject: [PATCH] feat(native): internationalize tab bar labels and improve recently-viewed row MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Wrap tab bar trigger labels and stack screen titles with `useLingui()` / `t` so they translate correctly across all 6 supported locales - Swap `IconDeviceTv` → `IconDeviceTvOld` in the recently-viewed badge to match the icon used elsewhere in the app - Show the type icon inside the pill badge and display a department label (Actor, Director, Writer, etc.) for person results instead of the generic "Person" / "TV" label - Suppress the subtitle row for person results (department is shown in the badge instead) - Merge the separate iOS/Android `headerTitleStyle` variables in `TabStack` into a single shared style - Mark `packages/i18n/src/po/*` as readonly/excluded in VS Code settings alongside `routeTree.gen.ts` - Extract and compile updated PO/TS catalogs for all locales (de, en, es, fr, it, pt) --- .vscode/settings.json | 9 +- .../src/app/(tabs)/(explore)/_layout.tsx | 5 +- apps/native/src/app/(tabs)/(home)/_layout.tsx | 5 +- .../src/app/(tabs)/(search)/_layout.tsx | 5 +- apps/native/src/app/(tabs)/(search)/index.tsx | 8 +- .../src/app/(tabs)/(settings)/_layout.tsx | 5 +- .../src/app/(tabs)/(settings)/index.tsx | 14 +- apps/native/src/app/_layout.tsx | 13 +- .../components/navigation/native-tab-bar.tsx | 10 +- .../src/components/navigation/tab-stack.tsx | 13 +- .../search/recently-viewed-row-content.tsx | 35 ++- packages/i18n/src/po/de.po | 236 +++++++++++------- packages/i18n/src/po/de.ts | 2 +- packages/i18n/src/po/en.po | 235 ++++++++++------- packages/i18n/src/po/en.ts | 2 +- packages/i18n/src/po/es.po | 236 +++++++++++------- packages/i18n/src/po/es.ts | 2 +- packages/i18n/src/po/fr.po | 236 +++++++++++------- packages/i18n/src/po/fr.ts | 2 +- packages/i18n/src/po/it.po | 236 +++++++++++------- packages/i18n/src/po/it.ts | 2 +- packages/i18n/src/po/pt.po | 236 +++++++++++------- packages/i18n/src/po/pt.ts | 2 +- 23 files changed, 942 insertions(+), 607 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index c47b9d2..9280856 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,13 +7,16 @@ "source.fixAll.oxlint": "explicit" }, "files.readonlyInclude": { - "**/routeTree.gen.ts": true + "**/routeTree.gen.ts": true, + "packages/i18n/src/po/*": true }, "files.watcherExclude": { - "**/routeTree.gen.ts": true + "**/routeTree.gen.ts": true, + "packages/i18n/src/po/*": true }, "search.exclude": { - "**/routeTree.gen.ts": true + "**/routeTree.gen.ts": true, + "packages/i18n/src/po/*": true }, "emmet.showExpandedAbbreviation": "never", "[javascript]": { diff --git a/apps/native/src/app/(tabs)/(explore)/_layout.tsx b/apps/native/src/app/(tabs)/(explore)/_layout.tsx index 5a6a3be..9440295 100644 --- a/apps/native/src/app/(tabs)/(explore)/_layout.tsx +++ b/apps/native/src/app/(tabs)/(explore)/_layout.tsx @@ -1,5 +1,8 @@ +import { useLingui } from "@lingui/react/macro"; + import { TabStack } from "@/components/navigation/tab-stack"; export default function ExploreLayout() { - return ; + const { t } = useLingui(); + return ; } diff --git a/apps/native/src/app/(tabs)/(home)/_layout.tsx b/apps/native/src/app/(tabs)/(home)/_layout.tsx index aa46328..1db6c64 100644 --- a/apps/native/src/app/(tabs)/(home)/_layout.tsx +++ b/apps/native/src/app/(tabs)/(home)/_layout.tsx @@ -1,5 +1,8 @@ +import { useLingui } from "@lingui/react/macro"; + import { TabStack } from "@/components/navigation/tab-stack"; export default function HomeLayout() { - return ; + const { t } = useLingui(); + return ; } diff --git a/apps/native/src/app/(tabs)/(search)/_layout.tsx b/apps/native/src/app/(tabs)/(search)/_layout.tsx index e027c1a..94ac7af 100644 --- a/apps/native/src/app/(tabs)/(search)/_layout.tsx +++ b/apps/native/src/app/(tabs)/(search)/_layout.tsx @@ -1,5 +1,8 @@ +import { useLingui } from "@lingui/react/macro"; + import { TabStack } from "@/components/navigation/tab-stack"; export default function SearchLayout() { - return ; + const { t } = useLingui(); + return ; } diff --git a/apps/native/src/app/(tabs)/(search)/index.tsx b/apps/native/src/app/(tabs)/(search)/index.tsx index 28dc96b..358929f 100644 --- a/apps/native/src/app/(tabs)/(search)/index.tsx +++ b/apps/native/src/app/(tabs)/(search)/index.tsx @@ -68,13 +68,7 @@ export default function SearchScreen() { const keyExtractor = useCallback((item: SearchResultItem) => `${item.type}-${item.id}`, []); return ( - - - Search + setQuery(e.nativeEvent.text)} diff --git a/apps/native/src/app/(tabs)/(settings)/_layout.tsx b/apps/native/src/app/(tabs)/(settings)/_layout.tsx index 74e6af4..c670598 100644 --- a/apps/native/src/app/(tabs)/(settings)/_layout.tsx +++ b/apps/native/src/app/(tabs)/(settings)/_layout.tsx @@ -1,5 +1,8 @@ +import { useLingui } from "@lingui/react/macro"; + import { TabStack } from "@/components/navigation/tab-stack"; export default function SettingsLayout() { - return ; + const { t } = useLingui(); + return ; } diff --git a/apps/native/src/app/(tabs)/(settings)/index.tsx b/apps/native/src/app/(tabs)/(settings)/index.tsx index 2995520..a0712be 100644 --- a/apps/native/src/app/(tabs)/(settings)/index.tsx +++ b/apps/native/src/app/(tabs)/(settings)/index.tsx @@ -58,8 +58,8 @@ import { activateLocale, type SupportedLocale } from "@sofa/i18n"; import { LOCALE_INFO } from "@sofa/i18n/locales"; const settingsContentContainerStyle = { - paddingTop: 8, - paddingBottom: 32, + paddingTop: 12, + paddingBottom: 24, paddingHorizontal: 16, }; @@ -535,17 +535,17 @@ export default function SettingsScreen() { Linking.openURL("https://github.com/jakejarvis/sofa")} - className="flex-row items-center gap-1.5 active:opacity-70" + className="flex-row items-center gap-1 active:opacity-70" > - GitHub + jakejarvis/sofa {/* TMDB Attribution */} Linking.openURL("https://www.themoviedb.org/")} @@ -553,8 +553,8 @@ export default function SettingsScreen() { > This product uses the TMDB API but is not endorsed or certified by TMDB. diff --git a/apps/native/src/app/_layout.tsx b/apps/native/src/app/_layout.tsx index 1dff117..03a1342 100644 --- a/apps/native/src/app/_layout.tsx +++ b/apps/native/src/app/_layout.tsx @@ -38,14 +38,9 @@ enableFreeze(true); initialize(); const localeReady = initLocale(); -export const unstable_settings = { - initialRouteName: "(tabs)", -}; - const changePasswordOptions = process.env.EXPO_OS === "ios" ? { - headerShown: true, presentation: "formSheet" as const, sheetAllowedDetents: "fitToContents" as const, sheetGrabberVisible: true, @@ -54,7 +49,6 @@ const changePasswordOptions = headerBlurEffect: "none" as const, } : { - headerShown: true, presentation: "modal" as const, headerLargeTitle: false, headerTransparent: false, @@ -89,7 +83,7 @@ function AppContent() { // distinct ID, but only when the resolved state is actually enabled // (respects both ATT result and the user's settings override). if (enabled && posthog) { - const advertisingId = await getAdvertisingId(); + const advertisingId = getAdvertisingId(); if (advertisingId) { posthog.identify(advertisingId); } @@ -132,13 +126,12 @@ function AppContent() { - + diff --git a/apps/native/src/components/navigation/native-tab-bar.tsx b/apps/native/src/components/navigation/native-tab-bar.tsx index d6a0719..cfe2561 100644 --- a/apps/native/src/components/navigation/native-tab-bar.tsx +++ b/apps/native/src/components/navigation/native-tab-bar.tsx @@ -1,8 +1,10 @@ +import { useLingui } from "@lingui/react/macro"; import * as Haptics from "expo-haptics"; import { NativeTabs } from "expo-router/unstable-native-tabs"; import { useCSSVariable } from "uniwind"; export function NativeTabBar({ showSettingsBadge }: { showSettingsBadge: boolean }) { + const { t } = useLingui(); const mutedFgColor = useCSSVariable("--color-muted-foreground") as string; const primaryColor = useCSSVariable("--color-primary") as string; @@ -23,20 +25,20 @@ export function NativeTabBar({ showSettingsBadge }: { showSettingsBadge: boolean })} > - Home + {t`Home`} - Explore + {t`Explore`} - Settings + {t`Settings`} {showSettingsBadge ? ! : null} - Search + {t`Search`} diff --git a/apps/native/src/components/navigation/tab-stack.tsx b/apps/native/src/components/navigation/tab-stack.tsx index ba5f8a0..11ee2ad 100644 --- a/apps/native/src/components/navigation/tab-stack.tsx +++ b/apps/native/src/components/navigation/tab-stack.tsx @@ -8,11 +8,8 @@ export function TabStack({ title, children }: { title?: string; children?: React const contentStyle = useResolveClassNames("bg-background"); const tintColor = useCSSVariable("--color-primary") as string; const backgroundColor = useCSSVariable("--color-background") as string; - const iosHeaderLargeTitleStyle = useResolveClassNames("font-display text-foreground"); - const iosHeaderTitleStyle = useResolveClassNames("font-display text-foreground text-lg"); - const androidHeaderTitleStyle = useResolveClassNames( - "text-foreground font-sans text-lg font-semibold", - ); + const headerTitleStyle = useResolveClassNames("font-display text-foreground text-xl"); + const headerLargeTitleStyle = useResolveClassNames("font-display text-foreground"); if (process.env.EXPO_OS === "ios") { return ( @@ -41,8 +38,8 @@ export function TabStack({ title, children }: { title?: string; children?: React /> } - largeStyle={iosHeaderLargeTitleStyle as Record} + style={headerTitleStyle as Record} + largeStyle={headerLargeTitleStyle as Record} > {title} @@ -71,7 +68,7 @@ export function TabStack({ title, children }: { title?: string; children?: React shadowColor: "transparent", }} /> - }> + }> {title} diff --git a/apps/native/src/components/search/recently-viewed-row-content.tsx b/apps/native/src/components/search/recently-viewed-row-content.tsx index 6118545..13669fd 100644 --- a/apps/native/src/components/search/recently-viewed-row-content.tsx +++ b/apps/native/src/components/search/recently-viewed-row-content.tsx @@ -1,5 +1,5 @@ import { useLingui } from "@lingui/react/macro"; -import { IconDeviceTv, IconMovie, IconUser } from "@tabler/icons-react-native"; +import { IconDeviceTvOld, IconMovie, IconUser } from "@tabler/icons-react-native"; import { View } from "react-native"; import { useCSSVariable } from "uniwind"; @@ -9,23 +9,29 @@ import type { RecentlyViewedItem } from "@/lib/recently-viewed"; const TypeIcon = { movie: IconMovie, - tv: IconDeviceTv, + tv: IconDeviceTvOld, person: IconUser, } as const; -function getTypeLabel(t: (strings: TemplateStringsArray, ...values: unknown[]) => string) { - return { - movie: t`Movie`, - tv: t`TV`, - person: t`Person`, - } as const; -} - export function RecentlyViewedRowContent({ item }: { item: RecentlyViewedItem }) { const { t } = useLingui(); const mutedForeground = useCSSVariable("--color-muted-foreground") as string; const Icon = TypeIcon[item.type]; + const typeLabel: Record = { + movie: t`Movie`, + tv: t`TV`, + person: t`Person`, + }; + + const departmentLabels: Record = { + Acting: t`Actor`, + Directing: t`Director`, + Writing: t`Writer`, + Production: t`Producer`, + Editing: t`Editor`, + }; + return ( - + + - {getTypeLabel(t)[item.type]} + {item.type === "person" + ? departmentLabels[item.subtitle ?? ""] + : typeLabel[item.type]} - {item.subtitle ? ( + {item.type !== "person" && item.subtitle ? ( {item.subtitle} ) : null} diff --git a/packages/i18n/src/po/de.po b/packages/i18n/src/po/de.po index fd8cf7c..30757fd 100644 --- a/packages/i18n/src/po/de.po +++ b/packages/i18n/src/po/de.po @@ -24,12 +24,12 @@ msgid "...and {0} more" msgstr "...und {0} weitere" #. placeholder {0}: systemHealth.data.imageCache.imageCount -#: apps/native/src/app/(tabs)/(settings)/index.tsx:456 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:438 msgid "{0, plural, one {# image} other {# images}}" msgstr "{0, plural, one {# Bild} other {# Bilder}}" #. placeholder {0}: systemHealth.data.database.titleCount -#: apps/native/src/app/(tabs)/(settings)/index.tsx:442 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:424 msgid "{0, plural, one {# title} other {# titles}}" msgstr "{0, plural, one {# Titel} other {# Titel}}" @@ -44,12 +44,12 @@ msgstr "{0} {1, plural, one {Backup} other {Backups}} gespeichert" #~ msgstr "{0} backup{1} stored" #. placeholder {0}: backups.backupCount -#: apps/web/src/components/settings/system-health-section.tsx:599 +#: apps/web/src/components/settings/system-health-section.tsx:593 msgid "{0} backups · last <0/>" msgstr "{0} Backups · zuletzt <0/>" #. placeholder {0}: imageCache.imageCount.toLocaleString() -#: apps/web/src/components/settings/system-health-section.tsx:569 +#: apps/web/src/components/settings/system-health-section.tsx:563 msgid "{0} cached images" msgstr "{0} gecachte Bilder" @@ -157,6 +157,8 @@ msgstr "Konto" msgid "Actions" msgstr "Aktionen" +#: apps/native/src/app/person/[id].tsx:50 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:28 #: apps/web/src/components/people/person-hero.tsx:69 msgid "Actor" msgstr "Schauspieler" @@ -200,18 +202,18 @@ msgid "Added to watchlist" msgstr "Zur Merkliste hinzugefügt" #: apps/native/src/app/(tabs)/(settings)/index.tsx:342 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:431 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:470 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:413 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:452 #: apps/web/src/components/nav-bar.tsx:223 #: apps/web/src/components/settings/account-section.tsx:309 msgid "Admin" msgstr "" -#: apps/web/src/routes/_app/settings.tsx:118 +#: apps/web/src/routes/_app/settings.tsx:154 msgid "Admin only" msgstr "Nur für Admins" -#: apps/native/src/app/person/[id].tsx:267 +#: apps/native/src/app/person/[id].tsx:249 #: apps/web/src/components/people/person-hero.tsx:89 msgid "age {age}" msgstr "Alter {age}" @@ -233,15 +235,15 @@ msgstr "Bereits ein Konto?" msgid "Already have an account? Sign in" msgstr "Bereits ein Konto? Anmelden" -#: apps/web/src/routes/__root.tsx:143 +#: apps/web/src/routes/__root.tsx:142 msgid "An unexpected error occurred while loading this page. You can try again or head back to the dashboard." msgstr "Beim Laden dieser Seite ist ein unerwarteter Fehler aufgetreten. Du kannst es erneut versuchen oder zum Dashboard zurückkehren." -#: apps/native/src/app/(tabs)/(settings)/index.tsx:407 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:389 msgid "Anonymous usage reporting" msgstr "Anonyme Nutzungsberichte" -#: apps/web/src/routes/_app/settings.tsx:99 +#: apps/web/src/routes/_app/settings.tsx:135 msgid "App Settings" msgstr "App-Einstellungen" @@ -307,8 +309,8 @@ msgstr "Backup gelöscht" msgid "Backup schedule" msgstr "Backup-Zeitplan" -#: apps/web/src/components/settings/system-health-section.tsx:589 -#: apps/web/src/routes/_app/settings.tsx:154 +#: apps/web/src/components/settings/system-health-section.tsx:583 +#: apps/web/src/routes/_app/settings.tsx:190 msgid "Backups" msgstr "" @@ -354,7 +356,7 @@ msgstr "Abbrechen" msgid "Cancel editing" msgstr "Bearbeitung abbrechen" -#: apps/native/src/app/title/[id].tsx:489 +#: apps/native/src/app/title/[id].tsx:493 #: apps/web/src/components/titles/cast-carousel.tsx:21 msgid "Cast" msgstr "Besetzung" @@ -392,7 +394,7 @@ msgstr "Server wechseln" msgid "Check configuration" msgstr "Konfiguration prüfen" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:483 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:465 msgid "Check for updates" msgstr "Nach Updates suchen" @@ -420,7 +422,7 @@ msgstr "Wähle aus, wie du deine {0}-Daten importieren möchtest." msgid "Clear" msgstr "Löschen" -#: apps/web/src/components/command-palette.tsx:302 +#: apps/web/src/components/command-palette.tsx:297 msgid "Clear all" msgstr "Alle löschen" @@ -447,11 +449,12 @@ msgstr "Klicke auf <0>+ und wähle <1>Custom Lists" msgid "Click <0>Add Webhook and paste the URL above" msgstr "Klicke auf <0>Add Webhook und füge die URL oben ein" -#: apps/native/src/components/navigation/modal-stack-header.tsx:14 +#: apps/native/src/components/navigation/modal-layout.tsx:26 +#: apps/native/src/components/navigation/modal-layout.tsx:38 msgid "Close" msgstr "Schließen" -#: apps/native/src/app/(tabs)/(home)/index.tsx:54 +#: apps/native/src/app/(tabs)/(home)/index.tsx:146 #: apps/native/src/components/titles/status-action-button.tsx:45 #: apps/web/src/components/dashboard/stats-display.tsx:219 #: apps/web/src/components/title-card.tsx:74 @@ -492,7 +495,7 @@ msgid "Connect with {0}" msgstr "Mit {0} verbinden" #: apps/native/src/app/(auth)/server-url.tsx:176 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:449 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:431 #: apps/web/src/components/settings/system-health-section.tsx:236 msgid "Connected" msgstr "Verbunden" @@ -521,7 +524,7 @@ msgstr "Verbinde..." msgid "Continue" msgstr "Weiter" -#: apps/native/src/app/(tabs)/(home)/index.tsx:99 +#: apps/native/src/app/(tabs)/(home)/index.tsx:161 #: apps/web/src/components/dashboard/continue-watching-section.tsx:22 msgid "Continue Watching" msgstr "Weiterschauen" @@ -542,7 +545,7 @@ msgstr "URL kopieren" msgid "Could not load integrations" msgstr "Integrationen konnten nicht geladen werden" -#: apps/native/src/app/person/[id].tsx:185 +#: apps/native/src/app/person/[id].tsx:172 msgid "Could not load person details" msgstr "Personendetails konnten nicht geladen werden" @@ -576,18 +579,18 @@ msgstr "Aktuelles Passwort" msgid "Current password is required" msgstr "Aktuelles Passwort ist erforderlich" -#: apps/web/src/routes/_app/settings.tsx:180 +#: apps/web/src/routes/_app/settings.tsx:216 msgid "Danger Zone" msgstr "Gefahrenzone" -#: apps/web/src/routes/__root.tsx:164 +#: apps/web/src/routes/__root.tsx:163 #: apps/web/src/routes/_app/people.$id.tsx:76 #: apps/web/src/routes/_app/titles.$id.tsx:119 #: apps/web/src/routes/_app/titles.$id.tsx:165 msgid "Dashboard" msgstr "" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:439 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:421 #: apps/web/src/components/settings/system-health-section.tsx:210 msgid "Database" msgstr "Datenbank" @@ -627,17 +630,19 @@ msgstr "{0, plural, one {# Datei} other {# Dateien}} gelöscht, {freed} freigege msgid "Device code expired. Please try again." msgstr "Gerätecode abgelaufen. Bitte versuche es erneut." -#: apps/native/src/app/person/[id].tsx:267 +#: apps/native/src/app/person/[id].tsx:249 #: apps/web/src/components/people/person-hero.tsx:89 msgid "died at {age}" msgstr "gestorben mit {age}" +#: apps/native/src/app/person/[id].tsx:51 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:29 #: apps/web/src/components/people/person-hero.tsx:71 msgid "Director" msgstr "Regisseur" #: apps/web/src/components/settings/system-health-section.tsx:394 -#: apps/web/src/components/settings/system-health-section.tsx:580 +#: apps/web/src/components/settings/system-health-section.tsx:574 msgid "Disabled" msgstr "Deaktiviert" @@ -680,6 +685,8 @@ msgstr "Herunterladen" msgid "Download backup" msgstr "Backup herunterladen" +#: apps/native/src/app/person/[id].tsx:54 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:32 #: apps/web/src/components/people/person-hero.tsx:77 msgid "Editor" msgstr "Cutter" @@ -748,6 +755,11 @@ msgstr "Episode als gesehen markiert" msgid "Episodes" msgstr "Episoden" +#. placeholder {0}: periodLabels[episodePeriod] +#: apps/native/src/app/(tabs)/(home)/index.tsx:125 +msgid "Episodes {0}" +msgstr "" + #: apps/web/src/components/dashboard/stats-display.tsx:162 #~ msgid "Episodes {periodSelect}" #~ msgstr "Episodes {periodSelect}" @@ -757,8 +769,8 @@ msgid "Episodes {select}" msgstr "Episoden {select}" #: apps/native/src/app/(tabs)/(home)/index.tsx:52 -msgid "Episodes this week" -msgstr "Episoden diese Woche" +#~ msgid "Episodes this week" +#~ msgstr "Episoden diese Woche" #: apps/native/src/app/change-password.tsx:67 #: apps/native/src/app/change-password.tsx:77 @@ -770,7 +782,9 @@ msgstr "Fehler" msgid "Errors ({0})" msgstr "Fehler ({0})" -#: apps/native/src/app/(tabs)/(home)/index.tsx:127 +#: apps/native/src/app/(tabs)/(explore)/_layout.tsx:7 +#: apps/native/src/app/(tabs)/(home)/index.tsx:189 +#: apps/native/src/components/navigation/native-tab-bar.tsx:32 #: apps/web/src/components/nav-bar.tsx:116 #: apps/web/src/components/nav-bar.tsx:277 msgid "Explore" @@ -959,7 +973,7 @@ msgstr "Profilbild konnte nicht hochgeladen werden" msgid "Fetching your library data from {source}..." msgstr "Bibliotheksdaten werden von {source} abgerufen..." -#: apps/native/src/app/person/[id].tsx:296 +#: apps/native/src/app/person/[id].tsx:279 #: apps/web/src/components/people/filmography-grid.tsx:67 msgid "Filmography" msgstr "Filmografie" @@ -988,9 +1002,9 @@ msgstr "Freitag" msgid "Get Started" msgstr "Loslegen" -#: apps/native/src/app/person/[id].tsx:189 -#: apps/native/src/app/person/[id].tsx:213 -#: apps/native/src/app/title/[id].tsx:239 +#: apps/native/src/app/person/[id].tsx:176 +#: apps/native/src/app/person/[id].tsx:196 +#: apps/native/src/app/title/[id].tsx:235 msgid "Go back" msgstr "Zurück" @@ -1002,7 +1016,7 @@ msgstr "Zur Startseite" msgid "Go to <0>Dashboard > Plugins > Webhook" msgstr "Gehe zu <0>Dashboard > Plugins > Webhook" -#: apps/web/src/components/command-palette.tsx:345 +#: apps/web/src/components/command-palette.tsx:339 msgid "Go to Dashboard" msgstr "Zum Dashboard" @@ -1010,7 +1024,7 @@ msgstr "Zum Dashboard" msgid "Go to Dashboard > Plugins > Webhook" msgstr "Gehe zu Dashboard > Plugins > Webhook" -#: apps/web/src/components/command-palette.tsx:356 +#: apps/web/src/components/command-palette.tsx:349 msgid "Go to Explore" msgstr "Zum Entdecken" @@ -1022,21 +1036,23 @@ msgstr "Systemstatus" msgid "Here's what's happening with your library" msgstr "Das passiert in deiner Bibliothek" +#: apps/native/src/app/(tabs)/(home)/_layout.tsx:7 +#: apps/native/src/components/navigation/native-tab-bar.tsx:28 #: apps/web/src/components/nav-bar.tsx:115 #: apps/web/src/components/nav-bar.tsx:276 msgid "Home" msgstr "Startseite" #: apps/web/src/components/settings/system-health-section.tsx:308 -#: apps/web/src/components/settings/system-health-section.tsx:558 +#: apps/web/src/components/settings/system-health-section.tsx:552 msgid "Image cache" msgstr "Bild-Cache" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:453 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:435 msgid "Image Cache" msgstr "Bild-Cache" -#: apps/web/src/components/settings/system-health-section.tsx:546 +#: apps/web/src/components/settings/system-health-section.tsx:540 msgid "Image cache and backup disk usage" msgstr "Speichernutzung für Bild-Cache und Backups" @@ -1088,7 +1104,7 @@ msgstr "{0} Einträge von {1} importiert" msgid "Importing from {source}" msgstr "Importiere von {source}" -#: apps/native/src/app/(tabs)/(home)/index.tsx:53 +#: apps/native/src/app/(tabs)/(home)/index.tsx:138 msgid "In library" msgstr "In Bibliothek" @@ -1096,7 +1112,7 @@ msgstr "In Bibliothek" msgid "In Library" msgstr "In Bibliothek" -#: apps/native/src/app/(tabs)/(home)/index.tsx:117 +#: apps/native/src/app/(tabs)/(home)/index.tsx:179 #: apps/web/src/components/dashboard/library-section.tsx:35 msgid "In Your Library" msgstr "In deiner Bibliothek" @@ -1132,13 +1148,13 @@ msgstr "Aufgabe" msgid "Keeping <0><1><2>{0}<3>{1} backups." msgstr "<0><1><2>{0}<3>{1} Backups werden aufbewahrt." -#: apps/web/src/components/command-palette.tsx:366 -#: apps/web/src/components/command-palette.tsx:381 +#: apps/web/src/components/command-palette.tsx:359 +#: apps/web/src/components/command-palette.tsx:374 msgid "Keyboard Shortcuts" msgstr "Tastaturkürzel" #: apps/native/src/app/(tabs)/(settings)/index.tsx:383 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:391 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:506 #: apps/web/src/components/settings/language-section.tsx:34 msgid "Language" msgstr "Sprache" @@ -1264,15 +1280,16 @@ msgstr "Mitglied seit {memberSince}" msgid "Monday" msgstr "Montag" -#: apps/native/src/app/title/[id].tsx:508 +#: apps/native/src/app/title/[id].tsx:512 msgid "More Like This" msgstr "Ähnliche Titel" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:506 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:488 msgid "More Settings" msgstr "Weitere Einstellungen" -#: apps/native/src/app/title/[id].tsx:337 +#: apps/native/src/app/title/[id].tsx:333 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:22 #: apps/native/src/components/search/search-result-row.tsx:34 #: apps/native/src/components/search/search-result-row.tsx:81 #: apps/web/src/components/explore/hero-banner.tsx:54 @@ -1285,6 +1302,11 @@ msgstr "Film" msgid "Movies" msgstr "Filme" +#. placeholder {0}: periodLabels[moviePeriod] +#: apps/native/src/app/(tabs)/(home)/index.tsx:114 +msgid "Movies {0}" +msgstr "" + #: apps/web/src/components/dashboard/stats-display.tsx:161 #~ msgid "Movies {periodSelect}" #~ msgstr "Movies {periodSelect}" @@ -1294,8 +1316,8 @@ msgid "Movies {select}" msgstr "Filme {select}" #: apps/native/src/app/(tabs)/(home)/index.tsx:51 -msgid "Movies this month" -msgstr "Filme diesen Monat" +#~ msgid "Movies this month" +#~ msgstr "Filme diesen Monat" #: apps/native/src/app/(auth)/register.tsx:111 #: apps/web/src/components/auth-form.tsx:173 @@ -1311,7 +1333,7 @@ msgstr "Name aktualisiert" msgid "Need more help?" msgstr "Brauchst du mehr Hilfe?" -#: apps/web/src/components/settings/system-health-section.tsx:456 +#: apps/web/src/components/settings/system-health-section.tsx:453 msgid "Never" msgstr "Nie" @@ -1358,7 +1380,7 @@ msgid "Next run" msgstr "Nächster Lauf" #: apps/web/src/components/settings/backup-section.tsx:99 -#: apps/web/src/components/settings/system-health-section.tsx:607 +#: apps/web/src/components/settings/system-health-section.tsx:601 msgid "No backups yet" msgstr "Noch keine Backups" @@ -1368,11 +1390,11 @@ msgstr "Noch keine Backups" msgid "No internet connection" msgstr "Keine Internetverbindung" -#: apps/native/src/app/(tabs)/(search)/index.tsx:100 +#: apps/native/src/app/(tabs)/(search)/index.tsx:94 msgid "No results for \"{debouncedQuery}\"" msgstr "Keine Ergebnisse für \"{debouncedQuery}\"" -#: apps/web/src/components/command-palette.tsx:212 +#: apps/web/src/components/command-palette.tsx:207 msgid "No results found." msgstr "Keine Ergebnisse gefunden." @@ -1411,7 +1433,7 @@ msgstr "Öffne Emby, gehe zu <0>Settings > Webhooks" msgid "Open Emby, go to Settings > Webhooks" msgstr "Öffne Emby, gehe zu Settings > Webhooks" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:513 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:495 msgid "Open in browser…" msgstr "Im Browser öffnen..." @@ -1431,7 +1453,7 @@ msgstr "Öffne Radarr, gehe zu <0>Settings > Import Lists" msgid "Open Radarr, go to Settings > Import Lists" msgstr "Öffne Radarr, gehe zu Settings > Import Lists" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:472 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:454 #: apps/web/src/components/settings/registration-section.tsx:51 msgid "Open registration" msgstr "Offene Registrierung" @@ -1489,12 +1511,13 @@ msgstr "Füge die obige Sonarr-URL in das Feld \"List URL\" ein" msgid "Periodically check GitHub for new Sofa releases" msgstr "GitHub regelmäßig auf neue Sofa-Versionen prüfen" +#: apps/native/src/components/search/recently-viewed-row-content.tsx:24 #: apps/native/src/components/search/search-result-row.tsx:34 #: apps/native/src/components/search/search-result-row.tsx:81 msgid "Person" msgstr "" -#: apps/native/src/app/person/[id].tsx:209 +#: apps/native/src/app/person/[id].tsx:192 #: apps/web/src/routes/_app/people.$id.tsx:50 msgid "Person not found" msgstr "Person nicht gefunden" @@ -1504,12 +1527,12 @@ msgid "Play trailer" msgstr "Trailer abspielen" #: apps/native/src/app/(tabs)/(explore)/index.tsx:89 -#: apps/web/src/components/explore/explore-client.tsx:120 +#: apps/web/src/routes/_app/explore.tsx:141 msgid "Popular Movies" msgstr "Beliebte Filme" #: apps/native/src/app/(tabs)/(explore)/index.tsx:102 -#: apps/web/src/components/explore/explore-client.tsx:130 +#: apps/web/src/routes/_app/explore.tsx:151 msgid "Popular TV Shows" msgstr "Beliebte Serien" @@ -1517,6 +1540,8 @@ msgstr "Beliebte Serien" msgid "Pre-restore backup" msgstr "Backup vor Wiederherstellung" +#: apps/native/src/app/person/[id].tsx:53 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:31 #: apps/web/src/components/people/person-hero.tsx:75 msgid "Producer" msgstr "Produzent" @@ -1577,7 +1602,7 @@ msgstr "{0, plural, one {# Titel} other {# Titel}}, {1, plural, one {# Person} o msgid "Purging..." msgstr "Leere..." -#: apps/web/src/components/command-palette.tsx:336 +#: apps/web/src/components/command-palette.tsx:331 msgid "Quick Actions" msgstr "Schnellaktionen" @@ -1633,7 +1658,7 @@ msgstr "Bereit - noch nicht abgefragt" msgid "Ready — nothing received yet" msgstr "Bereit - noch nichts empfangen" -#: apps/web/src/components/command-palette.tsx:295 +#: apps/web/src/components/command-palette.tsx:290 msgid "Recent Searches" msgstr "Letzte Suchen" @@ -1650,7 +1675,7 @@ msgstr "Empfehlungen" msgid "Recommended" msgstr "Empfohlen" -#: apps/native/src/app/(tabs)/(home)/index.tsx:137 +#: apps/native/src/app/(tabs)/(home)/index.tsx:199 #: apps/web/src/components/dashboard/recommendations-section.tsx:22 msgid "Recommended for You" msgstr "Für dich empfohlen" @@ -1770,7 +1795,7 @@ msgstr "Wiederherstellung fehlgeschlagen" msgid "Restoring…" msgstr "Stelle wieder her..." -#: apps/web/src/components/command-palette.tsx:217 +#: apps/web/src/components/command-palette.tsx:212 msgid "Results" msgstr "Ergebnisse" @@ -1781,11 +1806,11 @@ msgstr "Verlauf, Merkliste und Bewertungen werden abgerufen..." #: apps/native/src/components/settings/integrations-section.tsx:39 #: apps/native/src/components/ui/server-unreachable-banner.ios.tsx:71 #: apps/native/src/components/ui/server-unreachable-banner.tsx:79 -#: apps/web/src/lib/orpc/client.ts:17 +#: apps/web/src/lib/orpc/client.ts:24 msgid "Retry" msgstr "Erneut versuchen" -#: apps/web/src/routes/__root.tsx:116 +#: apps/web/src/routes/__root.tsx:115 msgid "Return home" msgstr "Zur Startseite" @@ -1793,7 +1818,7 @@ msgstr "Zur Startseite" msgid "Review what was found and choose what to import." msgstr "Überprüfe die gefundenen Einträge und wähle aus, was importiert werden soll." -#: apps/web/src/components/settings/system-health-section.tsx:509 +#: apps/web/src/components/settings/system-health-section.tsx:503 msgid "Run now" msgstr "Jetzt ausführen" @@ -1809,7 +1834,7 @@ msgstr "Speichern" msgid "Save name" msgstr "Namen speichern" -#: apps/web/src/routes/__root.tsx:98 +#: apps/web/src/routes/__root.tsx:97 msgid "Scene not found" msgstr "Szene nicht gefunden" @@ -1833,6 +1858,11 @@ msgstr "Geplante Backups deaktiviert" msgid "Scheduled backups enabled" msgstr "Geplante Backups aktiviert" +#: apps/native/src/app/(tabs)/(search)/_layout.tsx:7 +#: apps/native/src/components/navigation/native-tab-bar.tsx:41 +msgid "Search" +msgstr "" + #: apps/web/src/components/dashboard/stats-section.tsx:35 msgid "Search for movies and TV shows to start tracking" msgstr "Suche nach Filmen und Serien, um mit dem Tracken zu beginnen" @@ -1842,15 +1872,15 @@ msgstr "Suche nach Filmen und Serien, um mit dem Tracken zu beginnen" msgid "Search for movies, shows, or people" msgstr "Suche nach Filmen, Serien oder Personen" -#: apps/web/src/components/command-palette.tsx:182 +#: apps/web/src/components/command-palette.tsx:177 msgid "Search for movies, TV shows, or run commands" msgstr "Nach Filmen, Serien suchen oder Befehle ausführen" -#: apps/web/src/components/command-palette.tsx:191 +#: apps/web/src/components/command-palette.tsx:186 msgid "Search movies & TV shows…" msgstr "Filme & Serien suchen..." -#: apps/native/src/app/(tabs)/(search)/index.tsx:79 +#: apps/native/src/app/(tabs)/(search)/index.tsx:73 msgid "Search movies, shows, people..." msgstr "Filme, Serien, Personen suchen..." @@ -1872,12 +1902,12 @@ msgstr "Staffel {0}" msgid "Season watched" msgstr "Staffel als gesehen markiert" -#: apps/native/src/app/title/[id].tsx:473 +#: apps/native/src/app/title/[id].tsx:477 msgid "Seasons" msgstr "Staffeln" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:470 -#: apps/web/src/routes/_app/settings.tsx:131 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:452 +#: apps/web/src/routes/_app/settings.tsx:167 msgid "Security" msgstr "Sicherheit" @@ -1885,11 +1915,11 @@ msgstr "Sicherheit" msgid "Self-hosted movie & TV tracker" msgstr "Selbstgehosteter Film- & Serien-Tracker" -#: apps/web/src/routes/_app/settings.tsx:115 +#: apps/web/src/routes/_app/settings.tsx:151 msgid "Server" msgstr "" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:431 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:413 msgid "Server Health" msgstr "Server-Status" @@ -1908,7 +1938,9 @@ msgstr "Passwort festlegen" msgid "Set your preferred quality profile and root folder" msgstr "Bevorzugtes Qualitätsprofil und Stammordner festlegen" +#: apps/native/src/app/(tabs)/(settings)/_layout.tsx:7 #: apps/native/src/components/header-avatar.tsx:55 +#: apps/native/src/components/navigation/native-tab-bar.tsx:36 #: apps/web/src/components/nav-bar.tsx:236 #: apps/web/src/components/nav-bar.tsx:278 #: apps/web/src/components/settings/settings-shell.tsx:30 @@ -1999,9 +2031,9 @@ msgid "Sofa will automatically log movies and episodes when you finish watching msgstr "Sofa protokolliert Filme und Episoden automatisch, wenn du sie zu Ende gesehen hast" #: apps/native/src/app/change-password.tsx:77 -#: apps/native/src/app/person/[id].tsx:182 +#: apps/native/src/app/person/[id].tsx:169 #: apps/web/src/components/settings/account-section.tsx:391 -#: apps/web/src/routes/__root.tsx:140 +#: apps/web/src/routes/__root.tsx:139 msgid "Something went wrong" msgstr "Etwas ist schiefgelaufen" @@ -2010,7 +2042,7 @@ msgid "Something went wrong while loading this title. Please try again." msgstr "Beim Laden dieses Titels ist etwas schiefgelaufen. Bitte versuche es erneut." #: apps/native/src/lib/query-client.ts:33 -#: apps/web/src/lib/orpc/client.ts:15 +#: apps/web/src/lib/orpc/client.ts:22 msgid "Something went wrong…" msgstr "Etwas ist schiefgelaufen..." @@ -2022,7 +2054,7 @@ msgstr "Sonarr-Listen-URL" msgid "Start exploring" msgstr "Jetzt entdecken" -#: apps/native/src/app/(tabs)/(home)/index.tsx:126 +#: apps/native/src/app/(tabs)/(home)/index.tsx:188 msgid "Start tracking movies and shows" msgstr "Filme und Serien tracken" @@ -2042,7 +2074,7 @@ msgstr "Import wird gestartet..." msgid "Status updated" msgstr "Status aktualisiert" -#: apps/web/src/components/settings/system-health-section.tsx:543 +#: apps/web/src/components/settings/system-health-section.tsx:537 msgid "Storage" msgstr "Speicher" @@ -2075,20 +2107,30 @@ msgstr "Der gesuchte Titel existiert nicht oder wurde möglicherweise aus der Da msgid "This may take a few minutes for large libraries. Please don't close this tab." msgstr "Dies kann bei großen Bibliotheken einige Minuten dauern. Bitte schließe diesen Tab nicht." +#: apps/native/src/app/(tabs)/(home)/index.tsx:89 +msgid "this month" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:31 #: apps/web/src/components/dashboard/stats-display.tsx:135 msgid "This Month" msgstr "Diesen Monat" -#: apps/web/src/routes/__root.tsx:101 +#: apps/web/src/routes/__root.tsx:100 msgid "This page was left on the cutting room floor. It may have been moved, removed, or never made it past the screenplay." msgstr "Diese Seite ist auf dem Schneidetisch gelandet. Sie wurde möglicherweise verschoben, entfernt oder hat es nie über das Drehbuch hinaus geschafft." -#: apps/native/src/app/(tabs)/(settings)/index.tsx:557 -#: apps/web/src/routes/_app/settings.tsx:76 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:559 +#: apps/web/src/routes/_app/settings.tsx:112 #: apps/web/src/routes/setup.tsx:180 msgid "This product uses the TMDB API but is not endorsed or certified by TMDB." msgstr "Dieses Produkt verwendet die TMDB-API, wird jedoch nicht von TMDB unterstützt oder zertifiziert." +#: apps/native/src/app/(tabs)/(home)/index.tsx:88 +msgid "this week" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:30 #: apps/web/src/components/dashboard/stats-display.tsx:134 msgid "This Week" msgstr "Diese Woche" @@ -2127,6 +2169,11 @@ msgstr "Dadurch werden alle Einträge aus deinem Verlauf entfernt." msgid "This will replace your entire database with the uploaded file. A safety backup of your current data will be created first. Active sessions may need to refresh after restore." msgstr "Dadurch wird deine gesamte Datenbank durch die hochgeladene Datei ersetzt. Zuerst wird ein Sicherheits-Backup deiner aktuellen Daten erstellt. Aktive Sitzungen müssen nach der Wiederherstellung möglicherweise neu geladen werden." +#: apps/native/src/app/(tabs)/(home)/index.tsx:90 +msgid "this year" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:32 #: apps/web/src/components/dashboard/stats-display.tsx:136 msgid "This Year" msgstr "Dieses Jahr" @@ -2139,7 +2186,7 @@ msgstr "Donnerstag" msgid "Time:" msgstr "Uhrzeit:" -#: apps/native/src/app/title/[id].tsx:235 +#: apps/native/src/app/title/[id].tsx:231 #: apps/web/src/routes/_app/titles.$id.tsx:139 msgid "Title not found" msgstr "Titel nicht gefunden" @@ -2154,6 +2201,11 @@ msgstr "Titel auf deiner Sofa-Merkliste werden automatisch zum Download hinzugef msgid "Titles on your Sofa watchlist will be automatically added for download when Sonarr polls this list (every 6 hours by default)" msgstr "Titel auf deiner Sofa-Merkliste werden automatisch zum Download hinzugefügt, wenn Sonarr diese Liste abruft (standardmäßig alle 6 Stunden)" +#: apps/native/src/app/(tabs)/(home)/index.tsx:87 +msgid "today" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:29 #: apps/web/src/components/dashboard/stats-display.tsx:133 msgid "Today" msgstr "Heute" @@ -2184,15 +2236,15 @@ msgid "Trending today" msgstr "Heute im Trend" #: apps/native/src/app/(tabs)/(explore)/index.tsx:77 -#: apps/web/src/components/explore/explore-client.tsx:108 +#: apps/web/src/routes/_app/explore.tsx:129 msgid "Trending Today" msgstr "Heute im Trend" -#: apps/web/src/components/settings/system-health-section.tsx:488 +#: apps/web/src/components/settings/system-health-section.tsx:482 msgid "Trigger job" msgstr "Aufgabe auslösen" -#: apps/web/src/routes/__root.tsx:156 +#: apps/web/src/routes/__root.tsx:155 msgid "Try again" msgstr "Erneut versuchen" @@ -2200,7 +2252,8 @@ msgstr "Erneut versuchen" msgid "Tuesday" msgstr "Dienstag" -#: apps/native/src/app/title/[id].tsx:337 +#: apps/native/src/app/title/[id].tsx:333 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:23 #: apps/native/src/components/search/search-result-row.tsx:81 #: apps/web/src/components/explore/hero-banner.tsx:59 #: apps/web/src/components/people/filmography-grid.tsx:58 @@ -2216,7 +2269,7 @@ msgstr "TV-Episoden" msgid "TV show" msgstr "Serie" -#: apps/web/src/components/settings/system-health-section.tsx:601 +#: apps/web/src/components/settings/system-health-section.tsx:595 msgid "unknown" msgstr "unbekannt" @@ -2252,7 +2305,7 @@ msgid "Up next" msgstr "Als Nächstes" #. placeholder {0}: updateCheck.data.updateCheck.latestVersion -#: apps/native/src/app/(tabs)/(settings)/index.tsx:496 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:478 msgid "Update available: {0}" msgstr "Update verfügbar: {0}" @@ -2396,7 +2449,7 @@ msgstr "Willkommen zurück" msgid "Welcome back, {name}" msgstr "Willkommen zurück, {name}" -#: apps/native/src/app/title/[id].tsx:430 +#: apps/native/src/app/title/[id].tsx:431 #: apps/web/src/components/titles/title-availability.tsx:130 msgid "Where to Watch" msgstr "Wo ansehen" @@ -2405,6 +2458,8 @@ msgstr "Wo ansehen" msgid "With Ads" msgstr "Mit Werbung" +#: apps/native/src/app/person/[id].tsx:52 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:30 #: apps/web/src/components/people/person-hero.tsx:73 msgid "Writer" msgstr "Autor" @@ -2422,7 +2477,7 @@ msgstr "Du verwendest v{0}." msgid "Your code:" msgstr "Dein Code:" -#: apps/native/src/app/(tabs)/(home)/index.tsx:125 +#: apps/native/src/app/(tabs)/(home)/index.tsx:187 #: apps/web/src/components/dashboard/stats-section.tsx:32 msgid "Your library is empty" msgstr "Deine Bibliothek ist leer" @@ -2430,4 +2485,3 @@ msgstr "Deine Bibliothek ist leer" #: apps/native/src/app/(auth)/register.tsx:121 msgid "Your name" msgstr "Dein Name" - diff --git a/packages/i18n/src/po/de.ts b/packages/i18n/src/po/de.ts index 60f0c27..a905696 100644 --- a/packages/i18n/src/po/de.ts +++ b/packages/i18n/src/po/de.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"+5kO8P\":[\"Samstag\"],\"+6i0lS\":[\"Verlauf, Merkliste und Bewertungen werden abgerufen...\"],\"+Cv+V9\":[\"Aus Bibliothek entfernen\"],\"+JkEpu\":[\"Diese Seite ist auf dem Schneidetisch gelandet. Sie wurde möglicherweise verschoben, entfernt oder hat es nie über das Drehbuch hinaus geschafft.\"],\"+K0AvT\":[\"Trennen\"],\"+N0l5/\":[\"Verbunden mit <0>\",[\"serverHost\"],\". Tippe zum Ändern.\"],\"+gLHYi\":[\"Titel konnte nicht geladen werden\"],\"+j1ex/\":[\"Konnte nicht aus der Bibliothek entfernt werden\"],\"+nF1ZO\":[\"Foto entfernen\"],\"/+6dvC\":[\"Fehler (\",[\"0\"],\")\"],\"/BBXeA\":[\"Verbinde mit Server...\"],\"/DwR+n\":[\"Erstelle...\"],\"/XtbPO\":[[\"0\"],\" titles\"],\"/cg+QV\":[\"Alle als gesehen markieren\"],\"/gQXGv\":[\"Status konnte nicht aktualisiert werden\"],\"/nT6AE\":[\"Neues Passwort\"],\"/sHc1/\":[\"Update-Prüfung\"],\"0+dyau\":[\"Aufbewahrungseinstellung konnte nicht aktualisiert werden\"],\"0BFJKK\":[\"Autorisierung wurde verweigert. Bitte versuche es erneut.\"],\"0GHb20\":[\"Metadaten-Cache leeren?\"],\"0IBW21\":[\"Cache konnte nicht geleert werden\"],\"0gH/sc\":[\"Profilbild entfernen\"],\"1+P9RR\":[\"Zu \",[\"0\"],\" wechseln\"],\"12cc1j\":[\"Am Schauen\"],\"12lVOl\":[\"Selbstgehosteter Film- & Serien-Tracker\"],\"1B4z0M\":[\"Filmografie\"],\"1J4Ek0\":[\"Datenbank automatisch nach Zeitplan sichern\"],\"1JhxXW\":[\"Episode \",[\"0\"],\", \",[\"episodeLabel\"]],\"1N6wNP\":[\"Importoptionen\"],\"1Qz4uG\":[\"Ereigniskategorie \\\"Playback\\\" aktivieren\"],\"1hMWR6\":[\"Konto erstellen\"],\"1jHIjh\":[\"Alle Episoden von \",[\"seasonName\"],\" als gesehen markiert\"],\"1vSYsG\":[\"Backup herunterladen\"],\"1wL1tj\":[\"Serie\"],\"2FletP\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Titel\"],\"other\":[\"#\",\" Titel\"]}],\", \",[\"1\",\"plural\",{\"one\":[\"#\",\" Person\"],\"other\":[\"#\",\" Personen\"]}],\", \",[\"2\",\"plural\",{\"one\":[\"#\",\" Datei\"],\"other\":[\"#\",\" Dateien\"]}],\" bereinigt (\",[\"freed\"],\" freigegeben)\"],\"2Fsd9r\":[\"Diesen Monat\"],\"2MPcep\":[\"Import abgeschlossen\"],\"2Mu33Z\":[\"Cache-Verwaltung\"],\"2POOFK\":[\"Kostenlos\"],\"2Pt2NY\":[\"Dadurch werden alle Einträge aus deinem Verlauf entfernt.\"],\"2fCpt5\":[\"Zur Startseite\"],\"2pPBp6\":[\"Heute im Trend\"],\"39y5bn\":[\"Freitag\"],\"3Blefz\":[\"Bewertungen\"],\"3JTlG8\":[\"Letzte Suchen\"],\"3Jy8bM\":[\"Filme \",[\"select\"]],\"3L9OuQ\":[\"Episode \",[\"0\"]],\"3T8ziB\":[\"Konto erstellen\"],\"3hELxX\":[\"Gib deine Sofa-Server-URL ein, um loszulegen\"],\"4fxLkp\":[\"Öffne Sonarr, gehe zu <0>Settings > Import Lists\"],\"4kpBqM\":[\"Letztes Ereignis \",[\"0\"]],\"4uUjVO\":[\"Produzent\"],\"4x+A56\":[\"Anonyme Nutzungsberichte\"],\"5IShvp\":[[\"totalItems\"],\" Einträge importieren\"],\"5IYJSv\":[\"Titel entdecken\"],\"5Y4mym\":[\"Von \",[\"0\"],\" importieren\"],\"5ZzgbQ\":[[\"0\"],\" verbinden\"],\"5fEnbK\":[\"Einstellung für geplante Backups konnte nicht aktualisiert werden\"],\"5lWFkC\":[\"Anmelden\"],\"5v9C16\":[\"Verbunden mit \",[\"source\"]],\"623bR4\":[\"Aufgabe konnte nicht ausgelöst werden\"],\"6HN0yh\":[\"Öffne Plex, gehe zu Settings > Webhooks\"],\"6TNjOJ\":[\"Bewertung konnte nicht aktualisiert werden\"],\"6TfUy6\":[\"letzte \",[\"value\"]],\"6V3Ea3\":[\"Kopiert\"],\"6YtxFj\":[\"Name\"],\"6exX+8\":[\"Neu generieren\"],\"6gRgw8\":[\"Erneut versuchen\"],\"6lGV3K\":[\"Weniger anzeigen\"],\"76++pR\":[\"Warnungen\"],\"77DIAu\":[\"Gehe zu Dashboard > Plugins > Webhook\"],\"7Bj3x9\":[\"Fehlgeschlagen\"],\"7D50KC\":[[\"label\"],\" getrennt\"],\"7GfM5w\":[\"Zuletzt angesehen\"],\"7L01XJ\":[\"Aktionen\"],\"7eMo+U\":[\"Zur Startseite\"],\"7p5kLi\":[\"Dashboard\"],\"85eoJ1\":[\"Zeitplan aktualisiert\"],\"8B9E2D\":[\"Tag:\"],\"8YwF1J\":[\"Gehe zu <0>Dashboard > Plugins > Webhook\"],\"8ZsakT\":[\"Passwort\"],\"8tjQCz\":[\"Entdecken\"],\"8vNtLy\":[\"Füge die obige Radarr-URL in das Feld \\\"List URL\\\" ein\"],\"8wYDMp\":[\"Bereits ein Konto?\"],\"9AE3vb\":[\"Öffne Plex, gehe zu <0>Settings > Webhooks<1/>\"],\"9GW0ZB\":[\"Import läuft noch im Hintergrund. Komm später wieder.\"],\"9NyAH9\":[\"Übersprungen\"],\"9Xhrps\":[\"Verbindung fehlgeschlagen\"],\"9ZLGbA\":[\"backups.\"],\"9eF5oV\":[\"Willkommen zurück\"],\"9rG25a\":[\"Server-URL\"],\"A+0rLe\":[\"Als abgeschlossen markiert\"],\"AOHgZp\":[\"Episoden\"],\"AOddWK\":[[\"label\"],\" verbinden\"],\"ATfxL/\":[\"Trailer\"],\"AVlZoM\":[\"Umgebung\"],\"Acf6vF\":[\"Namen speichern\"],\"AdoUfN\":[\"Konnte nicht zur Merkliste hinzugefügt werden\"],\"AeXO77\":[\"Konto\"],\"AjtYj0\":[\"Auf der Merkliste\"],\"Avee+B\":[\"Name konnte nicht aktualisiert werden\"],\"B2R3xD\":[\"Geplante Backups umschalten\"],\"BEVzjL\":[\"Import fehlgeschlagen\"],\"BQnS5I\":[[\"source\"],\" öffnen, um Code einzugeben\"],\"BUnoSB\":[[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"Backup\"],\"other\":[\"Backups\"]}],\" gespeichert\"],\"BpttUI\":[\"Heute im Trend\"],\"BrrIs8\":[\"Speicher\"],\"BskWMl\":[\"Nicht erreichbar\"],\"BzEFor\":[\"oder\"],\"CGDHFb\":[\"Füge ein <0>Generic Destination hinzu und füge die URL oben ein\"],\"CGExDN\":[\"Bild-Cache konnte nicht geleert werden\"],\"CHeXFE\":[\"Status aktualisiert\"],\"CKyk7Q\":[\"Zurück\"],\"CaB/+I\":[\"Willkommen zurück, \",[\"name\"]],\"CodnUh\":[\"Aus Bibliothek entfernt\"],\"CpzGJY\":[\"Dies kann bei großen Bibliotheken einige Minuten dauern. Bitte schließe diesen Tab nicht.\"],\"CuPxpd\":[\"Erfordert ein aktives <0>Plex Pass<1/>-Abonnement.\"],\"CzBN6D\":[\"Jetzt entdecken\"],\"D+R2Xs\":[\"Import wird gestartet...\"],\"D3C4Yx\":[\"Aktuelles Passwort ist erforderlich\"],\"DBC3t5\":[\"Sonntag\"],\"DI4lqs\":[\"Person nicht gefunden\"],\"DKBbJf\":[\"\\\"\",[\"titleName\"],\"\\\" zur Merkliste hinzugefügt\"],\"DPfwMq\":[\"Fertig\"],\"DZse/o\":[\"Füge ein \\\"Generic Destination\\\" hinzu und füge die URL oben ein\"],\"E/QGRL\":[\"Deaktiviert\"],\"E6nRW7\":[\"URL kopieren\"],\"EWQlBH\":[\"Deine Bibliothek ist leer\"],\"EWaCfj\":[\"Gib dein aktuelles Passwort ein und wähle ein neues.\"],\"Eeo/Gy\":[\"Einstellung konnte nicht aktualisiert werden\"],\"Efn6WU\":[\"Dadurch werden alle nicht angereicherten Platzhaltertitel und gecachten Bilder von der Festplatte gelöscht. Alles wird bei Bedarf erneut importiert und heruntergeladen.\"],\"Etp5if\":[\"Import von \",[\"source\"],\" abgeschlossen.\"],\"F006BN\":[\"Von \",[\"source\"],\" importieren\"],\"FNvDMc\":[\"Diese Woche\"],\"FWSp+7\":[\"Gib den untenstehenden Code auf der Website von \",[\"source\"],\" ein, um Sofa zu autorisieren.\"],\"FXN0ro\":[\"Empfehlungen\"],\"FaU7Ag\":[\"Benachrichtigungstyp \\\"Playback Stop\\\" aktivieren\"],\"FhvLDl\":[[\"watchedCount\"],\"/\",[\"0\"],\" episodes\"],\"Fo2bwm\":[\"Schauspieler\"],\"FwRqjE\":[\"Speichernutzung für Bild-Cache und Backups\"],\"G00fgM\":[\"letzte \",[\"n\"]],\"G3myU+\":[\"Dienstag\"],\"GcCthe\":[\"In Bibliothek\"],\"Gf39AA\":[[\"0\"],\" ausgelöst\"],\"GnhfWw\":[\"Automatische Update-Prüfung umschalten\"],\"GptGxg\":[\"Passwort ändern\"],\"GqTZ+S\":[[\"ratingStars\"],\" \",[\"ratingStars\",\"plural\",{\"one\":[\"Stern\"],\"other\":[\"Sterne\"]}],\" bewertet\"],\"GrdN/F\":[\"Aufgeholt - \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"Episode\"],\"other\":[\"Episoden\"]}],\" als gesehen markiert\"],\"H4B5LG\":[\"Dieses Produkt verwendet die TMDB-API, wird jedoch nicht von TMDB unterstützt oder zertifiziert.\"],\"HBRd5n\":[\"Staffel \",[\"0\"]],\"HD+aQ7\":[\"Datenbank-Backups\"],\"HG+31u\":[\"Alle Caches leeren?\"],\"Haz+72\":[\"Dadurch werden alle gecachten TMDB-Bilder von der Festplatte gelöscht. Bilder werden bei Bedarf automatisch neu heruntergeladen.\"],\"HbReP5\":[\"\\\"\",[\"titleName\"],\"\\\" als abgeschlossen markiert\"],\"Hg6o8v\":[\"Systemstatus aktualisieren\"],\"HmEjnC\":[\"Letztes Ereignis \",[\"timeAgo\"]],\"HvDfH/\":[\"Importiert\"],\"I89uD4\":[\"Stelle wieder her...\"],\"IRoxQm\":[\"Registrierung geschlossen\"],\"IS0nrP\":[\"Konto erstellen\"],\"IY9rQ0\":[\"Speicherplatz freigeben, indem gecachte Metadaten und Bilder gelöscht werden\"],\"IrC12v\":[\"Anwendung\"],\"J28zul\":[\"Verbinde...\"],\"J64cFL\":[\"Bibliothek aktualisieren\"],\"JKmmmN\":[\"Zur Merkliste hinzugefügt\"],\"JN0f/Y\":[\"Mit TMDB verbinden\"],\"JR6aH2\":[\"Movies \",[\"periodSelect\"]],\"JRQitQ\":[\"Neues Passwort bestätigen\"],\"JRadFJ\":[\"Verfolge deine Sehgewohnheiten\"],\"JSwq8t\":[\"Das Erstellen neuer Konten ist derzeit deaktiviert.\"],\"JY5Oyv\":[\"Datenbank\"],\"JjsJnI\":[[\"0\"],\"/\",[\"1\"],\" episodes\"],\"JrFTcr\":[\"Verbinde...\"],\"JwFbe8\":[\"Serie\"],\"KDw4GX\":[\"Erneut versuchen\"],\"KG6681\":[\"Episode als gesehen markiert\"],\"KIS/Sd\":[\"Von anderen Sitzungen abmelden\"],\"KK0ghs\":[\"Bild-Cache\"],\"KVAoFR\":[\"unbegrenzt\"],\"KcXJuc\":[\"Leere...\"],\"KhtG3o\":[\"Passwort aktualisieren\"],\"Khux7w\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Titel\"],\"other\":[\"#\",\" Titel\"]}]],\"KmWyx0\":[\"Aufgabe\"],\"KoF0x6\":[\"Alter \",[\"age\"]],\"Ksiej9\":[\"Erfordert ein aktives Plex Pass-Abonnement.\"],\"Kx9NEt\":[\"Ungültiger Token\"],\"Lk6Jb/\":[\"Zuletzt abgefragt \",[\"timeAgo\"]],\"LmEEic\":[\"Warte auf Autorisierung...\"],\"LqKH42\":[\"Mit \",[\"0\"],\" verbinden\"],\"Lrpjji\":[[\"label\"],\" trennen\"],\"Lu6Udx\":[\"Klicke auf \\\"+\\\" und wähle \\\"Custom Lists\\\"\"],\"MDoX++\":[\"Sonarr-Listen-URL\"],\"MRBlCJ\":[\"Einige Episoden konnten nicht als ungesehen markiert werden\"],\"MUO7w9\":[\"\\\"\",[\"titleName\"],\"\\\" als gesehen markiert\"],\"MZbQHL\":[\"Keine Ergebnisse gefunden.\"],\"MdxR1u\":[\"Choose your preferred display language\"],\"MkyzAV\":[\"Sofa autorisieren, deine \",[\"0\"],\"-Bibliothek zu lesen. Kein Passwort wird geteilt.\"],\"N40H+G\":[\"Alle\"],\"N6SFhC\":[\"Stattdessen anmelden\"],\"N7h106\":[\"Sofa v\",[\"0\"],\" ist verfügbar\"],\"N9RF2M\":[\"Klicke auf \\\"Add Webhook\\\" und füge die URL oben ein\"],\"NBo4z0\":[\"Klicke auf <0>+ und wähle <1>Custom Lists\"],\"NICUmW\":[\"Regisseur\"],\"NQzPoO\":[\"Neues Backup\"],\"NSxl1l\":[\"Weitere Einstellungen\"],\"NVF43p\":[\"Uhrzeit:\"],\"NdPMwS\":[\"In deiner Bibliothek\"],\"NgaPSG\":[\"Zeitplan konnte nicht aktualisiert werden\"],\"O3oNi5\":[\"E-Mail\"],\"OBcj5W\":[\"Dadurch wird die aktuelle \",[\"label\"],\"-URL ungültig. Du musst sie in \",[\"label\"],\" aktualisieren.\"],\"OL8hbM\":[\"Das neue Passwort muss mindestens 8 Zeichen lang sein\"],\"ONWvwQ\":[\"Hochladen\"],\"OPFjyX\":[\"<0>Webhook-Plugin<1/> aus dem Jellyfin-Plugin-Katalog installieren\"],\"OW/+RD\":[\"Verlauf\"],\"OZdaTZ\":[\"Person\"],\"OvO76u\":[\"Zurück zur Anmeldung\"],\"OvdFIZ\":[\"Staffel als gesehen markiert\"],\"P2FLLe\":[\"Version ansehen\"],\"PBdLfg\":[\"Keine Titel für dieses Genre gefunden.\"],\"PQ3qDa\":[\"Bibliotheksdaten werden von \",[\"source\"],\" abgerufen...\"],\"PjNoxI\":[\"Geplantes Backup\"],\"Pn2B7/\":[\"Aktuelles Passwort\"],\"PnEbL/\":[[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"Stern\"],\"other\":[\"Sterne\"]}],\" bewertet\"],\"Pwqkdw\":[\"Lade...\"],\"Py87xY\":[\"Autorisierung erfolgreich, aber die Bibliothek konnte nicht abgerufen werden. Bitte versuche es erneut.\"],\"Q3MPWA\":[\"Passwort aktualisieren\"],\"QHcLEN\":[\"Verbunden\"],\"QK4UIx\":[\"Als gesehen markieren\"],\"Qjlym2\":[\"Konto konnte nicht erstellt werden\"],\"Qm1NmK\":[\"ODER\"],\"Qoq+GP\":[\"Mehr lesen\"],\"QphVZW\":[\"Server nicht erreichbar\"],\"QqLJHH\":[\"Dieses Jahr\"],\"R0yu2l\":[\"Aufholen\"],\"R4YBui\":[\"Suche nach Filmen und Serien, um mit dem Tracken zu beginnen\"],\"RH46vw\":[[\"0\"],\"/\",[\"1\"],\" \",[\"2\",\"plural\",{\"one\":[\"Episode\"],\"other\":[\"Episoden\"]}]],\"RIR15/\":[\"Radarr-Listen-URL\"],\"RLe7Vk\":[\"Prüfe...\"],\"ROq8cl\":[\"Datei konnte nicht verarbeitet werden\"],\"RQq8Si\":[\"Registrierung geöffnet\"],\"S0soqb\":[\"Profilbild konnte nicht entfernt werden\"],\"S1McZh\":[\"Profilbild konnte nicht hochgeladen werden\"],\"S2ble5\":[[\"0\"],\" Filme, \",[\"1\"],\" Episoden\"],\"S2qPRR\":[\"Filme & Serien suchen...\"],\"SDND4q\":[\"Nicht konfiguriert\"],\"SFdAk9\":[\"S\",[\"seasonNum\"],\" E\",[\"epNum\"],\" als ungesehen markiert\"],\"SUIUkB\":[\"Alle als ungesehen markieren\"],\"SbS+Bm\":[\"URL neu generieren\"],\"SlfejT\":[\"Fehler\"],\"Sp86ju\":[[\"0\"],\" Ep\",[\"1\"]],\"SrfROI\":[\"Als Nächstes\"],\"SyPRjk\":[\"Sofa protokolliert Filme und Episoden automatisch, wenn du sie zu Ende gesehen hast\"],\"T0/7WG\":[\"Nächstes Backup \",[\"distance\"]],\"TEaX6q\":[\"Backup gelöscht\"],\"TI7IKo\":[\"Rated \",[\"0\"],\" star\",[\"1\"]],\"TMb7iE\":[\"Profilbild entfernt\"],\"TqyQQS\":[\"Ereigniskategorie <0>Playback aktivieren\"],\"Tz0i8g\":[\"Einstellungen\"],\"U+FxtW\":[\"Verfolge, was du schaust. Wisse, was als Nächstes kommt.<0/>Deine Bibliothek, deine Daten, deine Regeln.\"],\"U3pytU\":[\"Admin\"],\"UC+OWB\":[\"Offene Registrierung umschalten\"],\"UDMjsP\":[\"Schnellaktionen\"],\"UmQ6Fe\":[\"Bild-Cache leeren?\"],\"UtDm3q\":[\"URL in die Zwischenablage kopiert\"],\"V1Kh9Z\":[\"Episoden \",[\"select\"]],\"V6uzvC\":[\"Ähnliche Titel\"],\"V9CuQ+\":[\"Mit \",[\"source\"],\" verbinden\"],\"VAcXNz\":[\"Mittwoch\"],\"VKyhZK\":[\"Titel nicht gefunden\"],\"VQvpro\":[\"Füge die obige Sonarr-URL in das Feld \\\"List URL\\\" ein\"],\"VhMDMg\":[\"Passwort ändern\"],\"Vx0ayx\":[\"Einige Episoden konnten nicht markiert werden\"],\"WDC4PF\":[\"Episodes \",[\"periodSelect\"]],\"WEYdDv\":[\"Empfohlen\"],\"WMCwmR\":[\"Nach Updates suchen\"],\"WP48q2\":[\"Bild-Cache\"],\"WT1Ibn\":[\"Letzter Lauf\"],\"Wb3E4g\":[\"Jetzt ausführen\"],\"WgF2UQ\":[\"Du verwendest v\",[\"0\"],\".\"],\"WtWhSi\":[\"Bewertung entfernt\"],\"Wy/3II\":[\"Zuletzt abgefragt \",[\"0\"]],\"XFCSYs\":[\"Besetzung\"],\"XN23JY\":[\"Dadurch werden nicht angereicherte Platzhaltertitel, die in keiner Bibliothek vorhanden sind, und verwaiste Personeneinträge bereinigt. Gelöschte Titel werden bei erneutem Zugriff wieder importiert.\"],\"XZwihE\":[\"Bereit - noch nichts empfangen\"],\"XjTduw\":[\"Bild hochladen\"],\"YEGzVq\":[[\"label\"],\" konnte nicht verbunden werden\"],\"YErf89\":[\"Metadaten-Cache konnte nicht geleert werden\"],\"YQ768h\":[\"Szene nicht gefunden\"],\"YiRsXK\":[\"Zuletzt angesehen löschen?\"],\"Yjp1zf\":[\"Noch keinen Server?\"],\"YqMfa9\":[\"Überprüfe die gefundenen Einträge und wähle aus, was importiert werden soll.\"],\"ZGUYm0\":[\"Bereit - noch nicht abgefragt\"],\"ZQKLI1\":[\"Gefahrenzone\"],\"ZVZUoU\":[[\"0\"],\" gecachte Bilder\"],\"ZWTQ81\":[\"Ansehen auf \",[\"name\"]],\"a3LDKx\":[\"Sicherheit\"],\"aLBUiR\":[\"<0><1><2>\",[\"0\"],\"<3>\",[\"1\"],\" Backups werden aufbewahrt.\"],\"aM0+kY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" veralteter Titel\"],\"other\":[\"#\",\" veraltete Titel\"]}],\" und \",[\"1\",\"plural\",{\"one\":[\"#\",\" verwaiste Person\"],\"other\":[\"#\",\" verwaiste Personen\"]}],\" bereinigt\"],\"aO1AxG\":[\"Episode als ungesehen markiert\"],\"aV/hDI\":[[\"label\"],\" konnte nicht getrennt werden\"],\"acbSg0\":[\"Doppeltippen zum Filtern nach \",[\"label\"]],\"agE7k4\":[[\"stars\",\"plural\",{\"one\":[\"#\",\" Stern\"],\"other\":[\"#\",\" Sterne\"]}],\" vergeben\"],\"alPRaV\":[\"Titel auf deiner Sofa-Merkliste werden automatisch zum Download hinzugefügt, wenn Radarr diese Liste abruft (standardmäßig alle 12 Stunden)\"],\"aourBv\":[\"Geplante Backups aktiviert\"],\"apLLSU\":[\"Möchtest du dich wirklich abmelden?\"],\"atc9MA\":[\"Öffne Emby, gehe zu <0>Settings > Webhooks\"],\"auVUJO\":[\"Datenbank wiederherstellen?\"],\"ayqfr4\":[[\"label\"],\"-URL neu generiert\"],\"b/8KCH\":[\"Dadurch werden alle Episoden dieser Serie als gesehen markiert. Du kannst dies später rückgängig machen, indem du einzelne Staffeln abwählst.\"],\"b3Thhd\":[\"Hochladen fehlgeschlagen\"],\"b5DFtH\":[\"Passwort festlegen\"],\"bHYIks\":[\"Abmelden\"],\"bITrbE\":[\"Alles leeren\"],\"bNmdjU\":[\"Merkliste\"],\"bTRwag\":[\"Aus Bibliothek entfernen\"],\"bXMotV\":[\"Als gesehen markiert\"],\"bezGJ2\":[[\"0\"],\" images\"],\"boJlGf\":[\"Seite nicht gefunden\"],\"c1ssjI\":[\"Importiere von \",[\"source\"]],\"c3b0B0\":[\"Loslegen\"],\"c4b9Dm\":[\"Keine Ergebnisse für \\\"\",[\"debouncedQuery\"],\"\\\"\"],\"cQPKZt\":[\"Zum Dashboard\"],\"ccAJSB\":[\"Keeping\"],\"cgvva8\":[[\"0\"],\" Bewertungen\"],\"cnGeoo\":[\"Löschen\"],\"cpE88+\":[\"Erstelle dein Konto\"],\"d/6MoL\":[\"Konto und Einstellungen verwalten\"],\"dA7BWh\":[\"Erfordert Emby Server 4.7.9+ und eine aktive Emby Premiere-Lizenz.\"],\"dEgA5A\":[\"Abbrechen\"],\"dTZwve\":[\"Alle Episoden als gesehen markiert\"],\"dUCJry\":[\"Neueste\"],\"ddwpAr\":[\"Warnungen (\",[\"0\"],\")\"],\"e/ToF5\":[\"Mit \",[\"0\"],\" anmelden\"],\"e9sZMS\":[\"Dadurch wird das Backup vom <0>\",[\"0\"],\" dauerhaft gelöscht. Dies kann nicht rückgängig gemacht werden.\"],\"eFRooE\":[\"Letzter Lauf fehlgeschlagen\"],\"eM39Om\":[\"Alle Episoden von \",[\"seasonLabel\"],\" als gesehen markiert\"],\"eZjYb8\":[\"Autor\"],\"ecUA8p\":[\"Heute\"],\"evBxZy\":[\"Wo ansehen\"],\"ezDa1h\":[\"Dokumentation öffnen\"],\"f+m696\":[\"Beim Laden dieser Seite ist ein unerwarteter Fehler aufgetreten. Du kannst es erneut versuchen oder zum Dashboard zurückkehren.\"],\"f/AKdU\":[\"Möchtest du \",[\"label\"],\" wirklich trennen? Die aktuelle URL wird nicht mehr funktionieren.\"],\"f7ax8J\":[\"Im Browser öffnen...\"],\"fMPkxb\":[\"Mehr anzeigen\"],\"fNMqNn\":[\"Beliebte Serien\"],\"fObVvy\":[\"Profilbild aktualisiert\"],\"fRettQ\":[[\"0\"],\" Einträge\"],\"fUDRF9\":[\"Auf Merkliste\"],\"fcWrnU\":[\"Abmelden\"],\"fgLNSM\":[\"Registrieren\"],\"fsAEqk\":[\"Weiterschauen\"],\"fzAeQI\":[\"Registrierung auf \",[\"serverHost\"]],\"g+gBfk\":[\"Verarbeite...\"],\"g4JYff\":[[\"0\"],\" Einträge von \",[\"1\"],\" importiert\"],\"gKtb5i\":[\"Titel auf deiner Sofa-Merkliste werden automatisch zum Download hinzugefügt, wenn Sonarr diese Liste abruft (standardmäßig alle 6 Stunden)\"],\"gaIAMq\":[\"Bild entfernen\"],\"gbEEMp\":[\"Backup löschen\"],\"gcNLi0\":[\"Update-Prüfung aktiviert\"],\"gmB6oO\":[\"Zeitplan\"],\"h/T5Yb\":[\"Offene Registrierung\"],\"h4yKYk\":[\"Nächster Lauf\"],\"h7MgpO\":[\"Tastaturkürzel\"],\"hTXYdY\":[\"Backup konnte nicht erstellt werden\"],\"hXYY5Q\":[\"Alle Episoden von \",[\"0\"],\" als ungesehen markiert\"],\"he3ygx\":[\"Kopieren\"],\"hjGupC\":[\"Verbindung zum Import verloren. Status in den Einstellungen prüfen.\"],\"hlqjFc\":[\"In Bibliothek\"],\"hou0tP\":[\"Streamen\"],\"hty0d5\":[\"Montag\"],\"i0qMbr\":[\"Startseite\"],\"i9rcQ/\":[\"Filme\"],\"iGma9e\":[\"Aktualisierung fehlgeschlagen\"],\"iSLIjg\":[\"Verbinden\"],\"iWv3ck\":[\"Aufholen fehlgeschlagen\"],\"iXZ09g\":[\"Als abgeschlossen markieren\"],\"id08cd\":[\"S\",[\"seasonNum\"],\" E\",[\"epNum\"],\" als gesehen markiert\"],\"ih87w/\":[\"Zur Bibliothek hinzufügen\"],\"ihn4zD\":[\"Suchen...\"],\"itDEco\":[\"Bereits ein Konto? Anmelden\"],\"itheEn\":[\"Mit Werbung\"],\"iwCRIF\":[\"Du wirst abgemeldet, um die Server-URL zu ändern.\"],\"j5GBIy\":[\"Öffne Radarr, gehe zu Settings > Import Lists\"],\"jAe8l4\":[[\"0\"],\" Backups · zuletzt <0/>\"],\"jB3sfe\":[\"Manuelles Backup\"],\"jFnMJ8\":[\"Doppeltippen zum Entfernen dieses Filters\"],\"jQsPwL\":[\"Geplante Backups deaktiviert\"],\"jSjGeu\":[[\"0\"],\" Einträge haben keine externen IDs und werden über die Titelsuche gefunden, was weniger genau sein kann.\"],\"jX6Gzg\":[\"Dadurch wird deine gesamte Datenbank durch die hochgeladene Datei ersetzt. Zuerst wird ein Sicherheits-Backup deiner aktuellen Daten erstellt. Aktive Sitzungen müssen nach der Wiederherstellung möglicherweise neu geladen werden.\"],\"jiHVUy\":[\"Backup vor Wiederherstellung\"],\"k6c41p\":[\"Hintergrundaufgaben\"],\"kBDOjB\":[\"Backup-Zeitplan\"],\"kkDQ8m\":[\"Donnerstag\"],\"klOeIX\":[\"Passwort konnte nicht geändert werden\"],\"ks3XeZ\":[\"Öffne Sonarr, gehe zu Settings > Import Lists\"],\"kvuCtu\":[\"Beim Laden dieses Titels ist etwas schiefgelaufen. Bitte versuche es erneut.\"],\"kx0s+n\":[\"Ergebnisse\"],\"l2wcoS\":[\"Letzter Lauf erfolgreich\"],\"l3s5ri\":[\"Import\"],\"lCF0wC\":[\"Aktualisieren\"],\"lJ1yo4\":[\"Anmeldung fehlgeschlagen\"],\"lVqzRx\":[\"Klicke auf <0>Add Webhook und füge die URL oben ein\"],\"lXkUEV\":[\"Verfügbarkeit\"],\"lcLe89\":[\"Nach Filmen, Serien suchen oder Befehle ausführen\"],\"lfVyvz\":[\"Zur Merkliste hinzufügen\"],\"llDXYJ\":[\"Backups\"],\"llkZR0\":[\"Integrationen konnten nicht geladen werden\"],\"ln9/n9\":[\"Noch kein Konto?\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"lqY3WY\":[\"Server wechseln\"],\"luoodD\":[\"Einrichtung erforderlich\"],\"m5WhJy\":[\"Automatische Update-Prüfung\"],\"mIx58S\":[\"Bilder leeren\"],\"mYBORk\":[\"Film\"],\"ml9cU0\":[[\"label\"],\"-URL konnte nicht neu generiert werden\"],\"mqwkjd\":[\"Systemstatus\"],\"mqxHH7\":[\"Zum Entdecken\"],\"mzI/c+\":[\"Herunterladen\"],\"n1ekoW\":[\"Anmelden\"],\"n3Pzd7\":[\"Backup erstellt\"],\"nBHvPL\":[\"Bearbeitung abbrechen\"],\"nJw77c\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Bild\"],\"other\":[\"#\",\" Bilder\"]}]],\"nO0Qnj\":[\"Dein Code:\"],\"nRP1xx\":[\"Brauchst du mehr Hilfe?\"],\"nV1LjT\":[\"Benachrichtigungstyp <0>Playback Stop aktivieren\"],\"nVsE67\":[\"Als am Schauen markieren\"],\"nZ7lF1\":[\"Gerätecode abgelaufen. Bitte versuche es erneut.\"],\"nbfdhU\":[\"Integrationen\"],\"nbmpf9\":[\"Metadaten leeren\"],\"nnKJTm\":[\"Nicht alle Episoden konnten als gesehen markiert werden\"],\"nszbQG\":[\"Noch keine Backups\"],\"nuh/Wq\":[\"Webhook-URL\"],\"nwtY4N\":[\"Etwas ist schiefgelaufen\"],\"oAIA3w\":[\"Suche nach Filmen, Serien oder Personen\"],\"oC8IMh\":[\"Filme, Serien, Personen suchen...\"],\"oNvZcA\":[\"Episoden diese Woche\"],\"oXq+Wr\":[[\"label\"],\" verbunden\"],\"ogtYkT\":[\"Passwort aktualisiert\"],\"ojtedN\":[\"Öffne Radarr, gehe zu <0>Settings > Import Lists\"],\"olMi35\":[\"Für dich empfohlen\"],\"p+PZEl\":[\"Das passiert in deiner Bibliothek\"],\"pAtylB\":[\"Nicht gefunden\"],\"pG9pq1\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Datei\"],\"other\":[\"#\",\" Dateien\"]}],\" gelöscht, \",[\"freed\"],\" freigegeben\"],\"pWWFjv\":[\"Geprüft <0/>\"],\"ph76H6\":[\"Neuen Benutzern die Registrierung erlauben\"],\"pjgw0N\":[\"Wähle aus, wie du deine \",[\"0\"],\"-Daten importieren möchtest.\"],\"puo3W3\":[\"Weiterleiten...\"],\"q3GraM\":[\"...und \",[\"0\"],\" weitere\"],\"q6nrFE\":[\"gestorben mit \",[\"age\"]],\"q6pUQ9\":[\"Lade eine .db-Datei hoch, um die aktuelle Datenbank zu ersetzen. Zuerst wird ein Sicherheits-Backup erstellt.\"],\"q8yluz\":[\"Dein Name\"],\"qA6VR5\":[\"Erfordert <0>Emby Server 4.7.9+ und eine aktive <1>Emby Premiere<2/>-Lizenz.\"],\"qF2IBM\":[\"Filme diesen Monat\"],\"qHbApt\":[\"Backup-Zeitplaneinstellungen konnten nicht geladen werden.\"],\"qLB1zX\":[\"Lade einen \",[\"0\"],\"-Export aus deinen \",[\"1\"],\"-Kontoeinstellungen hoch.\"],\"qPNzfu\":[\"Update-Prüfung deaktiviert\"],\"qWoML/\":[\"Füge einen neuen Webhook hinzu und füge die URL oben ein\"],\"qiOIiY\":[\"Kaufen\"],\"qn1X6N\":[\"Registrierungseinstellung konnte nicht aktualisiert werden\"],\"qqWcBV\":[\"Abgeschlossen\"],\"qqeAJM\":[\"Nie\"],\"r9aDAY\":[[\"count\"],\" \",[\"count\",\"plural\",{\"one\":[\"frühere Episode\"],\"other\":[\"frühere Episoden\"]}],\" noch ungesehen\"],\"rLgPvm\":[\"Backup\"],\"rSTpb5\":[\"Server-Status\"],\"rdymVD\":[\"Aufgabe auslösen\"],\"rtir7c\":[\"unbekannt\"],\"s0U4ZZ\":[\"TV-Episoden\"],\"s4vVUm\":[\"Personendetails konnten nicht geladen werden\"],\"s9dVME\":[\"Episode konnte nicht als ungesehen markiert werden\"],\"sGH11W\":[\"Server\"],\"sl/qWH\":[\"Profilbild hochladen\"],\"sstysK\":[\"Episode konnte nicht markiert werden\"],\"stZeiF\":[[\"watched\"],\"/\",[\"total\"],\" Episoden\"],\"t/Ch8S\":[\"Als am Schauen markiert\"],\"t/YqKh\":[\"Entfernen\"],\"tfDRzk\":[\"Speichern\"],\"tiymc0\":[\"Etwas ist schiefgelaufen...\"],\"u9ugU7\":[[\"watchedCount\"],\"/\",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"Episode\"],\"other\":[\"Episoden\"]}]],\"uBAxNB\":[\"Cutter\"],\"uBrbSu\":[[\"0\"],\"-Verbindung konnte nicht gestartet werden\"],\"uM6jnS\":[\"Wiederherstellung fehlgeschlagen\"],\"uMrJrX\":[\"Nur für Admins\"],\"uswLvZ\":[\"Der gesuchte Titel existiert nicht oder wurde möglicherweise aus der Datenbank entfernt.\"],\"uxOntd\":[[\"watchedCount\"],\" von \",[\"0\"],\" Episoden gesehen\"],\"v2CA3w\":[\"Foto ändern\"],\"v5ipVu\":[\"Alle Episoden als gesehen markieren?\"],\"vKfeax\":[\"Öffne Emby, gehe zu Settings > Webhooks\"],\"vXIe7J\":[\"Sprache\"],\"vuCCZ7\":[\"Importdaten konnten nicht verarbeitet werden\"],\"vwKERN\":[\"Backup konnte nicht gelöscht werden\"],\"w8pqsh\":[\"Alle als gesehen markieren\"],\"wA7B2T\":[\"Neue Konten werden derzeit nicht akzeptiert. Kontaktiere den Admin, wenn du Zugang benötigst.\"],\"wGFX13\":[\"Startzeit\"],\"wR1UAy\":[\"Beliebte Filme\"],\"wRWcdL\":[\"Trailer abspielen\"],\"wThGrS\":[\"App-Einstellungen\"],\"wZK4Xg\":[\"Noch nie ausgeführt\"],\"wdLxgL\":[\"Mitglied seit \",[\"memberSince\"]],\"wja8aL\":[\"Ohne Titel\"],\"wtGebH\":[\"Die gesuchte Person existiert nicht oder wurde möglicherweise aus der Datenbank entfernt.\"],\"wtsbt5\":[\"Zur Merkliste hinzufügen\"],\"wtuVU4\":[\"Häufigkeit\"],\"wx7pwA\":[\"Als gesehen markieren\"],\"x4ZiTl\":[\"Einrichtungsanleitung\"],\"xCJdfg\":[\"Löschen\"],\"xGVfLh\":[\"Weiter\"],\"xLoCm2\":[\"Konfiguration prüfen\"],\"xSrU2g\":[[\"healthyCount\"],\" von \",[\"0\"],\" Jobs fehlerfrei\"],\"xazqmy\":[\"Staffeln\"],\"xbBXhy\":[\"GitHub regelmäßig auf neue Sofa-Versionen prüfen\"],\"xrh2/M\":[\"Konnte nicht als gesehen markiert werden\"],\"y3e9pF\":[\"Backup löschen?\"],\"y6Urel\":[\"Nächste Episode\"],\"yGvjAo\":[\"Update verfügbar: \",[\"0\"]],\"yKu/3Y\":[\"Wiederherstellen\"],\"yYxB17\":[\"Alle löschen\"],\"ybtG1U\":[[\"0\"],\" backup\",[\"1\"],\" stored\"],\"yey/zg\":[\"Datenbank wiederhergestellt. Lade neu...\"],\"ygo0l/\":[\"Filme und Serien tracken\"],\"yvwIbI\":[\"Exportdatei hochladen\"],\"yz7wBu\":[\"Schließen\"],\"z1U/Fh\":[\"Bewertung\"],\"z5evln\":[\"Keine Internetverbindung\"],\"zAvS8w\":[\"Anmelden, um fortzufahren\"],\"zEqK2w\":[\"Die gesuchte Seite existiert nicht.\"],\"zFkiTv\":[\"Webhook-Plugin aus dem Jellyfin-Plugin-Katalog installieren\"],\"zNyR4f\":[\"Bevorzugtes Qualitätsprofil und Stammordner festlegen\"],\"za8Le/\":[\"Registrierung geschlossen\"],\"zb77GC\":[\"Leihen\"],\"ztAdhw\":[\"Name aktualisiert\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"+5kO8P\":[\"Samstag\"],\"+6i0lS\":[\"Verlauf, Merkliste und Bewertungen werden abgerufen...\"],\"+Cv+V9\":[\"Aus Bibliothek entfernen\"],\"+JkEpu\":[\"Diese Seite ist auf dem Schneidetisch gelandet. Sie wurde möglicherweise verschoben, entfernt oder hat es nie über das Drehbuch hinaus geschafft.\"],\"+K0AvT\":[\"Trennen\"],\"+N0l5/\":[\"Verbunden mit <0>\",[\"serverHost\"],\". Tippe zum Ändern.\"],\"+gLHYi\":[\"Titel konnte nicht geladen werden\"],\"+j1ex/\":[\"Konnte nicht aus der Bibliothek entfernt werden\"],\"+nF1ZO\":[\"Foto entfernen\"],\"/+6dvC\":[\"Fehler (\",[\"0\"],\")\"],\"/BBXeA\":[\"Verbinde mit Server...\"],\"/DwR+n\":[\"Erstelle...\"],\"/XtbPO\":[[\"0\"],\" titles\"],\"/cg+QV\":[\"Alle als gesehen markieren\"],\"/gQXGv\":[\"Status konnte nicht aktualisiert werden\"],\"/nT6AE\":[\"Neues Passwort\"],\"/sHc1/\":[\"Update-Prüfung\"],\"0+dyau\":[\"Aufbewahrungseinstellung konnte nicht aktualisiert werden\"],\"0BFJKK\":[\"Autorisierung wurde verweigert. Bitte versuche es erneut.\"],\"0GHb20\":[\"Metadaten-Cache leeren?\"],\"0IBW21\":[\"Cache konnte nicht geleert werden\"],\"0gH/sc\":[\"Profilbild entfernen\"],\"1+P9RR\":[\"Zu \",[\"0\"],\" wechseln\"],\"12cc1j\":[\"Am Schauen\"],\"12lVOl\":[\"Selbstgehosteter Film- & Serien-Tracker\"],\"1B4z0M\":[\"Filmografie\"],\"1J4Ek0\":[\"Datenbank automatisch nach Zeitplan sichern\"],\"1JhxXW\":[\"Episode \",[\"0\"],\", \",[\"episodeLabel\"]],\"1N6wNP\":[\"Importoptionen\"],\"1Qz4uG\":[\"Ereigniskategorie \\\"Playback\\\" aktivieren\"],\"1hMWR6\":[\"Konto erstellen\"],\"1jHIjh\":[\"Alle Episoden von \",[\"seasonName\"],\" als gesehen markiert\"],\"1vSYsG\":[\"Backup herunterladen\"],\"1wL1tj\":[\"Serie\"],\"2FletP\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Titel\"],\"other\":[\"#\",\" Titel\"]}],\", \",[\"1\",\"plural\",{\"one\":[\"#\",\" Person\"],\"other\":[\"#\",\" Personen\"]}],\", \",[\"2\",\"plural\",{\"one\":[\"#\",\" Datei\"],\"other\":[\"#\",\" Dateien\"]}],\" bereinigt (\",[\"freed\"],\" freigegeben)\"],\"2Fsd9r\":[\"Diesen Monat\"],\"2MPcep\":[\"Import abgeschlossen\"],\"2Mu33Z\":[\"Cache-Verwaltung\"],\"2POOFK\":[\"Kostenlos\"],\"2Pt2NY\":[\"Dadurch werden alle Einträge aus deinem Verlauf entfernt.\"],\"2fCpt5\":[\"Zur Startseite\"],\"2pPBp6\":[\"Heute im Trend\"],\"39neVN\":[\"Movies \",[\"0\"]],\"39y5bn\":[\"Freitag\"],\"3Blefz\":[\"Bewertungen\"],\"3JTlG8\":[\"Letzte Suchen\"],\"3Jy8bM\":[\"Filme \",[\"select\"]],\"3L9OuQ\":[\"Episode \",[\"0\"]],\"3T/4MV\":[\"this year\"],\"3T8ziB\":[\"Konto erstellen\"],\"3hELxX\":[\"Gib deine Sofa-Server-URL ein, um loszulegen\"],\"4fxLkp\":[\"Öffne Sonarr, gehe zu <0>Settings > Import Lists\"],\"4kpBqM\":[\"Letztes Ereignis \",[\"0\"]],\"4uUjVO\":[\"Produzent\"],\"4x+A56\":[\"Anonyme Nutzungsberichte\"],\"5IShvp\":[[\"totalItems\"],\" Einträge importieren\"],\"5IYJSv\":[\"Titel entdecken\"],\"5Y4mym\":[\"Von \",[\"0\"],\" importieren\"],\"5ZzgbQ\":[[\"0\"],\" verbinden\"],\"5fEnbK\":[\"Einstellung für geplante Backups konnte nicht aktualisiert werden\"],\"5lWFkC\":[\"Anmelden\"],\"5v9C16\":[\"Verbunden mit \",[\"source\"]],\"623bR4\":[\"Aufgabe konnte nicht ausgelöst werden\"],\"6HN0yh\":[\"Öffne Plex, gehe zu Settings > Webhooks\"],\"6TNjOJ\":[\"Bewertung konnte nicht aktualisiert werden\"],\"6TfUy6\":[\"letzte \",[\"value\"]],\"6V3Ea3\":[\"Kopiert\"],\"6YtxFj\":[\"Name\"],\"6exX+8\":[\"Neu generieren\"],\"6gRgw8\":[\"Erneut versuchen\"],\"6lGV3K\":[\"Weniger anzeigen\"],\"76++pR\":[\"Warnungen\"],\"77DIAu\":[\"Gehe zu Dashboard > Plugins > Webhook\"],\"79m/GK\":[\"Episodes \",[\"0\"]],\"7Bj3x9\":[\"Fehlgeschlagen\"],\"7D50KC\":[[\"label\"],\" getrennt\"],\"7GfM5w\":[\"Zuletzt angesehen\"],\"7L01XJ\":[\"Aktionen\"],\"7eMo+U\":[\"Zur Startseite\"],\"7p5kLi\":[\"Dashboard\"],\"85eoJ1\":[\"Zeitplan aktualisiert\"],\"8B9E2D\":[\"Tag:\"],\"8YwF1J\":[\"Gehe zu <0>Dashboard > Plugins > Webhook\"],\"8ZsakT\":[\"Passwort\"],\"8tjQCz\":[\"Entdecken\"],\"8vNtLy\":[\"Füge die obige Radarr-URL in das Feld \\\"List URL\\\" ein\"],\"8wYDMp\":[\"Bereits ein Konto?\"],\"9AE3vb\":[\"Öffne Plex, gehe zu <0>Settings > Webhooks<1/>\"],\"9GW0ZB\":[\"Import läuft noch im Hintergrund. Komm später wieder.\"],\"9NyAH9\":[\"Übersprungen\"],\"9Xhrps\":[\"Verbindung fehlgeschlagen\"],\"9ZLGbA\":[\"backups.\"],\"9eF5oV\":[\"Willkommen zurück\"],\"9rG25a\":[\"Server-URL\"],\"A+0rLe\":[\"Als abgeschlossen markiert\"],\"A1taO8\":[\"Search\"],\"AOHgZp\":[\"Episoden\"],\"AOddWK\":[[\"label\"],\" verbinden\"],\"ATfxL/\":[\"Trailer\"],\"AVlZoM\":[\"Umgebung\"],\"Acf6vF\":[\"Namen speichern\"],\"AdoUfN\":[\"Konnte nicht zur Merkliste hinzugefügt werden\"],\"AeXO77\":[\"Konto\"],\"AjtYj0\":[\"Auf der Merkliste\"],\"Avee+B\":[\"Name konnte nicht aktualisiert werden\"],\"B2R3xD\":[\"Geplante Backups umschalten\"],\"BEVzjL\":[\"Import fehlgeschlagen\"],\"BQnS5I\":[[\"source\"],\" öffnen, um Code einzugeben\"],\"BUnoSB\":[[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"Backup\"],\"other\":[\"Backups\"]}],\" gespeichert\"],\"BpttUI\":[\"Heute im Trend\"],\"BrrIs8\":[\"Speicher\"],\"BskWMl\":[\"Nicht erreichbar\"],\"BzEFor\":[\"oder\"],\"CGDHFb\":[\"Füge ein <0>Generic Destination hinzu und füge die URL oben ein\"],\"CGExDN\":[\"Bild-Cache konnte nicht geleert werden\"],\"CHeXFE\":[\"Status aktualisiert\"],\"CKyk7Q\":[\"Zurück\"],\"CaB/+I\":[\"Willkommen zurück, \",[\"name\"]],\"CodnUh\":[\"Aus Bibliothek entfernt\"],\"CpzGJY\":[\"Dies kann bei großen Bibliotheken einige Minuten dauern. Bitte schließe diesen Tab nicht.\"],\"CuPxpd\":[\"Erfordert ein aktives <0>Plex Pass<1/>-Abonnement.\"],\"CzBN6D\":[\"Jetzt entdecken\"],\"D+R2Xs\":[\"Import wird gestartet...\"],\"D3C4Yx\":[\"Aktuelles Passwort ist erforderlich\"],\"DBC3t5\":[\"Sonntag\"],\"DI4lqs\":[\"Person nicht gefunden\"],\"DKBbJf\":[\"\\\"\",[\"titleName\"],\"\\\" zur Merkliste hinzugefügt\"],\"DPfwMq\":[\"Fertig\"],\"DZse/o\":[\"Füge ein \\\"Generic Destination\\\" hinzu und füge die URL oben ein\"],\"E/QGRL\":[\"Deaktiviert\"],\"E6nRW7\":[\"URL kopieren\"],\"EWQlBH\":[\"Deine Bibliothek ist leer\"],\"EWaCfj\":[\"Gib dein aktuelles Passwort ein und wähle ein neues.\"],\"Eeo/Gy\":[\"Einstellung konnte nicht aktualisiert werden\"],\"Efn6WU\":[\"Dadurch werden alle nicht angereicherten Platzhaltertitel und gecachten Bilder von der Festplatte gelöscht. Alles wird bei Bedarf erneut importiert und heruntergeladen.\"],\"Etp5if\":[\"Import von \",[\"source\"],\" abgeschlossen.\"],\"F006BN\":[\"Von \",[\"source\"],\" importieren\"],\"FNvDMc\":[\"Diese Woche\"],\"FWSp+7\":[\"Gib den untenstehenden Code auf der Website von \",[\"source\"],\" ein, um Sofa zu autorisieren.\"],\"FXN0ro\":[\"Empfehlungen\"],\"FaU7Ag\":[\"Benachrichtigungstyp \\\"Playback Stop\\\" aktivieren\"],\"FhvLDl\":[[\"watchedCount\"],\"/\",[\"0\"],\" episodes\"],\"Fo2bwm\":[\"Schauspieler\"],\"FwRqjE\":[\"Speichernutzung für Bild-Cache und Backups\"],\"G00fgM\":[\"letzte \",[\"n\"]],\"G3myU+\":[\"Dienstag\"],\"GcCthe\":[\"In Bibliothek\"],\"Gf39AA\":[[\"0\"],\" ausgelöst\"],\"GnhfWw\":[\"Automatische Update-Prüfung umschalten\"],\"GptGxg\":[\"Passwort ändern\"],\"GqTZ+S\":[[\"ratingStars\"],\" \",[\"ratingStars\",\"plural\",{\"one\":[\"Stern\"],\"other\":[\"Sterne\"]}],\" bewertet\"],\"GrdN/F\":[\"Aufgeholt - \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"Episode\"],\"other\":[\"Episoden\"]}],\" als gesehen markiert\"],\"H4B5LG\":[\"Dieses Produkt verwendet die TMDB-API, wird jedoch nicht von TMDB unterstützt oder zertifiziert.\"],\"HBRd5n\":[\"Staffel \",[\"0\"]],\"HD+aQ7\":[\"Datenbank-Backups\"],\"HG+31u\":[\"Alle Caches leeren?\"],\"Haz+72\":[\"Dadurch werden alle gecachten TMDB-Bilder von der Festplatte gelöscht. Bilder werden bei Bedarf automatisch neu heruntergeladen.\"],\"HbReP5\":[\"\\\"\",[\"titleName\"],\"\\\" als abgeschlossen markiert\"],\"Hg6o8v\":[\"Systemstatus aktualisieren\"],\"HmEjnC\":[\"Letztes Ereignis \",[\"timeAgo\"]],\"HvDfH/\":[\"Importiert\"],\"I89uD4\":[\"Stelle wieder her...\"],\"IRoxQm\":[\"Registrierung geschlossen\"],\"IS0nrP\":[\"Konto erstellen\"],\"IY9rQ0\":[\"Speicherplatz freigeben, indem gecachte Metadaten und Bilder gelöscht werden\"],\"IrC12v\":[\"Anwendung\"],\"J28zul\":[\"Verbinde...\"],\"J64cFL\":[\"Bibliothek aktualisieren\"],\"JKmmmN\":[\"Zur Merkliste hinzugefügt\"],\"JN0f/Y\":[\"Mit TMDB verbinden\"],\"JR6aH2\":[\"Movies \",[\"periodSelect\"]],\"JRQitQ\":[\"Neues Passwort bestätigen\"],\"JRadFJ\":[\"Verfolge deine Sehgewohnheiten\"],\"JSwq8t\":[\"Das Erstellen neuer Konten ist derzeit deaktiviert.\"],\"JY5Oyv\":[\"Datenbank\"],\"JjsJnI\":[[\"0\"],\"/\",[\"1\"],\" episodes\"],\"JrFTcr\":[\"Verbinde...\"],\"JwFbe8\":[\"Serie\"],\"KDw4GX\":[\"Erneut versuchen\"],\"KG6681\":[\"Episode als gesehen markiert\"],\"KIS/Sd\":[\"Von anderen Sitzungen abmelden\"],\"KK0ghs\":[\"Bild-Cache\"],\"KVAoFR\":[\"unbegrenzt\"],\"KcXJuc\":[\"Leere...\"],\"KhtG3o\":[\"Passwort aktualisieren\"],\"Khux7w\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Titel\"],\"other\":[\"#\",\" Titel\"]}]],\"KmWyx0\":[\"Aufgabe\"],\"KoF0x6\":[\"Alter \",[\"age\"]],\"Ksiej9\":[\"Erfordert ein aktives Plex Pass-Abonnement.\"],\"Kx9NEt\":[\"Ungültiger Token\"],\"Lk6Jb/\":[\"Zuletzt abgefragt \",[\"timeAgo\"]],\"LmEEic\":[\"Warte auf Autorisierung...\"],\"LqKH42\":[\"Mit \",[\"0\"],\" verbinden\"],\"Lrpjji\":[[\"label\"],\" trennen\"],\"Lu6Udx\":[\"Klicke auf \\\"+\\\" und wähle \\\"Custom Lists\\\"\"],\"MDoX++\":[\"Sonarr-Listen-URL\"],\"MRBlCJ\":[\"Einige Episoden konnten nicht als ungesehen markiert werden\"],\"MUO7w9\":[\"\\\"\",[\"titleName\"],\"\\\" als gesehen markiert\"],\"MZbQHL\":[\"Keine Ergebnisse gefunden.\"],\"MdxR1u\":[\"Choose your preferred display language\"],\"MkyzAV\":[\"Sofa autorisieren, deine \",[\"0\"],\"-Bibliothek zu lesen. Kein Passwort wird geteilt.\"],\"N40H+G\":[\"Alle\"],\"N6SFhC\":[\"Stattdessen anmelden\"],\"N7h106\":[\"Sofa v\",[\"0\"],\" ist verfügbar\"],\"N9RF2M\":[\"Klicke auf \\\"Add Webhook\\\" und füge die URL oben ein\"],\"NBo4z0\":[\"Klicke auf <0>+ und wähle <1>Custom Lists\"],\"NICUmW\":[\"Regisseur\"],\"NQzPoO\":[\"Neues Backup\"],\"NSxl1l\":[\"Weitere Einstellungen\"],\"NVF43p\":[\"Uhrzeit:\"],\"NdPMwS\":[\"In deiner Bibliothek\"],\"NgaPSG\":[\"Zeitplan konnte nicht aktualisiert werden\"],\"O3oNi5\":[\"E-Mail\"],\"OBcj5W\":[\"Dadurch wird die aktuelle \",[\"label\"],\"-URL ungültig. Du musst sie in \",[\"label\"],\" aktualisieren.\"],\"OL8hbM\":[\"Das neue Passwort muss mindestens 8 Zeichen lang sein\"],\"ONWvwQ\":[\"Hochladen\"],\"OPFjyX\":[\"<0>Webhook-Plugin<1/> aus dem Jellyfin-Plugin-Katalog installieren\"],\"OW/+RD\":[\"Verlauf\"],\"OZdaTZ\":[\"Person\"],\"OvO76u\":[\"Zurück zur Anmeldung\"],\"OvdFIZ\":[\"Staffel als gesehen markiert\"],\"P2FLLe\":[\"Version ansehen\"],\"PBdLfg\":[\"Keine Titel für dieses Genre gefunden.\"],\"PQ3qDa\":[\"Bibliotheksdaten werden von \",[\"source\"],\" abgerufen...\"],\"PjNoxI\":[\"Geplantes Backup\"],\"Pn2B7/\":[\"Aktuelles Passwort\"],\"PnEbL/\":[[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"Stern\"],\"other\":[\"Sterne\"]}],\" bewertet\"],\"Pwqkdw\":[\"Lade...\"],\"Py87xY\":[\"Autorisierung erfolgreich, aber die Bibliothek konnte nicht abgerufen werden. Bitte versuche es erneut.\"],\"Q3MPWA\":[\"Passwort aktualisieren\"],\"QHcLEN\":[\"Verbunden\"],\"QK4UIx\":[\"Als gesehen markieren\"],\"Qjlym2\":[\"Konto konnte nicht erstellt werden\"],\"Qm1NmK\":[\"ODER\"],\"Qoq+GP\":[\"Mehr lesen\"],\"QphVZW\":[\"Server nicht erreichbar\"],\"QqLJHH\":[\"Dieses Jahr\"],\"R0yu2l\":[\"Aufholen\"],\"R4YBui\":[\"Suche nach Filmen und Serien, um mit dem Tracken zu beginnen\"],\"RH46vw\":[[\"0\"],\"/\",[\"1\"],\" \",[\"2\",\"plural\",{\"one\":[\"Episode\"],\"other\":[\"Episoden\"]}]],\"RIR15/\":[\"Radarr-Listen-URL\"],\"RLe7Vk\":[\"Prüfe...\"],\"ROq8cl\":[\"Datei konnte nicht verarbeitet werden\"],\"RQq8Si\":[\"Registrierung geöffnet\"],\"S0soqb\":[\"Profilbild konnte nicht entfernt werden\"],\"S1McZh\":[\"Profilbild konnte nicht hochgeladen werden\"],\"S2ble5\":[[\"0\"],\" Filme, \",[\"1\"],\" Episoden\"],\"S2qPRR\":[\"Filme & Serien suchen...\"],\"SDND4q\":[\"Nicht konfiguriert\"],\"SFdAk9\":[\"S\",[\"seasonNum\"],\" E\",[\"epNum\"],\" als ungesehen markiert\"],\"SUIUkB\":[\"Alle als ungesehen markieren\"],\"SbS+Bm\":[\"URL neu generieren\"],\"SlfejT\":[\"Fehler\"],\"Sp86ju\":[[\"0\"],\" Ep\",[\"1\"]],\"SrfROI\":[\"Als Nächstes\"],\"SyPRjk\":[\"Sofa protokolliert Filme und Episoden automatisch, wenn du sie zu Ende gesehen hast\"],\"T0/7WG\":[\"Nächstes Backup \",[\"distance\"]],\"TEaX6q\":[\"Backup gelöscht\"],\"TI7IKo\":[\"Rated \",[\"0\"],\" star\",[\"1\"]],\"TMb7iE\":[\"Profilbild entfernt\"],\"TqyQQS\":[\"Ereigniskategorie <0>Playback aktivieren\"],\"Tz0i8g\":[\"Einstellungen\"],\"U+FxtW\":[\"Verfolge, was du schaust. Wisse, was als Nächstes kommt.<0/>Deine Bibliothek, deine Daten, deine Regeln.\"],\"U3pytU\":[\"Admin\"],\"UC+OWB\":[\"Offene Registrierung umschalten\"],\"UDMjsP\":[\"Schnellaktionen\"],\"UmQ6Fe\":[\"Bild-Cache leeren?\"],\"UtDm3q\":[\"URL in die Zwischenablage kopiert\"],\"V1Kh9Z\":[\"Episoden \",[\"select\"]],\"V6uzvC\":[\"Ähnliche Titel\"],\"V9CuQ+\":[\"Mit \",[\"source\"],\" verbinden\"],\"VAcXNz\":[\"Mittwoch\"],\"VKyhZK\":[\"Titel nicht gefunden\"],\"VQvpro\":[\"Füge die obige Sonarr-URL in das Feld \\\"List URL\\\" ein\"],\"VhMDMg\":[\"Passwort ändern\"],\"Vx0ayx\":[\"Einige Episoden konnten nicht markiert werden\"],\"WDC4PF\":[\"Episodes \",[\"periodSelect\"]],\"WEYdDv\":[\"Empfohlen\"],\"WMCwmR\":[\"Nach Updates suchen\"],\"WP48q2\":[\"Bild-Cache\"],\"WT1Ibn\":[\"Letzter Lauf\"],\"Wb3E4g\":[\"Jetzt ausführen\"],\"WgF2UQ\":[\"Du verwendest v\",[\"0\"],\".\"],\"WtWhSi\":[\"Bewertung entfernt\"],\"Wy/3II\":[\"Zuletzt abgefragt \",[\"0\"]],\"X0OwOB\":[\"today\"],\"XFCSYs\":[\"Besetzung\"],\"XN23JY\":[\"Dadurch werden nicht angereicherte Platzhaltertitel, die in keiner Bibliothek vorhanden sind, und verwaiste Personeneinträge bereinigt. Gelöschte Titel werden bei erneutem Zugriff wieder importiert.\"],\"XZwihE\":[\"Bereit - noch nichts empfangen\"],\"XjTduw\":[\"Bild hochladen\"],\"YEGzVq\":[[\"label\"],\" konnte nicht verbunden werden\"],\"YErf89\":[\"Metadaten-Cache konnte nicht geleert werden\"],\"YQ768h\":[\"Szene nicht gefunden\"],\"YiRsXK\":[\"Zuletzt angesehen löschen?\"],\"Yjp1zf\":[\"Noch keinen Server?\"],\"YqMfa9\":[\"Überprüfe die gefundenen Einträge und wähle aus, was importiert werden soll.\"],\"ZGUYm0\":[\"Bereit - noch nicht abgefragt\"],\"ZQKLI1\":[\"Gefahrenzone\"],\"ZVZUoU\":[[\"0\"],\" gecachte Bilder\"],\"ZWTQ81\":[\"Ansehen auf \",[\"name\"]],\"a3LDKx\":[\"Sicherheit\"],\"aLBUiR\":[\"<0><1><2>\",[\"0\"],\"<3>\",[\"1\"],\" Backups werden aufbewahrt.\"],\"aM0+kY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" veralteter Titel\"],\"other\":[\"#\",\" veraltete Titel\"]}],\" und \",[\"1\",\"plural\",{\"one\":[\"#\",\" verwaiste Person\"],\"other\":[\"#\",\" verwaiste Personen\"]}],\" bereinigt\"],\"aO1AxG\":[\"Episode als ungesehen markiert\"],\"aV/hDI\":[[\"label\"],\" konnte nicht getrennt werden\"],\"acbSg0\":[\"Doppeltippen zum Filtern nach \",[\"label\"]],\"agE7k4\":[[\"stars\",\"plural\",{\"one\":[\"#\",\" Stern\"],\"other\":[\"#\",\" Sterne\"]}],\" vergeben\"],\"alPRaV\":[\"Titel auf deiner Sofa-Merkliste werden automatisch zum Download hinzugefügt, wenn Radarr diese Liste abruft (standardmäßig alle 12 Stunden)\"],\"aourBv\":[\"Geplante Backups aktiviert\"],\"apLLSU\":[\"Möchtest du dich wirklich abmelden?\"],\"atc9MA\":[\"Öffne Emby, gehe zu <0>Settings > Webhooks\"],\"auVUJO\":[\"Datenbank wiederherstellen?\"],\"ayqfr4\":[[\"label\"],\"-URL neu generiert\"],\"b/8KCH\":[\"Dadurch werden alle Episoden dieser Serie als gesehen markiert. Du kannst dies später rückgängig machen, indem du einzelne Staffeln abwählst.\"],\"b0F4W5\":[\"this month\"],\"b3Thhd\":[\"Hochladen fehlgeschlagen\"],\"b5DFtH\":[\"Passwort festlegen\"],\"bHYIks\":[\"Abmelden\"],\"bITrbE\":[\"Alles leeren\"],\"bNmdjU\":[\"Merkliste\"],\"bTRwag\":[\"Aus Bibliothek entfernen\"],\"bXMotV\":[\"Als gesehen markiert\"],\"bezGJ2\":[[\"0\"],\" images\"],\"boJlGf\":[\"Seite nicht gefunden\"],\"c1ssjI\":[\"Importiere von \",[\"source\"]],\"c3b0B0\":[\"Loslegen\"],\"c4b9Dm\":[\"Keine Ergebnisse für \\\"\",[\"debouncedQuery\"],\"\\\"\"],\"cQPKZt\":[\"Zum Dashboard\"],\"ccAJSB\":[\"Keeping\"],\"cgvva8\":[[\"0\"],\" Bewertungen\"],\"cnGeoo\":[\"Löschen\"],\"cpE88+\":[\"Erstelle dein Konto\"],\"d/6MoL\":[\"Konto und Einstellungen verwalten\"],\"dA7BWh\":[\"Erfordert Emby Server 4.7.9+ und eine aktive Emby Premiere-Lizenz.\"],\"dEgA5A\":[\"Abbrechen\"],\"dTZwve\":[\"Alle Episoden als gesehen markiert\"],\"dUCJry\":[\"Neueste\"],\"ddwpAr\":[\"Warnungen (\",[\"0\"],\")\"],\"e/ToF5\":[\"Mit \",[\"0\"],\" anmelden\"],\"e9sZMS\":[\"Dadurch wird das Backup vom <0>\",[\"0\"],\" dauerhaft gelöscht. Dies kann nicht rückgängig gemacht werden.\"],\"eFRooE\":[\"Letzter Lauf fehlgeschlagen\"],\"eM39Om\":[\"Alle Episoden von \",[\"seasonLabel\"],\" als gesehen markiert\"],\"eZjYb8\":[\"Autor\"],\"ecUA8p\":[\"Heute\"],\"evBxZy\":[\"Wo ansehen\"],\"ezDa1h\":[\"Dokumentation öffnen\"],\"f+m696\":[\"Beim Laden dieser Seite ist ein unerwarteter Fehler aufgetreten. Du kannst es erneut versuchen oder zum Dashboard zurückkehren.\"],\"f/AKdU\":[\"Möchtest du \",[\"label\"],\" wirklich trennen? Die aktuelle URL wird nicht mehr funktionieren.\"],\"f7ax8J\":[\"Im Browser öffnen...\"],\"fMPkxb\":[\"Mehr anzeigen\"],\"fNMqNn\":[\"Beliebte Serien\"],\"fObVvy\":[\"Profilbild aktualisiert\"],\"fRettQ\":[[\"0\"],\" Einträge\"],\"fUDRF9\":[\"Auf Merkliste\"],\"fcWrnU\":[\"Abmelden\"],\"fgLNSM\":[\"Registrieren\"],\"fsAEqk\":[\"Weiterschauen\"],\"fzAeQI\":[\"Registrierung auf \",[\"serverHost\"]],\"g+gBfk\":[\"Verarbeite...\"],\"g4JYff\":[[\"0\"],\" Einträge von \",[\"1\"],\" importiert\"],\"gKtb5i\":[\"Titel auf deiner Sofa-Merkliste werden automatisch zum Download hinzugefügt, wenn Sonarr diese Liste abruft (standardmäßig alle 6 Stunden)\"],\"gaIAMq\":[\"Bild entfernen\"],\"gbEEMp\":[\"Backup löschen\"],\"gcNLi0\":[\"Update-Prüfung aktiviert\"],\"gmB6oO\":[\"Zeitplan\"],\"h/T5Yb\":[\"Offene Registrierung\"],\"h4yKYk\":[\"Nächster Lauf\"],\"h7MgpO\":[\"Tastaturkürzel\"],\"hTXYdY\":[\"Backup konnte nicht erstellt werden\"],\"hXYY5Q\":[\"Alle Episoden von \",[\"0\"],\" als ungesehen markiert\"],\"he3ygx\":[\"Kopieren\"],\"hjGupC\":[\"Verbindung zum Import verloren. Status in den Einstellungen prüfen.\"],\"hlqjFc\":[\"In Bibliothek\"],\"hou0tP\":[\"Streamen\"],\"hty0d5\":[\"Montag\"],\"i0qMbr\":[\"Startseite\"],\"i9rcQ/\":[\"Filme\"],\"iGma9e\":[\"Aktualisierung fehlgeschlagen\"],\"iSLIjg\":[\"Verbinden\"],\"iWv3ck\":[\"Aufholen fehlgeschlagen\"],\"iXZ09g\":[\"Als abgeschlossen markieren\"],\"id08cd\":[\"S\",[\"seasonNum\"],\" E\",[\"epNum\"],\" als gesehen markiert\"],\"ih87w/\":[\"Zur Bibliothek hinzufügen\"],\"ihn4zD\":[\"Suchen...\"],\"itDEco\":[\"Bereits ein Konto? Anmelden\"],\"itheEn\":[\"Mit Werbung\"],\"iwCRIF\":[\"Du wirst abgemeldet, um die Server-URL zu ändern.\"],\"j5GBIy\":[\"Öffne Radarr, gehe zu Settings > Import Lists\"],\"jAe8l4\":[[\"0\"],\" Backups · zuletzt <0/>\"],\"jB3sfe\":[\"Manuelles Backup\"],\"jFnMJ8\":[\"Doppeltippen zum Entfernen dieses Filters\"],\"jQsPwL\":[\"Geplante Backups deaktiviert\"],\"jSjGeu\":[[\"0\"],\" Einträge haben keine externen IDs und werden über die Titelsuche gefunden, was weniger genau sein kann.\"],\"jX6Gzg\":[\"Dadurch wird deine gesamte Datenbank durch die hochgeladene Datei ersetzt. Zuerst wird ein Sicherheits-Backup deiner aktuellen Daten erstellt. Aktive Sitzungen müssen nach der Wiederherstellung möglicherweise neu geladen werden.\"],\"jiHVUy\":[\"Backup vor Wiederherstellung\"],\"k6c41p\":[\"Hintergrundaufgaben\"],\"kBDOjB\":[\"Backup-Zeitplan\"],\"kkDQ8m\":[\"Donnerstag\"],\"klOeIX\":[\"Passwort konnte nicht geändert werden\"],\"ks3XeZ\":[\"Öffne Sonarr, gehe zu Settings > Import Lists\"],\"kvuCtu\":[\"Beim Laden dieses Titels ist etwas schiefgelaufen. Bitte versuche es erneut.\"],\"kx0s+n\":[\"Ergebnisse\"],\"l2wcoS\":[\"Letzter Lauf erfolgreich\"],\"l3s5ri\":[\"Import\"],\"lCF0wC\":[\"Aktualisieren\"],\"lJ1yo4\":[\"Anmeldung fehlgeschlagen\"],\"lVqzRx\":[\"Klicke auf <0>Add Webhook und füge die URL oben ein\"],\"lXkUEV\":[\"Verfügbarkeit\"],\"lcLe89\":[\"Nach Filmen, Serien suchen oder Befehle ausführen\"],\"lfVyvz\":[\"Zur Merkliste hinzufügen\"],\"llDXYJ\":[\"Backups\"],\"llkZR0\":[\"Integrationen konnten nicht geladen werden\"],\"ln9/n9\":[\"Noch kein Konto?\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"lqY3WY\":[\"Server wechseln\"],\"luoodD\":[\"Einrichtung erforderlich\"],\"m5WhJy\":[\"Automatische Update-Prüfung\"],\"mIx58S\":[\"Bilder leeren\"],\"mYBORk\":[\"Film\"],\"ml9cU0\":[[\"label\"],\"-URL konnte nicht neu generiert werden\"],\"mqwkjd\":[\"Systemstatus\"],\"mqxHH7\":[\"Zum Entdecken\"],\"mzI/c+\":[\"Herunterladen\"],\"n1ekoW\":[\"Anmelden\"],\"n3Pzd7\":[\"Backup erstellt\"],\"nBHvPL\":[\"Bearbeitung abbrechen\"],\"nJw77c\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Bild\"],\"other\":[\"#\",\" Bilder\"]}]],\"nO0Qnj\":[\"Dein Code:\"],\"nRP1xx\":[\"Brauchst du mehr Hilfe?\"],\"nV1LjT\":[\"Benachrichtigungstyp <0>Playback Stop aktivieren\"],\"nVsE67\":[\"Als am Schauen markieren\"],\"nZ7lF1\":[\"Gerätecode abgelaufen. Bitte versuche es erneut.\"],\"nbfdhU\":[\"Integrationen\"],\"nbmpf9\":[\"Metadaten leeren\"],\"nnKJTm\":[\"Nicht alle Episoden konnten als gesehen markiert werden\"],\"nszbQG\":[\"Noch keine Backups\"],\"nuh/Wq\":[\"Webhook-URL\"],\"nwtY4N\":[\"Etwas ist schiefgelaufen\"],\"oAIA3w\":[\"Suche nach Filmen, Serien oder Personen\"],\"oC8IMh\":[\"Filme, Serien, Personen suchen...\"],\"oNvZcA\":[\"Episoden diese Woche\"],\"oXq+Wr\":[[\"label\"],\" verbunden\"],\"ogtYkT\":[\"Passwort aktualisiert\"],\"ojtedN\":[\"Öffne Radarr, gehe zu <0>Settings > Import Lists\"],\"olMi35\":[\"Für dich empfohlen\"],\"p+PZEl\":[\"Das passiert in deiner Bibliothek\"],\"pAtylB\":[\"Nicht gefunden\"],\"pG9pq1\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Datei\"],\"other\":[\"#\",\" Dateien\"]}],\" gelöscht, \",[\"freed\"],\" freigegeben\"],\"pWWFjv\":[\"Geprüft <0/>\"],\"ph76H6\":[\"Neuen Benutzern die Registrierung erlauben\"],\"pjgw0N\":[\"Wähle aus, wie du deine \",[\"0\"],\"-Daten importieren möchtest.\"],\"puo3W3\":[\"Weiterleiten...\"],\"q3GraM\":[\"...und \",[\"0\"],\" weitere\"],\"q6nrFE\":[\"gestorben mit \",[\"age\"]],\"q6pUQ9\":[\"Lade eine .db-Datei hoch, um die aktuelle Datenbank zu ersetzen. Zuerst wird ein Sicherheits-Backup erstellt.\"],\"q8yluz\":[\"Dein Name\"],\"qA6VR5\":[\"Erfordert <0>Emby Server 4.7.9+ und eine aktive <1>Emby Premiere<2/>-Lizenz.\"],\"qF2IBM\":[\"Filme diesen Monat\"],\"qHbApt\":[\"Backup-Zeitplaneinstellungen konnten nicht geladen werden.\"],\"qLB1zX\":[\"Lade einen \",[\"0\"],\"-Export aus deinen \",[\"1\"],\"-Kontoeinstellungen hoch.\"],\"qPNzfu\":[\"Update-Prüfung deaktiviert\"],\"qWoML/\":[\"Füge einen neuen Webhook hinzu und füge die URL oben ein\"],\"qiOIiY\":[\"Kaufen\"],\"qn1X6N\":[\"Registrierungseinstellung konnte nicht aktualisiert werden\"],\"qqWcBV\":[\"Abgeschlossen\"],\"qqeAJM\":[\"Nie\"],\"r9aDAY\":[[\"count\"],\" \",[\"count\",\"plural\",{\"one\":[\"frühere Episode\"],\"other\":[\"frühere Episoden\"]}],\" noch ungesehen\"],\"rLgPvm\":[\"Backup\"],\"rSTpb5\":[\"Server-Status\"],\"rczylF\":[\"this week\"],\"rdymVD\":[\"Aufgabe auslösen\"],\"rtir7c\":[\"unbekannt\"],\"s0U4ZZ\":[\"TV-Episoden\"],\"s4vVUm\":[\"Personendetails konnten nicht geladen werden\"],\"s9dVME\":[\"Episode konnte nicht als ungesehen markiert werden\"],\"sGH11W\":[\"Server\"],\"sl/qWH\":[\"Profilbild hochladen\"],\"sstysK\":[\"Episode konnte nicht markiert werden\"],\"stZeiF\":[[\"watched\"],\"/\",[\"total\"],\" Episoden\"],\"t/Ch8S\":[\"Als am Schauen markiert\"],\"t/YqKh\":[\"Entfernen\"],\"tfDRzk\":[\"Speichern\"],\"tiymc0\":[\"Etwas ist schiefgelaufen...\"],\"u9ugU7\":[[\"watchedCount\"],\"/\",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"Episode\"],\"other\":[\"Episoden\"]}]],\"uBAxNB\":[\"Cutter\"],\"uBrbSu\":[[\"0\"],\"-Verbindung konnte nicht gestartet werden\"],\"uM6jnS\":[\"Wiederherstellung fehlgeschlagen\"],\"uMrJrX\":[\"Nur für Admins\"],\"uswLvZ\":[\"Der gesuchte Titel existiert nicht oder wurde möglicherweise aus der Datenbank entfernt.\"],\"uxOntd\":[[\"watchedCount\"],\" von \",[\"0\"],\" Episoden gesehen\"],\"v2CA3w\":[\"Foto ändern\"],\"v5ipVu\":[\"Alle Episoden als gesehen markieren?\"],\"vKfeax\":[\"Öffne Emby, gehe zu Settings > Webhooks\"],\"vXIe7J\":[\"Sprache\"],\"vuCCZ7\":[\"Importdaten konnten nicht verarbeitet werden\"],\"vwKERN\":[\"Backup konnte nicht gelöscht werden\"],\"w8pqsh\":[\"Alle als gesehen markieren\"],\"wA7B2T\":[\"Neue Konten werden derzeit nicht akzeptiert. Kontaktiere den Admin, wenn du Zugang benötigst.\"],\"wGFX13\":[\"Startzeit\"],\"wR1UAy\":[\"Beliebte Filme\"],\"wRWcdL\":[\"Trailer abspielen\"],\"wThGrS\":[\"App-Einstellungen\"],\"wZK4Xg\":[\"Noch nie ausgeführt\"],\"wdLxgL\":[\"Mitglied seit \",[\"memberSince\"]],\"wja8aL\":[\"Ohne Titel\"],\"wtGebH\":[\"Die gesuchte Person existiert nicht oder wurde möglicherweise aus der Datenbank entfernt.\"],\"wtsbt5\":[\"Zur Merkliste hinzufügen\"],\"wtuVU4\":[\"Häufigkeit\"],\"wx7pwA\":[\"Als gesehen markieren\"],\"x4ZiTl\":[\"Einrichtungsanleitung\"],\"xCJdfg\":[\"Löschen\"],\"xGVfLh\":[\"Weiter\"],\"xLoCm2\":[\"Konfiguration prüfen\"],\"xSrU2g\":[[\"healthyCount\"],\" von \",[\"0\"],\" Jobs fehlerfrei\"],\"xazqmy\":[\"Staffeln\"],\"xbBXhy\":[\"GitHub regelmäßig auf neue Sofa-Versionen prüfen\"],\"xrh2/M\":[\"Konnte nicht als gesehen markiert werden\"],\"y3e9pF\":[\"Backup löschen?\"],\"y6Urel\":[\"Nächste Episode\"],\"yGvjAo\":[\"Update verfügbar: \",[\"0\"]],\"yKu/3Y\":[\"Wiederherstellen\"],\"yYxB17\":[\"Alle löschen\"],\"ybtG1U\":[[\"0\"],\" backup\",[\"1\"],\" stored\"],\"yey/zg\":[\"Datenbank wiederhergestellt. Lade neu...\"],\"ygo0l/\":[\"Filme und Serien tracken\"],\"yvwIbI\":[\"Exportdatei hochladen\"],\"yz7wBu\":[\"Schließen\"],\"z1U/Fh\":[\"Bewertung\"],\"z5evln\":[\"Keine Internetverbindung\"],\"zAvS8w\":[\"Anmelden, um fortzufahren\"],\"zEqK2w\":[\"Die gesuchte Seite existiert nicht.\"],\"zFkiTv\":[\"Webhook-Plugin aus dem Jellyfin-Plugin-Katalog installieren\"],\"zNyR4f\":[\"Bevorzugtes Qualitätsprofil und Stammordner festlegen\"],\"za8Le/\":[\"Registrierung geschlossen\"],\"zb77GC\":[\"Leihen\"],\"ztAdhw\":[\"Name aktualisiert\"]}")as Messages; \ No newline at end of file diff --git a/packages/i18n/src/po/en.po b/packages/i18n/src/po/en.po index 015d45d..86c35a3 100644 --- a/packages/i18n/src/po/en.po +++ b/packages/i18n/src/po/en.po @@ -24,12 +24,12 @@ msgid "...and {0} more" msgstr "" #. placeholder {0}: systemHealth.data.imageCache.imageCount -#: apps/native/src/app/(tabs)/(settings)/index.tsx:456 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:438 msgid "{0, plural, one {# image} other {# images}}" msgstr "" #. placeholder {0}: systemHealth.data.database.titleCount -#: apps/native/src/app/(tabs)/(settings)/index.tsx:442 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:424 msgid "{0, plural, one {# title} other {# titles}}" msgstr "" @@ -44,12 +44,12 @@ msgstr "" #~ msgstr "{0} backup{1} stored" #. placeholder {0}: backups.backupCount -#: apps/web/src/components/settings/system-health-section.tsx:599 +#: apps/web/src/components/settings/system-health-section.tsx:593 msgid "{0} backups · last <0/>" msgstr "" #. placeholder {0}: imageCache.imageCount.toLocaleString() -#: apps/web/src/components/settings/system-health-section.tsx:569 +#: apps/web/src/components/settings/system-health-section.tsx:563 msgid "{0} cached images" msgstr "" @@ -157,6 +157,8 @@ msgstr "" msgid "Actions" msgstr "" +#: apps/native/src/app/person/[id].tsx:50 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:28 #: apps/web/src/components/people/person-hero.tsx:69 msgid "Actor" msgstr "" @@ -200,18 +202,18 @@ msgid "Added to watchlist" msgstr "" #: apps/native/src/app/(tabs)/(settings)/index.tsx:342 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:431 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:470 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:413 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:452 #: apps/web/src/components/nav-bar.tsx:223 #: apps/web/src/components/settings/account-section.tsx:309 msgid "Admin" msgstr "" -#: apps/web/src/routes/_app/settings.tsx:118 +#: apps/web/src/routes/_app/settings.tsx:154 msgid "Admin only" msgstr "" -#: apps/native/src/app/person/[id].tsx:267 +#: apps/native/src/app/person/[id].tsx:249 #: apps/web/src/components/people/person-hero.tsx:89 msgid "age {age}" msgstr "" @@ -233,15 +235,15 @@ msgstr "" msgid "Already have an account? Sign in" msgstr "" -#: apps/web/src/routes/__root.tsx:143 +#: apps/web/src/routes/__root.tsx:142 msgid "An unexpected error occurred while loading this page. You can try again or head back to the dashboard." msgstr "" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:407 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:389 msgid "Anonymous usage reporting" msgstr "" -#: apps/web/src/routes/_app/settings.tsx:99 +#: apps/web/src/routes/_app/settings.tsx:135 msgid "App Settings" msgstr "" @@ -307,8 +309,8 @@ msgstr "" msgid "Backup schedule" msgstr "" -#: apps/web/src/components/settings/system-health-section.tsx:589 -#: apps/web/src/routes/_app/settings.tsx:154 +#: apps/web/src/components/settings/system-health-section.tsx:583 +#: apps/web/src/routes/_app/settings.tsx:190 msgid "Backups" msgstr "" @@ -354,7 +356,7 @@ msgstr "" msgid "Cancel editing" msgstr "" -#: apps/native/src/app/title/[id].tsx:489 +#: apps/native/src/app/title/[id].tsx:493 #: apps/web/src/components/titles/cast-carousel.tsx:21 msgid "Cast" msgstr "" @@ -392,7 +394,7 @@ msgstr "" msgid "Check configuration" msgstr "" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:483 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:465 msgid "Check for updates" msgstr "" @@ -420,7 +422,7 @@ msgstr "" msgid "Clear" msgstr "" -#: apps/web/src/components/command-palette.tsx:302 +#: apps/web/src/components/command-palette.tsx:297 msgid "Clear all" msgstr "" @@ -447,11 +449,12 @@ msgstr "" msgid "Click <0>Add Webhook and paste the URL above" msgstr "" -#: apps/native/src/components/navigation/modal-stack-header.tsx:14 +#: apps/native/src/components/navigation/modal-layout.tsx:26 +#: apps/native/src/components/navigation/modal-layout.tsx:38 msgid "Close" msgstr "" -#: apps/native/src/app/(tabs)/(home)/index.tsx:54 +#: apps/native/src/app/(tabs)/(home)/index.tsx:146 #: apps/native/src/components/titles/status-action-button.tsx:45 #: apps/web/src/components/dashboard/stats-display.tsx:219 #: apps/web/src/components/title-card.tsx:74 @@ -492,7 +495,7 @@ msgid "Connect with {0}" msgstr "" #: apps/native/src/app/(auth)/server-url.tsx:176 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:449 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:431 #: apps/web/src/components/settings/system-health-section.tsx:236 msgid "Connected" msgstr "" @@ -521,7 +524,7 @@ msgstr "" msgid "Continue" msgstr "" -#: apps/native/src/app/(tabs)/(home)/index.tsx:99 +#: apps/native/src/app/(tabs)/(home)/index.tsx:161 #: apps/web/src/components/dashboard/continue-watching-section.tsx:22 msgid "Continue Watching" msgstr "" @@ -542,7 +545,7 @@ msgstr "" msgid "Could not load integrations" msgstr "" -#: apps/native/src/app/person/[id].tsx:185 +#: apps/native/src/app/person/[id].tsx:172 msgid "Could not load person details" msgstr "" @@ -576,18 +579,18 @@ msgstr "" msgid "Current password is required" msgstr "" -#: apps/web/src/routes/_app/settings.tsx:180 +#: apps/web/src/routes/_app/settings.tsx:216 msgid "Danger Zone" msgstr "" -#: apps/web/src/routes/__root.tsx:164 +#: apps/web/src/routes/__root.tsx:163 #: apps/web/src/routes/_app/people.$id.tsx:76 #: apps/web/src/routes/_app/titles.$id.tsx:119 #: apps/web/src/routes/_app/titles.$id.tsx:165 msgid "Dashboard" msgstr "" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:439 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:421 #: apps/web/src/components/settings/system-health-section.tsx:210 msgid "Database" msgstr "" @@ -627,17 +630,19 @@ msgstr "" msgid "Device code expired. Please try again." msgstr "" -#: apps/native/src/app/person/[id].tsx:267 +#: apps/native/src/app/person/[id].tsx:249 #: apps/web/src/components/people/person-hero.tsx:89 msgid "died at {age}" msgstr "" +#: apps/native/src/app/person/[id].tsx:51 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:29 #: apps/web/src/components/people/person-hero.tsx:71 msgid "Director" msgstr "" #: apps/web/src/components/settings/system-health-section.tsx:394 -#: apps/web/src/components/settings/system-health-section.tsx:580 +#: apps/web/src/components/settings/system-health-section.tsx:574 msgid "Disabled" msgstr "" @@ -680,6 +685,8 @@ msgstr "" msgid "Download backup" msgstr "" +#: apps/native/src/app/person/[id].tsx:54 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:32 #: apps/web/src/components/people/person-hero.tsx:77 msgid "Editor" msgstr "" @@ -748,6 +755,11 @@ msgstr "" msgid "Episodes" msgstr "" +#. placeholder {0}: periodLabels[episodePeriod] +#: apps/native/src/app/(tabs)/(home)/index.tsx:125 +msgid "Episodes {0}" +msgstr "Episodes {0}" + #: apps/web/src/components/dashboard/stats-display.tsx:162 #~ msgid "Episodes {periodSelect}" #~ msgstr "Episodes {periodSelect}" @@ -757,8 +769,8 @@ msgid "Episodes {select}" msgstr "" #: apps/native/src/app/(tabs)/(home)/index.tsx:52 -msgid "Episodes this week" -msgstr "" +#~ msgid "Episodes this week" +#~ msgstr "" #: apps/native/src/app/change-password.tsx:67 #: apps/native/src/app/change-password.tsx:77 @@ -770,7 +782,9 @@ msgstr "" msgid "Errors ({0})" msgstr "" -#: apps/native/src/app/(tabs)/(home)/index.tsx:127 +#: apps/native/src/app/(tabs)/(explore)/_layout.tsx:7 +#: apps/native/src/app/(tabs)/(home)/index.tsx:189 +#: apps/native/src/components/navigation/native-tab-bar.tsx:32 #: apps/web/src/components/nav-bar.tsx:116 #: apps/web/src/components/nav-bar.tsx:277 msgid "Explore" @@ -959,7 +973,7 @@ msgstr "" msgid "Fetching your library data from {source}..." msgstr "" -#: apps/native/src/app/person/[id].tsx:296 +#: apps/native/src/app/person/[id].tsx:279 #: apps/web/src/components/people/filmography-grid.tsx:67 msgid "Filmography" msgstr "" @@ -988,9 +1002,9 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/native/src/app/person/[id].tsx:189 -#: apps/native/src/app/person/[id].tsx:213 -#: apps/native/src/app/title/[id].tsx:239 +#: apps/native/src/app/person/[id].tsx:176 +#: apps/native/src/app/person/[id].tsx:196 +#: apps/native/src/app/title/[id].tsx:235 msgid "Go back" msgstr "" @@ -1002,7 +1016,7 @@ msgstr "" msgid "Go to <0>Dashboard > Plugins > Webhook" msgstr "" -#: apps/web/src/components/command-palette.tsx:345 +#: apps/web/src/components/command-palette.tsx:339 msgid "Go to Dashboard" msgstr "" @@ -1010,7 +1024,7 @@ msgstr "" msgid "Go to Dashboard > Plugins > Webhook" msgstr "" -#: apps/web/src/components/command-palette.tsx:356 +#: apps/web/src/components/command-palette.tsx:349 msgid "Go to Explore" msgstr "" @@ -1022,21 +1036,23 @@ msgstr "" msgid "Here's what's happening with your library" msgstr "" +#: apps/native/src/app/(tabs)/(home)/_layout.tsx:7 +#: apps/native/src/components/navigation/native-tab-bar.tsx:28 #: apps/web/src/components/nav-bar.tsx:115 #: apps/web/src/components/nav-bar.tsx:276 msgid "Home" msgstr "" #: apps/web/src/components/settings/system-health-section.tsx:308 -#: apps/web/src/components/settings/system-health-section.tsx:558 +#: apps/web/src/components/settings/system-health-section.tsx:552 msgid "Image cache" msgstr "" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:453 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:435 msgid "Image Cache" msgstr "" -#: apps/web/src/components/settings/system-health-section.tsx:546 +#: apps/web/src/components/settings/system-health-section.tsx:540 msgid "Image cache and backup disk usage" msgstr "" @@ -1088,7 +1104,7 @@ msgstr "" msgid "Importing from {source}" msgstr "" -#: apps/native/src/app/(tabs)/(home)/index.tsx:53 +#: apps/native/src/app/(tabs)/(home)/index.tsx:138 msgid "In library" msgstr "" @@ -1096,7 +1112,7 @@ msgstr "" msgid "In Library" msgstr "" -#: apps/native/src/app/(tabs)/(home)/index.tsx:117 +#: apps/native/src/app/(tabs)/(home)/index.tsx:179 #: apps/web/src/components/dashboard/library-section.tsx:35 msgid "In Your Library" msgstr "" @@ -1132,13 +1148,13 @@ msgstr "" msgid "Keeping <0><1><2>{0}<3>{1} backups." msgstr "" -#: apps/web/src/components/command-palette.tsx:366 -#: apps/web/src/components/command-palette.tsx:381 +#: apps/web/src/components/command-palette.tsx:359 +#: apps/web/src/components/command-palette.tsx:374 msgid "Keyboard Shortcuts" msgstr "" #: apps/native/src/app/(tabs)/(settings)/index.tsx:383 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:391 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:506 #: apps/web/src/components/settings/language-section.tsx:34 msgid "Language" msgstr "" @@ -1264,15 +1280,16 @@ msgstr "" msgid "Monday" msgstr "" -#: apps/native/src/app/title/[id].tsx:508 +#: apps/native/src/app/title/[id].tsx:512 msgid "More Like This" msgstr "" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:506 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:488 msgid "More Settings" msgstr "" -#: apps/native/src/app/title/[id].tsx:337 +#: apps/native/src/app/title/[id].tsx:333 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:22 #: apps/native/src/components/search/search-result-row.tsx:34 #: apps/native/src/components/search/search-result-row.tsx:81 #: apps/web/src/components/explore/hero-banner.tsx:54 @@ -1285,6 +1302,11 @@ msgstr "" msgid "Movies" msgstr "" +#. placeholder {0}: periodLabels[moviePeriod] +#: apps/native/src/app/(tabs)/(home)/index.tsx:114 +msgid "Movies {0}" +msgstr "Movies {0}" + #: apps/web/src/components/dashboard/stats-display.tsx:161 #~ msgid "Movies {periodSelect}" #~ msgstr "Movies {periodSelect}" @@ -1294,8 +1316,8 @@ msgid "Movies {select}" msgstr "" #: apps/native/src/app/(tabs)/(home)/index.tsx:51 -msgid "Movies this month" -msgstr "" +#~ msgid "Movies this month" +#~ msgstr "" #: apps/native/src/app/(auth)/register.tsx:111 #: apps/web/src/components/auth-form.tsx:173 @@ -1311,7 +1333,7 @@ msgstr "" msgid "Need more help?" msgstr "" -#: apps/web/src/components/settings/system-health-section.tsx:456 +#: apps/web/src/components/settings/system-health-section.tsx:453 msgid "Never" msgstr "" @@ -1358,7 +1380,7 @@ msgid "Next run" msgstr "" #: apps/web/src/components/settings/backup-section.tsx:99 -#: apps/web/src/components/settings/system-health-section.tsx:607 +#: apps/web/src/components/settings/system-health-section.tsx:601 msgid "No backups yet" msgstr "" @@ -1368,11 +1390,11 @@ msgstr "" msgid "No internet connection" msgstr "" -#: apps/native/src/app/(tabs)/(search)/index.tsx:100 +#: apps/native/src/app/(tabs)/(search)/index.tsx:94 msgid "No results for \"{debouncedQuery}\"" msgstr "" -#: apps/web/src/components/command-palette.tsx:212 +#: apps/web/src/components/command-palette.tsx:207 msgid "No results found." msgstr "" @@ -1411,7 +1433,7 @@ msgstr "" msgid "Open Emby, go to Settings > Webhooks" msgstr "" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:513 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:495 msgid "Open in browser…" msgstr "" @@ -1431,7 +1453,7 @@ msgstr "" msgid "Open Radarr, go to Settings > Import Lists" msgstr "" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:472 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:454 #: apps/web/src/components/settings/registration-section.tsx:51 msgid "Open registration" msgstr "" @@ -1489,12 +1511,13 @@ msgstr "" msgid "Periodically check GitHub for new Sofa releases" msgstr "" +#: apps/native/src/components/search/recently-viewed-row-content.tsx:24 #: apps/native/src/components/search/search-result-row.tsx:34 #: apps/native/src/components/search/search-result-row.tsx:81 msgid "Person" msgstr "" -#: apps/native/src/app/person/[id].tsx:209 +#: apps/native/src/app/person/[id].tsx:192 #: apps/web/src/routes/_app/people.$id.tsx:50 msgid "Person not found" msgstr "" @@ -1504,12 +1527,12 @@ msgid "Play trailer" msgstr "" #: apps/native/src/app/(tabs)/(explore)/index.tsx:89 -#: apps/web/src/components/explore/explore-client.tsx:120 +#: apps/web/src/routes/_app/explore.tsx:141 msgid "Popular Movies" msgstr "" #: apps/native/src/app/(tabs)/(explore)/index.tsx:102 -#: apps/web/src/components/explore/explore-client.tsx:130 +#: apps/web/src/routes/_app/explore.tsx:151 msgid "Popular TV Shows" msgstr "" @@ -1517,6 +1540,8 @@ msgstr "" msgid "Pre-restore backup" msgstr "" +#: apps/native/src/app/person/[id].tsx:53 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:31 #: apps/web/src/components/people/person-hero.tsx:75 msgid "Producer" msgstr "" @@ -1577,7 +1602,7 @@ msgstr "" msgid "Purging..." msgstr "" -#: apps/web/src/components/command-palette.tsx:336 +#: apps/web/src/components/command-palette.tsx:331 msgid "Quick Actions" msgstr "" @@ -1633,7 +1658,7 @@ msgstr "" msgid "Ready — nothing received yet" msgstr "" -#: apps/web/src/components/command-palette.tsx:295 +#: apps/web/src/components/command-palette.tsx:290 msgid "Recent Searches" msgstr "" @@ -1650,7 +1675,7 @@ msgstr "" msgid "Recommended" msgstr "" -#: apps/native/src/app/(tabs)/(home)/index.tsx:137 +#: apps/native/src/app/(tabs)/(home)/index.tsx:199 #: apps/web/src/components/dashboard/recommendations-section.tsx:22 msgid "Recommended for You" msgstr "" @@ -1770,7 +1795,7 @@ msgstr "" msgid "Restoring…" msgstr "" -#: apps/web/src/components/command-palette.tsx:217 +#: apps/web/src/components/command-palette.tsx:212 msgid "Results" msgstr "" @@ -1781,11 +1806,11 @@ msgstr "" #: apps/native/src/components/settings/integrations-section.tsx:39 #: apps/native/src/components/ui/server-unreachable-banner.ios.tsx:71 #: apps/native/src/components/ui/server-unreachable-banner.tsx:79 -#: apps/web/src/lib/orpc/client.ts:17 +#: apps/web/src/lib/orpc/client.ts:24 msgid "Retry" msgstr "" -#: apps/web/src/routes/__root.tsx:116 +#: apps/web/src/routes/__root.tsx:115 msgid "Return home" msgstr "" @@ -1793,7 +1818,7 @@ msgstr "" msgid "Review what was found and choose what to import." msgstr "" -#: apps/web/src/components/settings/system-health-section.tsx:509 +#: apps/web/src/components/settings/system-health-section.tsx:503 msgid "Run now" msgstr "" @@ -1809,7 +1834,7 @@ msgstr "" msgid "Save name" msgstr "" -#: apps/web/src/routes/__root.tsx:98 +#: apps/web/src/routes/__root.tsx:97 msgid "Scene not found" msgstr "" @@ -1833,6 +1858,11 @@ msgstr "" msgid "Scheduled backups enabled" msgstr "" +#: apps/native/src/app/(tabs)/(search)/_layout.tsx:7 +#: apps/native/src/components/navigation/native-tab-bar.tsx:41 +msgid "Search" +msgstr "Search" + #: apps/web/src/components/dashboard/stats-section.tsx:35 msgid "Search for movies and TV shows to start tracking" msgstr "" @@ -1842,15 +1872,15 @@ msgstr "" msgid "Search for movies, shows, or people" msgstr "" -#: apps/web/src/components/command-palette.tsx:182 +#: apps/web/src/components/command-palette.tsx:177 msgid "Search for movies, TV shows, or run commands" msgstr "" -#: apps/web/src/components/command-palette.tsx:191 +#: apps/web/src/components/command-palette.tsx:186 msgid "Search movies & TV shows…" msgstr "" -#: apps/native/src/app/(tabs)/(search)/index.tsx:79 +#: apps/native/src/app/(tabs)/(search)/index.tsx:73 msgid "Search movies, shows, people..." msgstr "" @@ -1872,12 +1902,12 @@ msgstr "" msgid "Season watched" msgstr "" -#: apps/native/src/app/title/[id].tsx:473 +#: apps/native/src/app/title/[id].tsx:477 msgid "Seasons" msgstr "" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:470 -#: apps/web/src/routes/_app/settings.tsx:131 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:452 +#: apps/web/src/routes/_app/settings.tsx:167 msgid "Security" msgstr "" @@ -1885,11 +1915,11 @@ msgstr "" msgid "Self-hosted movie & TV tracker" msgstr "" -#: apps/web/src/routes/_app/settings.tsx:115 +#: apps/web/src/routes/_app/settings.tsx:151 msgid "Server" msgstr "" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:431 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:413 msgid "Server Health" msgstr "" @@ -1908,7 +1938,9 @@ msgstr "" msgid "Set your preferred quality profile and root folder" msgstr "" +#: apps/native/src/app/(tabs)/(settings)/_layout.tsx:7 #: apps/native/src/components/header-avatar.tsx:55 +#: apps/native/src/components/navigation/native-tab-bar.tsx:36 #: apps/web/src/components/nav-bar.tsx:236 #: apps/web/src/components/nav-bar.tsx:278 #: apps/web/src/components/settings/settings-shell.tsx:30 @@ -1999,9 +2031,9 @@ msgid "Sofa will automatically log movies and episodes when you finish watching msgstr "" #: apps/native/src/app/change-password.tsx:77 -#: apps/native/src/app/person/[id].tsx:182 +#: apps/native/src/app/person/[id].tsx:169 #: apps/web/src/components/settings/account-section.tsx:391 -#: apps/web/src/routes/__root.tsx:140 +#: apps/web/src/routes/__root.tsx:139 msgid "Something went wrong" msgstr "" @@ -2010,7 +2042,7 @@ msgid "Something went wrong while loading this title. Please try again." msgstr "" #: apps/native/src/lib/query-client.ts:33 -#: apps/web/src/lib/orpc/client.ts:15 +#: apps/web/src/lib/orpc/client.ts:22 msgid "Something went wrong…" msgstr "" @@ -2022,7 +2054,7 @@ msgstr "" msgid "Start exploring" msgstr "" -#: apps/native/src/app/(tabs)/(home)/index.tsx:126 +#: apps/native/src/app/(tabs)/(home)/index.tsx:188 msgid "Start tracking movies and shows" msgstr "" @@ -2042,7 +2074,7 @@ msgstr "" msgid "Status updated" msgstr "" -#: apps/web/src/components/settings/system-health-section.tsx:543 +#: apps/web/src/components/settings/system-health-section.tsx:537 msgid "Storage" msgstr "" @@ -2075,20 +2107,30 @@ msgstr "" msgid "This may take a few minutes for large libraries. Please don't close this tab." msgstr "" +#: apps/native/src/app/(tabs)/(home)/index.tsx:89 +msgid "this month" +msgstr "this month" + +#: apps/native/src/components/dashboard/stats-card.tsx:31 #: apps/web/src/components/dashboard/stats-display.tsx:135 msgid "This Month" msgstr "" -#: apps/web/src/routes/__root.tsx:101 +#: apps/web/src/routes/__root.tsx:100 msgid "This page was left on the cutting room floor. It may have been moved, removed, or never made it past the screenplay." msgstr "" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:557 -#: apps/web/src/routes/_app/settings.tsx:76 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:559 +#: apps/web/src/routes/_app/settings.tsx:112 #: apps/web/src/routes/setup.tsx:180 msgid "This product uses the TMDB API but is not endorsed or certified by TMDB." msgstr "" +#: apps/native/src/app/(tabs)/(home)/index.tsx:88 +msgid "this week" +msgstr "this week" + +#: apps/native/src/components/dashboard/stats-card.tsx:30 #: apps/web/src/components/dashboard/stats-display.tsx:134 msgid "This Week" msgstr "" @@ -2127,6 +2169,11 @@ msgstr "" msgid "This will replace your entire database with the uploaded file. A safety backup of your current data will be created first. Active sessions may need to refresh after restore." msgstr "" +#: apps/native/src/app/(tabs)/(home)/index.tsx:90 +msgid "this year" +msgstr "this year" + +#: apps/native/src/components/dashboard/stats-card.tsx:32 #: apps/web/src/components/dashboard/stats-display.tsx:136 msgid "This Year" msgstr "" @@ -2139,7 +2186,7 @@ msgstr "" msgid "Time:" msgstr "" -#: apps/native/src/app/title/[id].tsx:235 +#: apps/native/src/app/title/[id].tsx:231 #: apps/web/src/routes/_app/titles.$id.tsx:139 msgid "Title not found" msgstr "" @@ -2154,6 +2201,11 @@ msgstr "" msgid "Titles on your Sofa watchlist will be automatically added for download when Sonarr polls this list (every 6 hours by default)" msgstr "" +#: apps/native/src/app/(tabs)/(home)/index.tsx:87 +msgid "today" +msgstr "today" + +#: apps/native/src/components/dashboard/stats-card.tsx:29 #: apps/web/src/components/dashboard/stats-display.tsx:133 msgid "Today" msgstr "" @@ -2184,15 +2236,15 @@ msgid "Trending today" msgstr "" #: apps/native/src/app/(tabs)/(explore)/index.tsx:77 -#: apps/web/src/components/explore/explore-client.tsx:108 +#: apps/web/src/routes/_app/explore.tsx:129 msgid "Trending Today" msgstr "" -#: apps/web/src/components/settings/system-health-section.tsx:488 +#: apps/web/src/components/settings/system-health-section.tsx:482 msgid "Trigger job" msgstr "" -#: apps/web/src/routes/__root.tsx:156 +#: apps/web/src/routes/__root.tsx:155 msgid "Try again" msgstr "" @@ -2200,7 +2252,8 @@ msgstr "" msgid "Tuesday" msgstr "" -#: apps/native/src/app/title/[id].tsx:337 +#: apps/native/src/app/title/[id].tsx:333 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:23 #: apps/native/src/components/search/search-result-row.tsx:81 #: apps/web/src/components/explore/hero-banner.tsx:59 #: apps/web/src/components/people/filmography-grid.tsx:58 @@ -2216,7 +2269,7 @@ msgstr "" msgid "TV show" msgstr "" -#: apps/web/src/components/settings/system-health-section.tsx:601 +#: apps/web/src/components/settings/system-health-section.tsx:595 msgid "unknown" msgstr "" @@ -2252,7 +2305,7 @@ msgid "Up next" msgstr "" #. placeholder {0}: updateCheck.data.updateCheck.latestVersion -#: apps/native/src/app/(tabs)/(settings)/index.tsx:496 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:478 msgid "Update available: {0}" msgstr "" @@ -2396,7 +2449,7 @@ msgstr "" msgid "Welcome back, {name}" msgstr "" -#: apps/native/src/app/title/[id].tsx:430 +#: apps/native/src/app/title/[id].tsx:431 #: apps/web/src/components/titles/title-availability.tsx:130 msgid "Where to Watch" msgstr "" @@ -2405,6 +2458,8 @@ msgstr "" msgid "With Ads" msgstr "" +#: apps/native/src/app/person/[id].tsx:52 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:30 #: apps/web/src/components/people/person-hero.tsx:73 msgid "Writer" msgstr "" @@ -2422,7 +2477,7 @@ msgstr "" msgid "Your code:" msgstr "" -#: apps/native/src/app/(tabs)/(home)/index.tsx:125 +#: apps/native/src/app/(tabs)/(home)/index.tsx:187 #: apps/web/src/components/dashboard/stats-section.tsx:32 msgid "Your library is empty" msgstr "" diff --git a/packages/i18n/src/po/en.ts b/packages/i18n/src/po/en.ts index ef7e47e..36a5dd8 100644 --- a/packages/i18n/src/po/en.ts +++ b/packages/i18n/src/po/en.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"+5kO8P\":[\"Saturday\"],\"+6i0lS\":[\"Retrieving your watch history, watchlist, and ratings...\"],\"+Cv+V9\":[\"Remove from library\"],\"+JkEpu\":[\"This page was left on the cutting room floor. It may have been moved, removed, or never made it past the screenplay.\"],\"+K0AvT\":[\"Disconnect\"],\"+N0l5/\":[\"Connected to <0>\",[\"serverHost\"],\". Tap to change.\"],\"+gLHYi\":[\"Failed to load title\"],\"+j1ex/\":[\"Failed to remove from library\"],\"+nF1ZO\":[\"Remove Photo\"],\"/+6dvC\":[\"Errors (\",[\"0\"],\")\"],\"/BBXeA\":[\"Connecting to server...\"],\"/DwR+n\":[\"Creating…\"],\"/XtbPO\":[[\"0\"],\" titles\"],\"/cg+QV\":[\"Watch all\"],\"/gQXGv\":[\"Failed to update status\"],\"/nT6AE\":[\"New password\"],\"/sHc1/\":[\"Update check\"],\"0+dyau\":[\"Failed to update retention setting\"],\"0BFJKK\":[\"Authorization was denied. Please try again.\"],\"0GHb20\":[\"Purge metadata cache?\"],\"0IBW21\":[\"Failed to purge caches\"],\"0gH/sc\":[\"Remove profile picture\"],\"1+P9RR\":[\"Switch to \",[\"0\"]],\"12cc1j\":[\"Watching\"],\"12lVOl\":[\"Self-hosted movie & TV tracker\"],\"1B4z0M\":[\"Filmography\"],\"1J4Ek0\":[\"Automatically back up your database on a schedule\"],\"1JhxXW\":[\"Episode \",[\"0\"],\", \",[\"episodeLabel\"]],\"1N6wNP\":[\"Import options\"],\"1Qz4uG\":[\"Enable the \\\"Playback\\\" event category\"],\"1hMWR6\":[\"Create account\"],\"1jHIjh\":[\"Watched all of \",[\"seasonName\"]],\"1vSYsG\":[\"Download backup\"],\"1wL1tj\":[\"TV show\"],\"2FletP\":[\"Purged \",[\"0\",\"plural\",{\"one\":[\"#\",\" title\"],\"other\":[\"#\",\" titles\"]}],\", \",[\"1\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" persons\"]}],\", \",[\"2\",\"plural\",{\"one\":[\"#\",\" file\"],\"other\":[\"#\",\" files\"]}],\" (\",[\"freed\"],\" freed)\"],\"2Fsd9r\":[\"This Month\"],\"2MPcep\":[\"Import complete\"],\"2Mu33Z\":[\"Cache management\"],\"2POOFK\":[\"Free\"],\"2Pt2NY\":[\"This will remove all items from your history.\"],\"2fCpt5\":[\"Return home\"],\"2pPBp6\":[\"Trending today\"],\"39y5bn\":[\"Friday\"],\"3Blefz\":[\"Ratings\"],\"3JTlG8\":[\"Recent Searches\"],\"3Jy8bM\":[\"Movies \",[\"select\"]],\"3L9OuQ\":[\"Episode \",[\"0\"]],\"3T8ziB\":[\"Create an account\"],\"3hELxX\":[\"Enter your Sofa server URL to get started\"],\"4fxLkp\":[\"Open Sonarr, go to <0>Settings > Import Lists\"],\"4kpBqM\":[\"Last event \",[\"0\"]],\"4uUjVO\":[\"Producer\"],\"4x+A56\":[\"Anonymous usage reporting\"],\"5IShvp\":[\"Import \",[\"totalItems\"],\" items\"],\"5IYJSv\":[\"Explore titles\"],\"5Y4mym\":[\"Import from \",[\"0\"]],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5fEnbK\":[\"Failed to update scheduled backup setting\"],\"5lWFkC\":[\"Sign in\"],\"5v9C16\":[\"Connected to \",[\"source\"]],\"623bR4\":[\"Failed to trigger job\"],\"6HN0yh\":[\"Open Plex, go to Settings > Webhooks\"],\"6TNjOJ\":[\"Failed to update rating\"],\"6TfUy6\":[\"last \",[\"value\"]],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6exX+8\":[\"Regenerate\"],\"6gRgw8\":[\"Retry\"],\"6lGV3K\":[\"Show less\"],\"76++pR\":[\"Warnings\"],\"77DIAu\":[\"Go to Dashboard > Plugins > Webhook\"],\"7Bj3x9\":[\"Failed\"],\"7D50KC\":[[\"label\"],\" disconnected\"],\"7GfM5w\":[\"Recently Viewed\"],\"7L01XJ\":[\"Actions\"],\"7eMo+U\":[\"Go Home\"],\"7p5kLi\":[\"Dashboard\"],\"85eoJ1\":[\"Schedule updated\"],\"8B9E2D\":[\"Day:\"],\"8YwF1J\":[\"Go to <0>Dashboard > Plugins > Webhook\"],\"8ZsakT\":[\"Password\"],\"8tjQCz\":[\"Explore\"],\"8vNtLy\":[\"Paste the Radarr URL above into the List URL field\"],\"8wYDMp\":[\"Already have an account?\"],\"9AE3vb\":[\"Open Plex, go to <0>Settings > Webhooks<1/>\"],\"9GW0ZB\":[\"Import is still running in the background. Check back later.\"],\"9NyAH9\":[\"Skipped\"],\"9Xhrps\":[\"Failed to connect\"],\"9ZLGbA\":[\"backups.\"],\"9eF5oV\":[\"Welcome back\"],\"9rG25a\":[\"Server URL\"],\"A+0rLe\":[\"Marked as completed\"],\"AOHgZp\":[\"Episodes\"],\"AOddWK\":[\"Connect \",[\"label\"]],\"ATfxL/\":[\"Trailer\"],\"AVlZoM\":[\"Environment\"],\"Acf6vF\":[\"Save name\"],\"AdoUfN\":[\"Failed to add to watchlist\"],\"AeXO77\":[\"Account\"],\"AjtYj0\":[\"On Watchlist\"],\"Avee+B\":[\"Failed to update name\"],\"B2R3xD\":[\"Toggle scheduled backups\"],\"BEVzjL\":[\"Import failed\"],\"BQnS5I\":[\"Open \",[\"source\"],\" to enter code\"],\"BUnoSB\":[[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"backup\"],\"other\":[\"backups\"]}],\" stored\"],\"BpttUI\":[\"Trending Today\"],\"BrrIs8\":[\"Storage\"],\"BskWMl\":[\"Unreachable\"],\"BzEFor\":[\"or\"],\"CGDHFb\":[\"Add a <0>Generic Destination and paste the URL above\"],\"CGExDN\":[\"Failed to purge image cache\"],\"CHeXFE\":[\"Status updated\"],\"CKyk7Q\":[\"Go back\"],\"CaB/+I\":[\"Welcome back, \",[\"name\"]],\"CodnUh\":[\"Removed from library\"],\"CpzGJY\":[\"This may take a few minutes for large libraries. Please don't close this tab.\"],\"CuPxpd\":[\"Requires an active <0>Plex Pass<1/> subscription.\"],\"CzBN6D\":[\"Start exploring\"],\"D+R2Xs\":[\"Starting import...\"],\"D3C4Yx\":[\"Current password is required\"],\"DBC3t5\":[\"Sunday\"],\"DI4lqs\":[\"Person not found\"],\"DKBbJf\":[\"Added \\\"\",[\"titleName\"],\"\\\" to watchlist\"],\"DPfwMq\":[\"Done\"],\"DZse/o\":[\"Add a \\\"Generic Destination\\\" and paste the URL above\"],\"E/QGRL\":[\"Disabled\"],\"E6nRW7\":[\"Copy URL\"],\"EWQlBH\":[\"Your library is empty\"],\"EWaCfj\":[\"Enter your current password and choose a new one.\"],\"Eeo/Gy\":[\"Failed to update setting\"],\"Efn6WU\":[\"This will delete all un-enriched stub titles and all cached images from disk. Everything will be re-imported and re-downloaded as needed.\"],\"Etp5if\":[\"Finished importing from \",[\"source\"],\".\"],\"F006BN\":[\"Import from \",[\"source\"]],\"FNvDMc\":[\"This Week\"],\"FWSp+7\":[\"Enter the code below on \",[\"source\"],\"'s website to authorize Sofa.\"],\"FXN0ro\":[\"Recommendations\"],\"FaU7Ag\":[\"Enable the \\\"Playback Stop\\\" notification type\"],\"FhvLDl\":[[\"watchedCount\"],\"/\",[\"0\"],\" episodes\"],\"Fo2bwm\":[\"Actor\"],\"FwRqjE\":[\"Image cache and backup disk usage\"],\"G00fgM\":[\"last \",[\"n\"]],\"G3myU+\":[\"Tuesday\"],\"GcCthe\":[\"In Library\"],\"Gf39AA\":[[\"0\"],\" triggered\"],\"GnhfWw\":[\"Toggle automatic update checks\"],\"GptGxg\":[\"Change password\"],\"GqTZ+S\":[\"Rated \",[\"ratingStars\"],\" \",[\"ratingStars\",\"plural\",{\"one\":[\"star\"],\"other\":[\"stars\"]}]],\"GrdN/F\":[\"Caught up — marked \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"episode\"],\"other\":[\"episodes\"]}],\" as watched\"],\"H4B5LG\":[\"This product uses the TMDB API but is not endorsed or certified by TMDB.\"],\"HBRd5n\":[\"Season \",[\"0\"]],\"HD+aQ7\":[\"Database backups\"],\"HG+31u\":[\"Purge all caches?\"],\"Haz+72\":[\"This will delete all cached TMDB images from disk. Images will be re-downloaded automatically as needed.\"],\"HbReP5\":[\"Marked \\\"\",[\"titleName\"],\"\\\" as completed\"],\"Hg6o8v\":[\"Refresh system health\"],\"HmEjnC\":[\"Last event \",[\"timeAgo\"]],\"HvDfH/\":[\"Imported\"],\"I89uD4\":[\"Restoring…\"],\"IRoxQm\":[\"Registration closed\"],\"IS0nrP\":[\"Create Account\"],\"IY9rQ0\":[\"Free up disk space by clearing cached metadata and images\"],\"IrC12v\":[\"Application\"],\"J28zul\":[\"Connecting...\"],\"J64cFL\":[\"Library refresh\"],\"JKmmmN\":[\"Added to watchlist\"],\"JN0f/Y\":[\"Connect to TMDB\"],\"JR6aH2\":[\"Movies \",[\"periodSelect\"]],\"JRQitQ\":[\"Confirm new password\"],\"JRadFJ\":[\"Start tracking your watches\"],\"JSwq8t\":[\"New account creation is currently disabled.\"],\"JY5Oyv\":[\"Database\"],\"JjsJnI\":[[\"0\"],\"/\",[\"1\"],\" episodes\"],\"JrFTcr\":[\"Connecting…\"],\"JwFbe8\":[\"TV\"],\"KDw4GX\":[\"Try again\"],\"KG6681\":[\"Episode watched\"],\"KIS/Sd\":[\"Sign out of other sessions\"],\"KK0ghs\":[\"Image cache\"],\"KVAoFR\":[\"unlimited\"],\"KcXJuc\":[\"Purging...\"],\"KhtG3o\":[\"Update Password\"],\"Khux7w\":[[\"0\",\"plural\",{\"one\":[\"#\",\" title\"],\"other\":[\"#\",\" titles\"]}]],\"KmWyx0\":[\"Job\"],\"KoF0x6\":[\"age \",[\"age\"]],\"Ksiej9\":[\"Requires an active Plex Pass subscription.\"],\"Kx9NEt\":[\"Invalid token\"],\"Lk6Jb/\":[\"Last polled \",[\"timeAgo\"]],\"LmEEic\":[\"Waiting for authorization...\"],\"LqKH42\":[\"Connect with \",[\"0\"]],\"Lrpjji\":[\"Disconnect \",[\"label\"]],\"Lu6Udx\":[\"Click \\\"+\\\" and select \\\"Custom Lists\\\"\"],\"MDoX++\":[\"Sonarr List URL\"],\"MRBlCJ\":[\"Failed to unmark some episodes\"],\"MUO7w9\":[\"Marked \\\"\",[\"titleName\"],\"\\\" as watched\"],\"MZbQHL\":[\"No results found.\"],\"MdxR1u\":[\"Choose your preferred display language\"],\"MkyzAV\":[\"Authorize Sofa to read your \",[\"0\"],\" library. No password shared.\"],\"N40H+G\":[\"All\"],\"N6SFhC\":[\"Sign in instead\"],\"N7h106\":[\"Sofa v\",[\"0\"],\" is available\"],\"N9RF2M\":[\"Click \\\"Add Webhook\\\" and paste the URL above\"],\"NBo4z0\":[\"Click <0>+ and select <1>Custom Lists\"],\"NICUmW\":[\"Director\"],\"NQzPoO\":[\"New backup\"],\"NSxl1l\":[\"More Settings\"],\"NVF43p\":[\"Time:\"],\"NdPMwS\":[\"In Your Library\"],\"NgaPSG\":[\"Failed to update schedule\"],\"O3oNi5\":[\"Email\"],\"OBcj5W\":[\"This will invalidate the current \",[\"label\"],\" URL. You'll need to update it in \",[\"label\"],\".\"],\"OL8hbM\":[\"New password must be at least 8 characters\"],\"ONWvwQ\":[\"Upload\"],\"OPFjyX\":[\"Install the <0>Webhook plugin<1/> from Jellyfin's plugin catalog\"],\"OW/+RD\":[\"Watch history\"],\"OZdaTZ\":[\"Person\"],\"OvO76u\":[\"Back to Login\"],\"OvdFIZ\":[\"Season watched\"],\"P2FLLe\":[\"View release\"],\"PBdLfg\":[\"No titles found for this genre.\"],\"PQ3qDa\":[\"Fetching your library data from \",[\"source\"],\"...\"],\"PjNoxI\":[\"Scheduled backup\"],\"Pn2B7/\":[\"Current password\"],\"PnEbL/\":[\"Rated \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"star\"],\"other\":[\"stars\"]}]],\"Pwqkdw\":[\"Loading…\"],\"Py87xY\":[\"Authorization succeeded but failed to fetch your library. Please try again.\"],\"Q3MPWA\":[\"Update password\"],\"QHcLEN\":[\"Connected\"],\"QK4UIx\":[\"Mark Watched\"],\"Qjlym2\":[\"Failed to create account\"],\"Qm1NmK\":[\"OR\"],\"Qoq+GP\":[\"Read more\"],\"QphVZW\":[\"Can't reach server\"],\"QqLJHH\":[\"This Year\"],\"R0yu2l\":[\"Catch up\"],\"R4YBui\":[\"Search for movies and TV shows to start tracking\"],\"RH46vw\":[[\"0\"],\"/\",[\"1\"],\" \",[\"2\",\"plural\",{\"one\":[\"episode\"],\"other\":[\"episodes\"]}]],\"RIR15/\":[\"Radarr List URL\"],\"RLe7Vk\":[\"Checking…\"],\"ROq8cl\":[\"Failed to parse file\"],\"RQq8Si\":[\"Registration opened\"],\"S0soqb\":[\"Failed to remove profile picture\"],\"S1McZh\":[\"Failed to upload avatar\"],\"S2ble5\":[[\"0\"],\" movies, \",[\"1\"],\" episodes\"],\"S2qPRR\":[\"Search movies & TV shows…\"],\"SDND4q\":[\"Not configured\"],\"SFdAk9\":[\"Unwatched S\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"SUIUkB\":[\"Unwatch all\"],\"SbS+Bm\":[\"Regenerate URL\"],\"SlfejT\":[\"Error\"],\"Sp86ju\":[[\"0\"],\" ep\",[\"1\"]],\"SrfROI\":[\"Up next\"],\"SyPRjk\":[\"Sofa will automatically log movies and episodes when you finish watching them\"],\"T0/7WG\":[\"Next backup \",[\"distance\"]],\"TEaX6q\":[\"Backup deleted\"],\"TI7IKo\":[\"Rated \",[\"0\"],\" star\",[\"1\"]],\"TMb7iE\":[\"Profile picture removed\"],\"TqyQQS\":[\"Enable the <0>Playback event category\"],\"Tz0i8g\":[\"Settings\"],\"U+FxtW\":[\"Track what you watch. Know what's next.<0/>Your library, your data, your rules.\"],\"U3pytU\":[\"Admin\"],\"UC+OWB\":[\"Toggle open registration\"],\"UDMjsP\":[\"Quick Actions\"],\"UmQ6Fe\":[\"Purge image cache?\"],\"UtDm3q\":[\"URL copied to clipboard\"],\"V1Kh9Z\":[\"Episodes \",[\"select\"]],\"V6uzvC\":[\"More Like This\"],\"V9CuQ+\":[\"Connect to \",[\"source\"]],\"VAcXNz\":[\"Wednesday\"],\"VKyhZK\":[\"Title not found\"],\"VQvpro\":[\"Paste the Sonarr URL above into the List URL field\"],\"VhMDMg\":[\"Change Password\"],\"Vx0ayx\":[\"Failed to mark some episodes\"],\"WDC4PF\":[\"Episodes \",[\"periodSelect\"]],\"WEYdDv\":[\"Recommended\"],\"WMCwmR\":[\"Check for updates\"],\"WP48q2\":[\"Image Cache\"],\"WT1Ibn\":[\"Last run\"],\"Wb3E4g\":[\"Run now\"],\"WgF2UQ\":[\"You're running v\",[\"0\"],\".\"],\"WtWhSi\":[\"Rating removed\"],\"Wy/3II\":[\"Last polled \",[\"0\"]],\"XFCSYs\":[\"Cast\"],\"XN23JY\":[\"This will delete un-enriched stub titles that aren't in any user's library and clean up orphaned person records. Deleted titles will be re-imported if accessed again.\"],\"XZwihE\":[\"Ready — nothing received yet\"],\"XjTduw\":[\"Upload picture\"],\"YEGzVq\":[\"Failed to connect \",[\"label\"]],\"YErf89\":[\"Failed to purge metadata cache\"],\"YQ768h\":[\"Scene not found\"],\"YiRsXK\":[\"Clear Recently Viewed?\"],\"Yjp1zf\":[\"Don't have a server?\"],\"YqMfa9\":[\"Review what was found and choose what to import.\"],\"ZGUYm0\":[\"Ready — not polled yet\"],\"ZQKLI1\":[\"Danger Zone\"],\"ZVZUoU\":[[\"0\"],\" cached images\"],\"ZWTQ81\":[\"Watch on \",[\"name\"]],\"a3LDKx\":[\"Security\"],\"aLBUiR\":[\"Keeping <0><1><2>\",[\"0\"],\"<3>\",[\"1\"],\" backups.\"],\"aM0+kY\":[\"Purged \",[\"0\",\"plural\",{\"one\":[\"#\",\" stale title\"],\"other\":[\"#\",\" stale titles\"]}],\" and \",[\"1\",\"plural\",{\"one\":[\"#\",\" orphaned person\"],\"other\":[\"#\",\" orphaned persons\"]}]],\"aO1AxG\":[\"Episode unwatched\"],\"aV/hDI\":[\"Failed to disconnect \",[\"label\"]],\"acbSg0\":[\"Double tap to filter by \",[\"label\"]],\"agE7k4\":[\"Rated \",[\"stars\",\"plural\",{\"one\":[\"#\",\" star\"],\"other\":[\"#\",\" stars\"]}]],\"alPRaV\":[\"Titles on your Sofa watchlist will be automatically added for download when Radarr polls this list (every 12 hours by default)\"],\"aourBv\":[\"Scheduled backups enabled\"],\"apLLSU\":[\"Are you sure you want to sign out?\"],\"atc9MA\":[\"Open Emby, go to <0>Settings > Webhooks\"],\"auVUJO\":[\"Restore database?\"],\"ayqfr4\":[[\"label\"],\" URL regenerated\"],\"b/8KCH\":[\"This will mark every episode of this show as watched. You can undo this later by unmarking individual seasons.\"],\"b3Thhd\":[\"Upload failed\"],\"b5DFtH\":[\"Set password\"],\"bHYIks\":[\"Sign Out\"],\"bITrbE\":[\"Purge all\"],\"bNmdjU\":[\"Watchlist\"],\"bTRwag\":[\"Remove from Library\"],\"bXMotV\":[\"Marked as watched\"],\"bezGJ2\":[[\"0\"],\" images\"],\"boJlGf\":[\"Page Not Found\"],\"c1ssjI\":[\"Importing from \",[\"source\"]],\"c3b0B0\":[\"Get Started\"],\"c4b9Dm\":[\"No results for \\\"\",[\"debouncedQuery\"],\"\\\"\"],\"cQPKZt\":[\"Go to Dashboard\"],\"ccAJSB\":[\"Keeping\"],\"cgvva8\":[[\"0\"],\" ratings\"],\"cnGeoo\":[\"Delete\"],\"cpE88+\":[\"Create your account\"],\"d/6MoL\":[\"Manage your account and preferences\"],\"dA7BWh\":[\"Requires Emby Server 4.7.9+ and an active Emby Premiere license.\"],\"dEgA5A\":[\"Cancel\"],\"dTZwve\":[\"Marked all episodes as watched\"],\"dUCJry\":[\"Newest\"],\"ddwpAr\":[\"Warnings (\",[\"0\"],\")\"],\"e/ToF5\":[\"Sign in with \",[\"0\"]],\"e9sZMS\":[\"This will permanently delete the backup from <0>\",[\"0\"],\". This cannot be undone.\"],\"eFRooE\":[\"Last run failed\"],\"eM39Om\":[\"Watched all of \",[\"seasonLabel\"]],\"eZjYb8\":[\"Writer\"],\"ecUA8p\":[\"Today\"],\"evBxZy\":[\"Where to Watch\"],\"ezDa1h\":[\"Open docs\"],\"f+m696\":[\"An unexpected error occurred while loading this page. You can try again or head back to the dashboard.\"],\"f/AKdU\":[\"Are you sure you want to disconnect \",[\"label\"],\"? The current URL will stop working.\"],\"f7ax8J\":[\"Open in browser…\"],\"fMPkxb\":[\"Show more\"],\"fNMqNn\":[\"Popular TV Shows\"],\"fObVvy\":[\"Profile picture updated\"],\"fRettQ\":[[\"0\"],\" items\"],\"fUDRF9\":[\"Watchlisted\"],\"fcWrnU\":[\"Sign out\"],\"fgLNSM\":[\"Register\"],\"fsAEqk\":[\"Continue Watching\"],\"fzAeQI\":[\"Registering on \",[\"serverHost\"]],\"g+gBfk\":[\"Parsing...\"],\"g4JYff\":[\"Imported \",[\"0\"],\" items from \",[\"1\"]],\"gKtb5i\":[\"Titles on your Sofa watchlist will be automatically added for download when Sonarr polls this list (every 6 hours by default)\"],\"gaIAMq\":[\"Remove picture\"],\"gbEEMp\":[\"Delete backup\"],\"gcNLi0\":[\"Update checks enabled\"],\"gmB6oO\":[\"Schedule\"],\"h/T5Yb\":[\"Open registration\"],\"h4yKYk\":[\"Next run\"],\"h7MgpO\":[\"Keyboard Shortcuts\"],\"hTXYdY\":[\"Failed to create backup\"],\"hXYY5Q\":[\"Unwatched all of \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hjGupC\":[\"Lost connection to import. Check status in settings.\"],\"hlqjFc\":[\"In library\"],\"hou0tP\":[\"Stream\"],\"hty0d5\":[\"Monday\"],\"i0qMbr\":[\"Home\"],\"i9rcQ/\":[\"Movies\"],\"iGma9e\":[\"Update failed\"],\"iSLIjg\":[\"Connect\"],\"iWv3ck\":[\"Failed to catch up\"],\"iXZ09g\":[\"Mark as Completed\"],\"id08cd\":[\"Watched S\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"ih87w/\":[\"Add to Library\"],\"ihn4zD\":[\"Search…\"],\"itDEco\":[\"Already have an account? Sign in\"],\"itheEn\":[\"With Ads\"],\"iwCRIF\":[\"You'll be signed out to change the server URL.\"],\"j5GBIy\":[\"Open Radarr, go to Settings > Import Lists\"],\"jAe8l4\":[[\"0\"],\" backups · last <0/>\"],\"jB3sfe\":[\"Manual backup\"],\"jFnMJ8\":[\"Double tap to clear this filter\"],\"jQsPwL\":[\"Scheduled backups disabled\"],\"jSjGeu\":[[\"0\"],\" items have no external IDs and will be resolved by title search, which may be less accurate.\"],\"jX6Gzg\":[\"This will replace your entire database with the uploaded file. A safety backup of your current data will be created first. Active sessions may need to refresh after restore.\"],\"jiHVUy\":[\"Pre-restore backup\"],\"k6c41p\":[\"Background jobs\"],\"kBDOjB\":[\"Backup schedule\"],\"kkDQ8m\":[\"Thursday\"],\"klOeIX\":[\"Failed to change password\"],\"ks3XeZ\":[\"Open Sonarr, go to Settings > Import Lists\"],\"kvuCtu\":[\"Something went wrong while loading this title. Please try again.\"],\"kx0s+n\":[\"Results\"],\"l2wcoS\":[\"Last run succeeded\"],\"l3s5ri\":[\"Import\"],\"lCF0wC\":[\"Refresh\"],\"lJ1yo4\":[\"Failed to sign in\"],\"lVqzRx\":[\"Click <0>Add Webhook and paste the URL above\"],\"lXkUEV\":[\"Availability\"],\"lcLe89\":[\"Search for movies, TV shows, or run commands\"],\"lfVyvz\":[\"Add to Watchlist\"],\"llDXYJ\":[\"Backups\"],\"llkZR0\":[\"Could not load integrations\"],\"ln9/n9\":[\"Don't have an account?\"],\"lpIMne\":[\"Passwords do not match\"],\"lqY3WY\":[\"Change Server\"],\"luoodD\":[\"Setup required\"],\"m5WhJy\":[\"Automatic update checks\"],\"mIx58S\":[\"Purge images\"],\"mYBORk\":[\"Movie\"],\"ml9cU0\":[\"Failed to regenerate \",[\"label\"],\" URL\"],\"mqwkjd\":[\"Health status\"],\"mqxHH7\":[\"Go to Explore\"],\"mzI/c+\":[\"Download\"],\"n1ekoW\":[\"Sign In\"],\"n3Pzd7\":[\"Backup created\"],\"nBHvPL\":[\"Cancel editing\"],\"nJw77c\":[[\"0\",\"plural\",{\"one\":[\"#\",\" image\"],\"other\":[\"#\",\" images\"]}]],\"nO0Qnj\":[\"Your code:\"],\"nRP1xx\":[\"Need more help?\"],\"nV1LjT\":[\"Enable the <0>Playback Stop notification type\"],\"nVsE67\":[\"Mark as Watching\"],\"nZ7lF1\":[\"Device code expired. Please try again.\"],\"nbfdhU\":[\"Integrations\"],\"nbmpf9\":[\"Purge metadata\"],\"nnKJTm\":[\"Failed to mark all episodes as watched\"],\"nszbQG\":[\"No backups yet\"],\"nuh/Wq\":[\"Webhook URL\"],\"nwtY4N\":[\"Something went wrong\"],\"oAIA3w\":[\"Search for movies, shows, or people\"],\"oC8IMh\":[\"Search movies, shows, people...\"],\"oNvZcA\":[\"Episodes this week\"],\"oXq+Wr\":[[\"label\"],\" connected\"],\"ogtYkT\":[\"Password updated\"],\"ojtedN\":[\"Open Radarr, go to <0>Settings > Import Lists\"],\"olMi35\":[\"Recommended for You\"],\"p+PZEl\":[\"Here's what's happening with your library\"],\"pAtylB\":[\"Not Found\"],\"pG9pq1\":[\"Deleted \",[\"0\",\"plural\",{\"one\":[\"#\",\" file\"],\"other\":[\"#\",\" files\"]}],\", freed \",[\"freed\"]],\"pWWFjv\":[\"Checked <0/>\"],\"ph76H6\":[\"Allow new users to create accounts\"],\"pjgw0N\":[\"Choose how to import your \",[\"0\"],\" data.\"],\"puo3W3\":[\"Redirecting…\"],\"q3GraM\":[\"...and \",[\"0\"],\" more\"],\"q6nrFE\":[\"died at \",[\"age\"]],\"q6pUQ9\":[\"Upload a .db file to replace the current database. A safety backup is created first.\"],\"q8yluz\":[\"Your name\"],\"qA6VR5\":[\"Requires <0>Emby Server 4.7.9+ and an active <1>Emby Premiere<2/> license.\"],\"qF2IBM\":[\"Movies this month\"],\"qHbApt\":[\"Failed to load backup schedule settings.\"],\"qLB1zX\":[\"Upload a \",[\"0\"],\" export from your \",[\"1\"],\" account settings.\"],\"qPNzfu\":[\"Update checks disabled\"],\"qWoML/\":[\"Add a new webhook and paste the URL above\"],\"qiOIiY\":[\"Buy\"],\"qn1X6N\":[\"Failed to update registration setting\"],\"qqWcBV\":[\"Completed\"],\"qqeAJM\":[\"Never\"],\"r9aDAY\":[[\"count\"],\" earlier \",[\"count\",\"plural\",{\"one\":[\"episode\"],\"other\":[\"episodes\"]}],\" unwatched\"],\"rLgPvm\":[\"Backup\"],\"rSTpb5\":[\"Server Health\"],\"rdymVD\":[\"Trigger job\"],\"rtir7c\":[\"unknown\"],\"s0U4ZZ\":[\"TV episodes\"],\"s4vVUm\":[\"Could not load person details\"],\"s9dVME\":[\"Failed to unmark episode\"],\"sGH11W\":[\"Server\"],\"sl/qWH\":[\"Upload profile picture\"],\"sstysK\":[\"Failed to mark episode\"],\"stZeiF\":[[\"watched\"],\"/\",[\"total\"],\" episodes\"],\"t/Ch8S\":[\"Marked as watching\"],\"t/YqKh\":[\"Remove\"],\"tfDRzk\":[\"Save\"],\"tiymc0\":[\"Something went wrong…\"],\"u9ugU7\":[[\"watchedCount\"],\"/\",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"episode\"],\"other\":[\"episodes\"]}]],\"uBAxNB\":[\"Editor\"],\"uBrbSu\":[\"Failed to start \",[\"0\"],\" connection\"],\"uM6jnS\":[\"Restore failed\"],\"uMrJrX\":[\"Admin only\"],\"uswLvZ\":[\"The title you're looking for doesn't exist or may have been removed from the database.\"],\"uxOntd\":[[\"watchedCount\"],\" of \",[\"0\"],\" episodes watched\"],\"v2CA3w\":[\"Change Photo\"],\"v5ipVu\":[\"Mark all episodes as watched?\"],\"vKfeax\":[\"Open Emby, go to Settings > Webhooks\"],\"vXIe7J\":[\"Language\"],\"vuCCZ7\":[\"Failed to parse import data\"],\"vwKERN\":[\"Failed to delete backup\"],\"w8pqsh\":[\"Mark All Watched\"],\"wA7B2T\":[\"New accounts are not being accepted right now. Contact the admin if you need access.\"],\"wGFX13\":[\"Starting at\"],\"wR1UAy\":[\"Popular Movies\"],\"wRWcdL\":[\"Play trailer\"],\"wThGrS\":[\"App Settings\"],\"wZK4Xg\":[\"Never run\"],\"wdLxgL\":[\"Member since \",[\"memberSince\"]],\"wja8aL\":[\"Untitled\"],\"wtGebH\":[\"The person you're looking for doesn't exist or may have been removed from the database.\"],\"wtsbt5\":[\"Add to watchlist\"],\"wtuVU4\":[\"Frequency\"],\"wx7pwA\":[\"Mark as Watched\"],\"x4ZiTl\":[\"Setup instructions\"],\"xCJdfg\":[\"Clear\"],\"xGVfLh\":[\"Continue\"],\"xLoCm2\":[\"Check configuration\"],\"xSrU2g\":[[\"healthyCount\"],\" of \",[\"0\"],\" jobs healthy\"],\"xazqmy\":[\"Seasons\"],\"xbBXhy\":[\"Periodically check GitHub for new Sofa releases\"],\"xrh2/M\":[\"Failed to mark as watched\"],\"y3e9pF\":[\"Delete backup?\"],\"y6Urel\":[\"Next Episode\"],\"yGvjAo\":[\"Update available: \",[\"0\"]],\"yKu/3Y\":[\"Restore\"],\"yYxB17\":[\"Clear all\"],\"ybtG1U\":[[\"0\"],\" backup\",[\"1\"],\" stored\"],\"yey/zg\":[\"Database restored. Reloading...\"],\"ygo0l/\":[\"Start tracking movies and shows\"],\"yvwIbI\":[\"Upload export file\"],\"yz7wBu\":[\"Close\"],\"z1U/Fh\":[\"Rating\"],\"z5evln\":[\"No internet connection\"],\"zAvS8w\":[\"Sign in to continue\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zFkiTv\":[\"Install the Webhook plugin from Jellyfin's plugin catalog\"],\"zNyR4f\":[\"Set your preferred quality profile and root folder\"],\"za8Le/\":[\"Registration Closed\"],\"zb77GC\":[\"Rent\"],\"ztAdhw\":[\"Name updated\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"+5kO8P\":[\"Saturday\"],\"+6i0lS\":[\"Retrieving your watch history, watchlist, and ratings...\"],\"+Cv+V9\":[\"Remove from library\"],\"+JkEpu\":[\"This page was left on the cutting room floor. It may have been moved, removed, or never made it past the screenplay.\"],\"+K0AvT\":[\"Disconnect\"],\"+N0l5/\":[\"Connected to <0>\",[\"serverHost\"],\". Tap to change.\"],\"+gLHYi\":[\"Failed to load title\"],\"+j1ex/\":[\"Failed to remove from library\"],\"+nF1ZO\":[\"Remove Photo\"],\"/+6dvC\":[\"Errors (\",[\"0\"],\")\"],\"/BBXeA\":[\"Connecting to server...\"],\"/DwR+n\":[\"Creating…\"],\"/XtbPO\":[[\"0\"],\" titles\"],\"/cg+QV\":[\"Watch all\"],\"/gQXGv\":[\"Failed to update status\"],\"/nT6AE\":[\"New password\"],\"/sHc1/\":[\"Update check\"],\"0+dyau\":[\"Failed to update retention setting\"],\"0BFJKK\":[\"Authorization was denied. Please try again.\"],\"0GHb20\":[\"Purge metadata cache?\"],\"0IBW21\":[\"Failed to purge caches\"],\"0gH/sc\":[\"Remove profile picture\"],\"1+P9RR\":[\"Switch to \",[\"0\"]],\"12cc1j\":[\"Watching\"],\"12lVOl\":[\"Self-hosted movie & TV tracker\"],\"1B4z0M\":[\"Filmography\"],\"1J4Ek0\":[\"Automatically back up your database on a schedule\"],\"1JhxXW\":[\"Episode \",[\"0\"],\", \",[\"episodeLabel\"]],\"1N6wNP\":[\"Import options\"],\"1Qz4uG\":[\"Enable the \\\"Playback\\\" event category\"],\"1hMWR6\":[\"Create account\"],\"1jHIjh\":[\"Watched all of \",[\"seasonName\"]],\"1vSYsG\":[\"Download backup\"],\"1wL1tj\":[\"TV show\"],\"2FletP\":[\"Purged \",[\"0\",\"plural\",{\"one\":[\"#\",\" title\"],\"other\":[\"#\",\" titles\"]}],\", \",[\"1\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" persons\"]}],\", \",[\"2\",\"plural\",{\"one\":[\"#\",\" file\"],\"other\":[\"#\",\" files\"]}],\" (\",[\"freed\"],\" freed)\"],\"2Fsd9r\":[\"This Month\"],\"2MPcep\":[\"Import complete\"],\"2Mu33Z\":[\"Cache management\"],\"2POOFK\":[\"Free\"],\"2Pt2NY\":[\"This will remove all items from your history.\"],\"2fCpt5\":[\"Return home\"],\"2pPBp6\":[\"Trending today\"],\"39neVN\":[\"Movies \",[\"0\"]],\"39y5bn\":[\"Friday\"],\"3Blefz\":[\"Ratings\"],\"3JTlG8\":[\"Recent Searches\"],\"3Jy8bM\":[\"Movies \",[\"select\"]],\"3L9OuQ\":[\"Episode \",[\"0\"]],\"3T/4MV\":[\"this year\"],\"3T8ziB\":[\"Create an account\"],\"3hELxX\":[\"Enter your Sofa server URL to get started\"],\"4fxLkp\":[\"Open Sonarr, go to <0>Settings > Import Lists\"],\"4kpBqM\":[\"Last event \",[\"0\"]],\"4uUjVO\":[\"Producer\"],\"4x+A56\":[\"Anonymous usage reporting\"],\"5IShvp\":[\"Import \",[\"totalItems\"],\" items\"],\"5IYJSv\":[\"Explore titles\"],\"5Y4mym\":[\"Import from \",[\"0\"]],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5fEnbK\":[\"Failed to update scheduled backup setting\"],\"5lWFkC\":[\"Sign in\"],\"5v9C16\":[\"Connected to \",[\"source\"]],\"623bR4\":[\"Failed to trigger job\"],\"6HN0yh\":[\"Open Plex, go to Settings > Webhooks\"],\"6TNjOJ\":[\"Failed to update rating\"],\"6TfUy6\":[\"last \",[\"value\"]],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6exX+8\":[\"Regenerate\"],\"6gRgw8\":[\"Retry\"],\"6lGV3K\":[\"Show less\"],\"76++pR\":[\"Warnings\"],\"77DIAu\":[\"Go to Dashboard > Plugins > Webhook\"],\"79m/GK\":[\"Episodes \",[\"0\"]],\"7Bj3x9\":[\"Failed\"],\"7D50KC\":[[\"label\"],\" disconnected\"],\"7GfM5w\":[\"Recently Viewed\"],\"7L01XJ\":[\"Actions\"],\"7eMo+U\":[\"Go Home\"],\"7p5kLi\":[\"Dashboard\"],\"85eoJ1\":[\"Schedule updated\"],\"8B9E2D\":[\"Day:\"],\"8YwF1J\":[\"Go to <0>Dashboard > Plugins > Webhook\"],\"8ZsakT\":[\"Password\"],\"8tjQCz\":[\"Explore\"],\"8vNtLy\":[\"Paste the Radarr URL above into the List URL field\"],\"8wYDMp\":[\"Already have an account?\"],\"9AE3vb\":[\"Open Plex, go to <0>Settings > Webhooks<1/>\"],\"9GW0ZB\":[\"Import is still running in the background. Check back later.\"],\"9NyAH9\":[\"Skipped\"],\"9Xhrps\":[\"Failed to connect\"],\"9ZLGbA\":[\"backups.\"],\"9eF5oV\":[\"Welcome back\"],\"9rG25a\":[\"Server URL\"],\"A+0rLe\":[\"Marked as completed\"],\"A1taO8\":[\"Search\"],\"AOHgZp\":[\"Episodes\"],\"AOddWK\":[\"Connect \",[\"label\"]],\"ATfxL/\":[\"Trailer\"],\"AVlZoM\":[\"Environment\"],\"Acf6vF\":[\"Save name\"],\"AdoUfN\":[\"Failed to add to watchlist\"],\"AeXO77\":[\"Account\"],\"AjtYj0\":[\"On Watchlist\"],\"Avee+B\":[\"Failed to update name\"],\"B2R3xD\":[\"Toggle scheduled backups\"],\"BEVzjL\":[\"Import failed\"],\"BQnS5I\":[\"Open \",[\"source\"],\" to enter code\"],\"BUnoSB\":[[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"backup\"],\"other\":[\"backups\"]}],\" stored\"],\"BpttUI\":[\"Trending Today\"],\"BrrIs8\":[\"Storage\"],\"BskWMl\":[\"Unreachable\"],\"BzEFor\":[\"or\"],\"CGDHFb\":[\"Add a <0>Generic Destination and paste the URL above\"],\"CGExDN\":[\"Failed to purge image cache\"],\"CHeXFE\":[\"Status updated\"],\"CKyk7Q\":[\"Go back\"],\"CaB/+I\":[\"Welcome back, \",[\"name\"]],\"CodnUh\":[\"Removed from library\"],\"CpzGJY\":[\"This may take a few minutes for large libraries. Please don't close this tab.\"],\"CuPxpd\":[\"Requires an active <0>Plex Pass<1/> subscription.\"],\"CzBN6D\":[\"Start exploring\"],\"D+R2Xs\":[\"Starting import...\"],\"D3C4Yx\":[\"Current password is required\"],\"DBC3t5\":[\"Sunday\"],\"DI4lqs\":[\"Person not found\"],\"DKBbJf\":[\"Added \\\"\",[\"titleName\"],\"\\\" to watchlist\"],\"DPfwMq\":[\"Done\"],\"DZse/o\":[\"Add a \\\"Generic Destination\\\" and paste the URL above\"],\"E/QGRL\":[\"Disabled\"],\"E6nRW7\":[\"Copy URL\"],\"EWQlBH\":[\"Your library is empty\"],\"EWaCfj\":[\"Enter your current password and choose a new one.\"],\"Eeo/Gy\":[\"Failed to update setting\"],\"Efn6WU\":[\"This will delete all un-enriched stub titles and all cached images from disk. Everything will be re-imported and re-downloaded as needed.\"],\"Etp5if\":[\"Finished importing from \",[\"source\"],\".\"],\"F006BN\":[\"Import from \",[\"source\"]],\"FNvDMc\":[\"This Week\"],\"FWSp+7\":[\"Enter the code below on \",[\"source\"],\"'s website to authorize Sofa.\"],\"FXN0ro\":[\"Recommendations\"],\"FaU7Ag\":[\"Enable the \\\"Playback Stop\\\" notification type\"],\"FhvLDl\":[[\"watchedCount\"],\"/\",[\"0\"],\" episodes\"],\"Fo2bwm\":[\"Actor\"],\"FwRqjE\":[\"Image cache and backup disk usage\"],\"G00fgM\":[\"last \",[\"n\"]],\"G3myU+\":[\"Tuesday\"],\"GcCthe\":[\"In Library\"],\"Gf39AA\":[[\"0\"],\" triggered\"],\"GnhfWw\":[\"Toggle automatic update checks\"],\"GptGxg\":[\"Change password\"],\"GqTZ+S\":[\"Rated \",[\"ratingStars\"],\" \",[\"ratingStars\",\"plural\",{\"one\":[\"star\"],\"other\":[\"stars\"]}]],\"GrdN/F\":[\"Caught up — marked \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"episode\"],\"other\":[\"episodes\"]}],\" as watched\"],\"H4B5LG\":[\"This product uses the TMDB API but is not endorsed or certified by TMDB.\"],\"HBRd5n\":[\"Season \",[\"0\"]],\"HD+aQ7\":[\"Database backups\"],\"HG+31u\":[\"Purge all caches?\"],\"Haz+72\":[\"This will delete all cached TMDB images from disk. Images will be re-downloaded automatically as needed.\"],\"HbReP5\":[\"Marked \\\"\",[\"titleName\"],\"\\\" as completed\"],\"Hg6o8v\":[\"Refresh system health\"],\"HmEjnC\":[\"Last event \",[\"timeAgo\"]],\"HvDfH/\":[\"Imported\"],\"I89uD4\":[\"Restoring…\"],\"IRoxQm\":[\"Registration closed\"],\"IS0nrP\":[\"Create Account\"],\"IY9rQ0\":[\"Free up disk space by clearing cached metadata and images\"],\"IrC12v\":[\"Application\"],\"J28zul\":[\"Connecting...\"],\"J64cFL\":[\"Library refresh\"],\"JKmmmN\":[\"Added to watchlist\"],\"JN0f/Y\":[\"Connect to TMDB\"],\"JR6aH2\":[\"Movies \",[\"periodSelect\"]],\"JRQitQ\":[\"Confirm new password\"],\"JRadFJ\":[\"Start tracking your watches\"],\"JSwq8t\":[\"New account creation is currently disabled.\"],\"JY5Oyv\":[\"Database\"],\"JjsJnI\":[[\"0\"],\"/\",[\"1\"],\" episodes\"],\"JrFTcr\":[\"Connecting…\"],\"JwFbe8\":[\"TV\"],\"KDw4GX\":[\"Try again\"],\"KG6681\":[\"Episode watched\"],\"KIS/Sd\":[\"Sign out of other sessions\"],\"KK0ghs\":[\"Image cache\"],\"KVAoFR\":[\"unlimited\"],\"KcXJuc\":[\"Purging...\"],\"KhtG3o\":[\"Update Password\"],\"Khux7w\":[[\"0\",\"plural\",{\"one\":[\"#\",\" title\"],\"other\":[\"#\",\" titles\"]}]],\"KmWyx0\":[\"Job\"],\"KoF0x6\":[\"age \",[\"age\"]],\"Ksiej9\":[\"Requires an active Plex Pass subscription.\"],\"Kx9NEt\":[\"Invalid token\"],\"Lk6Jb/\":[\"Last polled \",[\"timeAgo\"]],\"LmEEic\":[\"Waiting for authorization...\"],\"LqKH42\":[\"Connect with \",[\"0\"]],\"Lrpjji\":[\"Disconnect \",[\"label\"]],\"Lu6Udx\":[\"Click \\\"+\\\" and select \\\"Custom Lists\\\"\"],\"MDoX++\":[\"Sonarr List URL\"],\"MRBlCJ\":[\"Failed to unmark some episodes\"],\"MUO7w9\":[\"Marked \\\"\",[\"titleName\"],\"\\\" as watched\"],\"MZbQHL\":[\"No results found.\"],\"MdxR1u\":[\"Choose your preferred display language\"],\"MkyzAV\":[\"Authorize Sofa to read your \",[\"0\"],\" library. No password shared.\"],\"N40H+G\":[\"All\"],\"N6SFhC\":[\"Sign in instead\"],\"N7h106\":[\"Sofa v\",[\"0\"],\" is available\"],\"N9RF2M\":[\"Click \\\"Add Webhook\\\" and paste the URL above\"],\"NBo4z0\":[\"Click <0>+ and select <1>Custom Lists\"],\"NICUmW\":[\"Director\"],\"NQzPoO\":[\"New backup\"],\"NSxl1l\":[\"More Settings\"],\"NVF43p\":[\"Time:\"],\"NdPMwS\":[\"In Your Library\"],\"NgaPSG\":[\"Failed to update schedule\"],\"O3oNi5\":[\"Email\"],\"OBcj5W\":[\"This will invalidate the current \",[\"label\"],\" URL. You'll need to update it in \",[\"label\"],\".\"],\"OL8hbM\":[\"New password must be at least 8 characters\"],\"ONWvwQ\":[\"Upload\"],\"OPFjyX\":[\"Install the <0>Webhook plugin<1/> from Jellyfin's plugin catalog\"],\"OW/+RD\":[\"Watch history\"],\"OZdaTZ\":[\"Person\"],\"OvO76u\":[\"Back to Login\"],\"OvdFIZ\":[\"Season watched\"],\"P2FLLe\":[\"View release\"],\"PBdLfg\":[\"No titles found for this genre.\"],\"PQ3qDa\":[\"Fetching your library data from \",[\"source\"],\"...\"],\"PjNoxI\":[\"Scheduled backup\"],\"Pn2B7/\":[\"Current password\"],\"PnEbL/\":[\"Rated \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"star\"],\"other\":[\"stars\"]}]],\"Pwqkdw\":[\"Loading…\"],\"Py87xY\":[\"Authorization succeeded but failed to fetch your library. Please try again.\"],\"Q3MPWA\":[\"Update password\"],\"QHcLEN\":[\"Connected\"],\"QK4UIx\":[\"Mark Watched\"],\"Qjlym2\":[\"Failed to create account\"],\"Qm1NmK\":[\"OR\"],\"Qoq+GP\":[\"Read more\"],\"QphVZW\":[\"Can't reach server\"],\"QqLJHH\":[\"This Year\"],\"R0yu2l\":[\"Catch up\"],\"R4YBui\":[\"Search for movies and TV shows to start tracking\"],\"RH46vw\":[[\"0\"],\"/\",[\"1\"],\" \",[\"2\",\"plural\",{\"one\":[\"episode\"],\"other\":[\"episodes\"]}]],\"RIR15/\":[\"Radarr List URL\"],\"RLe7Vk\":[\"Checking…\"],\"ROq8cl\":[\"Failed to parse file\"],\"RQq8Si\":[\"Registration opened\"],\"S0soqb\":[\"Failed to remove profile picture\"],\"S1McZh\":[\"Failed to upload avatar\"],\"S2ble5\":[[\"0\"],\" movies, \",[\"1\"],\" episodes\"],\"S2qPRR\":[\"Search movies & TV shows…\"],\"SDND4q\":[\"Not configured\"],\"SFdAk9\":[\"Unwatched S\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"SUIUkB\":[\"Unwatch all\"],\"SbS+Bm\":[\"Regenerate URL\"],\"SlfejT\":[\"Error\"],\"Sp86ju\":[[\"0\"],\" ep\",[\"1\"]],\"SrfROI\":[\"Up next\"],\"SyPRjk\":[\"Sofa will automatically log movies and episodes when you finish watching them\"],\"T0/7WG\":[\"Next backup \",[\"distance\"]],\"TEaX6q\":[\"Backup deleted\"],\"TI7IKo\":[\"Rated \",[\"0\"],\" star\",[\"1\"]],\"TMb7iE\":[\"Profile picture removed\"],\"TqyQQS\":[\"Enable the <0>Playback event category\"],\"Tz0i8g\":[\"Settings\"],\"U+FxtW\":[\"Track what you watch. Know what's next.<0/>Your library, your data, your rules.\"],\"U3pytU\":[\"Admin\"],\"UC+OWB\":[\"Toggle open registration\"],\"UDMjsP\":[\"Quick Actions\"],\"UmQ6Fe\":[\"Purge image cache?\"],\"UtDm3q\":[\"URL copied to clipboard\"],\"V1Kh9Z\":[\"Episodes \",[\"select\"]],\"V6uzvC\":[\"More Like This\"],\"V9CuQ+\":[\"Connect to \",[\"source\"]],\"VAcXNz\":[\"Wednesday\"],\"VKyhZK\":[\"Title not found\"],\"VQvpro\":[\"Paste the Sonarr URL above into the List URL field\"],\"VhMDMg\":[\"Change Password\"],\"Vx0ayx\":[\"Failed to mark some episodes\"],\"WDC4PF\":[\"Episodes \",[\"periodSelect\"]],\"WEYdDv\":[\"Recommended\"],\"WMCwmR\":[\"Check for updates\"],\"WP48q2\":[\"Image Cache\"],\"WT1Ibn\":[\"Last run\"],\"Wb3E4g\":[\"Run now\"],\"WgF2UQ\":[\"You're running v\",[\"0\"],\".\"],\"WtWhSi\":[\"Rating removed\"],\"Wy/3II\":[\"Last polled \",[\"0\"]],\"X0OwOB\":[\"today\"],\"XFCSYs\":[\"Cast\"],\"XN23JY\":[\"This will delete un-enriched stub titles that aren't in any user's library and clean up orphaned person records. Deleted titles will be re-imported if accessed again.\"],\"XZwihE\":[\"Ready — nothing received yet\"],\"XjTduw\":[\"Upload picture\"],\"YEGzVq\":[\"Failed to connect \",[\"label\"]],\"YErf89\":[\"Failed to purge metadata cache\"],\"YQ768h\":[\"Scene not found\"],\"YiRsXK\":[\"Clear Recently Viewed?\"],\"Yjp1zf\":[\"Don't have a server?\"],\"YqMfa9\":[\"Review what was found and choose what to import.\"],\"ZGUYm0\":[\"Ready — not polled yet\"],\"ZQKLI1\":[\"Danger Zone\"],\"ZVZUoU\":[[\"0\"],\" cached images\"],\"ZWTQ81\":[\"Watch on \",[\"name\"]],\"a3LDKx\":[\"Security\"],\"aLBUiR\":[\"Keeping <0><1><2>\",[\"0\"],\"<3>\",[\"1\"],\" backups.\"],\"aM0+kY\":[\"Purged \",[\"0\",\"plural\",{\"one\":[\"#\",\" stale title\"],\"other\":[\"#\",\" stale titles\"]}],\" and \",[\"1\",\"plural\",{\"one\":[\"#\",\" orphaned person\"],\"other\":[\"#\",\" orphaned persons\"]}]],\"aO1AxG\":[\"Episode unwatched\"],\"aV/hDI\":[\"Failed to disconnect \",[\"label\"]],\"acbSg0\":[\"Double tap to filter by \",[\"label\"]],\"agE7k4\":[\"Rated \",[\"stars\",\"plural\",{\"one\":[\"#\",\" star\"],\"other\":[\"#\",\" stars\"]}]],\"alPRaV\":[\"Titles on your Sofa watchlist will be automatically added for download when Radarr polls this list (every 12 hours by default)\"],\"aourBv\":[\"Scheduled backups enabled\"],\"apLLSU\":[\"Are you sure you want to sign out?\"],\"atc9MA\":[\"Open Emby, go to <0>Settings > Webhooks\"],\"auVUJO\":[\"Restore database?\"],\"ayqfr4\":[[\"label\"],\" URL regenerated\"],\"b/8KCH\":[\"This will mark every episode of this show as watched. You can undo this later by unmarking individual seasons.\"],\"b0F4W5\":[\"this month\"],\"b3Thhd\":[\"Upload failed\"],\"b5DFtH\":[\"Set password\"],\"bHYIks\":[\"Sign Out\"],\"bITrbE\":[\"Purge all\"],\"bNmdjU\":[\"Watchlist\"],\"bTRwag\":[\"Remove from Library\"],\"bXMotV\":[\"Marked as watched\"],\"bezGJ2\":[[\"0\"],\" images\"],\"boJlGf\":[\"Page Not Found\"],\"c1ssjI\":[\"Importing from \",[\"source\"]],\"c3b0B0\":[\"Get Started\"],\"c4b9Dm\":[\"No results for \\\"\",[\"debouncedQuery\"],\"\\\"\"],\"cQPKZt\":[\"Go to Dashboard\"],\"ccAJSB\":[\"Keeping\"],\"cgvva8\":[[\"0\"],\" ratings\"],\"cnGeoo\":[\"Delete\"],\"cpE88+\":[\"Create your account\"],\"d/6MoL\":[\"Manage your account and preferences\"],\"dA7BWh\":[\"Requires Emby Server 4.7.9+ and an active Emby Premiere license.\"],\"dEgA5A\":[\"Cancel\"],\"dTZwve\":[\"Marked all episodes as watched\"],\"dUCJry\":[\"Newest\"],\"ddwpAr\":[\"Warnings (\",[\"0\"],\")\"],\"e/ToF5\":[\"Sign in with \",[\"0\"]],\"e9sZMS\":[\"This will permanently delete the backup from <0>\",[\"0\"],\". This cannot be undone.\"],\"eFRooE\":[\"Last run failed\"],\"eM39Om\":[\"Watched all of \",[\"seasonLabel\"]],\"eZjYb8\":[\"Writer\"],\"ecUA8p\":[\"Today\"],\"evBxZy\":[\"Where to Watch\"],\"ezDa1h\":[\"Open docs\"],\"f+m696\":[\"An unexpected error occurred while loading this page. You can try again or head back to the dashboard.\"],\"f/AKdU\":[\"Are you sure you want to disconnect \",[\"label\"],\"? The current URL will stop working.\"],\"f7ax8J\":[\"Open in browser…\"],\"fMPkxb\":[\"Show more\"],\"fNMqNn\":[\"Popular TV Shows\"],\"fObVvy\":[\"Profile picture updated\"],\"fRettQ\":[[\"0\"],\" items\"],\"fUDRF9\":[\"Watchlisted\"],\"fcWrnU\":[\"Sign out\"],\"fgLNSM\":[\"Register\"],\"fsAEqk\":[\"Continue Watching\"],\"fzAeQI\":[\"Registering on \",[\"serverHost\"]],\"g+gBfk\":[\"Parsing...\"],\"g4JYff\":[\"Imported \",[\"0\"],\" items from \",[\"1\"]],\"gKtb5i\":[\"Titles on your Sofa watchlist will be automatically added for download when Sonarr polls this list (every 6 hours by default)\"],\"gaIAMq\":[\"Remove picture\"],\"gbEEMp\":[\"Delete backup\"],\"gcNLi0\":[\"Update checks enabled\"],\"gmB6oO\":[\"Schedule\"],\"h/T5Yb\":[\"Open registration\"],\"h4yKYk\":[\"Next run\"],\"h7MgpO\":[\"Keyboard Shortcuts\"],\"hTXYdY\":[\"Failed to create backup\"],\"hXYY5Q\":[\"Unwatched all of \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hjGupC\":[\"Lost connection to import. Check status in settings.\"],\"hlqjFc\":[\"In library\"],\"hou0tP\":[\"Stream\"],\"hty0d5\":[\"Monday\"],\"i0qMbr\":[\"Home\"],\"i9rcQ/\":[\"Movies\"],\"iGma9e\":[\"Update failed\"],\"iSLIjg\":[\"Connect\"],\"iWv3ck\":[\"Failed to catch up\"],\"iXZ09g\":[\"Mark as Completed\"],\"id08cd\":[\"Watched S\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"ih87w/\":[\"Add to Library\"],\"ihn4zD\":[\"Search…\"],\"itDEco\":[\"Already have an account? Sign in\"],\"itheEn\":[\"With Ads\"],\"iwCRIF\":[\"You'll be signed out to change the server URL.\"],\"j5GBIy\":[\"Open Radarr, go to Settings > Import Lists\"],\"jAe8l4\":[[\"0\"],\" backups · last <0/>\"],\"jB3sfe\":[\"Manual backup\"],\"jFnMJ8\":[\"Double tap to clear this filter\"],\"jQsPwL\":[\"Scheduled backups disabled\"],\"jSjGeu\":[[\"0\"],\" items have no external IDs and will be resolved by title search, which may be less accurate.\"],\"jX6Gzg\":[\"This will replace your entire database with the uploaded file. A safety backup of your current data will be created first. Active sessions may need to refresh after restore.\"],\"jiHVUy\":[\"Pre-restore backup\"],\"k6c41p\":[\"Background jobs\"],\"kBDOjB\":[\"Backup schedule\"],\"kkDQ8m\":[\"Thursday\"],\"klOeIX\":[\"Failed to change password\"],\"ks3XeZ\":[\"Open Sonarr, go to Settings > Import Lists\"],\"kvuCtu\":[\"Something went wrong while loading this title. Please try again.\"],\"kx0s+n\":[\"Results\"],\"l2wcoS\":[\"Last run succeeded\"],\"l3s5ri\":[\"Import\"],\"lCF0wC\":[\"Refresh\"],\"lJ1yo4\":[\"Failed to sign in\"],\"lVqzRx\":[\"Click <0>Add Webhook and paste the URL above\"],\"lXkUEV\":[\"Availability\"],\"lcLe89\":[\"Search for movies, TV shows, or run commands\"],\"lfVyvz\":[\"Add to Watchlist\"],\"llDXYJ\":[\"Backups\"],\"llkZR0\":[\"Could not load integrations\"],\"ln9/n9\":[\"Don't have an account?\"],\"lpIMne\":[\"Passwords do not match\"],\"lqY3WY\":[\"Change Server\"],\"luoodD\":[\"Setup required\"],\"m5WhJy\":[\"Automatic update checks\"],\"mIx58S\":[\"Purge images\"],\"mYBORk\":[\"Movie\"],\"ml9cU0\":[\"Failed to regenerate \",[\"label\"],\" URL\"],\"mqwkjd\":[\"Health status\"],\"mqxHH7\":[\"Go to Explore\"],\"mzI/c+\":[\"Download\"],\"n1ekoW\":[\"Sign In\"],\"n3Pzd7\":[\"Backup created\"],\"nBHvPL\":[\"Cancel editing\"],\"nJw77c\":[[\"0\",\"plural\",{\"one\":[\"#\",\" image\"],\"other\":[\"#\",\" images\"]}]],\"nO0Qnj\":[\"Your code:\"],\"nRP1xx\":[\"Need more help?\"],\"nV1LjT\":[\"Enable the <0>Playback Stop notification type\"],\"nVsE67\":[\"Mark as Watching\"],\"nZ7lF1\":[\"Device code expired. Please try again.\"],\"nbfdhU\":[\"Integrations\"],\"nbmpf9\":[\"Purge metadata\"],\"nnKJTm\":[\"Failed to mark all episodes as watched\"],\"nszbQG\":[\"No backups yet\"],\"nuh/Wq\":[\"Webhook URL\"],\"nwtY4N\":[\"Something went wrong\"],\"oAIA3w\":[\"Search for movies, shows, or people\"],\"oC8IMh\":[\"Search movies, shows, people...\"],\"oNvZcA\":[\"Episodes this week\"],\"oXq+Wr\":[[\"label\"],\" connected\"],\"ogtYkT\":[\"Password updated\"],\"ojtedN\":[\"Open Radarr, go to <0>Settings > Import Lists\"],\"olMi35\":[\"Recommended for You\"],\"p+PZEl\":[\"Here's what's happening with your library\"],\"pAtylB\":[\"Not Found\"],\"pG9pq1\":[\"Deleted \",[\"0\",\"plural\",{\"one\":[\"#\",\" file\"],\"other\":[\"#\",\" files\"]}],\", freed \",[\"freed\"]],\"pWWFjv\":[\"Checked <0/>\"],\"ph76H6\":[\"Allow new users to create accounts\"],\"pjgw0N\":[\"Choose how to import your \",[\"0\"],\" data.\"],\"puo3W3\":[\"Redirecting…\"],\"q3GraM\":[\"...and \",[\"0\"],\" more\"],\"q6nrFE\":[\"died at \",[\"age\"]],\"q6pUQ9\":[\"Upload a .db file to replace the current database. A safety backup is created first.\"],\"q8yluz\":[\"Your name\"],\"qA6VR5\":[\"Requires <0>Emby Server 4.7.9+ and an active <1>Emby Premiere<2/> license.\"],\"qF2IBM\":[\"Movies this month\"],\"qHbApt\":[\"Failed to load backup schedule settings.\"],\"qLB1zX\":[\"Upload a \",[\"0\"],\" export from your \",[\"1\"],\" account settings.\"],\"qPNzfu\":[\"Update checks disabled\"],\"qWoML/\":[\"Add a new webhook and paste the URL above\"],\"qiOIiY\":[\"Buy\"],\"qn1X6N\":[\"Failed to update registration setting\"],\"qqWcBV\":[\"Completed\"],\"qqeAJM\":[\"Never\"],\"r9aDAY\":[[\"count\"],\" earlier \",[\"count\",\"plural\",{\"one\":[\"episode\"],\"other\":[\"episodes\"]}],\" unwatched\"],\"rLgPvm\":[\"Backup\"],\"rSTpb5\":[\"Server Health\"],\"rczylF\":[\"this week\"],\"rdymVD\":[\"Trigger job\"],\"rtir7c\":[\"unknown\"],\"s0U4ZZ\":[\"TV episodes\"],\"s4vVUm\":[\"Could not load person details\"],\"s9dVME\":[\"Failed to unmark episode\"],\"sGH11W\":[\"Server\"],\"sl/qWH\":[\"Upload profile picture\"],\"sstysK\":[\"Failed to mark episode\"],\"stZeiF\":[[\"watched\"],\"/\",[\"total\"],\" episodes\"],\"t/Ch8S\":[\"Marked as watching\"],\"t/YqKh\":[\"Remove\"],\"tfDRzk\":[\"Save\"],\"tiymc0\":[\"Something went wrong…\"],\"u9ugU7\":[[\"watchedCount\"],\"/\",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"episode\"],\"other\":[\"episodes\"]}]],\"uBAxNB\":[\"Editor\"],\"uBrbSu\":[\"Failed to start \",[\"0\"],\" connection\"],\"uM6jnS\":[\"Restore failed\"],\"uMrJrX\":[\"Admin only\"],\"uswLvZ\":[\"The title you're looking for doesn't exist or may have been removed from the database.\"],\"uxOntd\":[[\"watchedCount\"],\" of \",[\"0\"],\" episodes watched\"],\"v2CA3w\":[\"Change Photo\"],\"v5ipVu\":[\"Mark all episodes as watched?\"],\"vKfeax\":[\"Open Emby, go to Settings > Webhooks\"],\"vXIe7J\":[\"Language\"],\"vuCCZ7\":[\"Failed to parse import data\"],\"vwKERN\":[\"Failed to delete backup\"],\"w8pqsh\":[\"Mark All Watched\"],\"wA7B2T\":[\"New accounts are not being accepted right now. Contact the admin if you need access.\"],\"wGFX13\":[\"Starting at\"],\"wR1UAy\":[\"Popular Movies\"],\"wRWcdL\":[\"Play trailer\"],\"wThGrS\":[\"App Settings\"],\"wZK4Xg\":[\"Never run\"],\"wdLxgL\":[\"Member since \",[\"memberSince\"]],\"wja8aL\":[\"Untitled\"],\"wtGebH\":[\"The person you're looking for doesn't exist or may have been removed from the database.\"],\"wtsbt5\":[\"Add to watchlist\"],\"wtuVU4\":[\"Frequency\"],\"wx7pwA\":[\"Mark as Watched\"],\"x4ZiTl\":[\"Setup instructions\"],\"xCJdfg\":[\"Clear\"],\"xGVfLh\":[\"Continue\"],\"xLoCm2\":[\"Check configuration\"],\"xSrU2g\":[[\"healthyCount\"],\" of \",[\"0\"],\" jobs healthy\"],\"xazqmy\":[\"Seasons\"],\"xbBXhy\":[\"Periodically check GitHub for new Sofa releases\"],\"xrh2/M\":[\"Failed to mark as watched\"],\"y3e9pF\":[\"Delete backup?\"],\"y6Urel\":[\"Next Episode\"],\"yGvjAo\":[\"Update available: \",[\"0\"]],\"yKu/3Y\":[\"Restore\"],\"yYxB17\":[\"Clear all\"],\"ybtG1U\":[[\"0\"],\" backup\",[\"1\"],\" stored\"],\"yey/zg\":[\"Database restored. Reloading...\"],\"ygo0l/\":[\"Start tracking movies and shows\"],\"yvwIbI\":[\"Upload export file\"],\"yz7wBu\":[\"Close\"],\"z1U/Fh\":[\"Rating\"],\"z5evln\":[\"No internet connection\"],\"zAvS8w\":[\"Sign in to continue\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zFkiTv\":[\"Install the Webhook plugin from Jellyfin's plugin catalog\"],\"zNyR4f\":[\"Set your preferred quality profile and root folder\"],\"za8Le/\":[\"Registration Closed\"],\"zb77GC\":[\"Rent\"],\"ztAdhw\":[\"Name updated\"]}")as Messages; \ No newline at end of file diff --git a/packages/i18n/src/po/es.po b/packages/i18n/src/po/es.po index fc74900..7900417 100644 --- a/packages/i18n/src/po/es.po +++ b/packages/i18n/src/po/es.po @@ -24,12 +24,12 @@ msgid "...and {0} more" msgstr "...y {0} más" #. placeholder {0}: systemHealth.data.imageCache.imageCount -#: apps/native/src/app/(tabs)/(settings)/index.tsx:456 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:438 msgid "{0, plural, one {# image} other {# images}}" msgstr "{0, plural, one {# imagen} other {# imágenes}}" #. placeholder {0}: systemHealth.data.database.titleCount -#: apps/native/src/app/(tabs)/(settings)/index.tsx:442 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:424 msgid "{0, plural, one {# title} other {# titles}}" msgstr "{0, plural, one {# título} other {# títulos}}" @@ -44,12 +44,12 @@ msgstr "{0} {1, plural, one {backup almacenado} other {backups almacenados}}" #~ msgstr "{0} backup{1} stored" #. placeholder {0}: backups.backupCount -#: apps/web/src/components/settings/system-health-section.tsx:599 +#: apps/web/src/components/settings/system-health-section.tsx:593 msgid "{0} backups · last <0/>" msgstr "{0} backups · último <0/>" #. placeholder {0}: imageCache.imageCount.toLocaleString() -#: apps/web/src/components/settings/system-health-section.tsx:569 +#: apps/web/src/components/settings/system-health-section.tsx:563 msgid "{0} cached images" msgstr "{0} imágenes en caché" @@ -157,6 +157,8 @@ msgstr "Cuenta" msgid "Actions" msgstr "Acciones" +#: apps/native/src/app/person/[id].tsx:50 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:28 #: apps/web/src/components/people/person-hero.tsx:69 msgid "Actor" msgstr "" @@ -200,18 +202,18 @@ msgid "Added to watchlist" msgstr "Añadido a la lista" #: apps/native/src/app/(tabs)/(settings)/index.tsx:342 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:431 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:470 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:413 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:452 #: apps/web/src/components/nav-bar.tsx:223 #: apps/web/src/components/settings/account-section.tsx:309 msgid "Admin" msgstr "" -#: apps/web/src/routes/_app/settings.tsx:118 +#: apps/web/src/routes/_app/settings.tsx:154 msgid "Admin only" msgstr "Solo administradores" -#: apps/native/src/app/person/[id].tsx:267 +#: apps/native/src/app/person/[id].tsx:249 #: apps/web/src/components/people/person-hero.tsx:89 msgid "age {age}" msgstr "edad {age}" @@ -233,15 +235,15 @@ msgstr "¿Ya tienes una cuenta?" msgid "Already have an account? Sign in" msgstr "¿Ya tienes una cuenta? Inicia sesión" -#: apps/web/src/routes/__root.tsx:143 +#: apps/web/src/routes/__root.tsx:142 msgid "An unexpected error occurred while loading this page. You can try again or head back to the dashboard." msgstr "Ocurrió un error inesperado al cargar esta página. Puedes intentarlo de nuevo o volver al panel." -#: apps/native/src/app/(tabs)/(settings)/index.tsx:407 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:389 msgid "Anonymous usage reporting" msgstr "Informe de uso anónimo" -#: apps/web/src/routes/_app/settings.tsx:99 +#: apps/web/src/routes/_app/settings.tsx:135 msgid "App Settings" msgstr "Ajustes de la app" @@ -307,8 +309,8 @@ msgstr "Copia de seguridad eliminada" msgid "Backup schedule" msgstr "Programación de copias de seguridad" -#: apps/web/src/components/settings/system-health-section.tsx:589 -#: apps/web/src/routes/_app/settings.tsx:154 +#: apps/web/src/components/settings/system-health-section.tsx:583 +#: apps/web/src/routes/_app/settings.tsx:190 msgid "Backups" msgstr "Copias de seguridad" @@ -354,7 +356,7 @@ msgstr "Cancelar" msgid "Cancel editing" msgstr "Cancelar edición" -#: apps/native/src/app/title/[id].tsx:489 +#: apps/native/src/app/title/[id].tsx:493 #: apps/web/src/components/titles/cast-carousel.tsx:21 msgid "Cast" msgstr "Reparto" @@ -392,7 +394,7 @@ msgstr "Cambiar servidor" msgid "Check configuration" msgstr "Comprobar configuración" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:483 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:465 msgid "Check for updates" msgstr "Buscar actualizaciones" @@ -420,7 +422,7 @@ msgstr "Elige cómo importar tus datos de {0}." msgid "Clear" msgstr "Limpiar" -#: apps/web/src/components/command-palette.tsx:302 +#: apps/web/src/components/command-palette.tsx:297 msgid "Clear all" msgstr "Limpiar todo" @@ -447,11 +449,12 @@ msgstr "Haz clic en <0>+ y selecciona <1>Custom Lists" msgid "Click <0>Add Webhook and paste the URL above" msgstr "Haz clic en <0>Add Webhook y pega la URL anterior" -#: apps/native/src/components/navigation/modal-stack-header.tsx:14 +#: apps/native/src/components/navigation/modal-layout.tsx:26 +#: apps/native/src/components/navigation/modal-layout.tsx:38 msgid "Close" msgstr "Cerrar" -#: apps/native/src/app/(tabs)/(home)/index.tsx:54 +#: apps/native/src/app/(tabs)/(home)/index.tsx:146 #: apps/native/src/components/titles/status-action-button.tsx:45 #: apps/web/src/components/dashboard/stats-display.tsx:219 #: apps/web/src/components/title-card.tsx:74 @@ -492,7 +495,7 @@ msgid "Connect with {0}" msgstr "Conectar con {0}" #: apps/native/src/app/(auth)/server-url.tsx:176 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:449 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:431 #: apps/web/src/components/settings/system-health-section.tsx:236 msgid "Connected" msgstr "Conectado" @@ -521,7 +524,7 @@ msgstr "Conectando…" msgid "Continue" msgstr "Continuar" -#: apps/native/src/app/(tabs)/(home)/index.tsx:99 +#: apps/native/src/app/(tabs)/(home)/index.tsx:161 #: apps/web/src/components/dashboard/continue-watching-section.tsx:22 msgid "Continue Watching" msgstr "Continuar viendo" @@ -542,7 +545,7 @@ msgstr "Copiar URL" msgid "Could not load integrations" msgstr "No se pudieron cargar las integraciones" -#: apps/native/src/app/person/[id].tsx:185 +#: apps/native/src/app/person/[id].tsx:172 msgid "Could not load person details" msgstr "No se pudieron cargar los detalles de la persona" @@ -576,18 +579,18 @@ msgstr "Contraseña actual" msgid "Current password is required" msgstr "La contraseña actual es obligatoria" -#: apps/web/src/routes/_app/settings.tsx:180 +#: apps/web/src/routes/_app/settings.tsx:216 msgid "Danger Zone" msgstr "Zona de peligro" -#: apps/web/src/routes/__root.tsx:164 +#: apps/web/src/routes/__root.tsx:163 #: apps/web/src/routes/_app/people.$id.tsx:76 #: apps/web/src/routes/_app/titles.$id.tsx:119 #: apps/web/src/routes/_app/titles.$id.tsx:165 msgid "Dashboard" msgstr "Panel" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:439 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:421 #: apps/web/src/components/settings/system-health-section.tsx:210 msgid "Database" msgstr "Base de datos" @@ -627,17 +630,19 @@ msgstr "{0, plural, one {# archivo eliminado} other {# archivos eliminados}}, li msgid "Device code expired. Please try again." msgstr "El código del dispositivo ha expirado. Por favor, inténtalo de nuevo." -#: apps/native/src/app/person/[id].tsx:267 +#: apps/native/src/app/person/[id].tsx:249 #: apps/web/src/components/people/person-hero.tsx:89 msgid "died at {age}" msgstr "falleció a los {age}" +#: apps/native/src/app/person/[id].tsx:51 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:29 #: apps/web/src/components/people/person-hero.tsx:71 msgid "Director" msgstr "" #: apps/web/src/components/settings/system-health-section.tsx:394 -#: apps/web/src/components/settings/system-health-section.tsx:580 +#: apps/web/src/components/settings/system-health-section.tsx:574 msgid "Disabled" msgstr "Desactivado" @@ -680,6 +685,8 @@ msgstr "Descargar" msgid "Download backup" msgstr "Descargar copia de seguridad" +#: apps/native/src/app/person/[id].tsx:54 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:32 #: apps/web/src/components/people/person-hero.tsx:77 msgid "Editor" msgstr "" @@ -748,6 +755,11 @@ msgstr "Episodio marcado como visto" msgid "Episodes" msgstr "Episodios" +#. placeholder {0}: periodLabels[episodePeriod] +#: apps/native/src/app/(tabs)/(home)/index.tsx:125 +msgid "Episodes {0}" +msgstr "" + #: apps/web/src/components/dashboard/stats-display.tsx:162 #~ msgid "Episodes {periodSelect}" #~ msgstr "Episodes {periodSelect}" @@ -757,8 +769,8 @@ msgid "Episodes {select}" msgstr "Episodios {select}" #: apps/native/src/app/(tabs)/(home)/index.tsx:52 -msgid "Episodes this week" -msgstr "Episodios esta semana" +#~ msgid "Episodes this week" +#~ msgstr "Episodios esta semana" #: apps/native/src/app/change-password.tsx:67 #: apps/native/src/app/change-password.tsx:77 @@ -770,7 +782,9 @@ msgstr "" msgid "Errors ({0})" msgstr "Errores ({0})" -#: apps/native/src/app/(tabs)/(home)/index.tsx:127 +#: apps/native/src/app/(tabs)/(explore)/_layout.tsx:7 +#: apps/native/src/app/(tabs)/(home)/index.tsx:189 +#: apps/native/src/components/navigation/native-tab-bar.tsx:32 #: apps/web/src/components/nav-bar.tsx:116 #: apps/web/src/components/nav-bar.tsx:277 msgid "Explore" @@ -959,7 +973,7 @@ msgstr "Error al subir el avatar" msgid "Fetching your library data from {source}..." msgstr "Obteniendo datos de tu biblioteca desde {source}..." -#: apps/native/src/app/person/[id].tsx:296 +#: apps/native/src/app/person/[id].tsx:279 #: apps/web/src/components/people/filmography-grid.tsx:67 msgid "Filmography" msgstr "Filmografía" @@ -988,9 +1002,9 @@ msgstr "Viernes" msgid "Get Started" msgstr "Comenzar" -#: apps/native/src/app/person/[id].tsx:189 -#: apps/native/src/app/person/[id].tsx:213 -#: apps/native/src/app/title/[id].tsx:239 +#: apps/native/src/app/person/[id].tsx:176 +#: apps/native/src/app/person/[id].tsx:196 +#: apps/native/src/app/title/[id].tsx:235 msgid "Go back" msgstr "Volver" @@ -1002,7 +1016,7 @@ msgstr "Ir al inicio" msgid "Go to <0>Dashboard > Plugins > Webhook" msgstr "Ve a <0>Dashboard > Plugins > Webhook" -#: apps/web/src/components/command-palette.tsx:345 +#: apps/web/src/components/command-palette.tsx:339 msgid "Go to Dashboard" msgstr "Ir al panel" @@ -1010,7 +1024,7 @@ msgstr "Ir al panel" msgid "Go to Dashboard > Plugins > Webhook" msgstr "Ve a Dashboard > Plugins > Webhook" -#: apps/web/src/components/command-palette.tsx:356 +#: apps/web/src/components/command-palette.tsx:349 msgid "Go to Explore" msgstr "Ir a Explorar" @@ -1022,21 +1036,23 @@ msgstr "Estado del sistema" msgid "Here's what's happening with your library" msgstr "Esto es lo que pasa con tu biblioteca" +#: apps/native/src/app/(tabs)/(home)/_layout.tsx:7 +#: apps/native/src/components/navigation/native-tab-bar.tsx:28 #: apps/web/src/components/nav-bar.tsx:115 #: apps/web/src/components/nav-bar.tsx:276 msgid "Home" msgstr "Inicio" #: apps/web/src/components/settings/system-health-section.tsx:308 -#: apps/web/src/components/settings/system-health-section.tsx:558 +#: apps/web/src/components/settings/system-health-section.tsx:552 msgid "Image cache" msgstr "Caché de imágenes" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:453 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:435 msgid "Image Cache" msgstr "Caché de imágenes" -#: apps/web/src/components/settings/system-health-section.tsx:546 +#: apps/web/src/components/settings/system-health-section.tsx:540 msgid "Image cache and backup disk usage" msgstr "Uso del disco de caché de imágenes y copias de seguridad" @@ -1088,7 +1104,7 @@ msgstr "{0} elementos importados desde {1}" msgid "Importing from {source}" msgstr "Importando desde {source}" -#: apps/native/src/app/(tabs)/(home)/index.tsx:53 +#: apps/native/src/app/(tabs)/(home)/index.tsx:138 msgid "In library" msgstr "En la biblioteca" @@ -1096,7 +1112,7 @@ msgstr "En la biblioteca" msgid "In Library" msgstr "En la biblioteca" -#: apps/native/src/app/(tabs)/(home)/index.tsx:117 +#: apps/native/src/app/(tabs)/(home)/index.tsx:179 #: apps/web/src/components/dashboard/library-section.tsx:35 msgid "In Your Library" msgstr "En tu biblioteca" @@ -1132,13 +1148,13 @@ msgstr "Tarea" msgid "Keeping <0><1><2>{0}<3>{1} backups." msgstr "Guardando <0><1><2>{0}<3>{1} copias de seguridad." -#: apps/web/src/components/command-palette.tsx:366 -#: apps/web/src/components/command-palette.tsx:381 +#: apps/web/src/components/command-palette.tsx:359 +#: apps/web/src/components/command-palette.tsx:374 msgid "Keyboard Shortcuts" msgstr "Atajos de teclado" #: apps/native/src/app/(tabs)/(settings)/index.tsx:383 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:391 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:506 #: apps/web/src/components/settings/language-section.tsx:34 msgid "Language" msgstr "Idioma" @@ -1264,15 +1280,16 @@ msgstr "Miembro desde {memberSince}" msgid "Monday" msgstr "Lunes" -#: apps/native/src/app/title/[id].tsx:508 +#: apps/native/src/app/title/[id].tsx:512 msgid "More Like This" msgstr "Más como este" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:506 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:488 msgid "More Settings" msgstr "Más ajustes" -#: apps/native/src/app/title/[id].tsx:337 +#: apps/native/src/app/title/[id].tsx:333 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:22 #: apps/native/src/components/search/search-result-row.tsx:34 #: apps/native/src/components/search/search-result-row.tsx:81 #: apps/web/src/components/explore/hero-banner.tsx:54 @@ -1285,6 +1302,11 @@ msgstr "Película" msgid "Movies" msgstr "Películas" +#. placeholder {0}: periodLabels[moviePeriod] +#: apps/native/src/app/(tabs)/(home)/index.tsx:114 +msgid "Movies {0}" +msgstr "" + #: apps/web/src/components/dashboard/stats-display.tsx:161 #~ msgid "Movies {periodSelect}" #~ msgstr "Movies {periodSelect}" @@ -1294,8 +1316,8 @@ msgid "Movies {select}" msgstr "Películas {select}" #: apps/native/src/app/(tabs)/(home)/index.tsx:51 -msgid "Movies this month" -msgstr "Películas este mes" +#~ msgid "Movies this month" +#~ msgstr "Películas este mes" #: apps/native/src/app/(auth)/register.tsx:111 #: apps/web/src/components/auth-form.tsx:173 @@ -1311,7 +1333,7 @@ msgstr "Nombre actualizado" msgid "Need more help?" msgstr "¿Necesitas más ayuda?" -#: apps/web/src/components/settings/system-health-section.tsx:456 +#: apps/web/src/components/settings/system-health-section.tsx:453 msgid "Never" msgstr "Nunca" @@ -1358,7 +1380,7 @@ msgid "Next run" msgstr "Próxima ejecución" #: apps/web/src/components/settings/backup-section.tsx:99 -#: apps/web/src/components/settings/system-health-section.tsx:607 +#: apps/web/src/components/settings/system-health-section.tsx:601 msgid "No backups yet" msgstr "Aún no hay copias de seguridad" @@ -1368,11 +1390,11 @@ msgstr "Aún no hay copias de seguridad" msgid "No internet connection" msgstr "Sin conexión a internet" -#: apps/native/src/app/(tabs)/(search)/index.tsx:100 +#: apps/native/src/app/(tabs)/(search)/index.tsx:94 msgid "No results for \"{debouncedQuery}\"" msgstr "Sin resultados para \"{debouncedQuery}\"" -#: apps/web/src/components/command-palette.tsx:212 +#: apps/web/src/components/command-palette.tsx:207 msgid "No results found." msgstr "No se encontraron resultados." @@ -1411,7 +1433,7 @@ msgstr "Abre Emby, ve a <0>Settings > Webhooks" msgid "Open Emby, go to Settings > Webhooks" msgstr "Abre Emby, ve a Settings > Webhooks" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:513 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:495 msgid "Open in browser…" msgstr "Abrir en el navegador…" @@ -1431,7 +1453,7 @@ msgstr "Abre Radarr, ve a <0>Settings > Import Lists" msgid "Open Radarr, go to Settings > Import Lists" msgstr "Abre Radarr, ve a Settings > Import Lists" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:472 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:454 #: apps/web/src/components/settings/registration-section.tsx:51 msgid "Open registration" msgstr "Registro abierto" @@ -1489,12 +1511,13 @@ msgstr "Pega la URL de Sonarr anterior en el campo URL de lista" msgid "Periodically check GitHub for new Sofa releases" msgstr "Comprobar periódicamente GitHub para nuevas versiones de Sofa" +#: apps/native/src/components/search/recently-viewed-row-content.tsx:24 #: apps/native/src/components/search/search-result-row.tsx:34 #: apps/native/src/components/search/search-result-row.tsx:81 msgid "Person" msgstr "Persona" -#: apps/native/src/app/person/[id].tsx:209 +#: apps/native/src/app/person/[id].tsx:192 #: apps/web/src/routes/_app/people.$id.tsx:50 msgid "Person not found" msgstr "Persona no encontrada" @@ -1504,12 +1527,12 @@ msgid "Play trailer" msgstr "Reproducir tráiler" #: apps/native/src/app/(tabs)/(explore)/index.tsx:89 -#: apps/web/src/components/explore/explore-client.tsx:120 +#: apps/web/src/routes/_app/explore.tsx:141 msgid "Popular Movies" msgstr "Películas populares" #: apps/native/src/app/(tabs)/(explore)/index.tsx:102 -#: apps/web/src/components/explore/explore-client.tsx:130 +#: apps/web/src/routes/_app/explore.tsx:151 msgid "Popular TV Shows" msgstr "Series populares" @@ -1517,6 +1540,8 @@ msgstr "Series populares" msgid "Pre-restore backup" msgstr "Copia de seguridad previa a restauración" +#: apps/native/src/app/person/[id].tsx:53 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:31 #: apps/web/src/components/people/person-hero.tsx:75 msgid "Producer" msgstr "Productor" @@ -1577,7 +1602,7 @@ msgstr "Purgados {0, plural, one {# título} other {# títulos}}, {1, plural, on msgid "Purging..." msgstr "Purgando..." -#: apps/web/src/components/command-palette.tsx:336 +#: apps/web/src/components/command-palette.tsx:331 msgid "Quick Actions" msgstr "Acciones rápidas" @@ -1633,7 +1658,7 @@ msgstr "Listo — sin consultas aún" msgid "Ready — nothing received yet" msgstr "Listo — nada recibido aún" -#: apps/web/src/components/command-palette.tsx:295 +#: apps/web/src/components/command-palette.tsx:290 msgid "Recent Searches" msgstr "Búsquedas recientes" @@ -1650,7 +1675,7 @@ msgstr "Recomendaciones" msgid "Recommended" msgstr "Recomendado" -#: apps/native/src/app/(tabs)/(home)/index.tsx:137 +#: apps/native/src/app/(tabs)/(home)/index.tsx:199 #: apps/web/src/components/dashboard/recommendations-section.tsx:22 msgid "Recommended for You" msgstr "Recomendado para ti" @@ -1770,7 +1795,7 @@ msgstr "Error al restaurar" msgid "Restoring…" msgstr "Restaurando…" -#: apps/web/src/components/command-palette.tsx:217 +#: apps/web/src/components/command-palette.tsx:212 msgid "Results" msgstr "Resultados" @@ -1781,11 +1806,11 @@ msgstr "Obteniendo tu historial de visionado, lista y valoraciones..." #: apps/native/src/components/settings/integrations-section.tsx:39 #: apps/native/src/components/ui/server-unreachable-banner.ios.tsx:71 #: apps/native/src/components/ui/server-unreachable-banner.tsx:79 -#: apps/web/src/lib/orpc/client.ts:17 +#: apps/web/src/lib/orpc/client.ts:24 msgid "Retry" msgstr "Reintentar" -#: apps/web/src/routes/__root.tsx:116 +#: apps/web/src/routes/__root.tsx:115 msgid "Return home" msgstr "Volver al inicio" @@ -1793,7 +1818,7 @@ msgstr "Volver al inicio" msgid "Review what was found and choose what to import." msgstr "Revisa lo encontrado y elige qué importar." -#: apps/web/src/components/settings/system-health-section.tsx:509 +#: apps/web/src/components/settings/system-health-section.tsx:503 msgid "Run now" msgstr "Ejecutar ahora" @@ -1809,7 +1834,7 @@ msgstr "Guardar" msgid "Save name" msgstr "Guardar nombre" -#: apps/web/src/routes/__root.tsx:98 +#: apps/web/src/routes/__root.tsx:97 msgid "Scene not found" msgstr "Escena no encontrada" @@ -1833,6 +1858,11 @@ msgstr "Copias de seguridad programadas desactivadas" msgid "Scheduled backups enabled" msgstr "Copias de seguridad programadas activadas" +#: apps/native/src/app/(tabs)/(search)/_layout.tsx:7 +#: apps/native/src/components/navigation/native-tab-bar.tsx:41 +msgid "Search" +msgstr "" + #: apps/web/src/components/dashboard/stats-section.tsx:35 msgid "Search for movies and TV shows to start tracking" msgstr "Busca películas y series para empezar a seguirlas" @@ -1842,15 +1872,15 @@ msgstr "Busca películas y series para empezar a seguirlas" msgid "Search for movies, shows, or people" msgstr "Busca películas, series o personas" -#: apps/web/src/components/command-palette.tsx:182 +#: apps/web/src/components/command-palette.tsx:177 msgid "Search for movies, TV shows, or run commands" msgstr "Busca películas, series o ejecuta comandos" -#: apps/web/src/components/command-palette.tsx:191 +#: apps/web/src/components/command-palette.tsx:186 msgid "Search movies & TV shows…" msgstr "Buscar películas y series…" -#: apps/native/src/app/(tabs)/(search)/index.tsx:79 +#: apps/native/src/app/(tabs)/(search)/index.tsx:73 msgid "Search movies, shows, people..." msgstr "Buscar películas, series, personas..." @@ -1872,12 +1902,12 @@ msgstr "Temporada {0}" msgid "Season watched" msgstr "Temporada marcada como vista" -#: apps/native/src/app/title/[id].tsx:473 +#: apps/native/src/app/title/[id].tsx:477 msgid "Seasons" msgstr "Temporadas" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:470 -#: apps/web/src/routes/_app/settings.tsx:131 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:452 +#: apps/web/src/routes/_app/settings.tsx:167 msgid "Security" msgstr "Seguridad" @@ -1885,11 +1915,11 @@ msgstr "Seguridad" msgid "Self-hosted movie & TV tracker" msgstr "Seguimiento de películas y series autoalojado" -#: apps/web/src/routes/_app/settings.tsx:115 +#: apps/web/src/routes/_app/settings.tsx:151 msgid "Server" msgstr "Servidor" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:431 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:413 msgid "Server Health" msgstr "Estado del servidor" @@ -1908,7 +1938,9 @@ msgstr "Establecer contraseña" msgid "Set your preferred quality profile and root folder" msgstr "Configura tu perfil de calidad y carpeta raíz preferidos" +#: apps/native/src/app/(tabs)/(settings)/_layout.tsx:7 #: apps/native/src/components/header-avatar.tsx:55 +#: apps/native/src/components/navigation/native-tab-bar.tsx:36 #: apps/web/src/components/nav-bar.tsx:236 #: apps/web/src/components/nav-bar.tsx:278 #: apps/web/src/components/settings/settings-shell.tsx:30 @@ -1999,9 +2031,9 @@ msgid "Sofa will automatically log movies and episodes when you finish watching msgstr "Sofa registrará automáticamente películas y episodios cuando termines de verlos" #: apps/native/src/app/change-password.tsx:77 -#: apps/native/src/app/person/[id].tsx:182 +#: apps/native/src/app/person/[id].tsx:169 #: apps/web/src/components/settings/account-section.tsx:391 -#: apps/web/src/routes/__root.tsx:140 +#: apps/web/src/routes/__root.tsx:139 msgid "Something went wrong" msgstr "Algo salió mal" @@ -2010,7 +2042,7 @@ msgid "Something went wrong while loading this title. Please try again." msgstr "Algo salió mal al cargar este título. Por favor, inténtalo de nuevo." #: apps/native/src/lib/query-client.ts:33 -#: apps/web/src/lib/orpc/client.ts:15 +#: apps/web/src/lib/orpc/client.ts:22 msgid "Something went wrong…" msgstr "Algo salió mal…" @@ -2022,7 +2054,7 @@ msgstr "URL de lista de Sonarr" msgid "Start exploring" msgstr "Empezar a explorar" -#: apps/native/src/app/(tabs)/(home)/index.tsx:126 +#: apps/native/src/app/(tabs)/(home)/index.tsx:188 msgid "Start tracking movies and shows" msgstr "Empieza a seguir películas y series" @@ -2042,7 +2074,7 @@ msgstr "Iniciando importación..." msgid "Status updated" msgstr "Estado actualizado" -#: apps/web/src/components/settings/system-health-section.tsx:543 +#: apps/web/src/components/settings/system-health-section.tsx:537 msgid "Storage" msgstr "Almacenamiento" @@ -2075,20 +2107,30 @@ msgstr "El título que buscas no existe o puede haber sido eliminado de la base msgid "This may take a few minutes for large libraries. Please don't close this tab." msgstr "Esto puede tardar unos minutos para bibliotecas grandes. Por favor, no cierres esta pestaña." +#: apps/native/src/app/(tabs)/(home)/index.tsx:89 +msgid "this month" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:31 #: apps/web/src/components/dashboard/stats-display.tsx:135 msgid "This Month" msgstr "Este mes" -#: apps/web/src/routes/__root.tsx:101 +#: apps/web/src/routes/__root.tsx:100 msgid "This page was left on the cutting room floor. It may have been moved, removed, or never made it past the screenplay." msgstr "Esta página quedó en la sala de montaje. Puede que haya sido movida, eliminada o que nunca pasara del guion." -#: apps/native/src/app/(tabs)/(settings)/index.tsx:557 -#: apps/web/src/routes/_app/settings.tsx:76 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:559 +#: apps/web/src/routes/_app/settings.tsx:112 #: apps/web/src/routes/setup.tsx:180 msgid "This product uses the TMDB API but is not endorsed or certified by TMDB." msgstr "Este producto utiliza la API de TMDB pero no está respaldado ni certificado por TMDB." +#: apps/native/src/app/(tabs)/(home)/index.tsx:88 +msgid "this week" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:30 #: apps/web/src/components/dashboard/stats-display.tsx:134 msgid "This Week" msgstr "Esta semana" @@ -2127,6 +2169,11 @@ msgstr "Esto eliminará todos los elementos de tu historial." msgid "This will replace your entire database with the uploaded file. A safety backup of your current data will be created first. Active sessions may need to refresh after restore." msgstr "Esto reemplazará toda tu base de datos con el archivo subido. Primero se creará una copia de seguridad de tus datos actuales. Es posible que las sesiones activas necesiten actualizarse tras la restauración." +#: apps/native/src/app/(tabs)/(home)/index.tsx:90 +msgid "this year" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:32 #: apps/web/src/components/dashboard/stats-display.tsx:136 msgid "This Year" msgstr "Este año" @@ -2139,7 +2186,7 @@ msgstr "Jueves" msgid "Time:" msgstr "Hora:" -#: apps/native/src/app/title/[id].tsx:235 +#: apps/native/src/app/title/[id].tsx:231 #: apps/web/src/routes/_app/titles.$id.tsx:139 msgid "Title not found" msgstr "Título no encontrado" @@ -2154,6 +2201,11 @@ msgstr "Los títulos de tu lista de Sofa se añadirán automáticamente para des msgid "Titles on your Sofa watchlist will be automatically added for download when Sonarr polls this list (every 6 hours by default)" msgstr "Los títulos de tu lista de Sofa se añadirán automáticamente para descargar cuando Sonarr consulte esta lista (cada 6 horas por defecto)" +#: apps/native/src/app/(tabs)/(home)/index.tsx:87 +msgid "today" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:29 #: apps/web/src/components/dashboard/stats-display.tsx:133 msgid "Today" msgstr "Hoy" @@ -2184,15 +2236,15 @@ msgid "Trending today" msgstr "Tendencia hoy" #: apps/native/src/app/(tabs)/(explore)/index.tsx:77 -#: apps/web/src/components/explore/explore-client.tsx:108 +#: apps/web/src/routes/_app/explore.tsx:129 msgid "Trending Today" msgstr "Tendencias hoy" -#: apps/web/src/components/settings/system-health-section.tsx:488 +#: apps/web/src/components/settings/system-health-section.tsx:482 msgid "Trigger job" msgstr "Ejecutar tarea" -#: apps/web/src/routes/__root.tsx:156 +#: apps/web/src/routes/__root.tsx:155 msgid "Try again" msgstr "Intentar de nuevo" @@ -2200,7 +2252,8 @@ msgstr "Intentar de nuevo" msgid "Tuesday" msgstr "Martes" -#: apps/native/src/app/title/[id].tsx:337 +#: apps/native/src/app/title/[id].tsx:333 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:23 #: apps/native/src/components/search/search-result-row.tsx:81 #: apps/web/src/components/explore/hero-banner.tsx:59 #: apps/web/src/components/people/filmography-grid.tsx:58 @@ -2216,7 +2269,7 @@ msgstr "Episodios de series" msgid "TV show" msgstr "Serie" -#: apps/web/src/components/settings/system-health-section.tsx:601 +#: apps/web/src/components/settings/system-health-section.tsx:595 msgid "unknown" msgstr "desconocido" @@ -2252,7 +2305,7 @@ msgid "Up next" msgstr "A continuación" #. placeholder {0}: updateCheck.data.updateCheck.latestVersion -#: apps/native/src/app/(tabs)/(settings)/index.tsx:496 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:478 msgid "Update available: {0}" msgstr "Actualización disponible: {0}" @@ -2396,7 +2449,7 @@ msgstr "Bienvenido de nuevo" msgid "Welcome back, {name}" msgstr "Bienvenido de nuevo, {name}" -#: apps/native/src/app/title/[id].tsx:430 +#: apps/native/src/app/title/[id].tsx:431 #: apps/web/src/components/titles/title-availability.tsx:130 msgid "Where to Watch" msgstr "Dónde ver" @@ -2405,6 +2458,8 @@ msgstr "Dónde ver" msgid "With Ads" msgstr "Con anuncios" +#: apps/native/src/app/person/[id].tsx:52 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:30 #: apps/web/src/components/people/person-hero.tsx:73 msgid "Writer" msgstr "Guionista" @@ -2422,7 +2477,7 @@ msgstr "Estás usando la v{0}." msgid "Your code:" msgstr "Tu código:" -#: apps/native/src/app/(tabs)/(home)/index.tsx:125 +#: apps/native/src/app/(tabs)/(home)/index.tsx:187 #: apps/web/src/components/dashboard/stats-section.tsx:32 msgid "Your library is empty" msgstr "Tu biblioteca está vacía" @@ -2430,4 +2485,3 @@ msgstr "Tu biblioteca está vacía" #: apps/native/src/app/(auth)/register.tsx:121 msgid "Your name" msgstr "Tu nombre" - diff --git a/packages/i18n/src/po/es.ts b/packages/i18n/src/po/es.ts index bf962c7..eeeb841 100644 --- a/packages/i18n/src/po/es.ts +++ b/packages/i18n/src/po/es.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"+5kO8P\":[\"Sábado\"],\"+6i0lS\":[\"Obteniendo tu historial de visionado, lista y valoraciones...\"],\"+Cv+V9\":[\"Eliminar de la biblioteca\"],\"+JkEpu\":[\"Esta página quedó en la sala de montaje. Puede que haya sido movida, eliminada o que nunca pasara del guion.\"],\"+K0AvT\":[\"Desconectar\"],\"+N0l5/\":[\"Conectado a <0>\",[\"serverHost\"],\". Toca para cambiar.\"],\"+gLHYi\":[\"Error al cargar el título\"],\"+j1ex/\":[\"Error al eliminar de la biblioteca\"],\"+nF1ZO\":[\"Eliminar foto\"],\"/+6dvC\":[\"Errores (\",[\"0\"],\")\"],\"/BBXeA\":[\"Conectando al servidor...\"],\"/DwR+n\":[\"Creando…\"],\"/XtbPO\":[[\"0\"],\" titles\"],\"/cg+QV\":[\"Marcar todo como visto\"],\"/gQXGv\":[\"Error al actualizar el estado\"],\"/nT6AE\":[\"Nueva contraseña\"],\"/sHc1/\":[\"Comprobación de actualizaciones\"],\"0+dyau\":[\"Error al actualizar el ajuste de retención\"],\"0BFJKK\":[\"La autorización fue denegada. Por favor, inténtalo de nuevo.\"],\"0GHb20\":[\"¿Purgar la caché de metadatos?\"],\"0IBW21\":[\"Error al purgar las cachés\"],\"0gH/sc\":[\"Eliminar foto de perfil\"],\"1+P9RR\":[\"Cambiar a \",[\"0\"]],\"12cc1j\":[\"Viendo\"],\"12lVOl\":[\"Seguimiento de películas y series autoalojado\"],\"1B4z0M\":[\"Filmografía\"],\"1J4Ek0\":[\"Realiza copias de seguridad automáticas de tu base de datos de forma programada\"],\"1JhxXW\":[\"Episodio \",[\"0\"],\", \",[\"episodeLabel\"]],\"1N6wNP\":[\"Opciones de importación\"],\"1Qz4uG\":[\"Activa la categoría de evento \\\"Playback\\\"\"],\"1hMWR6\":[\"Crear cuenta\"],\"1jHIjh\":[\"Visto todo de \",[\"seasonName\"]],\"1vSYsG\":[\"Descargar copia de seguridad\"],\"1wL1tj\":[\"Serie\"],\"2FletP\":[\"Purgados \",[\"0\",\"plural\",{\"one\":[\"#\",\" título\"],\"other\":[\"#\",\" títulos\"]}],\", \",[\"1\",\"plural\",{\"one\":[\"#\",\" persona\"],\"other\":[\"#\",\" personas\"]}],\", \",[\"2\",\"plural\",{\"one\":[\"#\",\" archivo\"],\"other\":[\"#\",\" archivos\"]}],\" (\",[\"freed\"],\" liberado)\"],\"2Fsd9r\":[\"Este mes\"],\"2MPcep\":[\"Importación completada\"],\"2Mu33Z\":[\"Gestión de caché\"],\"2POOFK\":[\"Gratis\"],\"2Pt2NY\":[\"Esto eliminará todos los elementos de tu historial.\"],\"2fCpt5\":[\"Volver al inicio\"],\"2pPBp6\":[\"Tendencia hoy\"],\"39y5bn\":[\"Viernes\"],\"3Blefz\":[\"Valoraciones\"],\"3JTlG8\":[\"Búsquedas recientes\"],\"3Jy8bM\":[\"Películas \",[\"select\"]],\"3L9OuQ\":[\"Episodio \",[\"0\"]],\"3T8ziB\":[\"Crear una cuenta\"],\"3hELxX\":[\"Introduce la URL de tu servidor Sofa para comenzar\"],\"4fxLkp\":[\"Abre Sonarr, ve a <0>Settings > Import Lists\"],\"4kpBqM\":[\"Último evento \",[\"0\"]],\"4uUjVO\":[\"Productor\"],\"4x+A56\":[\"Informe de uso anónimo\"],\"5IShvp\":[\"Importar \",[\"totalItems\"],\" elementos\"],\"5IYJSv\":[\"Explorar títulos\"],\"5Y4mym\":[\"Importar desde \",[\"0\"]],\"5ZzgbQ\":[\"Conectar \",[\"0\"]],\"5fEnbK\":[\"Error al actualizar el ajuste de copia de seguridad programada\"],\"5lWFkC\":[\"Iniciar sesión\"],\"5v9C16\":[\"Conectado a \",[\"source\"]],\"623bR4\":[\"Error al iniciar la tarea\"],\"6HN0yh\":[\"Abre Plex, ve a Settings > Webhooks\"],\"6TNjOJ\":[\"Error al actualizar la valoración\"],\"6TfUy6\":[\"últimos \",[\"value\"]],\"6V3Ea3\":[\"Copiado\"],\"6YtxFj\":[\"Nombre\"],\"6exX+8\":[\"Regenerar\"],\"6gRgw8\":[\"Reintentar\"],\"6lGV3K\":[\"Mostrar menos\"],\"76++pR\":[\"Advertencias\"],\"77DIAu\":[\"Ve a Dashboard > Plugins > Webhook\"],\"7Bj3x9\":[\"Fallido\"],\"7D50KC\":[[\"label\"],\" desconectado\"],\"7GfM5w\":[\"Vistos recientemente\"],\"7L01XJ\":[\"Acciones\"],\"7eMo+U\":[\"Ir al inicio\"],\"7p5kLi\":[\"Panel\"],\"85eoJ1\":[\"Programación actualizada\"],\"8B9E2D\":[\"Día:\"],\"8YwF1J\":[\"Ve a <0>Dashboard > Plugins > Webhook\"],\"8ZsakT\":[\"Contraseña\"],\"8tjQCz\":[\"Explorar\"],\"8vNtLy\":[\"Pega la URL de Radarr anterior en el campo URL de lista\"],\"8wYDMp\":[\"¿Ya tienes una cuenta?\"],\"9AE3vb\":[\"Abre Plex, ve a <0>Settings > Webhooks<1/>\"],\"9GW0ZB\":[\"La importación sigue en curso en segundo plano. Vuelve más tarde.\"],\"9NyAH9\":[\"Omitido\"],\"9Xhrps\":[\"Error al conectar\"],\"9ZLGbA\":[\"backups.\"],\"9eF5oV\":[\"Bienvenido de nuevo\"],\"9rG25a\":[\"URL del servidor\"],\"A+0rLe\":[\"Marcado como completado\"],\"AOHgZp\":[\"Episodios\"],\"AOddWK\":[\"Conectar \",[\"label\"]],\"ATfxL/\":[\"Tráiler\"],\"AVlZoM\":[\"Entorno\"],\"Acf6vF\":[\"Guardar nombre\"],\"AdoUfN\":[\"Error al añadir a la lista\"],\"AeXO77\":[\"Cuenta\"],\"AjtYj0\":[\"En la lista\"],\"Avee+B\":[\"Error al actualizar el nombre\"],\"B2R3xD\":[\"Activar/desactivar copias de seguridad programadas\"],\"BEVzjL\":[\"Error en la importación\"],\"BQnS5I\":[\"Abre \",[\"source\"],\" para introducir el código\"],\"BUnoSB\":[[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"backup almacenado\"],\"other\":[\"backups almacenados\"]}]],\"BpttUI\":[\"Tendencias hoy\"],\"BrrIs8\":[\"Almacenamiento\"],\"BskWMl\":[\"Inaccesible\"],\"BzEFor\":[\"o\"],\"CGDHFb\":[\"Añade un <0>Generic Destination y pega la URL anterior\"],\"CGExDN\":[\"Error al purgar la caché de imágenes\"],\"CHeXFE\":[\"Estado actualizado\"],\"CKyk7Q\":[\"Volver\"],\"CaB/+I\":[\"Bienvenido de nuevo, \",[\"name\"]],\"CodnUh\":[\"Eliminado de la biblioteca\"],\"CpzGJY\":[\"Esto puede tardar unos minutos para bibliotecas grandes. Por favor, no cierres esta pestaña.\"],\"CuPxpd\":[\"Requiere una suscripción activa de <0>Plex Pass<1/>.\"],\"CzBN6D\":[\"Empezar a explorar\"],\"D+R2Xs\":[\"Iniciando importación...\"],\"D3C4Yx\":[\"La contraseña actual es obligatoria\"],\"DBC3t5\":[\"Domingo\"],\"DI4lqs\":[\"Persona no encontrada\"],\"DKBbJf\":[\"\\\"\",[\"titleName\"],\"\\\" añadido a la lista\"],\"DPfwMq\":[\"Hecho\"],\"DZse/o\":[\"Añade un \\\"Generic Destination\\\" y pega la URL anterior\"],\"E/QGRL\":[\"Desactivado\"],\"E6nRW7\":[\"Copiar URL\"],\"EWQlBH\":[\"Tu biblioteca está vacía\"],\"EWaCfj\":[\"Introduce tu contraseña actual y elige una nueva.\"],\"Eeo/Gy\":[\"Error al actualizar el ajuste\"],\"Efn6WU\":[\"Esto eliminará todos los títulos parciales sin enriquecer y todas las imágenes en caché del disco. Todo se volverá a importar y descargar según sea necesario.\"],\"Etp5if\":[\"Importación desde \",[\"source\"],\" completada.\"],\"F006BN\":[\"Importar desde \",[\"source\"]],\"FNvDMc\":[\"Esta semana\"],\"FWSp+7\":[\"Introduce el siguiente código en el sitio web de \",[\"source\"],\" para autorizar a Sofa.\"],\"FXN0ro\":[\"Recomendaciones\"],\"FaU7Ag\":[\"Activa el tipo de notificación \\\"Playback Stop\\\"\"],\"FhvLDl\":[[\"watchedCount\"],\"/\",[\"0\"],\" episodes\"],\"Fo2bwm\":[\"Actor\"],\"FwRqjE\":[\"Uso del disco de caché de imágenes y copias de seguridad\"],\"G00fgM\":[\"últimos \",[\"n\"]],\"G3myU+\":[\"Martes\"],\"GcCthe\":[\"En la biblioteca\"],\"Gf39AA\":[[\"0\"],\" iniciado\"],\"GnhfWw\":[\"Activar/desactivar comprobaciones automáticas de actualizaciones\"],\"GptGxg\":[\"Cambiar contraseña\"],\"GqTZ+S\":[\"Valorado con \",[\"ratingStars\"],\" \",[\"ratingStars\",\"plural\",{\"one\":[\"estrella\"],\"other\":[\"estrellas\"]}]],\"GrdN/F\":[\"Al día — \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"episodio marcado como visto\"],\"other\":[\"episodios marcados como vistos\"]}]],\"H4B5LG\":[\"Este producto utiliza la API de TMDB pero no está respaldado ni certificado por TMDB.\"],\"HBRd5n\":[\"Temporada \",[\"0\"]],\"HD+aQ7\":[\"Copias de seguridad de la base de datos\"],\"HG+31u\":[\"¿Purgar todas las cachés?\"],\"Haz+72\":[\"Esto eliminará todas las imágenes de TMDB en caché del disco. Las imágenes se volverán a descargar automáticamente cuando sea necesario.\"],\"HbReP5\":[\"\\\"\",[\"titleName\"],\"\\\" marcado como completado\"],\"Hg6o8v\":[\"Actualizar estado del sistema\"],\"HmEjnC\":[\"Último evento \",[\"timeAgo\"]],\"HvDfH/\":[\"Importado\"],\"I89uD4\":[\"Restaurando…\"],\"IRoxQm\":[\"Registro cerrado\"],\"IS0nrP\":[\"Crear cuenta\"],\"IY9rQ0\":[\"Libera espacio en disco eliminando metadatos e imágenes en caché\"],\"IrC12v\":[\"Aplicación\"],\"J28zul\":[\"Conectando...\"],\"J64cFL\":[\"Actualización de biblioteca\"],\"JKmmmN\":[\"Añadido a la lista\"],\"JN0f/Y\":[\"Conectar con TMDB\"],\"JR6aH2\":[\"Movies \",[\"periodSelect\"]],\"JRQitQ\":[\"Confirmar nueva contraseña\"],\"JRadFJ\":[\"Empieza a registrar lo que ves\"],\"JSwq8t\":[\"La creación de nuevas cuentas está desactivada actualmente.\"],\"JY5Oyv\":[\"Base de datos\"],\"JjsJnI\":[[\"0\"],\"/\",[\"1\"],\" episodes\"],\"JrFTcr\":[\"Conectando…\"],\"JwFbe8\":[\"Serie\"],\"KDw4GX\":[\"Intentar de nuevo\"],\"KG6681\":[\"Episodio marcado como visto\"],\"KIS/Sd\":[\"Cerrar otras sesiones\"],\"KK0ghs\":[\"Caché de imágenes\"],\"KVAoFR\":[\"ilimitado\"],\"KcXJuc\":[\"Purgando...\"],\"KhtG3o\":[\"Actualizar contraseña\"],\"Khux7w\":[[\"0\",\"plural\",{\"one\":[\"#\",\" título\"],\"other\":[\"#\",\" títulos\"]}]],\"KmWyx0\":[\"Tarea\"],\"KoF0x6\":[\"edad \",[\"age\"]],\"Ksiej9\":[\"Requiere una suscripción activa de Plex Pass.\"],\"Kx9NEt\":[\"Token inválido\"],\"Lk6Jb/\":[\"Última consulta \",[\"timeAgo\"]],\"LmEEic\":[\"Esperando autorización...\"],\"LqKH42\":[\"Conectar con \",[\"0\"]],\"Lrpjji\":[\"Desconectar \",[\"label\"]],\"Lu6Udx\":[\"Haz clic en \\\"+\\\" y selecciona \\\"Custom Lists\\\"\"],\"MDoX++\":[\"URL de lista de Sonarr\"],\"MRBlCJ\":[\"Error al desmarcar algunos episodios\"],\"MUO7w9\":[\"\\\"\",[\"titleName\"],\"\\\" marcado como visto\"],\"MZbQHL\":[\"No se encontraron resultados.\"],\"MdxR1u\":[\"Choose your preferred display language\"],\"MkyzAV\":[\"Autoriza a Sofa a leer tu biblioteca de \",[\"0\"],\". No se comparte ninguna contraseña.\"],\"N40H+G\":[\"Todo\"],\"N6SFhC\":[\"Iniciar sesión\"],\"N7h106\":[\"Sofa v\",[\"0\"],\" disponible\"],\"N9RF2M\":[\"Haz clic en \\\"Add Webhook\\\" y pega la URL anterior\"],\"NBo4z0\":[\"Haz clic en <0>+ y selecciona <1>Custom Lists\"],\"NICUmW\":[\"Director\"],\"NQzPoO\":[\"Nueva copia de seguridad\"],\"NSxl1l\":[\"Más ajustes\"],\"NVF43p\":[\"Hora:\"],\"NdPMwS\":[\"En tu biblioteca\"],\"NgaPSG\":[\"Error al actualizar la programación\"],\"O3oNi5\":[\"Correo electrónico\"],\"OBcj5W\":[\"Esto invalidará la URL actual de \",[\"label\"],\". Tendrás que actualizarla en \",[\"label\"],\".\"],\"OL8hbM\":[\"La nueva contraseña debe tener al menos 8 caracteres\"],\"ONWvwQ\":[\"Subir\"],\"OPFjyX\":[\"Instala el <0>plugin Webhook<1/> del catálogo de plugins de Jellyfin\"],\"OW/+RD\":[\"Historial de visionado\"],\"OZdaTZ\":[\"Persona\"],\"OvO76u\":[\"Volver al inicio de sesión\"],\"OvdFIZ\":[\"Temporada marcada como vista\"],\"P2FLLe\":[\"Ver versión\"],\"PBdLfg\":[\"No se encontraron títulos para este género.\"],\"PQ3qDa\":[\"Obteniendo datos de tu biblioteca desde \",[\"source\"],\"...\"],\"PjNoxI\":[\"Copia de seguridad programada\"],\"Pn2B7/\":[\"Contraseña actual\"],\"PnEbL/\":[\"Valorado con \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"estrella\"],\"other\":[\"estrellas\"]}]],\"Pwqkdw\":[\"Cargando…\"],\"Py87xY\":[\"La autorización fue exitosa, pero no se pudo obtener tu biblioteca. Por favor, inténtalo de nuevo.\"],\"Q3MPWA\":[\"Actualizar contraseña\"],\"QHcLEN\":[\"Conectado\"],\"QK4UIx\":[\"Marcar como visto\"],\"Qjlym2\":[\"Error al crear la cuenta\"],\"Qm1NmK\":[\"O\"],\"Qoq+GP\":[\"Leer más\"],\"QphVZW\":[\"No se puede contactar con el servidor\"],\"QqLJHH\":[\"Este año\"],\"R0yu2l\":[\"Ponerse al día\"],\"R4YBui\":[\"Busca películas y series para empezar a seguirlas\"],\"RH46vw\":[[\"0\"],\"/\",[\"1\"],\" \",[\"2\",\"plural\",{\"one\":[\"episodio\"],\"other\":[\"episodios\"]}]],\"RIR15/\":[\"URL de lista de Radarr\"],\"RLe7Vk\":[\"Comprobando…\"],\"ROq8cl\":[\"Error al analizar el archivo\"],\"RQq8Si\":[\"Registro abierto\"],\"S0soqb\":[\"Error al eliminar la foto de perfil\"],\"S1McZh\":[\"Error al subir el avatar\"],\"S2ble5\":[[\"0\"],\" películas, \",[\"1\"],\" episodios\"],\"S2qPRR\":[\"Buscar películas y series…\"],\"SDND4q\":[\"No configurado\"],\"SFdAk9\":[\"No visto T\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"SUIUkB\":[\"Desmarcar todo\"],\"SbS+Bm\":[\"Regenerar URL\"],\"SlfejT\":[\"Error\"],\"Sp86ju\":[[\"0\"],\" ep\",[\"1\"]],\"SrfROI\":[\"A continuación\"],\"SyPRjk\":[\"Sofa registrará automáticamente películas y episodios cuando termines de verlos\"],\"T0/7WG\":[\"Próxima copia de seguridad \",[\"distance\"]],\"TEaX6q\":[\"Copia de seguridad eliminada\"],\"TI7IKo\":[\"Rated \",[\"0\"],\" star\",[\"1\"]],\"TMb7iE\":[\"Foto de perfil eliminada\"],\"TqyQQS\":[\"Activa la categoría de evento <0>Playback\"],\"Tz0i8g\":[\"Ajustes\"],\"U+FxtW\":[\"Registra lo que ves. Sabe qué viene después.<0/>Tu biblioteca, tus datos, tus reglas.\"],\"U3pytU\":[\"Admin\"],\"UC+OWB\":[\"Activar/desactivar registro abierto\"],\"UDMjsP\":[\"Acciones rápidas\"],\"UmQ6Fe\":[\"¿Purgar la caché de imágenes?\"],\"UtDm3q\":[\"URL copiada al portapapeles\"],\"V1Kh9Z\":[\"Episodios \",[\"select\"]],\"V6uzvC\":[\"Más como este\"],\"V9CuQ+\":[\"Conectar con \",[\"source\"]],\"VAcXNz\":[\"Miércoles\"],\"VKyhZK\":[\"Título no encontrado\"],\"VQvpro\":[\"Pega la URL de Sonarr anterior en el campo URL de lista\"],\"VhMDMg\":[\"Cambiar contraseña\"],\"Vx0ayx\":[\"Error al marcar algunos episodios\"],\"WDC4PF\":[\"Episodes \",[\"periodSelect\"]],\"WEYdDv\":[\"Recomendado\"],\"WMCwmR\":[\"Buscar actualizaciones\"],\"WP48q2\":[\"Caché de imágenes\"],\"WT1Ibn\":[\"Última ejecución\"],\"Wb3E4g\":[\"Ejecutar ahora\"],\"WgF2UQ\":[\"Estás usando la v\",[\"0\"],\".\"],\"WtWhSi\":[\"Valoración eliminada\"],\"Wy/3II\":[\"Última consulta \",[\"0\"]],\"XFCSYs\":[\"Reparto\"],\"XN23JY\":[\"Esto eliminará los títulos parciales sin enriquecer que no estén en la biblioteca de ningún usuario y limpiará los registros de personas huérfanas. Los títulos eliminados se reimportarán si se accede a ellos de nuevo.\"],\"XZwihE\":[\"Listo — nada recibido aún\"],\"XjTduw\":[\"Subir foto\"],\"YEGzVq\":[\"Error al conectar \",[\"label\"]],\"YErf89\":[\"Error al purgar la caché de metadatos\"],\"YQ768h\":[\"Escena no encontrada\"],\"YiRsXK\":[\"¿Limpiar vistos recientemente?\"],\"Yjp1zf\":[\"¿No tienes un servidor?\"],\"YqMfa9\":[\"Revisa lo encontrado y elige qué importar.\"],\"ZGUYm0\":[\"Listo — sin consultas aún\"],\"ZQKLI1\":[\"Zona de peligro\"],\"ZVZUoU\":[[\"0\"],\" imágenes en caché\"],\"ZWTQ81\":[\"Ver en \",[\"name\"]],\"a3LDKx\":[\"Seguridad\"],\"aLBUiR\":[\"Guardando <0><1><2>\",[\"0\"],\"<3>\",[\"1\"],\" copias de seguridad.\"],\"aM0+kY\":[\"Purgados \",[\"0\",\"plural\",{\"one\":[\"#\",\" título obsoleto\"],\"other\":[\"#\",\" títulos obsoletos\"]}],\" y \",[\"1\",\"plural\",{\"one\":[\"#\",\" persona huérfana\"],\"other\":[\"#\",\" personas huérfanas\"]}]],\"aO1AxG\":[\"Episodio marcado como no visto\"],\"aV/hDI\":[\"Error al desconectar \",[\"label\"]],\"acbSg0\":[\"Doble toque para filtrar por \",[\"label\"]],\"agE7k4\":[\"Valorado con \",[\"stars\",\"plural\",{\"one\":[\"#\",\" estrella\"],\"other\":[\"#\",\" estrellas\"]}]],\"alPRaV\":[\"Los títulos de tu lista de Sofa se añadirán automáticamente para descargar cuando Radarr consulte esta lista (cada 12 horas por defecto)\"],\"aourBv\":[\"Copias de seguridad programadas activadas\"],\"apLLSU\":[\"¿Seguro que quieres cerrar sesión?\"],\"atc9MA\":[\"Abre Emby, ve a <0>Settings > Webhooks\"],\"auVUJO\":[\"¿Restaurar base de datos?\"],\"ayqfr4\":[\"URL de \",[\"label\"],\" regenerada\"],\"b/8KCH\":[\"Esto marcará todos los episodios de esta serie como vistos. Puedes deshacerlo más tarde desmarcando temporadas individuales.\"],\"b3Thhd\":[\"Error al subir\"],\"b5DFtH\":[\"Establecer contraseña\"],\"bHYIks\":[\"Cerrar sesión\"],\"bITrbE\":[\"Purgar todo\"],\"bNmdjU\":[\"Lista\"],\"bTRwag\":[\"Eliminar de la biblioteca\"],\"bXMotV\":[\"Marcado como visto\"],\"bezGJ2\":[[\"0\"],\" images\"],\"boJlGf\":[\"Página no encontrada\"],\"c1ssjI\":[\"Importando desde \",[\"source\"]],\"c3b0B0\":[\"Comenzar\"],\"c4b9Dm\":[\"Sin resultados para \\\"\",[\"debouncedQuery\"],\"\\\"\"],\"cQPKZt\":[\"Ir al panel\"],\"ccAJSB\":[\"Keeping\"],\"cgvva8\":[[\"0\"],\" valoraciones\"],\"cnGeoo\":[\"Eliminar\"],\"cpE88+\":[\"Crea tu cuenta\"],\"d/6MoL\":[\"Gestiona tu cuenta y preferencias\"],\"dA7BWh\":[\"Requiere Emby Server 4.7.9+ y una licencia activa de Emby Premiere.\"],\"dEgA5A\":[\"Cancelar\"],\"dTZwve\":[\"Todos los episodios marcados como vistos\"],\"dUCJry\":[\"Más reciente\"],\"ddwpAr\":[\"Advertencias (\",[\"0\"],\")\"],\"e/ToF5\":[\"Iniciar sesión con \",[\"0\"]],\"e9sZMS\":[\"Esto eliminará permanentemente la copia de seguridad del <0>\",[\"0\"],\". Esta acción no se puede deshacer.\"],\"eFRooE\":[\"Última ejecución fallida\"],\"eM39Om\":[\"Visto todo de \",[\"seasonLabel\"]],\"eZjYb8\":[\"Guionista\"],\"ecUA8p\":[\"Hoy\"],\"evBxZy\":[\"Dónde ver\"],\"ezDa1h\":[\"Abrir documentación\"],\"f+m696\":[\"Ocurrió un error inesperado al cargar esta página. Puedes intentarlo de nuevo o volver al panel.\"],\"f/AKdU\":[\"¿Seguro que quieres desconectar \",[\"label\"],\"? La URL actual dejará de funcionar.\"],\"f7ax8J\":[\"Abrir en el navegador…\"],\"fMPkxb\":[\"Mostrar más\"],\"fNMqNn\":[\"Series populares\"],\"fObVvy\":[\"Foto de perfil actualizada\"],\"fRettQ\":[[\"0\"],\" elementos\"],\"fUDRF9\":[\"En lista\"],\"fcWrnU\":[\"Cerrar sesión\"],\"fgLNSM\":[\"Registrarse\"],\"fsAEqk\":[\"Continuar viendo\"],\"fzAeQI\":[\"Registrándose en \",[\"serverHost\"]],\"g+gBfk\":[\"Analizando...\"],\"g4JYff\":[[\"0\"],\" elementos importados desde \",[\"1\"]],\"gKtb5i\":[\"Los títulos de tu lista de Sofa se añadirán automáticamente para descargar cuando Sonarr consulte esta lista (cada 6 horas por defecto)\"],\"gaIAMq\":[\"Eliminar foto\"],\"gbEEMp\":[\"Eliminar copia de seguridad\"],\"gcNLi0\":[\"Comprobaciones de actualizaciones activadas\"],\"gmB6oO\":[\"Programación\"],\"h/T5Yb\":[\"Registro abierto\"],\"h4yKYk\":[\"Próxima ejecución\"],\"h7MgpO\":[\"Atajos de teclado\"],\"hTXYdY\":[\"Error al crear la copia de seguridad\"],\"hXYY5Q\":[\"Todo de \",[\"0\"],\" marcado como no visto\"],\"he3ygx\":[\"Copiar\"],\"hjGupC\":[\"Se perdió la conexión con la importación. Comprueba el estado en ajustes.\"],\"hlqjFc\":[\"En la biblioteca\"],\"hou0tP\":[\"Streaming\"],\"hty0d5\":[\"Lunes\"],\"i0qMbr\":[\"Inicio\"],\"i9rcQ/\":[\"Películas\"],\"iGma9e\":[\"Error al actualizar\"],\"iSLIjg\":[\"Conectar\"],\"iWv3ck\":[\"Error al ponerse al día\"],\"iXZ09g\":[\"Marcar como completado\"],\"id08cd\":[\"Visto T\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"ih87w/\":[\"Añadir a la biblioteca\"],\"ihn4zD\":[\"Buscar…\"],\"itDEco\":[\"¿Ya tienes una cuenta? Inicia sesión\"],\"itheEn\":[\"Con anuncios\"],\"iwCRIF\":[\"Se cerrará tu sesión para cambiar la URL del servidor.\"],\"j5GBIy\":[\"Abre Radarr, ve a Settings > Import Lists\"],\"jAe8l4\":[[\"0\"],\" backups · último <0/>\"],\"jB3sfe\":[\"Copia de seguridad manual\"],\"jFnMJ8\":[\"Doble toque para eliminar este filtro\"],\"jQsPwL\":[\"Copias de seguridad programadas desactivadas\"],\"jSjGeu\":[[\"0\"],\" elementos no tienen IDs externos y se resolverán por búsqueda de título, lo que puede ser menos preciso.\"],\"jX6Gzg\":[\"Esto reemplazará toda tu base de datos con el archivo subido. Primero se creará una copia de seguridad de tus datos actuales. Es posible que las sesiones activas necesiten actualizarse tras la restauración.\"],\"jiHVUy\":[\"Copia de seguridad previa a restauración\"],\"k6c41p\":[\"Tareas en segundo plano\"],\"kBDOjB\":[\"Programación de copias de seguridad\"],\"kkDQ8m\":[\"Jueves\"],\"klOeIX\":[\"Error al cambiar la contraseña\"],\"ks3XeZ\":[\"Abre Sonarr, ve a Settings > Import Lists\"],\"kvuCtu\":[\"Algo salió mal al cargar este título. Por favor, inténtalo de nuevo.\"],\"kx0s+n\":[\"Resultados\"],\"l2wcoS\":[\"Última ejecución exitosa\"],\"l3s5ri\":[\"Importar\"],\"lCF0wC\":[\"Actualizar\"],\"lJ1yo4\":[\"Error al iniciar sesión\"],\"lVqzRx\":[\"Haz clic en <0>Add Webhook y pega la URL anterior\"],\"lXkUEV\":[\"Disponibilidad\"],\"lcLe89\":[\"Busca películas, series o ejecuta comandos\"],\"lfVyvz\":[\"Añadir a la lista\"],\"llDXYJ\":[\"Copias de seguridad\"],\"llkZR0\":[\"No se pudieron cargar las integraciones\"],\"ln9/n9\":[\"¿No tienes una cuenta?\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"lqY3WY\":[\"Cambiar servidor\"],\"luoodD\":[\"Configuración requerida\"],\"m5WhJy\":[\"Comprobaciones automáticas de actualizaciones\"],\"mIx58S\":[\"Purgar imágenes\"],\"mYBORk\":[\"Película\"],\"ml9cU0\":[\"Error al regenerar la URL de \",[\"label\"]],\"mqwkjd\":[\"Estado del sistema\"],\"mqxHH7\":[\"Ir a Explorar\"],\"mzI/c+\":[\"Descargar\"],\"n1ekoW\":[\"Iniciar sesión\"],\"n3Pzd7\":[\"Copia de seguridad creada\"],\"nBHvPL\":[\"Cancelar edición\"],\"nJw77c\":[[\"0\",\"plural\",{\"one\":[\"#\",\" imagen\"],\"other\":[\"#\",\" imágenes\"]}]],\"nO0Qnj\":[\"Tu código:\"],\"nRP1xx\":[\"¿Necesitas más ayuda?\"],\"nV1LjT\":[\"Activa el tipo de notificación <0>Playback Stop\"],\"nVsE67\":[\"Marcar como en curso\"],\"nZ7lF1\":[\"El código del dispositivo ha expirado. Por favor, inténtalo de nuevo.\"],\"nbfdhU\":[\"Integraciones\"],\"nbmpf9\":[\"Purgar metadatos\"],\"nnKJTm\":[\"Error al marcar todos los episodios como vistos\"],\"nszbQG\":[\"Aún no hay copias de seguridad\"],\"nuh/Wq\":[\"URL de webhook\"],\"nwtY4N\":[\"Algo salió mal\"],\"oAIA3w\":[\"Busca películas, series o personas\"],\"oC8IMh\":[\"Buscar películas, series, personas...\"],\"oNvZcA\":[\"Episodios esta semana\"],\"oXq+Wr\":[[\"label\"],\" conectado\"],\"ogtYkT\":[\"Contraseña actualizada\"],\"ojtedN\":[\"Abre Radarr, ve a <0>Settings > Import Lists\"],\"olMi35\":[\"Recomendado para ti\"],\"p+PZEl\":[\"Esto es lo que pasa con tu biblioteca\"],\"pAtylB\":[\"No encontrado\"],\"pG9pq1\":[[\"0\",\"plural\",{\"one\":[\"#\",\" archivo eliminado\"],\"other\":[\"#\",\" archivos eliminados\"]}],\", liberado \",[\"freed\"]],\"pWWFjv\":[\"Comprobado <0/>\"],\"ph76H6\":[\"Permitir que nuevos usuarios creen cuentas\"],\"pjgw0N\":[\"Elige cómo importar tus datos de \",[\"0\"],\".\"],\"puo3W3\":[\"Redirigiendo…\"],\"q3GraM\":[\"...y \",[\"0\"],\" más\"],\"q6nrFE\":[\"falleció a los \",[\"age\"]],\"q6pUQ9\":[\"Sube un archivo .db para reemplazar la base de datos actual. Primero se crea una copia de seguridad.\"],\"q8yluz\":[\"Tu nombre\"],\"qA6VR5\":[\"Requiere <0>Emby Server 4.7.9+ y una licencia activa de <1>Emby Premiere<2/>.\"],\"qF2IBM\":[\"Películas este mes\"],\"qHbApt\":[\"Error al cargar los ajustes de programación de copias de seguridad.\"],\"qLB1zX\":[\"Sube una exportación \",[\"0\"],\" desde los ajustes de tu cuenta de \",[\"1\"],\".\"],\"qPNzfu\":[\"Comprobaciones de actualizaciones desactivadas\"],\"qWoML/\":[\"Añade un nuevo webhook y pega la URL anterior\"],\"qiOIiY\":[\"Comprar\"],\"qn1X6N\":[\"Error al actualizar el ajuste de registro\"],\"qqWcBV\":[\"Completado\"],\"qqeAJM\":[\"Nunca\"],\"r9aDAY\":[[\"count\"],\" \",[\"count\",\"plural\",{\"one\":[\"episodio anterior sin ver\"],\"other\":[\"episodios anteriores sin ver\"]}]],\"rLgPvm\":[\"Copia de seguridad\"],\"rSTpb5\":[\"Estado del servidor\"],\"rdymVD\":[\"Ejecutar tarea\"],\"rtir7c\":[\"desconocido\"],\"s0U4ZZ\":[\"Episodios de series\"],\"s4vVUm\":[\"No se pudieron cargar los detalles de la persona\"],\"s9dVME\":[\"Error al desmarcar el episodio\"],\"sGH11W\":[\"Servidor\"],\"sl/qWH\":[\"Subir foto de perfil\"],\"sstysK\":[\"Error al marcar el episodio\"],\"stZeiF\":[[\"watched\"],\"/\",[\"total\"],\" episodios\"],\"t/Ch8S\":[\"Marcado como en curso\"],\"t/YqKh\":[\"Eliminar\"],\"tfDRzk\":[\"Guardar\"],\"tiymc0\":[\"Algo salió mal…\"],\"u9ugU7\":[[\"watchedCount\"],\"/\",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"episodio\"],\"other\":[\"episodios\"]}]],\"uBAxNB\":[\"Editor\"],\"uBrbSu\":[\"Error al iniciar la conexión con \",[\"0\"]],\"uM6jnS\":[\"Error al restaurar\"],\"uMrJrX\":[\"Solo administradores\"],\"uswLvZ\":[\"El título que buscas no existe o puede haber sido eliminado de la base de datos.\"],\"uxOntd\":[[\"watchedCount\"],\" de \",[\"0\"],\" episodios vistos\"],\"v2CA3w\":[\"Cambiar foto\"],\"v5ipVu\":[\"¿Marcar todos los episodios como vistos?\"],\"vKfeax\":[\"Abre Emby, ve a Settings > Webhooks\"],\"vXIe7J\":[\"Idioma\"],\"vuCCZ7\":[\"Error al analizar los datos de importación\"],\"vwKERN\":[\"Error al eliminar la copia de seguridad\"],\"w8pqsh\":[\"Marcar todos como vistos\"],\"wA7B2T\":[\"No se aceptan nuevas cuentas en este momento. Contacta al administrador si necesitas acceso.\"],\"wGFX13\":[\"Comenzando a las\"],\"wR1UAy\":[\"Películas populares\"],\"wRWcdL\":[\"Reproducir tráiler\"],\"wThGrS\":[\"Ajustes de la app\"],\"wZK4Xg\":[\"Nunca ejecutado\"],\"wdLxgL\":[\"Miembro desde \",[\"memberSince\"]],\"wja8aL\":[\"Sin título\"],\"wtGebH\":[\"La persona que buscas no existe o puede haber sido eliminada de la base de datos.\"],\"wtsbt5\":[\"Añadir a la lista\"],\"wtuVU4\":[\"Frecuencia\"],\"wx7pwA\":[\"Marcar como visto\"],\"x4ZiTl\":[\"Instrucciones de configuración\"],\"xCJdfg\":[\"Limpiar\"],\"xGVfLh\":[\"Continuar\"],\"xLoCm2\":[\"Comprobar configuración\"],\"xSrU2g\":[[\"healthyCount\"],\" de \",[\"0\"],\" tareas en buen estado\"],\"xazqmy\":[\"Temporadas\"],\"xbBXhy\":[\"Comprobar periódicamente GitHub para nuevas versiones de Sofa\"],\"xrh2/M\":[\"Error al marcar como visto\"],\"y3e9pF\":[\"¿Eliminar copia de seguridad?\"],\"y6Urel\":[\"Siguiente episodio\"],\"yGvjAo\":[\"Actualización disponible: \",[\"0\"]],\"yKu/3Y\":[\"Restaurar\"],\"yYxB17\":[\"Limpiar todo\"],\"ybtG1U\":[[\"0\"],\" backup\",[\"1\"],\" stored\"],\"yey/zg\":[\"Base de datos restaurada. Recargando...\"],\"ygo0l/\":[\"Empieza a seguir películas y series\"],\"yvwIbI\":[\"Subir archivo de exportación\"],\"yz7wBu\":[\"Cerrar\"],\"z1U/Fh\":[\"Valoración\"],\"z5evln\":[\"Sin conexión a internet\"],\"zAvS8w\":[\"Inicia sesión para continuar\"],\"zEqK2w\":[\"La página que buscas no existe.\"],\"zFkiTv\":[\"Instala el plugin Webhook del catálogo de plugins de Jellyfin\"],\"zNyR4f\":[\"Configura tu perfil de calidad y carpeta raíz preferidos\"],\"za8Le/\":[\"Registro cerrado\"],\"zb77GC\":[\"Alquilar\"],\"ztAdhw\":[\"Nombre actualizado\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"+5kO8P\":[\"Sábado\"],\"+6i0lS\":[\"Obteniendo tu historial de visionado, lista y valoraciones...\"],\"+Cv+V9\":[\"Eliminar de la biblioteca\"],\"+JkEpu\":[\"Esta página quedó en la sala de montaje. Puede que haya sido movida, eliminada o que nunca pasara del guion.\"],\"+K0AvT\":[\"Desconectar\"],\"+N0l5/\":[\"Conectado a <0>\",[\"serverHost\"],\". Toca para cambiar.\"],\"+gLHYi\":[\"Error al cargar el título\"],\"+j1ex/\":[\"Error al eliminar de la biblioteca\"],\"+nF1ZO\":[\"Eliminar foto\"],\"/+6dvC\":[\"Errores (\",[\"0\"],\")\"],\"/BBXeA\":[\"Conectando al servidor...\"],\"/DwR+n\":[\"Creando…\"],\"/XtbPO\":[[\"0\"],\" titles\"],\"/cg+QV\":[\"Marcar todo como visto\"],\"/gQXGv\":[\"Error al actualizar el estado\"],\"/nT6AE\":[\"Nueva contraseña\"],\"/sHc1/\":[\"Comprobación de actualizaciones\"],\"0+dyau\":[\"Error al actualizar el ajuste de retención\"],\"0BFJKK\":[\"La autorización fue denegada. Por favor, inténtalo de nuevo.\"],\"0GHb20\":[\"¿Purgar la caché de metadatos?\"],\"0IBW21\":[\"Error al purgar las cachés\"],\"0gH/sc\":[\"Eliminar foto de perfil\"],\"1+P9RR\":[\"Cambiar a \",[\"0\"]],\"12cc1j\":[\"Viendo\"],\"12lVOl\":[\"Seguimiento de películas y series autoalojado\"],\"1B4z0M\":[\"Filmografía\"],\"1J4Ek0\":[\"Realiza copias de seguridad automáticas de tu base de datos de forma programada\"],\"1JhxXW\":[\"Episodio \",[\"0\"],\", \",[\"episodeLabel\"]],\"1N6wNP\":[\"Opciones de importación\"],\"1Qz4uG\":[\"Activa la categoría de evento \\\"Playback\\\"\"],\"1hMWR6\":[\"Crear cuenta\"],\"1jHIjh\":[\"Visto todo de \",[\"seasonName\"]],\"1vSYsG\":[\"Descargar copia de seguridad\"],\"1wL1tj\":[\"Serie\"],\"2FletP\":[\"Purgados \",[\"0\",\"plural\",{\"one\":[\"#\",\" título\"],\"other\":[\"#\",\" títulos\"]}],\", \",[\"1\",\"plural\",{\"one\":[\"#\",\" persona\"],\"other\":[\"#\",\" personas\"]}],\", \",[\"2\",\"plural\",{\"one\":[\"#\",\" archivo\"],\"other\":[\"#\",\" archivos\"]}],\" (\",[\"freed\"],\" liberado)\"],\"2Fsd9r\":[\"Este mes\"],\"2MPcep\":[\"Importación completada\"],\"2Mu33Z\":[\"Gestión de caché\"],\"2POOFK\":[\"Gratis\"],\"2Pt2NY\":[\"Esto eliminará todos los elementos de tu historial.\"],\"2fCpt5\":[\"Volver al inicio\"],\"2pPBp6\":[\"Tendencia hoy\"],\"39neVN\":[\"Movies \",[\"0\"]],\"39y5bn\":[\"Viernes\"],\"3Blefz\":[\"Valoraciones\"],\"3JTlG8\":[\"Búsquedas recientes\"],\"3Jy8bM\":[\"Películas \",[\"select\"]],\"3L9OuQ\":[\"Episodio \",[\"0\"]],\"3T/4MV\":[\"this year\"],\"3T8ziB\":[\"Crear una cuenta\"],\"3hELxX\":[\"Introduce la URL de tu servidor Sofa para comenzar\"],\"4fxLkp\":[\"Abre Sonarr, ve a <0>Settings > Import Lists\"],\"4kpBqM\":[\"Último evento \",[\"0\"]],\"4uUjVO\":[\"Productor\"],\"4x+A56\":[\"Informe de uso anónimo\"],\"5IShvp\":[\"Importar \",[\"totalItems\"],\" elementos\"],\"5IYJSv\":[\"Explorar títulos\"],\"5Y4mym\":[\"Importar desde \",[\"0\"]],\"5ZzgbQ\":[\"Conectar \",[\"0\"]],\"5fEnbK\":[\"Error al actualizar el ajuste de copia de seguridad programada\"],\"5lWFkC\":[\"Iniciar sesión\"],\"5v9C16\":[\"Conectado a \",[\"source\"]],\"623bR4\":[\"Error al iniciar la tarea\"],\"6HN0yh\":[\"Abre Plex, ve a Settings > Webhooks\"],\"6TNjOJ\":[\"Error al actualizar la valoración\"],\"6TfUy6\":[\"últimos \",[\"value\"]],\"6V3Ea3\":[\"Copiado\"],\"6YtxFj\":[\"Nombre\"],\"6exX+8\":[\"Regenerar\"],\"6gRgw8\":[\"Reintentar\"],\"6lGV3K\":[\"Mostrar menos\"],\"76++pR\":[\"Advertencias\"],\"77DIAu\":[\"Ve a Dashboard > Plugins > Webhook\"],\"79m/GK\":[\"Episodes \",[\"0\"]],\"7Bj3x9\":[\"Fallido\"],\"7D50KC\":[[\"label\"],\" desconectado\"],\"7GfM5w\":[\"Vistos recientemente\"],\"7L01XJ\":[\"Acciones\"],\"7eMo+U\":[\"Ir al inicio\"],\"7p5kLi\":[\"Panel\"],\"85eoJ1\":[\"Programación actualizada\"],\"8B9E2D\":[\"Día:\"],\"8YwF1J\":[\"Ve a <0>Dashboard > Plugins > Webhook\"],\"8ZsakT\":[\"Contraseña\"],\"8tjQCz\":[\"Explorar\"],\"8vNtLy\":[\"Pega la URL de Radarr anterior en el campo URL de lista\"],\"8wYDMp\":[\"¿Ya tienes una cuenta?\"],\"9AE3vb\":[\"Abre Plex, ve a <0>Settings > Webhooks<1/>\"],\"9GW0ZB\":[\"La importación sigue en curso en segundo plano. Vuelve más tarde.\"],\"9NyAH9\":[\"Omitido\"],\"9Xhrps\":[\"Error al conectar\"],\"9ZLGbA\":[\"backups.\"],\"9eF5oV\":[\"Bienvenido de nuevo\"],\"9rG25a\":[\"URL del servidor\"],\"A+0rLe\":[\"Marcado como completado\"],\"A1taO8\":[\"Search\"],\"AOHgZp\":[\"Episodios\"],\"AOddWK\":[\"Conectar \",[\"label\"]],\"ATfxL/\":[\"Tráiler\"],\"AVlZoM\":[\"Entorno\"],\"Acf6vF\":[\"Guardar nombre\"],\"AdoUfN\":[\"Error al añadir a la lista\"],\"AeXO77\":[\"Cuenta\"],\"AjtYj0\":[\"En la lista\"],\"Avee+B\":[\"Error al actualizar el nombre\"],\"B2R3xD\":[\"Activar/desactivar copias de seguridad programadas\"],\"BEVzjL\":[\"Error en la importación\"],\"BQnS5I\":[\"Abre \",[\"source\"],\" para introducir el código\"],\"BUnoSB\":[[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"backup almacenado\"],\"other\":[\"backups almacenados\"]}]],\"BpttUI\":[\"Tendencias hoy\"],\"BrrIs8\":[\"Almacenamiento\"],\"BskWMl\":[\"Inaccesible\"],\"BzEFor\":[\"o\"],\"CGDHFb\":[\"Añade un <0>Generic Destination y pega la URL anterior\"],\"CGExDN\":[\"Error al purgar la caché de imágenes\"],\"CHeXFE\":[\"Estado actualizado\"],\"CKyk7Q\":[\"Volver\"],\"CaB/+I\":[\"Bienvenido de nuevo, \",[\"name\"]],\"CodnUh\":[\"Eliminado de la biblioteca\"],\"CpzGJY\":[\"Esto puede tardar unos minutos para bibliotecas grandes. Por favor, no cierres esta pestaña.\"],\"CuPxpd\":[\"Requiere una suscripción activa de <0>Plex Pass<1/>.\"],\"CzBN6D\":[\"Empezar a explorar\"],\"D+R2Xs\":[\"Iniciando importación...\"],\"D3C4Yx\":[\"La contraseña actual es obligatoria\"],\"DBC3t5\":[\"Domingo\"],\"DI4lqs\":[\"Persona no encontrada\"],\"DKBbJf\":[\"\\\"\",[\"titleName\"],\"\\\" añadido a la lista\"],\"DPfwMq\":[\"Hecho\"],\"DZse/o\":[\"Añade un \\\"Generic Destination\\\" y pega la URL anterior\"],\"E/QGRL\":[\"Desactivado\"],\"E6nRW7\":[\"Copiar URL\"],\"EWQlBH\":[\"Tu biblioteca está vacía\"],\"EWaCfj\":[\"Introduce tu contraseña actual y elige una nueva.\"],\"Eeo/Gy\":[\"Error al actualizar el ajuste\"],\"Efn6WU\":[\"Esto eliminará todos los títulos parciales sin enriquecer y todas las imágenes en caché del disco. Todo se volverá a importar y descargar según sea necesario.\"],\"Etp5if\":[\"Importación desde \",[\"source\"],\" completada.\"],\"F006BN\":[\"Importar desde \",[\"source\"]],\"FNvDMc\":[\"Esta semana\"],\"FWSp+7\":[\"Introduce el siguiente código en el sitio web de \",[\"source\"],\" para autorizar a Sofa.\"],\"FXN0ro\":[\"Recomendaciones\"],\"FaU7Ag\":[\"Activa el tipo de notificación \\\"Playback Stop\\\"\"],\"FhvLDl\":[[\"watchedCount\"],\"/\",[\"0\"],\" episodes\"],\"Fo2bwm\":[\"Actor\"],\"FwRqjE\":[\"Uso del disco de caché de imágenes y copias de seguridad\"],\"G00fgM\":[\"últimos \",[\"n\"]],\"G3myU+\":[\"Martes\"],\"GcCthe\":[\"En la biblioteca\"],\"Gf39AA\":[[\"0\"],\" iniciado\"],\"GnhfWw\":[\"Activar/desactivar comprobaciones automáticas de actualizaciones\"],\"GptGxg\":[\"Cambiar contraseña\"],\"GqTZ+S\":[\"Valorado con \",[\"ratingStars\"],\" \",[\"ratingStars\",\"plural\",{\"one\":[\"estrella\"],\"other\":[\"estrellas\"]}]],\"GrdN/F\":[\"Al día — \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"episodio marcado como visto\"],\"other\":[\"episodios marcados como vistos\"]}]],\"H4B5LG\":[\"Este producto utiliza la API de TMDB pero no está respaldado ni certificado por TMDB.\"],\"HBRd5n\":[\"Temporada \",[\"0\"]],\"HD+aQ7\":[\"Copias de seguridad de la base de datos\"],\"HG+31u\":[\"¿Purgar todas las cachés?\"],\"Haz+72\":[\"Esto eliminará todas las imágenes de TMDB en caché del disco. Las imágenes se volverán a descargar automáticamente cuando sea necesario.\"],\"HbReP5\":[\"\\\"\",[\"titleName\"],\"\\\" marcado como completado\"],\"Hg6o8v\":[\"Actualizar estado del sistema\"],\"HmEjnC\":[\"Último evento \",[\"timeAgo\"]],\"HvDfH/\":[\"Importado\"],\"I89uD4\":[\"Restaurando…\"],\"IRoxQm\":[\"Registro cerrado\"],\"IS0nrP\":[\"Crear cuenta\"],\"IY9rQ0\":[\"Libera espacio en disco eliminando metadatos e imágenes en caché\"],\"IrC12v\":[\"Aplicación\"],\"J28zul\":[\"Conectando...\"],\"J64cFL\":[\"Actualización de biblioteca\"],\"JKmmmN\":[\"Añadido a la lista\"],\"JN0f/Y\":[\"Conectar con TMDB\"],\"JR6aH2\":[\"Movies \",[\"periodSelect\"]],\"JRQitQ\":[\"Confirmar nueva contraseña\"],\"JRadFJ\":[\"Empieza a registrar lo que ves\"],\"JSwq8t\":[\"La creación de nuevas cuentas está desactivada actualmente.\"],\"JY5Oyv\":[\"Base de datos\"],\"JjsJnI\":[[\"0\"],\"/\",[\"1\"],\" episodes\"],\"JrFTcr\":[\"Conectando…\"],\"JwFbe8\":[\"Serie\"],\"KDw4GX\":[\"Intentar de nuevo\"],\"KG6681\":[\"Episodio marcado como visto\"],\"KIS/Sd\":[\"Cerrar otras sesiones\"],\"KK0ghs\":[\"Caché de imágenes\"],\"KVAoFR\":[\"ilimitado\"],\"KcXJuc\":[\"Purgando...\"],\"KhtG3o\":[\"Actualizar contraseña\"],\"Khux7w\":[[\"0\",\"plural\",{\"one\":[\"#\",\" título\"],\"other\":[\"#\",\" títulos\"]}]],\"KmWyx0\":[\"Tarea\"],\"KoF0x6\":[\"edad \",[\"age\"]],\"Ksiej9\":[\"Requiere una suscripción activa de Plex Pass.\"],\"Kx9NEt\":[\"Token inválido\"],\"Lk6Jb/\":[\"Última consulta \",[\"timeAgo\"]],\"LmEEic\":[\"Esperando autorización...\"],\"LqKH42\":[\"Conectar con \",[\"0\"]],\"Lrpjji\":[\"Desconectar \",[\"label\"]],\"Lu6Udx\":[\"Haz clic en \\\"+\\\" y selecciona \\\"Custom Lists\\\"\"],\"MDoX++\":[\"URL de lista de Sonarr\"],\"MRBlCJ\":[\"Error al desmarcar algunos episodios\"],\"MUO7w9\":[\"\\\"\",[\"titleName\"],\"\\\" marcado como visto\"],\"MZbQHL\":[\"No se encontraron resultados.\"],\"MdxR1u\":[\"Choose your preferred display language\"],\"MkyzAV\":[\"Autoriza a Sofa a leer tu biblioteca de \",[\"0\"],\". No se comparte ninguna contraseña.\"],\"N40H+G\":[\"Todo\"],\"N6SFhC\":[\"Iniciar sesión\"],\"N7h106\":[\"Sofa v\",[\"0\"],\" disponible\"],\"N9RF2M\":[\"Haz clic en \\\"Add Webhook\\\" y pega la URL anterior\"],\"NBo4z0\":[\"Haz clic en <0>+ y selecciona <1>Custom Lists\"],\"NICUmW\":[\"Director\"],\"NQzPoO\":[\"Nueva copia de seguridad\"],\"NSxl1l\":[\"Más ajustes\"],\"NVF43p\":[\"Hora:\"],\"NdPMwS\":[\"En tu biblioteca\"],\"NgaPSG\":[\"Error al actualizar la programación\"],\"O3oNi5\":[\"Correo electrónico\"],\"OBcj5W\":[\"Esto invalidará la URL actual de \",[\"label\"],\". Tendrás que actualizarla en \",[\"label\"],\".\"],\"OL8hbM\":[\"La nueva contraseña debe tener al menos 8 caracteres\"],\"ONWvwQ\":[\"Subir\"],\"OPFjyX\":[\"Instala el <0>plugin Webhook<1/> del catálogo de plugins de Jellyfin\"],\"OW/+RD\":[\"Historial de visionado\"],\"OZdaTZ\":[\"Persona\"],\"OvO76u\":[\"Volver al inicio de sesión\"],\"OvdFIZ\":[\"Temporada marcada como vista\"],\"P2FLLe\":[\"Ver versión\"],\"PBdLfg\":[\"No se encontraron títulos para este género.\"],\"PQ3qDa\":[\"Obteniendo datos de tu biblioteca desde \",[\"source\"],\"...\"],\"PjNoxI\":[\"Copia de seguridad programada\"],\"Pn2B7/\":[\"Contraseña actual\"],\"PnEbL/\":[\"Valorado con \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"estrella\"],\"other\":[\"estrellas\"]}]],\"Pwqkdw\":[\"Cargando…\"],\"Py87xY\":[\"La autorización fue exitosa, pero no se pudo obtener tu biblioteca. Por favor, inténtalo de nuevo.\"],\"Q3MPWA\":[\"Actualizar contraseña\"],\"QHcLEN\":[\"Conectado\"],\"QK4UIx\":[\"Marcar como visto\"],\"Qjlym2\":[\"Error al crear la cuenta\"],\"Qm1NmK\":[\"O\"],\"Qoq+GP\":[\"Leer más\"],\"QphVZW\":[\"No se puede contactar con el servidor\"],\"QqLJHH\":[\"Este año\"],\"R0yu2l\":[\"Ponerse al día\"],\"R4YBui\":[\"Busca películas y series para empezar a seguirlas\"],\"RH46vw\":[[\"0\"],\"/\",[\"1\"],\" \",[\"2\",\"plural\",{\"one\":[\"episodio\"],\"other\":[\"episodios\"]}]],\"RIR15/\":[\"URL de lista de Radarr\"],\"RLe7Vk\":[\"Comprobando…\"],\"ROq8cl\":[\"Error al analizar el archivo\"],\"RQq8Si\":[\"Registro abierto\"],\"S0soqb\":[\"Error al eliminar la foto de perfil\"],\"S1McZh\":[\"Error al subir el avatar\"],\"S2ble5\":[[\"0\"],\" películas, \",[\"1\"],\" episodios\"],\"S2qPRR\":[\"Buscar películas y series…\"],\"SDND4q\":[\"No configurado\"],\"SFdAk9\":[\"No visto T\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"SUIUkB\":[\"Desmarcar todo\"],\"SbS+Bm\":[\"Regenerar URL\"],\"SlfejT\":[\"Error\"],\"Sp86ju\":[[\"0\"],\" ep\",[\"1\"]],\"SrfROI\":[\"A continuación\"],\"SyPRjk\":[\"Sofa registrará automáticamente películas y episodios cuando termines de verlos\"],\"T0/7WG\":[\"Próxima copia de seguridad \",[\"distance\"]],\"TEaX6q\":[\"Copia de seguridad eliminada\"],\"TI7IKo\":[\"Rated \",[\"0\"],\" star\",[\"1\"]],\"TMb7iE\":[\"Foto de perfil eliminada\"],\"TqyQQS\":[\"Activa la categoría de evento <0>Playback\"],\"Tz0i8g\":[\"Ajustes\"],\"U+FxtW\":[\"Registra lo que ves. Sabe qué viene después.<0/>Tu biblioteca, tus datos, tus reglas.\"],\"U3pytU\":[\"Admin\"],\"UC+OWB\":[\"Activar/desactivar registro abierto\"],\"UDMjsP\":[\"Acciones rápidas\"],\"UmQ6Fe\":[\"¿Purgar la caché de imágenes?\"],\"UtDm3q\":[\"URL copiada al portapapeles\"],\"V1Kh9Z\":[\"Episodios \",[\"select\"]],\"V6uzvC\":[\"Más como este\"],\"V9CuQ+\":[\"Conectar con \",[\"source\"]],\"VAcXNz\":[\"Miércoles\"],\"VKyhZK\":[\"Título no encontrado\"],\"VQvpro\":[\"Pega la URL de Sonarr anterior en el campo URL de lista\"],\"VhMDMg\":[\"Cambiar contraseña\"],\"Vx0ayx\":[\"Error al marcar algunos episodios\"],\"WDC4PF\":[\"Episodes \",[\"periodSelect\"]],\"WEYdDv\":[\"Recomendado\"],\"WMCwmR\":[\"Buscar actualizaciones\"],\"WP48q2\":[\"Caché de imágenes\"],\"WT1Ibn\":[\"Última ejecución\"],\"Wb3E4g\":[\"Ejecutar ahora\"],\"WgF2UQ\":[\"Estás usando la v\",[\"0\"],\".\"],\"WtWhSi\":[\"Valoración eliminada\"],\"Wy/3II\":[\"Última consulta \",[\"0\"]],\"X0OwOB\":[\"today\"],\"XFCSYs\":[\"Reparto\"],\"XN23JY\":[\"Esto eliminará los títulos parciales sin enriquecer que no estén en la biblioteca de ningún usuario y limpiará los registros de personas huérfanas. Los títulos eliminados se reimportarán si se accede a ellos de nuevo.\"],\"XZwihE\":[\"Listo — nada recibido aún\"],\"XjTduw\":[\"Subir foto\"],\"YEGzVq\":[\"Error al conectar \",[\"label\"]],\"YErf89\":[\"Error al purgar la caché de metadatos\"],\"YQ768h\":[\"Escena no encontrada\"],\"YiRsXK\":[\"¿Limpiar vistos recientemente?\"],\"Yjp1zf\":[\"¿No tienes un servidor?\"],\"YqMfa9\":[\"Revisa lo encontrado y elige qué importar.\"],\"ZGUYm0\":[\"Listo — sin consultas aún\"],\"ZQKLI1\":[\"Zona de peligro\"],\"ZVZUoU\":[[\"0\"],\" imágenes en caché\"],\"ZWTQ81\":[\"Ver en \",[\"name\"]],\"a3LDKx\":[\"Seguridad\"],\"aLBUiR\":[\"Guardando <0><1><2>\",[\"0\"],\"<3>\",[\"1\"],\" copias de seguridad.\"],\"aM0+kY\":[\"Purgados \",[\"0\",\"plural\",{\"one\":[\"#\",\" título obsoleto\"],\"other\":[\"#\",\" títulos obsoletos\"]}],\" y \",[\"1\",\"plural\",{\"one\":[\"#\",\" persona huérfana\"],\"other\":[\"#\",\" personas huérfanas\"]}]],\"aO1AxG\":[\"Episodio marcado como no visto\"],\"aV/hDI\":[\"Error al desconectar \",[\"label\"]],\"acbSg0\":[\"Doble toque para filtrar por \",[\"label\"]],\"agE7k4\":[\"Valorado con \",[\"stars\",\"plural\",{\"one\":[\"#\",\" estrella\"],\"other\":[\"#\",\" estrellas\"]}]],\"alPRaV\":[\"Los títulos de tu lista de Sofa se añadirán automáticamente para descargar cuando Radarr consulte esta lista (cada 12 horas por defecto)\"],\"aourBv\":[\"Copias de seguridad programadas activadas\"],\"apLLSU\":[\"¿Seguro que quieres cerrar sesión?\"],\"atc9MA\":[\"Abre Emby, ve a <0>Settings > Webhooks\"],\"auVUJO\":[\"¿Restaurar base de datos?\"],\"ayqfr4\":[\"URL de \",[\"label\"],\" regenerada\"],\"b/8KCH\":[\"Esto marcará todos los episodios de esta serie como vistos. Puedes deshacerlo más tarde desmarcando temporadas individuales.\"],\"b0F4W5\":[\"this month\"],\"b3Thhd\":[\"Error al subir\"],\"b5DFtH\":[\"Establecer contraseña\"],\"bHYIks\":[\"Cerrar sesión\"],\"bITrbE\":[\"Purgar todo\"],\"bNmdjU\":[\"Lista\"],\"bTRwag\":[\"Eliminar de la biblioteca\"],\"bXMotV\":[\"Marcado como visto\"],\"bezGJ2\":[[\"0\"],\" images\"],\"boJlGf\":[\"Página no encontrada\"],\"c1ssjI\":[\"Importando desde \",[\"source\"]],\"c3b0B0\":[\"Comenzar\"],\"c4b9Dm\":[\"Sin resultados para \\\"\",[\"debouncedQuery\"],\"\\\"\"],\"cQPKZt\":[\"Ir al panel\"],\"ccAJSB\":[\"Keeping\"],\"cgvva8\":[[\"0\"],\" valoraciones\"],\"cnGeoo\":[\"Eliminar\"],\"cpE88+\":[\"Crea tu cuenta\"],\"d/6MoL\":[\"Gestiona tu cuenta y preferencias\"],\"dA7BWh\":[\"Requiere Emby Server 4.7.9+ y una licencia activa de Emby Premiere.\"],\"dEgA5A\":[\"Cancelar\"],\"dTZwve\":[\"Todos los episodios marcados como vistos\"],\"dUCJry\":[\"Más reciente\"],\"ddwpAr\":[\"Advertencias (\",[\"0\"],\")\"],\"e/ToF5\":[\"Iniciar sesión con \",[\"0\"]],\"e9sZMS\":[\"Esto eliminará permanentemente la copia de seguridad del <0>\",[\"0\"],\". Esta acción no se puede deshacer.\"],\"eFRooE\":[\"Última ejecución fallida\"],\"eM39Om\":[\"Visto todo de \",[\"seasonLabel\"]],\"eZjYb8\":[\"Guionista\"],\"ecUA8p\":[\"Hoy\"],\"evBxZy\":[\"Dónde ver\"],\"ezDa1h\":[\"Abrir documentación\"],\"f+m696\":[\"Ocurrió un error inesperado al cargar esta página. Puedes intentarlo de nuevo o volver al panel.\"],\"f/AKdU\":[\"¿Seguro que quieres desconectar \",[\"label\"],\"? La URL actual dejará de funcionar.\"],\"f7ax8J\":[\"Abrir en el navegador…\"],\"fMPkxb\":[\"Mostrar más\"],\"fNMqNn\":[\"Series populares\"],\"fObVvy\":[\"Foto de perfil actualizada\"],\"fRettQ\":[[\"0\"],\" elementos\"],\"fUDRF9\":[\"En lista\"],\"fcWrnU\":[\"Cerrar sesión\"],\"fgLNSM\":[\"Registrarse\"],\"fsAEqk\":[\"Continuar viendo\"],\"fzAeQI\":[\"Registrándose en \",[\"serverHost\"]],\"g+gBfk\":[\"Analizando...\"],\"g4JYff\":[[\"0\"],\" elementos importados desde \",[\"1\"]],\"gKtb5i\":[\"Los títulos de tu lista de Sofa se añadirán automáticamente para descargar cuando Sonarr consulte esta lista (cada 6 horas por defecto)\"],\"gaIAMq\":[\"Eliminar foto\"],\"gbEEMp\":[\"Eliminar copia de seguridad\"],\"gcNLi0\":[\"Comprobaciones de actualizaciones activadas\"],\"gmB6oO\":[\"Programación\"],\"h/T5Yb\":[\"Registro abierto\"],\"h4yKYk\":[\"Próxima ejecución\"],\"h7MgpO\":[\"Atajos de teclado\"],\"hTXYdY\":[\"Error al crear la copia de seguridad\"],\"hXYY5Q\":[\"Todo de \",[\"0\"],\" marcado como no visto\"],\"he3ygx\":[\"Copiar\"],\"hjGupC\":[\"Se perdió la conexión con la importación. Comprueba el estado en ajustes.\"],\"hlqjFc\":[\"En la biblioteca\"],\"hou0tP\":[\"Streaming\"],\"hty0d5\":[\"Lunes\"],\"i0qMbr\":[\"Inicio\"],\"i9rcQ/\":[\"Películas\"],\"iGma9e\":[\"Error al actualizar\"],\"iSLIjg\":[\"Conectar\"],\"iWv3ck\":[\"Error al ponerse al día\"],\"iXZ09g\":[\"Marcar como completado\"],\"id08cd\":[\"Visto T\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"ih87w/\":[\"Añadir a la biblioteca\"],\"ihn4zD\":[\"Buscar…\"],\"itDEco\":[\"¿Ya tienes una cuenta? Inicia sesión\"],\"itheEn\":[\"Con anuncios\"],\"iwCRIF\":[\"Se cerrará tu sesión para cambiar la URL del servidor.\"],\"j5GBIy\":[\"Abre Radarr, ve a Settings > Import Lists\"],\"jAe8l4\":[[\"0\"],\" backups · último <0/>\"],\"jB3sfe\":[\"Copia de seguridad manual\"],\"jFnMJ8\":[\"Doble toque para eliminar este filtro\"],\"jQsPwL\":[\"Copias de seguridad programadas desactivadas\"],\"jSjGeu\":[[\"0\"],\" elementos no tienen IDs externos y se resolverán por búsqueda de título, lo que puede ser menos preciso.\"],\"jX6Gzg\":[\"Esto reemplazará toda tu base de datos con el archivo subido. Primero se creará una copia de seguridad de tus datos actuales. Es posible que las sesiones activas necesiten actualizarse tras la restauración.\"],\"jiHVUy\":[\"Copia de seguridad previa a restauración\"],\"k6c41p\":[\"Tareas en segundo plano\"],\"kBDOjB\":[\"Programación de copias de seguridad\"],\"kkDQ8m\":[\"Jueves\"],\"klOeIX\":[\"Error al cambiar la contraseña\"],\"ks3XeZ\":[\"Abre Sonarr, ve a Settings > Import Lists\"],\"kvuCtu\":[\"Algo salió mal al cargar este título. Por favor, inténtalo de nuevo.\"],\"kx0s+n\":[\"Resultados\"],\"l2wcoS\":[\"Última ejecución exitosa\"],\"l3s5ri\":[\"Importar\"],\"lCF0wC\":[\"Actualizar\"],\"lJ1yo4\":[\"Error al iniciar sesión\"],\"lVqzRx\":[\"Haz clic en <0>Add Webhook y pega la URL anterior\"],\"lXkUEV\":[\"Disponibilidad\"],\"lcLe89\":[\"Busca películas, series o ejecuta comandos\"],\"lfVyvz\":[\"Añadir a la lista\"],\"llDXYJ\":[\"Copias de seguridad\"],\"llkZR0\":[\"No se pudieron cargar las integraciones\"],\"ln9/n9\":[\"¿No tienes una cuenta?\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"lqY3WY\":[\"Cambiar servidor\"],\"luoodD\":[\"Configuración requerida\"],\"m5WhJy\":[\"Comprobaciones automáticas de actualizaciones\"],\"mIx58S\":[\"Purgar imágenes\"],\"mYBORk\":[\"Película\"],\"ml9cU0\":[\"Error al regenerar la URL de \",[\"label\"]],\"mqwkjd\":[\"Estado del sistema\"],\"mqxHH7\":[\"Ir a Explorar\"],\"mzI/c+\":[\"Descargar\"],\"n1ekoW\":[\"Iniciar sesión\"],\"n3Pzd7\":[\"Copia de seguridad creada\"],\"nBHvPL\":[\"Cancelar edición\"],\"nJw77c\":[[\"0\",\"plural\",{\"one\":[\"#\",\" imagen\"],\"other\":[\"#\",\" imágenes\"]}]],\"nO0Qnj\":[\"Tu código:\"],\"nRP1xx\":[\"¿Necesitas más ayuda?\"],\"nV1LjT\":[\"Activa el tipo de notificación <0>Playback Stop\"],\"nVsE67\":[\"Marcar como en curso\"],\"nZ7lF1\":[\"El código del dispositivo ha expirado. Por favor, inténtalo de nuevo.\"],\"nbfdhU\":[\"Integraciones\"],\"nbmpf9\":[\"Purgar metadatos\"],\"nnKJTm\":[\"Error al marcar todos los episodios como vistos\"],\"nszbQG\":[\"Aún no hay copias de seguridad\"],\"nuh/Wq\":[\"URL de webhook\"],\"nwtY4N\":[\"Algo salió mal\"],\"oAIA3w\":[\"Busca películas, series o personas\"],\"oC8IMh\":[\"Buscar películas, series, personas...\"],\"oNvZcA\":[\"Episodios esta semana\"],\"oXq+Wr\":[[\"label\"],\" conectado\"],\"ogtYkT\":[\"Contraseña actualizada\"],\"ojtedN\":[\"Abre Radarr, ve a <0>Settings > Import Lists\"],\"olMi35\":[\"Recomendado para ti\"],\"p+PZEl\":[\"Esto es lo que pasa con tu biblioteca\"],\"pAtylB\":[\"No encontrado\"],\"pG9pq1\":[[\"0\",\"plural\",{\"one\":[\"#\",\" archivo eliminado\"],\"other\":[\"#\",\" archivos eliminados\"]}],\", liberado \",[\"freed\"]],\"pWWFjv\":[\"Comprobado <0/>\"],\"ph76H6\":[\"Permitir que nuevos usuarios creen cuentas\"],\"pjgw0N\":[\"Elige cómo importar tus datos de \",[\"0\"],\".\"],\"puo3W3\":[\"Redirigiendo…\"],\"q3GraM\":[\"...y \",[\"0\"],\" más\"],\"q6nrFE\":[\"falleció a los \",[\"age\"]],\"q6pUQ9\":[\"Sube un archivo .db para reemplazar la base de datos actual. Primero se crea una copia de seguridad.\"],\"q8yluz\":[\"Tu nombre\"],\"qA6VR5\":[\"Requiere <0>Emby Server 4.7.9+ y una licencia activa de <1>Emby Premiere<2/>.\"],\"qF2IBM\":[\"Películas este mes\"],\"qHbApt\":[\"Error al cargar los ajustes de programación de copias de seguridad.\"],\"qLB1zX\":[\"Sube una exportación \",[\"0\"],\" desde los ajustes de tu cuenta de \",[\"1\"],\".\"],\"qPNzfu\":[\"Comprobaciones de actualizaciones desactivadas\"],\"qWoML/\":[\"Añade un nuevo webhook y pega la URL anterior\"],\"qiOIiY\":[\"Comprar\"],\"qn1X6N\":[\"Error al actualizar el ajuste de registro\"],\"qqWcBV\":[\"Completado\"],\"qqeAJM\":[\"Nunca\"],\"r9aDAY\":[[\"count\"],\" \",[\"count\",\"plural\",{\"one\":[\"episodio anterior sin ver\"],\"other\":[\"episodios anteriores sin ver\"]}]],\"rLgPvm\":[\"Copia de seguridad\"],\"rSTpb5\":[\"Estado del servidor\"],\"rczylF\":[\"this week\"],\"rdymVD\":[\"Ejecutar tarea\"],\"rtir7c\":[\"desconocido\"],\"s0U4ZZ\":[\"Episodios de series\"],\"s4vVUm\":[\"No se pudieron cargar los detalles de la persona\"],\"s9dVME\":[\"Error al desmarcar el episodio\"],\"sGH11W\":[\"Servidor\"],\"sl/qWH\":[\"Subir foto de perfil\"],\"sstysK\":[\"Error al marcar el episodio\"],\"stZeiF\":[[\"watched\"],\"/\",[\"total\"],\" episodios\"],\"t/Ch8S\":[\"Marcado como en curso\"],\"t/YqKh\":[\"Eliminar\"],\"tfDRzk\":[\"Guardar\"],\"tiymc0\":[\"Algo salió mal…\"],\"u9ugU7\":[[\"watchedCount\"],\"/\",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"episodio\"],\"other\":[\"episodios\"]}]],\"uBAxNB\":[\"Editor\"],\"uBrbSu\":[\"Error al iniciar la conexión con \",[\"0\"]],\"uM6jnS\":[\"Error al restaurar\"],\"uMrJrX\":[\"Solo administradores\"],\"uswLvZ\":[\"El título que buscas no existe o puede haber sido eliminado de la base de datos.\"],\"uxOntd\":[[\"watchedCount\"],\" de \",[\"0\"],\" episodios vistos\"],\"v2CA3w\":[\"Cambiar foto\"],\"v5ipVu\":[\"¿Marcar todos los episodios como vistos?\"],\"vKfeax\":[\"Abre Emby, ve a Settings > Webhooks\"],\"vXIe7J\":[\"Idioma\"],\"vuCCZ7\":[\"Error al analizar los datos de importación\"],\"vwKERN\":[\"Error al eliminar la copia de seguridad\"],\"w8pqsh\":[\"Marcar todos como vistos\"],\"wA7B2T\":[\"No se aceptan nuevas cuentas en este momento. Contacta al administrador si necesitas acceso.\"],\"wGFX13\":[\"Comenzando a las\"],\"wR1UAy\":[\"Películas populares\"],\"wRWcdL\":[\"Reproducir tráiler\"],\"wThGrS\":[\"Ajustes de la app\"],\"wZK4Xg\":[\"Nunca ejecutado\"],\"wdLxgL\":[\"Miembro desde \",[\"memberSince\"]],\"wja8aL\":[\"Sin título\"],\"wtGebH\":[\"La persona que buscas no existe o puede haber sido eliminada de la base de datos.\"],\"wtsbt5\":[\"Añadir a la lista\"],\"wtuVU4\":[\"Frecuencia\"],\"wx7pwA\":[\"Marcar como visto\"],\"x4ZiTl\":[\"Instrucciones de configuración\"],\"xCJdfg\":[\"Limpiar\"],\"xGVfLh\":[\"Continuar\"],\"xLoCm2\":[\"Comprobar configuración\"],\"xSrU2g\":[[\"healthyCount\"],\" de \",[\"0\"],\" tareas en buen estado\"],\"xazqmy\":[\"Temporadas\"],\"xbBXhy\":[\"Comprobar periódicamente GitHub para nuevas versiones de Sofa\"],\"xrh2/M\":[\"Error al marcar como visto\"],\"y3e9pF\":[\"¿Eliminar copia de seguridad?\"],\"y6Urel\":[\"Siguiente episodio\"],\"yGvjAo\":[\"Actualización disponible: \",[\"0\"]],\"yKu/3Y\":[\"Restaurar\"],\"yYxB17\":[\"Limpiar todo\"],\"ybtG1U\":[[\"0\"],\" backup\",[\"1\"],\" stored\"],\"yey/zg\":[\"Base de datos restaurada. Recargando...\"],\"ygo0l/\":[\"Empieza a seguir películas y series\"],\"yvwIbI\":[\"Subir archivo de exportación\"],\"yz7wBu\":[\"Cerrar\"],\"z1U/Fh\":[\"Valoración\"],\"z5evln\":[\"Sin conexión a internet\"],\"zAvS8w\":[\"Inicia sesión para continuar\"],\"zEqK2w\":[\"La página que buscas no existe.\"],\"zFkiTv\":[\"Instala el plugin Webhook del catálogo de plugins de Jellyfin\"],\"zNyR4f\":[\"Configura tu perfil de calidad y carpeta raíz preferidos\"],\"za8Le/\":[\"Registro cerrado\"],\"zb77GC\":[\"Alquilar\"],\"ztAdhw\":[\"Nombre actualizado\"]}")as Messages; \ No newline at end of file diff --git a/packages/i18n/src/po/fr.po b/packages/i18n/src/po/fr.po index bea0d4b..00ebe11 100644 --- a/packages/i18n/src/po/fr.po +++ b/packages/i18n/src/po/fr.po @@ -24,12 +24,12 @@ msgid "...and {0} more" msgstr "...et {0} de plus" #. placeholder {0}: systemHealth.data.imageCache.imageCount -#: apps/native/src/app/(tabs)/(settings)/index.tsx:456 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:438 msgid "{0, plural, one {# image} other {# images}}" msgstr "" #. placeholder {0}: systemHealth.data.database.titleCount -#: apps/native/src/app/(tabs)/(settings)/index.tsx:442 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:424 msgid "{0, plural, one {# title} other {# titles}}" msgstr "{0, plural, one {# titre} other {# titres}}" @@ -44,12 +44,12 @@ msgstr "{0} {1, plural, one {sauvegarde stockée} other {sauvegardes stockées}} #~ msgstr "{0} backup{1} stored" #. placeholder {0}: backups.backupCount -#: apps/web/src/components/settings/system-health-section.tsx:599 +#: apps/web/src/components/settings/system-health-section.tsx:593 msgid "{0} backups · last <0/>" msgstr "{0} sauvegardes · dernière <0/>" #. placeholder {0}: imageCache.imageCount.toLocaleString() -#: apps/web/src/components/settings/system-health-section.tsx:569 +#: apps/web/src/components/settings/system-health-section.tsx:563 msgid "{0} cached images" msgstr "{0} images en cache" @@ -157,6 +157,8 @@ msgstr "Compte" msgid "Actions" msgstr "" +#: apps/native/src/app/person/[id].tsx:50 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:28 #: apps/web/src/components/people/person-hero.tsx:69 msgid "Actor" msgstr "Acteur" @@ -200,18 +202,18 @@ msgid "Added to watchlist" msgstr "Ajouté à la liste de suivi" #: apps/native/src/app/(tabs)/(settings)/index.tsx:342 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:431 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:470 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:413 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:452 #: apps/web/src/components/nav-bar.tsx:223 #: apps/web/src/components/settings/account-section.tsx:309 msgid "Admin" msgstr "" -#: apps/web/src/routes/_app/settings.tsx:118 +#: apps/web/src/routes/_app/settings.tsx:154 msgid "Admin only" msgstr "Admins uniquement" -#: apps/native/src/app/person/[id].tsx:267 +#: apps/native/src/app/person/[id].tsx:249 #: apps/web/src/components/people/person-hero.tsx:89 msgid "age {age}" msgstr "âge {age}" @@ -233,15 +235,15 @@ msgstr "Vous avez déjà un compte ?" msgid "Already have an account? Sign in" msgstr "Vous avez déjà un compte ? Se connecter" -#: apps/web/src/routes/__root.tsx:143 +#: apps/web/src/routes/__root.tsx:142 msgid "An unexpected error occurred while loading this page. You can try again or head back to the dashboard." msgstr "Une erreur inattendue s'est produite lors du chargement de cette page. Vous pouvez réessayer ou retourner au tableau de bord." -#: apps/native/src/app/(tabs)/(settings)/index.tsx:407 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:389 msgid "Anonymous usage reporting" msgstr "Rapports d'utilisation anonymes" -#: apps/web/src/routes/_app/settings.tsx:99 +#: apps/web/src/routes/_app/settings.tsx:135 msgid "App Settings" msgstr "Paramètres de l'application" @@ -307,8 +309,8 @@ msgstr "Sauvegarde supprimée" msgid "Backup schedule" msgstr "Planning de sauvegarde" -#: apps/web/src/components/settings/system-health-section.tsx:589 -#: apps/web/src/routes/_app/settings.tsx:154 +#: apps/web/src/components/settings/system-health-section.tsx:583 +#: apps/web/src/routes/_app/settings.tsx:190 msgid "Backups" msgstr "Sauvegardes" @@ -354,7 +356,7 @@ msgstr "Annuler" msgid "Cancel editing" msgstr "Annuler la modification" -#: apps/native/src/app/title/[id].tsx:489 +#: apps/native/src/app/title/[id].tsx:493 #: apps/web/src/components/titles/cast-carousel.tsx:21 msgid "Cast" msgstr "Distribution" @@ -392,7 +394,7 @@ msgstr "Changer de serveur" msgid "Check configuration" msgstr "Vérifier la configuration" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:483 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:465 msgid "Check for updates" msgstr "Rechercher des mises à jour" @@ -420,7 +422,7 @@ msgstr "Choisissez comment importer vos données {0}." msgid "Clear" msgstr "Effacer" -#: apps/web/src/components/command-palette.tsx:302 +#: apps/web/src/components/command-palette.tsx:297 msgid "Clear all" msgstr "Tout effacer" @@ -447,11 +449,12 @@ msgstr "Cliquez sur <0>+ et sélectionnez <1>Custom Lists" msgid "Click <0>Add Webhook and paste the URL above" msgstr "Cliquez sur <0>Add Webhook et collez l'URL ci-dessus" -#: apps/native/src/components/navigation/modal-stack-header.tsx:14 +#: apps/native/src/components/navigation/modal-layout.tsx:26 +#: apps/native/src/components/navigation/modal-layout.tsx:38 msgid "Close" msgstr "Fermer" -#: apps/native/src/app/(tabs)/(home)/index.tsx:54 +#: apps/native/src/app/(tabs)/(home)/index.tsx:146 #: apps/native/src/components/titles/status-action-button.tsx:45 #: apps/web/src/components/dashboard/stats-display.tsx:219 #: apps/web/src/components/title-card.tsx:74 @@ -492,7 +495,7 @@ msgid "Connect with {0}" msgstr "Se connecter avec {0}" #: apps/native/src/app/(auth)/server-url.tsx:176 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:449 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:431 #: apps/web/src/components/settings/system-health-section.tsx:236 msgid "Connected" msgstr "Connecté" @@ -521,7 +524,7 @@ msgstr "Connexion…" msgid "Continue" msgstr "Continuer" -#: apps/native/src/app/(tabs)/(home)/index.tsx:99 +#: apps/native/src/app/(tabs)/(home)/index.tsx:161 #: apps/web/src/components/dashboard/continue-watching-section.tsx:22 msgid "Continue Watching" msgstr "Continuer à regarder" @@ -542,7 +545,7 @@ msgstr "Copier l'URL" msgid "Could not load integrations" msgstr "Impossible de charger les intégrations" -#: apps/native/src/app/person/[id].tsx:185 +#: apps/native/src/app/person/[id].tsx:172 msgid "Could not load person details" msgstr "Impossible de charger les détails de la personne" @@ -576,18 +579,18 @@ msgstr "Mot de passe actuel" msgid "Current password is required" msgstr "Le mot de passe actuel est requis" -#: apps/web/src/routes/_app/settings.tsx:180 +#: apps/web/src/routes/_app/settings.tsx:216 msgid "Danger Zone" msgstr "Zone de danger" -#: apps/web/src/routes/__root.tsx:164 +#: apps/web/src/routes/__root.tsx:163 #: apps/web/src/routes/_app/people.$id.tsx:76 #: apps/web/src/routes/_app/titles.$id.tsx:119 #: apps/web/src/routes/_app/titles.$id.tsx:165 msgid "Dashboard" msgstr "Tableau de bord" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:439 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:421 #: apps/web/src/components/settings/system-health-section.tsx:210 msgid "Database" msgstr "Base de données" @@ -627,17 +630,19 @@ msgstr "{0, plural, one {# fichier supprimé} other {# fichiers supprimés}}, {f msgid "Device code expired. Please try again." msgstr "Le code d'appareil a expiré. Veuillez réessayer." -#: apps/native/src/app/person/[id].tsx:267 +#: apps/native/src/app/person/[id].tsx:249 #: apps/web/src/components/people/person-hero.tsx:89 msgid "died at {age}" msgstr "décédé à {age} ans" +#: apps/native/src/app/person/[id].tsx:51 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:29 #: apps/web/src/components/people/person-hero.tsx:71 msgid "Director" msgstr "Réalisateur" #: apps/web/src/components/settings/system-health-section.tsx:394 -#: apps/web/src/components/settings/system-health-section.tsx:580 +#: apps/web/src/components/settings/system-health-section.tsx:574 msgid "Disabled" msgstr "Désactivé" @@ -680,6 +685,8 @@ msgstr "Télécharger" msgid "Download backup" msgstr "Télécharger la sauvegarde" +#: apps/native/src/app/person/[id].tsx:54 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:32 #: apps/web/src/components/people/person-hero.tsx:77 msgid "Editor" msgstr "Monteur" @@ -748,6 +755,11 @@ msgstr "Épisode visionné" msgid "Episodes" msgstr "Épisodes" +#. placeholder {0}: periodLabels[episodePeriod] +#: apps/native/src/app/(tabs)/(home)/index.tsx:125 +msgid "Episodes {0}" +msgstr "" + #: apps/web/src/components/dashboard/stats-display.tsx:162 #~ msgid "Episodes {periodSelect}" #~ msgstr "Episodes {periodSelect}" @@ -757,8 +769,8 @@ msgid "Episodes {select}" msgstr "Épisodes {select}" #: apps/native/src/app/(tabs)/(home)/index.tsx:52 -msgid "Episodes this week" -msgstr "Épisodes cette semaine" +#~ msgid "Episodes this week" +#~ msgstr "Épisodes cette semaine" #: apps/native/src/app/change-password.tsx:67 #: apps/native/src/app/change-password.tsx:77 @@ -770,7 +782,9 @@ msgstr "Erreur" msgid "Errors ({0})" msgstr "Erreurs ({0})" -#: apps/native/src/app/(tabs)/(home)/index.tsx:127 +#: apps/native/src/app/(tabs)/(explore)/_layout.tsx:7 +#: apps/native/src/app/(tabs)/(home)/index.tsx:189 +#: apps/native/src/components/navigation/native-tab-bar.tsx:32 #: apps/web/src/components/nav-bar.tsx:116 #: apps/web/src/components/nav-bar.tsx:277 msgid "Explore" @@ -959,7 +973,7 @@ msgstr "Échec du téléchargement de l'avatar" msgid "Fetching your library data from {source}..." msgstr "Récupération de vos données depuis {source}..." -#: apps/native/src/app/person/[id].tsx:296 +#: apps/native/src/app/person/[id].tsx:279 #: apps/web/src/components/people/filmography-grid.tsx:67 msgid "Filmography" msgstr "Filmographie" @@ -988,9 +1002,9 @@ msgstr "Vendredi" msgid "Get Started" msgstr "Commencer" -#: apps/native/src/app/person/[id].tsx:189 -#: apps/native/src/app/person/[id].tsx:213 -#: apps/native/src/app/title/[id].tsx:239 +#: apps/native/src/app/person/[id].tsx:176 +#: apps/native/src/app/person/[id].tsx:196 +#: apps/native/src/app/title/[id].tsx:235 msgid "Go back" msgstr "Retour" @@ -1002,7 +1016,7 @@ msgstr "Accueil" msgid "Go to <0>Dashboard > Plugins > Webhook" msgstr "Aller dans <0>Dashboard > Plugins > Webhook" -#: apps/web/src/components/command-palette.tsx:345 +#: apps/web/src/components/command-palette.tsx:339 msgid "Go to Dashboard" msgstr "Aller au tableau de bord" @@ -1010,7 +1024,7 @@ msgstr "Aller au tableau de bord" msgid "Go to Dashboard > Plugins > Webhook" msgstr "Aller dans Dashboard > Plugins > Webhook" -#: apps/web/src/components/command-palette.tsx:356 +#: apps/web/src/components/command-palette.tsx:349 msgid "Go to Explore" msgstr "Aller à Explorer" @@ -1022,21 +1036,23 @@ msgstr "État de santé" msgid "Here's what's happening with your library" msgstr "Voici ce qui se passe dans votre bibliothèque" +#: apps/native/src/app/(tabs)/(home)/_layout.tsx:7 +#: apps/native/src/components/navigation/native-tab-bar.tsx:28 #: apps/web/src/components/nav-bar.tsx:115 #: apps/web/src/components/nav-bar.tsx:276 msgid "Home" msgstr "Accueil" #: apps/web/src/components/settings/system-health-section.tsx:308 -#: apps/web/src/components/settings/system-health-section.tsx:558 +#: apps/web/src/components/settings/system-health-section.tsx:552 msgid "Image cache" msgstr "Cache d'images" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:453 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:435 msgid "Image Cache" msgstr "Cache d'images" -#: apps/web/src/components/settings/system-health-section.tsx:546 +#: apps/web/src/components/settings/system-health-section.tsx:540 msgid "Image cache and backup disk usage" msgstr "Utilisation du disque : cache d'images et sauvegardes" @@ -1088,7 +1104,7 @@ msgstr "{0} éléments importés depuis {1}" msgid "Importing from {source}" msgstr "Importation depuis {source}" -#: apps/native/src/app/(tabs)/(home)/index.tsx:53 +#: apps/native/src/app/(tabs)/(home)/index.tsx:138 msgid "In library" msgstr "Dans la bibliothèque" @@ -1096,7 +1112,7 @@ msgstr "Dans la bibliothèque" msgid "In Library" msgstr "Dans la bibliothèque" -#: apps/native/src/app/(tabs)/(home)/index.tsx:117 +#: apps/native/src/app/(tabs)/(home)/index.tsx:179 #: apps/web/src/components/dashboard/library-section.tsx:35 msgid "In Your Library" msgstr "Dans votre bibliothèque" @@ -1132,13 +1148,13 @@ msgstr "Tâche" msgid "Keeping <0><1><2>{0}<3>{1} backups." msgstr "Conservation de <0><1><2>{0}<3>{1} sauvegardes." -#: apps/web/src/components/command-palette.tsx:366 -#: apps/web/src/components/command-palette.tsx:381 +#: apps/web/src/components/command-palette.tsx:359 +#: apps/web/src/components/command-palette.tsx:374 msgid "Keyboard Shortcuts" msgstr "Raccourcis clavier" #: apps/native/src/app/(tabs)/(settings)/index.tsx:383 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:391 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:506 #: apps/web/src/components/settings/language-section.tsx:34 msgid "Language" msgstr "Langue" @@ -1264,15 +1280,16 @@ msgstr "Membre depuis {memberSince}" msgid "Monday" msgstr "Lundi" -#: apps/native/src/app/title/[id].tsx:508 +#: apps/native/src/app/title/[id].tsx:512 msgid "More Like This" msgstr "Dans le même genre" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:506 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:488 msgid "More Settings" msgstr "Plus de paramètres" -#: apps/native/src/app/title/[id].tsx:337 +#: apps/native/src/app/title/[id].tsx:333 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:22 #: apps/native/src/components/search/search-result-row.tsx:34 #: apps/native/src/components/search/search-result-row.tsx:81 #: apps/web/src/components/explore/hero-banner.tsx:54 @@ -1285,6 +1302,11 @@ msgstr "Film" msgid "Movies" msgstr "Films" +#. placeholder {0}: periodLabels[moviePeriod] +#: apps/native/src/app/(tabs)/(home)/index.tsx:114 +msgid "Movies {0}" +msgstr "" + #: apps/web/src/components/dashboard/stats-display.tsx:161 #~ msgid "Movies {periodSelect}" #~ msgstr "Movies {periodSelect}" @@ -1294,8 +1316,8 @@ msgid "Movies {select}" msgstr "Films {select}" #: apps/native/src/app/(tabs)/(home)/index.tsx:51 -msgid "Movies this month" -msgstr "Films ce mois-ci" +#~ msgid "Movies this month" +#~ msgstr "Films ce mois-ci" #: apps/native/src/app/(auth)/register.tsx:111 #: apps/web/src/components/auth-form.tsx:173 @@ -1311,7 +1333,7 @@ msgstr "Nom mis à jour" msgid "Need more help?" msgstr "Besoin d'aide ?" -#: apps/web/src/components/settings/system-health-section.tsx:456 +#: apps/web/src/components/settings/system-health-section.tsx:453 msgid "Never" msgstr "Jamais" @@ -1358,7 +1380,7 @@ msgid "Next run" msgstr "Prochaine exécution" #: apps/web/src/components/settings/backup-section.tsx:99 -#: apps/web/src/components/settings/system-health-section.tsx:607 +#: apps/web/src/components/settings/system-health-section.tsx:601 msgid "No backups yet" msgstr "Aucune sauvegarde" @@ -1368,11 +1390,11 @@ msgstr "Aucune sauvegarde" msgid "No internet connection" msgstr "Pas de connexion Internet" -#: apps/native/src/app/(tabs)/(search)/index.tsx:100 +#: apps/native/src/app/(tabs)/(search)/index.tsx:94 msgid "No results for \"{debouncedQuery}\"" msgstr "Aucun résultat pour « {debouncedQuery} »" -#: apps/web/src/components/command-palette.tsx:212 +#: apps/web/src/components/command-palette.tsx:207 msgid "No results found." msgstr "Aucun résultat trouvé." @@ -1411,7 +1433,7 @@ msgstr "Ouvrez Emby, allez dans <0>Settings > Webhooks" msgid "Open Emby, go to Settings > Webhooks" msgstr "Ouvrez Emby, allez dans Settings > Webhooks" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:513 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:495 msgid "Open in browser…" msgstr "Ouvrir dans le navigateur…" @@ -1431,7 +1453,7 @@ msgstr "Ouvrez Radarr, allez dans <0>Settings > Import Lists" msgid "Open Radarr, go to Settings > Import Lists" msgstr "Ouvrez Radarr, allez dans Settings > Import Lists" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:472 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:454 #: apps/web/src/components/settings/registration-section.tsx:51 msgid "Open registration" msgstr "Inscription ouverte" @@ -1489,12 +1511,13 @@ msgstr "Collez l'URL Sonarr ci-dessus dans le champ List URL" msgid "Periodically check GitHub for new Sofa releases" msgstr "Vérifier périodiquement GitHub pour les nouvelles versions de Sofa" +#: apps/native/src/components/search/recently-viewed-row-content.tsx:24 #: apps/native/src/components/search/search-result-row.tsx:34 #: apps/native/src/components/search/search-result-row.tsx:81 msgid "Person" msgstr "Personne" -#: apps/native/src/app/person/[id].tsx:209 +#: apps/native/src/app/person/[id].tsx:192 #: apps/web/src/routes/_app/people.$id.tsx:50 msgid "Person not found" msgstr "Personne introuvable" @@ -1504,12 +1527,12 @@ msgid "Play trailer" msgstr "Lire la bande-annonce" #: apps/native/src/app/(tabs)/(explore)/index.tsx:89 -#: apps/web/src/components/explore/explore-client.tsx:120 +#: apps/web/src/routes/_app/explore.tsx:141 msgid "Popular Movies" msgstr "Films populaires" #: apps/native/src/app/(tabs)/(explore)/index.tsx:102 -#: apps/web/src/components/explore/explore-client.tsx:130 +#: apps/web/src/routes/_app/explore.tsx:151 msgid "Popular TV Shows" msgstr "Séries populaires" @@ -1517,6 +1540,8 @@ msgstr "Séries populaires" msgid "Pre-restore backup" msgstr "Sauvegarde pré-restauration" +#: apps/native/src/app/person/[id].tsx:53 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:31 #: apps/web/src/components/people/person-hero.tsx:75 msgid "Producer" msgstr "Producteur" @@ -1577,7 +1602,7 @@ msgstr "{0, plural, one {# titre} other {# titres}}, {1, plural, one {# personne msgid "Purging..." msgstr "Purge..." -#: apps/web/src/components/command-palette.tsx:336 +#: apps/web/src/components/command-palette.tsx:331 msgid "Quick Actions" msgstr "Actions rapides" @@ -1633,7 +1658,7 @@ msgstr "Prêt — pas encore interrogé" msgid "Ready — nothing received yet" msgstr "Prêt — rien reçu pour l'instant" -#: apps/web/src/components/command-palette.tsx:295 +#: apps/web/src/components/command-palette.tsx:290 msgid "Recent Searches" msgstr "Recherches récentes" @@ -1650,7 +1675,7 @@ msgstr "Recommandations" msgid "Recommended" msgstr "Recommandé" -#: apps/native/src/app/(tabs)/(home)/index.tsx:137 +#: apps/native/src/app/(tabs)/(home)/index.tsx:199 #: apps/web/src/components/dashboard/recommendations-section.tsx:22 msgid "Recommended for You" msgstr "Recommandé pour vous" @@ -1770,7 +1795,7 @@ msgstr "Restauration échouée" msgid "Restoring…" msgstr "Restauration…" -#: apps/web/src/components/command-palette.tsx:217 +#: apps/web/src/components/command-palette.tsx:212 msgid "Results" msgstr "Résultats" @@ -1781,11 +1806,11 @@ msgstr "Récupération de votre historique, liste de suivi et notes..." #: apps/native/src/components/settings/integrations-section.tsx:39 #: apps/native/src/components/ui/server-unreachable-banner.ios.tsx:71 #: apps/native/src/components/ui/server-unreachable-banner.tsx:79 -#: apps/web/src/lib/orpc/client.ts:17 +#: apps/web/src/lib/orpc/client.ts:24 msgid "Retry" msgstr "Réessayer" -#: apps/web/src/routes/__root.tsx:116 +#: apps/web/src/routes/__root.tsx:115 msgid "Return home" msgstr "Retour à l'accueil" @@ -1793,7 +1818,7 @@ msgstr "Retour à l'accueil" msgid "Review what was found and choose what to import." msgstr "Vérifiez ce qui a été trouvé et choisissez ce que vous souhaitez importer." -#: apps/web/src/components/settings/system-health-section.tsx:509 +#: apps/web/src/components/settings/system-health-section.tsx:503 msgid "Run now" msgstr "Exécuter maintenant" @@ -1809,7 +1834,7 @@ msgstr "Enregistrer" msgid "Save name" msgstr "Enregistrer le nom" -#: apps/web/src/routes/__root.tsx:98 +#: apps/web/src/routes/__root.tsx:97 msgid "Scene not found" msgstr "Scène introuvable" @@ -1833,6 +1858,11 @@ msgstr "Sauvegardes planifiées désactivées" msgid "Scheduled backups enabled" msgstr "Sauvegardes planifiées activées" +#: apps/native/src/app/(tabs)/(search)/_layout.tsx:7 +#: apps/native/src/components/navigation/native-tab-bar.tsx:41 +msgid "Search" +msgstr "" + #: apps/web/src/components/dashboard/stats-section.tsx:35 msgid "Search for movies and TV shows to start tracking" msgstr "Recherchez des films et séries pour commencer à les suivre" @@ -1842,15 +1872,15 @@ msgstr "Recherchez des films et séries pour commencer à les suivre" msgid "Search for movies, shows, or people" msgstr "Rechercher des films, séries ou personnes" -#: apps/web/src/components/command-palette.tsx:182 +#: apps/web/src/components/command-palette.tsx:177 msgid "Search for movies, TV shows, or run commands" msgstr "Rechercher des films, séries ou exécuter des commandes" -#: apps/web/src/components/command-palette.tsx:191 +#: apps/web/src/components/command-palette.tsx:186 msgid "Search movies & TV shows…" msgstr "Rechercher des films et séries…" -#: apps/native/src/app/(tabs)/(search)/index.tsx:79 +#: apps/native/src/app/(tabs)/(search)/index.tsx:73 msgid "Search movies, shows, people..." msgstr "Rechercher des films, séries, personnes..." @@ -1872,12 +1902,12 @@ msgstr "Saison {0}" msgid "Season watched" msgstr "Saison visionnée" -#: apps/native/src/app/title/[id].tsx:473 +#: apps/native/src/app/title/[id].tsx:477 msgid "Seasons" msgstr "Saisons" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:470 -#: apps/web/src/routes/_app/settings.tsx:131 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:452 +#: apps/web/src/routes/_app/settings.tsx:167 msgid "Security" msgstr "Sécurité" @@ -1885,11 +1915,11 @@ msgstr "Sécurité" msgid "Self-hosted movie & TV tracker" msgstr "Suivi de films et séries auto-hébergé" -#: apps/web/src/routes/_app/settings.tsx:115 +#: apps/web/src/routes/_app/settings.tsx:151 msgid "Server" msgstr "Serveur" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:431 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:413 msgid "Server Health" msgstr "État du serveur" @@ -1908,7 +1938,9 @@ msgstr "Définir un mot de passe" msgid "Set your preferred quality profile and root folder" msgstr "Définissez votre profil de qualité et dossier racine préférés" +#: apps/native/src/app/(tabs)/(settings)/_layout.tsx:7 #: apps/native/src/components/header-avatar.tsx:55 +#: apps/native/src/components/navigation/native-tab-bar.tsx:36 #: apps/web/src/components/nav-bar.tsx:236 #: apps/web/src/components/nav-bar.tsx:278 #: apps/web/src/components/settings/settings-shell.tsx:30 @@ -1999,9 +2031,9 @@ msgid "Sofa will automatically log movies and episodes when you finish watching msgstr "Sofa enregistrera automatiquement les films et épisodes lorsque vous aurez fini de les regarder" #: apps/native/src/app/change-password.tsx:77 -#: apps/native/src/app/person/[id].tsx:182 +#: apps/native/src/app/person/[id].tsx:169 #: apps/web/src/components/settings/account-section.tsx:391 -#: apps/web/src/routes/__root.tsx:140 +#: apps/web/src/routes/__root.tsx:139 msgid "Something went wrong" msgstr "Une erreur s'est produite" @@ -2010,7 +2042,7 @@ msgid "Something went wrong while loading this title. Please try again." msgstr "Une erreur s'est produite lors du chargement de ce titre. Veuillez réessayer." #: apps/native/src/lib/query-client.ts:33 -#: apps/web/src/lib/orpc/client.ts:15 +#: apps/web/src/lib/orpc/client.ts:22 msgid "Something went wrong…" msgstr "Une erreur s'est produite…" @@ -2022,7 +2054,7 @@ msgstr "URL de liste Sonarr" msgid "Start exploring" msgstr "Commencer à explorer" -#: apps/native/src/app/(tabs)/(home)/index.tsx:126 +#: apps/native/src/app/(tabs)/(home)/index.tsx:188 msgid "Start tracking movies and shows" msgstr "Commencer à suivre des films et séries" @@ -2042,7 +2074,7 @@ msgstr "Démarrage de l'importation..." msgid "Status updated" msgstr "Statut mis à jour" -#: apps/web/src/components/settings/system-health-section.tsx:543 +#: apps/web/src/components/settings/system-health-section.tsx:537 msgid "Storage" msgstr "Stockage" @@ -2075,20 +2107,30 @@ msgstr "Le titre que vous recherchez n'existe pas ou a peut-être été supprim msgid "This may take a few minutes for large libraries. Please don't close this tab." msgstr "Cela peut prendre quelques minutes pour les grandes bibliothèques. Ne fermez pas cet onglet." +#: apps/native/src/app/(tabs)/(home)/index.tsx:89 +msgid "this month" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:31 #: apps/web/src/components/dashboard/stats-display.tsx:135 msgid "This Month" msgstr "Ce mois-ci" -#: apps/web/src/routes/__root.tsx:101 +#: apps/web/src/routes/__root.tsx:100 msgid "This page was left on the cutting room floor. It may have been moved, removed, or never made it past the screenplay." msgstr "Cette page est restée sur le plancher de la salle de montage. Elle a peut-être été déplacée, supprimée, ou n'a jamais dépassé le stade du scénario." -#: apps/native/src/app/(tabs)/(settings)/index.tsx:557 -#: apps/web/src/routes/_app/settings.tsx:76 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:559 +#: apps/web/src/routes/_app/settings.tsx:112 #: apps/web/src/routes/setup.tsx:180 msgid "This product uses the TMDB API but is not endorsed or certified by TMDB." msgstr "Ce produit utilise l'API TMDB mais n'est pas approuvé ni certifié par TMDB." +#: apps/native/src/app/(tabs)/(home)/index.tsx:88 +msgid "this week" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:30 #: apps/web/src/components/dashboard/stats-display.tsx:134 msgid "This Week" msgstr "Cette semaine" @@ -2127,6 +2169,11 @@ msgstr "Cela supprimera tous les éléments de votre historique." msgid "This will replace your entire database with the uploaded file. A safety backup of your current data will be created first. Active sessions may need to refresh after restore." msgstr "Cela remplacera toute votre base de données par le fichier téléchargé. Une sauvegarde de sécurité de vos données actuelles sera créée au préalable. Les sessions actives devront peut-être être actualisées après la restauration." +#: apps/native/src/app/(tabs)/(home)/index.tsx:90 +msgid "this year" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:32 #: apps/web/src/components/dashboard/stats-display.tsx:136 msgid "This Year" msgstr "Cette année" @@ -2139,7 +2186,7 @@ msgstr "Jeudi" msgid "Time:" msgstr "Heure :" -#: apps/native/src/app/title/[id].tsx:235 +#: apps/native/src/app/title/[id].tsx:231 #: apps/web/src/routes/_app/titles.$id.tsx:139 msgid "Title not found" msgstr "Titre introuvable" @@ -2154,6 +2201,11 @@ msgstr "Les titres de votre liste de suivi Sofa seront automatiquement ajoutés msgid "Titles on your Sofa watchlist will be automatically added for download when Sonarr polls this list (every 6 hours by default)" msgstr "Les titres de votre liste de suivi Sofa seront automatiquement ajoutés au téléchargement lorsque Sonarr interroge cette liste (toutes les 6 heures par défaut)" +#: apps/native/src/app/(tabs)/(home)/index.tsx:87 +msgid "today" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:29 #: apps/web/src/components/dashboard/stats-display.tsx:133 msgid "Today" msgstr "Aujourd'hui" @@ -2184,15 +2236,15 @@ msgid "Trending today" msgstr "Tendance aujourd'hui" #: apps/native/src/app/(tabs)/(explore)/index.tsx:77 -#: apps/web/src/components/explore/explore-client.tsx:108 +#: apps/web/src/routes/_app/explore.tsx:129 msgid "Trending Today" msgstr "Tendances du jour" -#: apps/web/src/components/settings/system-health-section.tsx:488 +#: apps/web/src/components/settings/system-health-section.tsx:482 msgid "Trigger job" msgstr "Déclencher la tâche" -#: apps/web/src/routes/__root.tsx:156 +#: apps/web/src/routes/__root.tsx:155 msgid "Try again" msgstr "Réessayer" @@ -2200,7 +2252,8 @@ msgstr "Réessayer" msgid "Tuesday" msgstr "Mardi" -#: apps/native/src/app/title/[id].tsx:337 +#: apps/native/src/app/title/[id].tsx:333 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:23 #: apps/native/src/components/search/search-result-row.tsx:81 #: apps/web/src/components/explore/hero-banner.tsx:59 #: apps/web/src/components/people/filmography-grid.tsx:58 @@ -2216,7 +2269,7 @@ msgstr "Épisodes de séries" msgid "TV show" msgstr "Série TV" -#: apps/web/src/components/settings/system-health-section.tsx:601 +#: apps/web/src/components/settings/system-health-section.tsx:595 msgid "unknown" msgstr "inconnu" @@ -2252,7 +2305,7 @@ msgid "Up next" msgstr "Suivant" #. placeholder {0}: updateCheck.data.updateCheck.latestVersion -#: apps/native/src/app/(tabs)/(settings)/index.tsx:496 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:478 msgid "Update available: {0}" msgstr "Mise à jour disponible : {0}" @@ -2396,7 +2449,7 @@ msgstr "Bon retour" msgid "Welcome back, {name}" msgstr "Bon retour, {name}" -#: apps/native/src/app/title/[id].tsx:430 +#: apps/native/src/app/title/[id].tsx:431 #: apps/web/src/components/titles/title-availability.tsx:130 msgid "Where to Watch" msgstr "Où regarder" @@ -2405,6 +2458,8 @@ msgstr "Où regarder" msgid "With Ads" msgstr "Avec publicités" +#: apps/native/src/app/person/[id].tsx:52 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:30 #: apps/web/src/components/people/person-hero.tsx:73 msgid "Writer" msgstr "Scénariste" @@ -2422,7 +2477,7 @@ msgstr "Vous utilisez la v{0}." msgid "Your code:" msgstr "Votre code :" -#: apps/native/src/app/(tabs)/(home)/index.tsx:125 +#: apps/native/src/app/(tabs)/(home)/index.tsx:187 #: apps/web/src/components/dashboard/stats-section.tsx:32 msgid "Your library is empty" msgstr "Votre bibliothèque est vide" @@ -2430,4 +2485,3 @@ msgstr "Votre bibliothèque est vide" #: apps/native/src/app/(auth)/register.tsx:121 msgid "Your name" msgstr "Votre nom" - diff --git a/packages/i18n/src/po/fr.ts b/packages/i18n/src/po/fr.ts index cc2b468..6f71119 100644 --- a/packages/i18n/src/po/fr.ts +++ b/packages/i18n/src/po/fr.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"+5kO8P\":[\"Samedi\"],\"+6i0lS\":[\"Récupération de votre historique, liste de suivi et notes...\"],\"+Cv+V9\":[\"Supprimer de la bibliothèque\"],\"+JkEpu\":[\"Cette page est restée sur le plancher de la salle de montage. Elle a peut-être été déplacée, supprimée, ou n'a jamais dépassé le stade du scénario.\"],\"+K0AvT\":[\"Déconnecter\"],\"+N0l5/\":[\"Connecté à <0>\",[\"serverHost\"],\". Appuyez pour modifier.\"],\"+gLHYi\":[\"Échec du chargement du titre\"],\"+j1ex/\":[\"Échec de la suppression de la bibliothèque\"],\"+nF1ZO\":[\"Supprimer la photo\"],\"/+6dvC\":[\"Erreurs (\",[\"0\"],\")\"],\"/BBXeA\":[\"Connexion au serveur...\"],\"/DwR+n\":[\"Création…\"],\"/XtbPO\":[[\"0\"],\" titles\"],\"/cg+QV\":[\"Tout marquer comme visionné\"],\"/gQXGv\":[\"Échec de la mise à jour du statut\"],\"/nT6AE\":[\"Nouveau mot de passe\"],\"/sHc1/\":[\"Vérification des mises à jour\"],\"0+dyau\":[\"Échec de la mise à jour du paramètre de rétention\"],\"0BFJKK\":[\"L'autorisation a été refusée. Veuillez réessayer.\"],\"0GHb20\":[\"Purger le cache de métadonnées ?\"],\"0IBW21\":[\"Échec de la purge des caches\"],\"0gH/sc\":[\"Supprimer la photo de profil\"],\"1+P9RR\":[\"Passer à \",[\"0\"]],\"12cc1j\":[\"En cours\"],\"12lVOl\":[\"Suivi de films et séries auto-hébergé\"],\"1B4z0M\":[\"Filmographie\"],\"1J4Ek0\":[\"Sauvegardez automatiquement votre base de données selon un planning\"],\"1JhxXW\":[\"Épisode \",[\"0\"],\", \",[\"episodeLabel\"]],\"1N6wNP\":[\"Options d'importation\"],\"1Qz4uG\":[\"Activez la catégorie d'événement « Playback »\"],\"1hMWR6\":[\"Créer un compte\"],\"1jHIjh\":[\"Tout visionné de \",[\"seasonName\"]],\"1vSYsG\":[\"Télécharger la sauvegarde\"],\"1wL1tj\":[\"Série TV\"],\"2FletP\":[[\"0\",\"plural\",{\"one\":[\"#\",\" titre\"],\"other\":[\"#\",\" titres\"]}],\", \",[\"1\",\"plural\",{\"one\":[\"#\",\" personne\"],\"other\":[\"#\",\" personnes\"]}],\", \",[\"2\",\"plural\",{\"one\":[\"#\",\" fichier\"],\"other\":[\"#\",\" fichiers\"]}],\" purgés (\",[\"freed\"],\" libéré)\"],\"2Fsd9r\":[\"Ce mois-ci\"],\"2MPcep\":[\"Importation terminée\"],\"2Mu33Z\":[\"Gestion du cache\"],\"2POOFK\":[\"Gratuit\"],\"2Pt2NY\":[\"Cela supprimera tous les éléments de votre historique.\"],\"2fCpt5\":[\"Retour à l'accueil\"],\"2pPBp6\":[\"Tendance aujourd'hui\"],\"39y5bn\":[\"Vendredi\"],\"3Blefz\":[\"Notes\"],\"3JTlG8\":[\"Recherches récentes\"],\"3Jy8bM\":[\"Films \",[\"select\"]],\"3L9OuQ\":[\"Épisode \",[\"0\"]],\"3T8ziB\":[\"Créer un compte\"],\"3hELxX\":[\"Entrez l'URL de votre serveur Sofa pour commencer\"],\"4fxLkp\":[\"Ouvrez Sonarr, allez dans <0>Settings > Import Lists\"],\"4kpBqM\":[\"Dernier événement \",[\"0\"]],\"4uUjVO\":[\"Producteur\"],\"4x+A56\":[\"Rapports d'utilisation anonymes\"],\"5IShvp\":[\"Importer \",[\"totalItems\"],\" éléments\"],\"5IYJSv\":[\"Explorer les titres\"],\"5Y4mym\":[\"Importer depuis \",[\"0\"]],\"5ZzgbQ\":[\"Connecter \",[\"0\"]],\"5fEnbK\":[\"Échec de la mise à jour du paramètre de sauvegarde planifiée\"],\"5lWFkC\":[\"Se connecter\"],\"5v9C16\":[\"Connecté à \",[\"source\"]],\"623bR4\":[\"Échec du déclenchement de la tâche\"],\"6HN0yh\":[\"Ouvrez Plex, allez dans Settings > Webhooks\"],\"6TNjOJ\":[\"Échec de la mise à jour de la note\"],\"6TfUy6\":[[\"value\"],\" dernières\"],\"6V3Ea3\":[\"Copié\"],\"6YtxFj\":[\"Nom\"],\"6exX+8\":[\"Régénérer\"],\"6gRgw8\":[\"Réessayer\"],\"6lGV3K\":[\"Afficher moins\"],\"76++pR\":[\"Avertissements\"],\"77DIAu\":[\"Aller dans Dashboard > Plugins > Webhook\"],\"7Bj3x9\":[\"Échoué\"],\"7D50KC\":[[\"label\"],\" déconnecté\"],\"7GfM5w\":[\"Récemment consultés\"],\"7L01XJ\":[\"Actions\"],\"7eMo+U\":[\"Accueil\"],\"7p5kLi\":[\"Tableau de bord\"],\"85eoJ1\":[\"Planning mis à jour\"],\"8B9E2D\":[\"Jour :\"],\"8YwF1J\":[\"Aller dans <0>Dashboard > Plugins > Webhook\"],\"8ZsakT\":[\"Mot de passe\"],\"8tjQCz\":[\"Explorer\"],\"8vNtLy\":[\"Collez l'URL Radarr ci-dessus dans le champ List URL\"],\"8wYDMp\":[\"Vous avez déjà un compte ?\"],\"9AE3vb\":[\"Ouvrez Plex, allez dans <0>Settings > Webhooks<1/>\"],\"9GW0ZB\":[\"L'importation est toujours en cours en arrière-plan. Revenez plus tard.\"],\"9NyAH9\":[\"Ignoré\"],\"9Xhrps\":[\"Échec de la connexion\"],\"9ZLGbA\":[\"backups.\"],\"9eF5oV\":[\"Bon retour\"],\"9rG25a\":[\"URL du serveur\"],\"A+0rLe\":[\"Marqué comme terminé\"],\"AOHgZp\":[\"Épisodes\"],\"AOddWK\":[\"Connecter \",[\"label\"]],\"ATfxL/\":[\"Bande-annonce\"],\"AVlZoM\":[\"Environnement\"],\"Acf6vF\":[\"Enregistrer le nom\"],\"AdoUfN\":[\"Échec de l'ajout à la liste de suivi\"],\"AeXO77\":[\"Compte\"],\"AjtYj0\":[\"Dans la liste de suivi\"],\"Avee+B\":[\"Échec de la mise à jour du nom\"],\"B2R3xD\":[\"Activer/désactiver les sauvegardes planifiées\"],\"BEVzjL\":[\"Importation échouée\"],\"BQnS5I\":[\"Ouvrir \",[\"source\"],\" pour saisir le code\"],\"BUnoSB\":[[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"sauvegarde stockée\"],\"other\":[\"sauvegardes stockées\"]}]],\"BpttUI\":[\"Tendances du jour\"],\"BrrIs8\":[\"Stockage\"],\"BskWMl\":[\"Inaccessible\"],\"BzEFor\":[\"ou\"],\"CGDHFb\":[\"Ajoutez une <0>Generic Destination et collez l'URL ci-dessus\"],\"CGExDN\":[\"Échec de la purge du cache d'images\"],\"CHeXFE\":[\"Statut mis à jour\"],\"CKyk7Q\":[\"Retour\"],\"CaB/+I\":[\"Bon retour, \",[\"name\"]],\"CodnUh\":[\"Supprimé de la bibliothèque\"],\"CpzGJY\":[\"Cela peut prendre quelques minutes pour les grandes bibliothèques. Ne fermez pas cet onglet.\"],\"CuPxpd\":[\"Nécessite un abonnement <0>Plex Pass<1/> actif.\"],\"CzBN6D\":[\"Commencer à explorer\"],\"D+R2Xs\":[\"Démarrage de l'importation...\"],\"D3C4Yx\":[\"Le mot de passe actuel est requis\"],\"DBC3t5\":[\"Dimanche\"],\"DI4lqs\":[\"Personne introuvable\"],\"DKBbJf\":[\"« \",[\"titleName\"],\" » ajouté à la liste de suivi\"],\"DPfwMq\":[\"Terminé\"],\"DZse/o\":[\"Ajoutez une « Generic Destination » et collez l'URL ci-dessus\"],\"E/QGRL\":[\"Désactivé\"],\"E6nRW7\":[\"Copier l'URL\"],\"EWQlBH\":[\"Votre bibliothèque est vide\"],\"EWaCfj\":[\"Entrez votre mot de passe actuel et choisissez-en un nouveau.\"],\"Eeo/Gy\":[\"Échec de la mise à jour du paramètre\"],\"Efn6WU\":[\"Cela supprimera tous les titres ébauches non enrichis et toutes les images en cache du disque. Tout sera réimporté et re-téléchargé selon les besoins.\"],\"Etp5if\":[\"Importation depuis \",[\"source\"],\" terminée.\"],\"F006BN\":[\"Importer depuis \",[\"source\"]],\"FNvDMc\":[\"Cette semaine\"],\"FWSp+7\":[\"Entrez le code ci-dessous sur le site de \",[\"source\"],\" pour autoriser Sofa.\"],\"FXN0ro\":[\"Recommandations\"],\"FaU7Ag\":[\"Activez le type de notification « Playback Stop »\"],\"FhvLDl\":[[\"watchedCount\"],\"/\",[\"0\"],\" episodes\"],\"Fo2bwm\":[\"Acteur\"],\"FwRqjE\":[\"Utilisation du disque : cache d'images et sauvegardes\"],\"G00fgM\":[[\"n\"],\" dernières\"],\"G3myU+\":[\"Mardi\"],\"GcCthe\":[\"Dans la bibliothèque\"],\"Gf39AA\":[[\"0\"],\" déclenché\"],\"GnhfWw\":[\"Activer/désactiver les vérifications automatiques de mises à jour\"],\"GptGxg\":[\"Changer le mot de passe\"],\"GqTZ+S\":[\"Noté \",[\"ratingStars\"],\" \",[\"ratingStars\",\"plural\",{\"one\":[\"étoile\"],\"other\":[\"étoiles\"]}]],\"GrdN/F\":[\"Rattrapé — \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"épisode marqué comme visionné\"],\"other\":[\"épisodes marqués comme visionnés\"]}]],\"H4B5LG\":[\"Ce produit utilise l'API TMDB mais n'est pas approuvé ni certifié par TMDB.\"],\"HBRd5n\":[\"Saison \",[\"0\"]],\"HD+aQ7\":[\"Sauvegardes de la base de données\"],\"HG+31u\":[\"Purger tous les caches ?\"],\"Haz+72\":[\"Cela supprimera toutes les images TMDB en cache du disque. Les images seront re-téléchargées automatiquement selon les besoins.\"],\"HbReP5\":[\"« \",[\"titleName\"],\" » marqué comme terminé\"],\"Hg6o8v\":[\"Actualiser l'état du système\"],\"HmEjnC\":[\"Dernier événement \",[\"timeAgo\"]],\"HvDfH/\":[\"Importé\"],\"I89uD4\":[\"Restauration…\"],\"IRoxQm\":[\"Inscriptions fermées\"],\"IS0nrP\":[\"Créer un compte\"],\"IY9rQ0\":[\"Libérez de l'espace disque en vidant les métadonnées et images en cache\"],\"IrC12v\":[\"Application\"],\"J28zul\":[\"Connexion...\"],\"J64cFL\":[\"Actualisation de la bibliothèque\"],\"JKmmmN\":[\"Ajouté à la liste de suivi\"],\"JN0f/Y\":[\"Se connecter à TMDB\"],\"JR6aH2\":[\"Movies \",[\"periodSelect\"]],\"JRQitQ\":[\"Confirmer le nouveau mot de passe\"],\"JRadFJ\":[\"Commencez à suivre vos visionnages\"],\"JSwq8t\":[\"La création de nouveaux comptes est actuellement désactivée.\"],\"JY5Oyv\":[\"Base de données\"],\"JjsJnI\":[[\"0\"],\"/\",[\"1\"],\" episodes\"],\"JrFTcr\":[\"Connexion…\"],\"JwFbe8\":[\"Série\"],\"KDw4GX\":[\"Réessayer\"],\"KG6681\":[\"Épisode visionné\"],\"KIS/Sd\":[\"Se déconnecter des autres sessions\"],\"KK0ghs\":[\"Cache d'images\"],\"KVAoFR\":[\"illimité\"],\"KcXJuc\":[\"Purge...\"],\"KhtG3o\":[\"Mettre à jour le mot de passe\"],\"Khux7w\":[[\"0\",\"plural\",{\"one\":[\"#\",\" titre\"],\"other\":[\"#\",\" titres\"]}]],\"KmWyx0\":[\"Tâche\"],\"KoF0x6\":[\"âge \",[\"age\"]],\"Ksiej9\":[\"Nécessite un abonnement Plex Pass actif.\"],\"Kx9NEt\":[\"Jeton invalide\"],\"Lk6Jb/\":[\"Dernière interrogation \",[\"timeAgo\"]],\"LmEEic\":[\"En attente d'autorisation...\"],\"LqKH42\":[\"Se connecter avec \",[\"0\"]],\"Lrpjji\":[\"Déconnecter \",[\"label\"]],\"Lu6Udx\":[\"Cliquez sur « + » et sélectionnez « Custom Lists »\"],\"MDoX++\":[\"URL de liste Sonarr\"],\"MRBlCJ\":[\"Échec du démarquage de certains épisodes\"],\"MUO7w9\":[\"« \",[\"titleName\"],\" » marqué comme visionné\"],\"MZbQHL\":[\"Aucun résultat trouvé.\"],\"MdxR1u\":[\"Choose your preferred display language\"],\"MkyzAV\":[\"Autorisez Sofa à lire votre bibliothèque \",[\"0\"],\". Aucun mot de passe partagé.\"],\"N40H+G\":[\"Tout\"],\"N6SFhC\":[\"Se connecter\"],\"N7h106\":[\"Sofa v\",[\"0\"],\" est disponible\"],\"N9RF2M\":[\"Cliquez sur « Add Webhook » et collez l'URL ci-dessus\"],\"NBo4z0\":[\"Cliquez sur <0>+ et sélectionnez <1>Custom Lists\"],\"NICUmW\":[\"Réalisateur\"],\"NQzPoO\":[\"Nouvelle sauvegarde\"],\"NSxl1l\":[\"Plus de paramètres\"],\"NVF43p\":[\"Heure :\"],\"NdPMwS\":[\"Dans votre bibliothèque\"],\"NgaPSG\":[\"Échec de la mise à jour du planning\"],\"O3oNi5\":[\"E-mail\"],\"OBcj5W\":[\"Cela invalidera l'URL \",[\"label\"],\" actuelle. Vous devrez la mettre à jour dans \",[\"label\"],\".\"],\"OL8hbM\":[\"Le nouveau mot de passe doit comporter au moins 8 caractères\"],\"ONWvwQ\":[\"Télécharger\"],\"OPFjyX\":[\"Installez le <0>plugin Webhook<1/> depuis le catalogue de plugins de Jellyfin\"],\"OW/+RD\":[\"Historique de visionnage\"],\"OZdaTZ\":[\"Personne\"],\"OvO76u\":[\"Retour à la connexion\"],\"OvdFIZ\":[\"Saison visionnée\"],\"P2FLLe\":[\"Voir la version\"],\"PBdLfg\":[\"Aucun titre trouvé pour ce genre.\"],\"PQ3qDa\":[\"Récupération de vos données depuis \",[\"source\"],\"...\"],\"PjNoxI\":[\"Sauvegarde planifiée\"],\"Pn2B7/\":[\"Mot de passe actuel\"],\"PnEbL/\":[\"Noté \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"étoile\"],\"other\":[\"étoiles\"]}]],\"Pwqkdw\":[\"Chargement…\"],\"Py87xY\":[\"L'autorisation a réussi mais la récupération de votre bibliothèque a échoué. Veuillez réessayer.\"],\"Q3MPWA\":[\"Mettre à jour le mot de passe\"],\"QHcLEN\":[\"Connecté\"],\"QK4UIx\":[\"Marquer comme visionné\"],\"Qjlym2\":[\"Échec de la création du compte\"],\"Qm1NmK\":[\"OU\"],\"Qoq+GP\":[\"Lire la suite\"],\"QphVZW\":[\"Impossible de joindre le serveur\"],\"QqLJHH\":[\"Cette année\"],\"R0yu2l\":[\"Rattraper\"],\"R4YBui\":[\"Recherchez des films et séries pour commencer à les suivre\"],\"RH46vw\":[[\"0\"],\"/\",[\"1\"],\" \",[\"2\",\"plural\",{\"one\":[\"épisode\"],\"other\":[\"épisodes\"]}]],\"RIR15/\":[\"URL de liste Radarr\"],\"RLe7Vk\":[\"Vérification…\"],\"ROq8cl\":[\"Échec de l'analyse du fichier\"],\"RQq8Si\":[\"Inscriptions ouvertes\"],\"S0soqb\":[\"Échec de la suppression de la photo de profil\"],\"S1McZh\":[\"Échec du téléchargement de l'avatar\"],\"S2ble5\":[[\"0\"],\" films, \",[\"1\"],\" épisodes\"],\"S2qPRR\":[\"Rechercher des films et séries…\"],\"SDND4q\":[\"Non configuré\"],\"SFdAk9\":[\"Démarqué S\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"SUIUkB\":[\"Tout démarquer\"],\"SbS+Bm\":[\"Régénérer l'URL\"],\"SlfejT\":[\"Erreur\"],\"Sp86ju\":[[\"0\"],\" ép\",[\"1\"]],\"SrfROI\":[\"Suivant\"],\"SyPRjk\":[\"Sofa enregistrera automatiquement les films et épisodes lorsque vous aurez fini de les regarder\"],\"T0/7WG\":[\"Prochaine sauvegarde \",[\"distance\"]],\"TEaX6q\":[\"Sauvegarde supprimée\"],\"TI7IKo\":[\"Rated \",[\"0\"],\" star\",[\"1\"]],\"TMb7iE\":[\"Photo de profil supprimée\"],\"TqyQQS\":[\"Activez la catégorie d'événement <0>Playback\"],\"Tz0i8g\":[\"Paramètres\"],\"U+FxtW\":[\"Suivez ce que vous regardez. Sachez ce qui vient ensuite.<0/>Votre bibliothèque, vos données, vos règles.\"],\"U3pytU\":[\"Admin\"],\"UC+OWB\":[\"Activer/désactiver l'inscription ouverte\"],\"UDMjsP\":[\"Actions rapides\"],\"UmQ6Fe\":[\"Purger le cache d'images ?\"],\"UtDm3q\":[\"URL copiée dans le presse-papiers\"],\"V1Kh9Z\":[\"Épisodes \",[\"select\"]],\"V6uzvC\":[\"Dans le même genre\"],\"V9CuQ+\":[\"Se connecter à \",[\"source\"]],\"VAcXNz\":[\"Mercredi\"],\"VKyhZK\":[\"Titre introuvable\"],\"VQvpro\":[\"Collez l'URL Sonarr ci-dessus dans le champ List URL\"],\"VhMDMg\":[\"Changer le mot de passe\"],\"Vx0ayx\":[\"Échec du marquage de certains épisodes\"],\"WDC4PF\":[\"Episodes \",[\"periodSelect\"]],\"WEYdDv\":[\"Recommandé\"],\"WMCwmR\":[\"Rechercher des mises à jour\"],\"WP48q2\":[\"Cache d'images\"],\"WT1Ibn\":[\"Dernière exécution\"],\"Wb3E4g\":[\"Exécuter maintenant\"],\"WgF2UQ\":[\"Vous utilisez la v\",[\"0\"],\".\"],\"WtWhSi\":[\"Note supprimée\"],\"Wy/3II\":[\"Dernière interrogation \",[\"0\"]],\"XFCSYs\":[\"Distribution\"],\"XN23JY\":[\"Cela supprimera les titres ébauches non enrichis qui ne sont dans aucune bibliothèque et nettoiera les enregistrements de personnes orphelines. Les titres supprimés seront réimportés s'ils sont consultés à nouveau.\"],\"XZwihE\":[\"Prêt — rien reçu pour l'instant\"],\"XjTduw\":[\"Télécharger une photo\"],\"YEGzVq\":[\"Échec de la connexion à \",[\"label\"]],\"YErf89\":[\"Échec de la purge du cache de métadonnées\"],\"YQ768h\":[\"Scène introuvable\"],\"YiRsXK\":[\"Effacer les éléments récemment consultés ?\"],\"Yjp1zf\":[\"Pas de serveur ?\"],\"YqMfa9\":[\"Vérifiez ce qui a été trouvé et choisissez ce que vous souhaitez importer.\"],\"ZGUYm0\":[\"Prêt — pas encore interrogé\"],\"ZQKLI1\":[\"Zone de danger\"],\"ZVZUoU\":[[\"0\"],\" images en cache\"],\"ZWTQ81\":[\"Regarder sur \",[\"name\"]],\"a3LDKx\":[\"Sécurité\"],\"aLBUiR\":[\"Conservation de <0><1><2>\",[\"0\"],\"<3>\",[\"1\"],\" sauvegardes.\"],\"aM0+kY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" titre obsolète purgé\"],\"other\":[\"#\",\" titres obsolètes purgés\"]}],\" et \",[\"1\",\"plural\",{\"one\":[\"#\",\" personne orpheline\"],\"other\":[\"#\",\" personnes orphelines\"]}]],\"aO1AxG\":[\"Épisode non visionné\"],\"aV/hDI\":[\"Échec de la déconnexion de \",[\"label\"]],\"acbSg0\":[\"Double appui pour filtrer par \",[\"label\"]],\"agE7k4\":[\"Noté \",[\"stars\",\"plural\",{\"one\":[\"#\",\" étoile\"],\"other\":[\"#\",\" étoiles\"]}]],\"alPRaV\":[\"Les titres de votre liste de suivi Sofa seront automatiquement ajoutés au téléchargement lorsque Radarr interroge cette liste (toutes les 12 heures par défaut)\"],\"aourBv\":[\"Sauvegardes planifiées activées\"],\"apLLSU\":[\"Voulez-vous vraiment vous déconnecter ?\"],\"atc9MA\":[\"Ouvrez Emby, allez dans <0>Settings > Webhooks\"],\"auVUJO\":[\"Restaurer la base de données ?\"],\"ayqfr4\":[\"URL \",[\"label\"],\" régénérée\"],\"b/8KCH\":[\"Cela marquera tous les épisodes de cette série comme visionnés. Vous pourrez annuler cela en démarquant des saisons individuelles.\"],\"b3Thhd\":[\"Téléchargement échoué\"],\"b5DFtH\":[\"Définir un mot de passe\"],\"bHYIks\":[\"Se déconnecter\"],\"bITrbE\":[\"Tout purger\"],\"bNmdjU\":[\"Liste de suivi\"],\"bTRwag\":[\"Supprimer de la bibliothèque\"],\"bXMotV\":[\"Marqué comme visionné\"],\"bezGJ2\":[[\"0\"],\" images\"],\"boJlGf\":[\"Page introuvable\"],\"c1ssjI\":[\"Importation depuis \",[\"source\"]],\"c3b0B0\":[\"Commencer\"],\"c4b9Dm\":[\"Aucun résultat pour « \",[\"debouncedQuery\"],\" »\"],\"cQPKZt\":[\"Aller au tableau de bord\"],\"ccAJSB\":[\"Keeping\"],\"cgvva8\":[[\"0\"],\" notes\"],\"cnGeoo\":[\"Supprimer\"],\"cpE88+\":[\"Créez votre compte\"],\"d/6MoL\":[\"Gérez votre compte et vos préférences\"],\"dA7BWh\":[\"Nécessite Emby Server 4.7.9+ et une licence Emby Premiere active.\"],\"dEgA5A\":[\"Annuler\"],\"dTZwve\":[\"Tous les épisodes marqués comme visionnés\"],\"dUCJry\":[\"Les plus récents\"],\"ddwpAr\":[\"Avertissements (\",[\"0\"],\")\"],\"e/ToF5\":[\"Se connecter avec \",[\"0\"]],\"e9sZMS\":[\"Cela supprimera définitivement la sauvegarde du <0>\",[\"0\"],\". Cette action est irréversible.\"],\"eFRooE\":[\"Dernière exécution échouée\"],\"eM39Om\":[\"Tout visionné de \",[\"seasonLabel\"]],\"eZjYb8\":[\"Scénariste\"],\"ecUA8p\":[\"Aujourd'hui\"],\"evBxZy\":[\"Où regarder\"],\"ezDa1h\":[\"Ouvrir la documentation\"],\"f+m696\":[\"Une erreur inattendue s'est produite lors du chargement de cette page. Vous pouvez réessayer ou retourner au tableau de bord.\"],\"f/AKdU\":[\"Voulez-vous vraiment déconnecter \",[\"label\"],\" ? L'URL actuelle cessera de fonctionner.\"],\"f7ax8J\":[\"Ouvrir dans le navigateur…\"],\"fMPkxb\":[\"Afficher plus\"],\"fNMqNn\":[\"Séries populaires\"],\"fObVvy\":[\"Photo de profil mise à jour\"],\"fRettQ\":[[\"0\"],\" éléments\"],\"fUDRF9\":[\"Dans la liste de suivi\"],\"fcWrnU\":[\"Se déconnecter\"],\"fgLNSM\":[\"S'inscrire\"],\"fsAEqk\":[\"Continuer à regarder\"],\"fzAeQI\":[\"Inscription sur \",[\"serverHost\"]],\"g+gBfk\":[\"Analyse...\"],\"g4JYff\":[[\"0\"],\" éléments importés depuis \",[\"1\"]],\"gKtb5i\":[\"Les titres de votre liste de suivi Sofa seront automatiquement ajoutés au téléchargement lorsque Sonarr interroge cette liste (toutes les 6 heures par défaut)\"],\"gaIAMq\":[\"Supprimer la photo\"],\"gbEEMp\":[\"Supprimer la sauvegarde\"],\"gcNLi0\":[\"Vérifications des mises à jour activées\"],\"gmB6oO\":[\"Planning\"],\"h/T5Yb\":[\"Inscription ouverte\"],\"h4yKYk\":[\"Prochaine exécution\"],\"h7MgpO\":[\"Raccourcis clavier\"],\"hTXYdY\":[\"Échec de la création de la sauvegarde\"],\"hXYY5Q\":[\"Tout démarqué de \",[\"0\"]],\"he3ygx\":[\"Copier\"],\"hjGupC\":[\"Connexion à l'importation perdue. Vérifiez l'état dans les paramètres.\"],\"hlqjFc\":[\"Dans la bibliothèque\"],\"hou0tP\":[\"Streaming\"],\"hty0d5\":[\"Lundi\"],\"i0qMbr\":[\"Accueil\"],\"i9rcQ/\":[\"Films\"],\"iGma9e\":[\"Mise à jour échouée\"],\"iSLIjg\":[\"Connecter\"],\"iWv3ck\":[\"Échec du rattrapage\"],\"iXZ09g\":[\"Marquer comme terminé\"],\"id08cd\":[\"Visionné S\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"ih87w/\":[\"Ajouter à la bibliothèque\"],\"ihn4zD\":[\"Rechercher…\"],\"itDEco\":[\"Vous avez déjà un compte ? Se connecter\"],\"itheEn\":[\"Avec publicités\"],\"iwCRIF\":[\"Vous serez déconnecté pour modifier l'URL du serveur.\"],\"j5GBIy\":[\"Ouvrez Radarr, allez dans Settings > Import Lists\"],\"jAe8l4\":[[\"0\"],\" sauvegardes · dernière <0/>\"],\"jB3sfe\":[\"Sauvegarde manuelle\"],\"jFnMJ8\":[\"Double appui pour supprimer ce filtre\"],\"jQsPwL\":[\"Sauvegardes planifiées désactivées\"],\"jSjGeu\":[[\"0\"],\" éléments n'ont pas d'identifiants externes et seront résolus par recherche de titre, ce qui peut être moins précis.\"],\"jX6Gzg\":[\"Cela remplacera toute votre base de données par le fichier téléchargé. Une sauvegarde de sécurité de vos données actuelles sera créée au préalable. Les sessions actives devront peut-être être actualisées après la restauration.\"],\"jiHVUy\":[\"Sauvegarde pré-restauration\"],\"k6c41p\":[\"Tâches en arrière-plan\"],\"kBDOjB\":[\"Planning de sauvegarde\"],\"kkDQ8m\":[\"Jeudi\"],\"klOeIX\":[\"Échec du changement de mot de passe\"],\"ks3XeZ\":[\"Ouvrez Sonarr, allez dans Settings > Import Lists\"],\"kvuCtu\":[\"Une erreur s'est produite lors du chargement de ce titre. Veuillez réessayer.\"],\"kx0s+n\":[\"Résultats\"],\"l2wcoS\":[\"Dernière exécution réussie\"],\"l3s5ri\":[\"Importation\"],\"lCF0wC\":[\"Actualiser\"],\"lJ1yo4\":[\"Échec de la connexion\"],\"lVqzRx\":[\"Cliquez sur <0>Add Webhook et collez l'URL ci-dessus\"],\"lXkUEV\":[\"Disponibilité\"],\"lcLe89\":[\"Rechercher des films, séries ou exécuter des commandes\"],\"lfVyvz\":[\"Ajouter à la liste de suivi\"],\"llDXYJ\":[\"Sauvegardes\"],\"llkZR0\":[\"Impossible de charger les intégrations\"],\"ln9/n9\":[\"Pas encore de compte ?\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"lqY3WY\":[\"Changer de serveur\"],\"luoodD\":[\"Configuration requise\"],\"m5WhJy\":[\"Vérifications automatiques des mises à jour\"],\"mIx58S\":[\"Purger les images\"],\"mYBORk\":[\"Film\"],\"ml9cU0\":[\"Échec de la régénération de l'URL \",[\"label\"]],\"mqwkjd\":[\"État de santé\"],\"mqxHH7\":[\"Aller à Explorer\"],\"mzI/c+\":[\"Télécharger\"],\"n1ekoW\":[\"Se connecter\"],\"n3Pzd7\":[\"Sauvegarde créée\"],\"nBHvPL\":[\"Annuler la modification\"],\"nJw77c\":[[\"0\",\"plural\",{\"one\":[\"#\",\" image\"],\"other\":[\"#\",\" images\"]}]],\"nO0Qnj\":[\"Votre code :\"],\"nRP1xx\":[\"Besoin d'aide ?\"],\"nV1LjT\":[\"Activez le type de notification <0>Playback Stop\"],\"nVsE67\":[\"Marquer comme en cours\"],\"nZ7lF1\":[\"Le code d'appareil a expiré. Veuillez réessayer.\"],\"nbfdhU\":[\"Intégrations\"],\"nbmpf9\":[\"Purger les métadonnées\"],\"nnKJTm\":[\"Échec du marquage de tous les épisodes comme visionnés\"],\"nszbQG\":[\"Aucune sauvegarde\"],\"nuh/Wq\":[\"URL de webhook\"],\"nwtY4N\":[\"Une erreur s'est produite\"],\"oAIA3w\":[\"Rechercher des films, séries ou personnes\"],\"oC8IMh\":[\"Rechercher des films, séries, personnes...\"],\"oNvZcA\":[\"Épisodes cette semaine\"],\"oXq+Wr\":[[\"label\"],\" connecté\"],\"ogtYkT\":[\"Mot de passe mis à jour\"],\"ojtedN\":[\"Ouvrez Radarr, allez dans <0>Settings > Import Lists\"],\"olMi35\":[\"Recommandé pour vous\"],\"p+PZEl\":[\"Voici ce qui se passe dans votre bibliothèque\"],\"pAtylB\":[\"Introuvable\"],\"pG9pq1\":[[\"0\",\"plural\",{\"one\":[\"#\",\" fichier supprimé\"],\"other\":[\"#\",\" fichiers supprimés\"]}],\", \",[\"freed\"],\" libéré\"],\"pWWFjv\":[\"Vérifié <0/>\"],\"ph76H6\":[\"Autoriser les nouveaux utilisateurs à créer un compte\"],\"pjgw0N\":[\"Choisissez comment importer vos données \",[\"0\"],\".\"],\"puo3W3\":[\"Redirection…\"],\"q3GraM\":[\"...et \",[\"0\"],\" de plus\"],\"q6nrFE\":[\"décédé à \",[\"age\"],\" ans\"],\"q6pUQ9\":[\"Téléchargez un fichier .db pour remplacer la base de données actuelle. Une sauvegarde de sécurité est créée au préalable.\"],\"q8yluz\":[\"Votre nom\"],\"qA6VR5\":[\"Nécessite <0>Emby Server 4.7.9+ et une licence <1>Emby Premiere<2/> active.\"],\"qF2IBM\":[\"Films ce mois-ci\"],\"qHbApt\":[\"Échec du chargement des paramètres de planning de sauvegarde.\"],\"qLB1zX\":[\"Téléchargez un export \",[\"0\"],\" depuis les paramètres de votre compte \",[\"1\"],\".\"],\"qPNzfu\":[\"Vérifications des mises à jour désactivées\"],\"qWoML/\":[\"Ajoutez un nouveau webhook et collez l'URL ci-dessus\"],\"qiOIiY\":[\"Acheter\"],\"qn1X6N\":[\"Échec de la mise à jour du paramètre d'inscription\"],\"qqWcBV\":[\"Terminé\"],\"qqeAJM\":[\"Jamais\"],\"r9aDAY\":[[\"count\"],\" \",[\"count\",\"plural\",{\"one\":[\"épisode précédent non visionné\"],\"other\":[\"épisodes précédents non visionnés\"]}]],\"rLgPvm\":[\"Sauvegarde\"],\"rSTpb5\":[\"État du serveur\"],\"rdymVD\":[\"Déclencher la tâche\"],\"rtir7c\":[\"inconnu\"],\"s0U4ZZ\":[\"Épisodes de séries\"],\"s4vVUm\":[\"Impossible de charger les détails de la personne\"],\"s9dVME\":[\"Échec du démarquage de l'épisode\"],\"sGH11W\":[\"Serveur\"],\"sl/qWH\":[\"Télécharger une photo de profil\"],\"sstysK\":[\"Échec du marquage de l'épisode\"],\"stZeiF\":[[\"watched\"],\"/\",[\"total\"],\" épisodes\"],\"t/Ch8S\":[\"Marqué comme en cours\"],\"t/YqKh\":[\"Supprimer\"],\"tfDRzk\":[\"Enregistrer\"],\"tiymc0\":[\"Une erreur s'est produite…\"],\"u9ugU7\":[[\"watchedCount\"],\"/\",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"épisode\"],\"other\":[\"épisodes\"]}]],\"uBAxNB\":[\"Monteur\"],\"uBrbSu\":[\"Échec du démarrage de la connexion \",[\"0\"]],\"uM6jnS\":[\"Restauration échouée\"],\"uMrJrX\":[\"Admins uniquement\"],\"uswLvZ\":[\"Le titre que vous recherchez n'existe pas ou a peut-être été supprimé de la base de données.\"],\"uxOntd\":[[\"watchedCount\"],\" sur \",[\"0\"],\" épisodes regardés\"],\"v2CA3w\":[\"Changer la photo\"],\"v5ipVu\":[\"Marquer tous les épisodes comme visionnés ?\"],\"vKfeax\":[\"Ouvrez Emby, allez dans Settings > Webhooks\"],\"vXIe7J\":[\"Langue\"],\"vuCCZ7\":[\"Échec de l'analyse des données d'importation\"],\"vwKERN\":[\"Échec de la suppression de la sauvegarde\"],\"w8pqsh\":[\"Tout marquer comme visionné\"],\"wA7B2T\":[\"Les nouvelles inscriptions sont fermées. Contactez l'administrateur si vous avez besoin d'un accès.\"],\"wGFX13\":[\"À partir de\"],\"wR1UAy\":[\"Films populaires\"],\"wRWcdL\":[\"Lire la bande-annonce\"],\"wThGrS\":[\"Paramètres de l'application\"],\"wZK4Xg\":[\"Jamais exécuté\"],\"wdLxgL\":[\"Membre depuis \",[\"memberSince\"]],\"wja8aL\":[\"Sans titre\"],\"wtGebH\":[\"La personne que vous recherchez n'existe pas ou a peut-être été supprimée de la base de données.\"],\"wtsbt5\":[\"Ajouter à la liste de suivi\"],\"wtuVU4\":[\"Fréquence\"],\"wx7pwA\":[\"Marquer comme visionné\"],\"x4ZiTl\":[\"Instructions de configuration\"],\"xCJdfg\":[\"Effacer\"],\"xGVfLh\":[\"Continuer\"],\"xLoCm2\":[\"Vérifier la configuration\"],\"xSrU2g\":[[\"healthyCount\"],\" sur \",[\"0\"],\" tâches en bonne santé\"],\"xazqmy\":[\"Saisons\"],\"xbBXhy\":[\"Vérifier périodiquement GitHub pour les nouvelles versions de Sofa\"],\"xrh2/M\":[\"Échec du marquage comme visionné\"],\"y3e9pF\":[\"Supprimer la sauvegarde ?\"],\"y6Urel\":[\"Épisode suivant\"],\"yGvjAo\":[\"Mise à jour disponible : \",[\"0\"]],\"yKu/3Y\":[\"Restaurer\"],\"yYxB17\":[\"Tout effacer\"],\"ybtG1U\":[[\"0\"],\" backup\",[\"1\"],\" stored\"],\"yey/zg\":[\"Base de données restaurée. Rechargement...\"],\"ygo0l/\":[\"Commencer à suivre des films et séries\"],\"yvwIbI\":[\"Télécharger le fichier d'exportation\"],\"yz7wBu\":[\"Fermer\"],\"z1U/Fh\":[\"Note\"],\"z5evln\":[\"Pas de connexion Internet\"],\"zAvS8w\":[\"Connectez-vous pour continuer\"],\"zEqK2w\":[\"La page que vous recherchez n'existe pas.\"],\"zFkiTv\":[\"Installez le plugin Webhook depuis le catalogue de plugins de Jellyfin\"],\"zNyR4f\":[\"Définissez votre profil de qualité et dossier racine préférés\"],\"za8Le/\":[\"Inscriptions fermées\"],\"zb77GC\":[\"Louer\"],\"ztAdhw\":[\"Nom mis à jour\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"+5kO8P\":[\"Samedi\"],\"+6i0lS\":[\"Récupération de votre historique, liste de suivi et notes...\"],\"+Cv+V9\":[\"Supprimer de la bibliothèque\"],\"+JkEpu\":[\"Cette page est restée sur le plancher de la salle de montage. Elle a peut-être été déplacée, supprimée, ou n'a jamais dépassé le stade du scénario.\"],\"+K0AvT\":[\"Déconnecter\"],\"+N0l5/\":[\"Connecté à <0>\",[\"serverHost\"],\". Appuyez pour modifier.\"],\"+gLHYi\":[\"Échec du chargement du titre\"],\"+j1ex/\":[\"Échec de la suppression de la bibliothèque\"],\"+nF1ZO\":[\"Supprimer la photo\"],\"/+6dvC\":[\"Erreurs (\",[\"0\"],\")\"],\"/BBXeA\":[\"Connexion au serveur...\"],\"/DwR+n\":[\"Création…\"],\"/XtbPO\":[[\"0\"],\" titles\"],\"/cg+QV\":[\"Tout marquer comme visionné\"],\"/gQXGv\":[\"Échec de la mise à jour du statut\"],\"/nT6AE\":[\"Nouveau mot de passe\"],\"/sHc1/\":[\"Vérification des mises à jour\"],\"0+dyau\":[\"Échec de la mise à jour du paramètre de rétention\"],\"0BFJKK\":[\"L'autorisation a été refusée. Veuillez réessayer.\"],\"0GHb20\":[\"Purger le cache de métadonnées ?\"],\"0IBW21\":[\"Échec de la purge des caches\"],\"0gH/sc\":[\"Supprimer la photo de profil\"],\"1+P9RR\":[\"Passer à \",[\"0\"]],\"12cc1j\":[\"En cours\"],\"12lVOl\":[\"Suivi de films et séries auto-hébergé\"],\"1B4z0M\":[\"Filmographie\"],\"1J4Ek0\":[\"Sauvegardez automatiquement votre base de données selon un planning\"],\"1JhxXW\":[\"Épisode \",[\"0\"],\", \",[\"episodeLabel\"]],\"1N6wNP\":[\"Options d'importation\"],\"1Qz4uG\":[\"Activez la catégorie d'événement « Playback »\"],\"1hMWR6\":[\"Créer un compte\"],\"1jHIjh\":[\"Tout visionné de \",[\"seasonName\"]],\"1vSYsG\":[\"Télécharger la sauvegarde\"],\"1wL1tj\":[\"Série TV\"],\"2FletP\":[[\"0\",\"plural\",{\"one\":[\"#\",\" titre\"],\"other\":[\"#\",\" titres\"]}],\", \",[\"1\",\"plural\",{\"one\":[\"#\",\" personne\"],\"other\":[\"#\",\" personnes\"]}],\", \",[\"2\",\"plural\",{\"one\":[\"#\",\" fichier\"],\"other\":[\"#\",\" fichiers\"]}],\" purgés (\",[\"freed\"],\" libéré)\"],\"2Fsd9r\":[\"Ce mois-ci\"],\"2MPcep\":[\"Importation terminée\"],\"2Mu33Z\":[\"Gestion du cache\"],\"2POOFK\":[\"Gratuit\"],\"2Pt2NY\":[\"Cela supprimera tous les éléments de votre historique.\"],\"2fCpt5\":[\"Retour à l'accueil\"],\"2pPBp6\":[\"Tendance aujourd'hui\"],\"39neVN\":[\"Movies \",[\"0\"]],\"39y5bn\":[\"Vendredi\"],\"3Blefz\":[\"Notes\"],\"3JTlG8\":[\"Recherches récentes\"],\"3Jy8bM\":[\"Films \",[\"select\"]],\"3L9OuQ\":[\"Épisode \",[\"0\"]],\"3T/4MV\":[\"this year\"],\"3T8ziB\":[\"Créer un compte\"],\"3hELxX\":[\"Entrez l'URL de votre serveur Sofa pour commencer\"],\"4fxLkp\":[\"Ouvrez Sonarr, allez dans <0>Settings > Import Lists\"],\"4kpBqM\":[\"Dernier événement \",[\"0\"]],\"4uUjVO\":[\"Producteur\"],\"4x+A56\":[\"Rapports d'utilisation anonymes\"],\"5IShvp\":[\"Importer \",[\"totalItems\"],\" éléments\"],\"5IYJSv\":[\"Explorer les titres\"],\"5Y4mym\":[\"Importer depuis \",[\"0\"]],\"5ZzgbQ\":[\"Connecter \",[\"0\"]],\"5fEnbK\":[\"Échec de la mise à jour du paramètre de sauvegarde planifiée\"],\"5lWFkC\":[\"Se connecter\"],\"5v9C16\":[\"Connecté à \",[\"source\"]],\"623bR4\":[\"Échec du déclenchement de la tâche\"],\"6HN0yh\":[\"Ouvrez Plex, allez dans Settings > Webhooks\"],\"6TNjOJ\":[\"Échec de la mise à jour de la note\"],\"6TfUy6\":[[\"value\"],\" dernières\"],\"6V3Ea3\":[\"Copié\"],\"6YtxFj\":[\"Nom\"],\"6exX+8\":[\"Régénérer\"],\"6gRgw8\":[\"Réessayer\"],\"6lGV3K\":[\"Afficher moins\"],\"76++pR\":[\"Avertissements\"],\"77DIAu\":[\"Aller dans Dashboard > Plugins > Webhook\"],\"79m/GK\":[\"Episodes \",[\"0\"]],\"7Bj3x9\":[\"Échoué\"],\"7D50KC\":[[\"label\"],\" déconnecté\"],\"7GfM5w\":[\"Récemment consultés\"],\"7L01XJ\":[\"Actions\"],\"7eMo+U\":[\"Accueil\"],\"7p5kLi\":[\"Tableau de bord\"],\"85eoJ1\":[\"Planning mis à jour\"],\"8B9E2D\":[\"Jour :\"],\"8YwF1J\":[\"Aller dans <0>Dashboard > Plugins > Webhook\"],\"8ZsakT\":[\"Mot de passe\"],\"8tjQCz\":[\"Explorer\"],\"8vNtLy\":[\"Collez l'URL Radarr ci-dessus dans le champ List URL\"],\"8wYDMp\":[\"Vous avez déjà un compte ?\"],\"9AE3vb\":[\"Ouvrez Plex, allez dans <0>Settings > Webhooks<1/>\"],\"9GW0ZB\":[\"L'importation est toujours en cours en arrière-plan. Revenez plus tard.\"],\"9NyAH9\":[\"Ignoré\"],\"9Xhrps\":[\"Échec de la connexion\"],\"9ZLGbA\":[\"backups.\"],\"9eF5oV\":[\"Bon retour\"],\"9rG25a\":[\"URL du serveur\"],\"A+0rLe\":[\"Marqué comme terminé\"],\"A1taO8\":[\"Search\"],\"AOHgZp\":[\"Épisodes\"],\"AOddWK\":[\"Connecter \",[\"label\"]],\"ATfxL/\":[\"Bande-annonce\"],\"AVlZoM\":[\"Environnement\"],\"Acf6vF\":[\"Enregistrer le nom\"],\"AdoUfN\":[\"Échec de l'ajout à la liste de suivi\"],\"AeXO77\":[\"Compte\"],\"AjtYj0\":[\"Dans la liste de suivi\"],\"Avee+B\":[\"Échec de la mise à jour du nom\"],\"B2R3xD\":[\"Activer/désactiver les sauvegardes planifiées\"],\"BEVzjL\":[\"Importation échouée\"],\"BQnS5I\":[\"Ouvrir \",[\"source\"],\" pour saisir le code\"],\"BUnoSB\":[[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"sauvegarde stockée\"],\"other\":[\"sauvegardes stockées\"]}]],\"BpttUI\":[\"Tendances du jour\"],\"BrrIs8\":[\"Stockage\"],\"BskWMl\":[\"Inaccessible\"],\"BzEFor\":[\"ou\"],\"CGDHFb\":[\"Ajoutez une <0>Generic Destination et collez l'URL ci-dessus\"],\"CGExDN\":[\"Échec de la purge du cache d'images\"],\"CHeXFE\":[\"Statut mis à jour\"],\"CKyk7Q\":[\"Retour\"],\"CaB/+I\":[\"Bon retour, \",[\"name\"]],\"CodnUh\":[\"Supprimé de la bibliothèque\"],\"CpzGJY\":[\"Cela peut prendre quelques minutes pour les grandes bibliothèques. Ne fermez pas cet onglet.\"],\"CuPxpd\":[\"Nécessite un abonnement <0>Plex Pass<1/> actif.\"],\"CzBN6D\":[\"Commencer à explorer\"],\"D+R2Xs\":[\"Démarrage de l'importation...\"],\"D3C4Yx\":[\"Le mot de passe actuel est requis\"],\"DBC3t5\":[\"Dimanche\"],\"DI4lqs\":[\"Personne introuvable\"],\"DKBbJf\":[\"« \",[\"titleName\"],\" » ajouté à la liste de suivi\"],\"DPfwMq\":[\"Terminé\"],\"DZse/o\":[\"Ajoutez une « Generic Destination » et collez l'URL ci-dessus\"],\"E/QGRL\":[\"Désactivé\"],\"E6nRW7\":[\"Copier l'URL\"],\"EWQlBH\":[\"Votre bibliothèque est vide\"],\"EWaCfj\":[\"Entrez votre mot de passe actuel et choisissez-en un nouveau.\"],\"Eeo/Gy\":[\"Échec de la mise à jour du paramètre\"],\"Efn6WU\":[\"Cela supprimera tous les titres ébauches non enrichis et toutes les images en cache du disque. Tout sera réimporté et re-téléchargé selon les besoins.\"],\"Etp5if\":[\"Importation depuis \",[\"source\"],\" terminée.\"],\"F006BN\":[\"Importer depuis \",[\"source\"]],\"FNvDMc\":[\"Cette semaine\"],\"FWSp+7\":[\"Entrez le code ci-dessous sur le site de \",[\"source\"],\" pour autoriser Sofa.\"],\"FXN0ro\":[\"Recommandations\"],\"FaU7Ag\":[\"Activez le type de notification « Playback Stop »\"],\"FhvLDl\":[[\"watchedCount\"],\"/\",[\"0\"],\" episodes\"],\"Fo2bwm\":[\"Acteur\"],\"FwRqjE\":[\"Utilisation du disque : cache d'images et sauvegardes\"],\"G00fgM\":[[\"n\"],\" dernières\"],\"G3myU+\":[\"Mardi\"],\"GcCthe\":[\"Dans la bibliothèque\"],\"Gf39AA\":[[\"0\"],\" déclenché\"],\"GnhfWw\":[\"Activer/désactiver les vérifications automatiques de mises à jour\"],\"GptGxg\":[\"Changer le mot de passe\"],\"GqTZ+S\":[\"Noté \",[\"ratingStars\"],\" \",[\"ratingStars\",\"plural\",{\"one\":[\"étoile\"],\"other\":[\"étoiles\"]}]],\"GrdN/F\":[\"Rattrapé — \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"épisode marqué comme visionné\"],\"other\":[\"épisodes marqués comme visionnés\"]}]],\"H4B5LG\":[\"Ce produit utilise l'API TMDB mais n'est pas approuvé ni certifié par TMDB.\"],\"HBRd5n\":[\"Saison \",[\"0\"]],\"HD+aQ7\":[\"Sauvegardes de la base de données\"],\"HG+31u\":[\"Purger tous les caches ?\"],\"Haz+72\":[\"Cela supprimera toutes les images TMDB en cache du disque. Les images seront re-téléchargées automatiquement selon les besoins.\"],\"HbReP5\":[\"« \",[\"titleName\"],\" » marqué comme terminé\"],\"Hg6o8v\":[\"Actualiser l'état du système\"],\"HmEjnC\":[\"Dernier événement \",[\"timeAgo\"]],\"HvDfH/\":[\"Importé\"],\"I89uD4\":[\"Restauration…\"],\"IRoxQm\":[\"Inscriptions fermées\"],\"IS0nrP\":[\"Créer un compte\"],\"IY9rQ0\":[\"Libérez de l'espace disque en vidant les métadonnées et images en cache\"],\"IrC12v\":[\"Application\"],\"J28zul\":[\"Connexion...\"],\"J64cFL\":[\"Actualisation de la bibliothèque\"],\"JKmmmN\":[\"Ajouté à la liste de suivi\"],\"JN0f/Y\":[\"Se connecter à TMDB\"],\"JR6aH2\":[\"Movies \",[\"periodSelect\"]],\"JRQitQ\":[\"Confirmer le nouveau mot de passe\"],\"JRadFJ\":[\"Commencez à suivre vos visionnages\"],\"JSwq8t\":[\"La création de nouveaux comptes est actuellement désactivée.\"],\"JY5Oyv\":[\"Base de données\"],\"JjsJnI\":[[\"0\"],\"/\",[\"1\"],\" episodes\"],\"JrFTcr\":[\"Connexion…\"],\"JwFbe8\":[\"Série\"],\"KDw4GX\":[\"Réessayer\"],\"KG6681\":[\"Épisode visionné\"],\"KIS/Sd\":[\"Se déconnecter des autres sessions\"],\"KK0ghs\":[\"Cache d'images\"],\"KVAoFR\":[\"illimité\"],\"KcXJuc\":[\"Purge...\"],\"KhtG3o\":[\"Mettre à jour le mot de passe\"],\"Khux7w\":[[\"0\",\"plural\",{\"one\":[\"#\",\" titre\"],\"other\":[\"#\",\" titres\"]}]],\"KmWyx0\":[\"Tâche\"],\"KoF0x6\":[\"âge \",[\"age\"]],\"Ksiej9\":[\"Nécessite un abonnement Plex Pass actif.\"],\"Kx9NEt\":[\"Jeton invalide\"],\"Lk6Jb/\":[\"Dernière interrogation \",[\"timeAgo\"]],\"LmEEic\":[\"En attente d'autorisation...\"],\"LqKH42\":[\"Se connecter avec \",[\"0\"]],\"Lrpjji\":[\"Déconnecter \",[\"label\"]],\"Lu6Udx\":[\"Cliquez sur « + » et sélectionnez « Custom Lists »\"],\"MDoX++\":[\"URL de liste Sonarr\"],\"MRBlCJ\":[\"Échec du démarquage de certains épisodes\"],\"MUO7w9\":[\"« \",[\"titleName\"],\" » marqué comme visionné\"],\"MZbQHL\":[\"Aucun résultat trouvé.\"],\"MdxR1u\":[\"Choose your preferred display language\"],\"MkyzAV\":[\"Autorisez Sofa à lire votre bibliothèque \",[\"0\"],\". Aucun mot de passe partagé.\"],\"N40H+G\":[\"Tout\"],\"N6SFhC\":[\"Se connecter\"],\"N7h106\":[\"Sofa v\",[\"0\"],\" est disponible\"],\"N9RF2M\":[\"Cliquez sur « Add Webhook » et collez l'URL ci-dessus\"],\"NBo4z0\":[\"Cliquez sur <0>+ et sélectionnez <1>Custom Lists\"],\"NICUmW\":[\"Réalisateur\"],\"NQzPoO\":[\"Nouvelle sauvegarde\"],\"NSxl1l\":[\"Plus de paramètres\"],\"NVF43p\":[\"Heure :\"],\"NdPMwS\":[\"Dans votre bibliothèque\"],\"NgaPSG\":[\"Échec de la mise à jour du planning\"],\"O3oNi5\":[\"E-mail\"],\"OBcj5W\":[\"Cela invalidera l'URL \",[\"label\"],\" actuelle. Vous devrez la mettre à jour dans \",[\"label\"],\".\"],\"OL8hbM\":[\"Le nouveau mot de passe doit comporter au moins 8 caractères\"],\"ONWvwQ\":[\"Télécharger\"],\"OPFjyX\":[\"Installez le <0>plugin Webhook<1/> depuis le catalogue de plugins de Jellyfin\"],\"OW/+RD\":[\"Historique de visionnage\"],\"OZdaTZ\":[\"Personne\"],\"OvO76u\":[\"Retour à la connexion\"],\"OvdFIZ\":[\"Saison visionnée\"],\"P2FLLe\":[\"Voir la version\"],\"PBdLfg\":[\"Aucun titre trouvé pour ce genre.\"],\"PQ3qDa\":[\"Récupération de vos données depuis \",[\"source\"],\"...\"],\"PjNoxI\":[\"Sauvegarde planifiée\"],\"Pn2B7/\":[\"Mot de passe actuel\"],\"PnEbL/\":[\"Noté \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"étoile\"],\"other\":[\"étoiles\"]}]],\"Pwqkdw\":[\"Chargement…\"],\"Py87xY\":[\"L'autorisation a réussi mais la récupération de votre bibliothèque a échoué. Veuillez réessayer.\"],\"Q3MPWA\":[\"Mettre à jour le mot de passe\"],\"QHcLEN\":[\"Connecté\"],\"QK4UIx\":[\"Marquer comme visionné\"],\"Qjlym2\":[\"Échec de la création du compte\"],\"Qm1NmK\":[\"OU\"],\"Qoq+GP\":[\"Lire la suite\"],\"QphVZW\":[\"Impossible de joindre le serveur\"],\"QqLJHH\":[\"Cette année\"],\"R0yu2l\":[\"Rattraper\"],\"R4YBui\":[\"Recherchez des films et séries pour commencer à les suivre\"],\"RH46vw\":[[\"0\"],\"/\",[\"1\"],\" \",[\"2\",\"plural\",{\"one\":[\"épisode\"],\"other\":[\"épisodes\"]}]],\"RIR15/\":[\"URL de liste Radarr\"],\"RLe7Vk\":[\"Vérification…\"],\"ROq8cl\":[\"Échec de l'analyse du fichier\"],\"RQq8Si\":[\"Inscriptions ouvertes\"],\"S0soqb\":[\"Échec de la suppression de la photo de profil\"],\"S1McZh\":[\"Échec du téléchargement de l'avatar\"],\"S2ble5\":[[\"0\"],\" films, \",[\"1\"],\" épisodes\"],\"S2qPRR\":[\"Rechercher des films et séries…\"],\"SDND4q\":[\"Non configuré\"],\"SFdAk9\":[\"Démarqué S\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"SUIUkB\":[\"Tout démarquer\"],\"SbS+Bm\":[\"Régénérer l'URL\"],\"SlfejT\":[\"Erreur\"],\"Sp86ju\":[[\"0\"],\" ép\",[\"1\"]],\"SrfROI\":[\"Suivant\"],\"SyPRjk\":[\"Sofa enregistrera automatiquement les films et épisodes lorsque vous aurez fini de les regarder\"],\"T0/7WG\":[\"Prochaine sauvegarde \",[\"distance\"]],\"TEaX6q\":[\"Sauvegarde supprimée\"],\"TI7IKo\":[\"Rated \",[\"0\"],\" star\",[\"1\"]],\"TMb7iE\":[\"Photo de profil supprimée\"],\"TqyQQS\":[\"Activez la catégorie d'événement <0>Playback\"],\"Tz0i8g\":[\"Paramètres\"],\"U+FxtW\":[\"Suivez ce que vous regardez. Sachez ce qui vient ensuite.<0/>Votre bibliothèque, vos données, vos règles.\"],\"U3pytU\":[\"Admin\"],\"UC+OWB\":[\"Activer/désactiver l'inscription ouverte\"],\"UDMjsP\":[\"Actions rapides\"],\"UmQ6Fe\":[\"Purger le cache d'images ?\"],\"UtDm3q\":[\"URL copiée dans le presse-papiers\"],\"V1Kh9Z\":[\"Épisodes \",[\"select\"]],\"V6uzvC\":[\"Dans le même genre\"],\"V9CuQ+\":[\"Se connecter à \",[\"source\"]],\"VAcXNz\":[\"Mercredi\"],\"VKyhZK\":[\"Titre introuvable\"],\"VQvpro\":[\"Collez l'URL Sonarr ci-dessus dans le champ List URL\"],\"VhMDMg\":[\"Changer le mot de passe\"],\"Vx0ayx\":[\"Échec du marquage de certains épisodes\"],\"WDC4PF\":[\"Episodes \",[\"periodSelect\"]],\"WEYdDv\":[\"Recommandé\"],\"WMCwmR\":[\"Rechercher des mises à jour\"],\"WP48q2\":[\"Cache d'images\"],\"WT1Ibn\":[\"Dernière exécution\"],\"Wb3E4g\":[\"Exécuter maintenant\"],\"WgF2UQ\":[\"Vous utilisez la v\",[\"0\"],\".\"],\"WtWhSi\":[\"Note supprimée\"],\"Wy/3II\":[\"Dernière interrogation \",[\"0\"]],\"X0OwOB\":[\"today\"],\"XFCSYs\":[\"Distribution\"],\"XN23JY\":[\"Cela supprimera les titres ébauches non enrichis qui ne sont dans aucune bibliothèque et nettoiera les enregistrements de personnes orphelines. Les titres supprimés seront réimportés s'ils sont consultés à nouveau.\"],\"XZwihE\":[\"Prêt — rien reçu pour l'instant\"],\"XjTduw\":[\"Télécharger une photo\"],\"YEGzVq\":[\"Échec de la connexion à \",[\"label\"]],\"YErf89\":[\"Échec de la purge du cache de métadonnées\"],\"YQ768h\":[\"Scène introuvable\"],\"YiRsXK\":[\"Effacer les éléments récemment consultés ?\"],\"Yjp1zf\":[\"Pas de serveur ?\"],\"YqMfa9\":[\"Vérifiez ce qui a été trouvé et choisissez ce que vous souhaitez importer.\"],\"ZGUYm0\":[\"Prêt — pas encore interrogé\"],\"ZQKLI1\":[\"Zone de danger\"],\"ZVZUoU\":[[\"0\"],\" images en cache\"],\"ZWTQ81\":[\"Regarder sur \",[\"name\"]],\"a3LDKx\":[\"Sécurité\"],\"aLBUiR\":[\"Conservation de <0><1><2>\",[\"0\"],\"<3>\",[\"1\"],\" sauvegardes.\"],\"aM0+kY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" titre obsolète purgé\"],\"other\":[\"#\",\" titres obsolètes purgés\"]}],\" et \",[\"1\",\"plural\",{\"one\":[\"#\",\" personne orpheline\"],\"other\":[\"#\",\" personnes orphelines\"]}]],\"aO1AxG\":[\"Épisode non visionné\"],\"aV/hDI\":[\"Échec de la déconnexion de \",[\"label\"]],\"acbSg0\":[\"Double appui pour filtrer par \",[\"label\"]],\"agE7k4\":[\"Noté \",[\"stars\",\"plural\",{\"one\":[\"#\",\" étoile\"],\"other\":[\"#\",\" étoiles\"]}]],\"alPRaV\":[\"Les titres de votre liste de suivi Sofa seront automatiquement ajoutés au téléchargement lorsque Radarr interroge cette liste (toutes les 12 heures par défaut)\"],\"aourBv\":[\"Sauvegardes planifiées activées\"],\"apLLSU\":[\"Voulez-vous vraiment vous déconnecter ?\"],\"atc9MA\":[\"Ouvrez Emby, allez dans <0>Settings > Webhooks\"],\"auVUJO\":[\"Restaurer la base de données ?\"],\"ayqfr4\":[\"URL \",[\"label\"],\" régénérée\"],\"b/8KCH\":[\"Cela marquera tous les épisodes de cette série comme visionnés. Vous pourrez annuler cela en démarquant des saisons individuelles.\"],\"b0F4W5\":[\"this month\"],\"b3Thhd\":[\"Téléchargement échoué\"],\"b5DFtH\":[\"Définir un mot de passe\"],\"bHYIks\":[\"Se déconnecter\"],\"bITrbE\":[\"Tout purger\"],\"bNmdjU\":[\"Liste de suivi\"],\"bTRwag\":[\"Supprimer de la bibliothèque\"],\"bXMotV\":[\"Marqué comme visionné\"],\"bezGJ2\":[[\"0\"],\" images\"],\"boJlGf\":[\"Page introuvable\"],\"c1ssjI\":[\"Importation depuis \",[\"source\"]],\"c3b0B0\":[\"Commencer\"],\"c4b9Dm\":[\"Aucun résultat pour « \",[\"debouncedQuery\"],\" »\"],\"cQPKZt\":[\"Aller au tableau de bord\"],\"ccAJSB\":[\"Keeping\"],\"cgvva8\":[[\"0\"],\" notes\"],\"cnGeoo\":[\"Supprimer\"],\"cpE88+\":[\"Créez votre compte\"],\"d/6MoL\":[\"Gérez votre compte et vos préférences\"],\"dA7BWh\":[\"Nécessite Emby Server 4.7.9+ et une licence Emby Premiere active.\"],\"dEgA5A\":[\"Annuler\"],\"dTZwve\":[\"Tous les épisodes marqués comme visionnés\"],\"dUCJry\":[\"Les plus récents\"],\"ddwpAr\":[\"Avertissements (\",[\"0\"],\")\"],\"e/ToF5\":[\"Se connecter avec \",[\"0\"]],\"e9sZMS\":[\"Cela supprimera définitivement la sauvegarde du <0>\",[\"0\"],\". Cette action est irréversible.\"],\"eFRooE\":[\"Dernière exécution échouée\"],\"eM39Om\":[\"Tout visionné de \",[\"seasonLabel\"]],\"eZjYb8\":[\"Scénariste\"],\"ecUA8p\":[\"Aujourd'hui\"],\"evBxZy\":[\"Où regarder\"],\"ezDa1h\":[\"Ouvrir la documentation\"],\"f+m696\":[\"Une erreur inattendue s'est produite lors du chargement de cette page. Vous pouvez réessayer ou retourner au tableau de bord.\"],\"f/AKdU\":[\"Voulez-vous vraiment déconnecter \",[\"label\"],\" ? L'URL actuelle cessera de fonctionner.\"],\"f7ax8J\":[\"Ouvrir dans le navigateur…\"],\"fMPkxb\":[\"Afficher plus\"],\"fNMqNn\":[\"Séries populaires\"],\"fObVvy\":[\"Photo de profil mise à jour\"],\"fRettQ\":[[\"0\"],\" éléments\"],\"fUDRF9\":[\"Dans la liste de suivi\"],\"fcWrnU\":[\"Se déconnecter\"],\"fgLNSM\":[\"S'inscrire\"],\"fsAEqk\":[\"Continuer à regarder\"],\"fzAeQI\":[\"Inscription sur \",[\"serverHost\"]],\"g+gBfk\":[\"Analyse...\"],\"g4JYff\":[[\"0\"],\" éléments importés depuis \",[\"1\"]],\"gKtb5i\":[\"Les titres de votre liste de suivi Sofa seront automatiquement ajoutés au téléchargement lorsque Sonarr interroge cette liste (toutes les 6 heures par défaut)\"],\"gaIAMq\":[\"Supprimer la photo\"],\"gbEEMp\":[\"Supprimer la sauvegarde\"],\"gcNLi0\":[\"Vérifications des mises à jour activées\"],\"gmB6oO\":[\"Planning\"],\"h/T5Yb\":[\"Inscription ouverte\"],\"h4yKYk\":[\"Prochaine exécution\"],\"h7MgpO\":[\"Raccourcis clavier\"],\"hTXYdY\":[\"Échec de la création de la sauvegarde\"],\"hXYY5Q\":[\"Tout démarqué de \",[\"0\"]],\"he3ygx\":[\"Copier\"],\"hjGupC\":[\"Connexion à l'importation perdue. Vérifiez l'état dans les paramètres.\"],\"hlqjFc\":[\"Dans la bibliothèque\"],\"hou0tP\":[\"Streaming\"],\"hty0d5\":[\"Lundi\"],\"i0qMbr\":[\"Accueil\"],\"i9rcQ/\":[\"Films\"],\"iGma9e\":[\"Mise à jour échouée\"],\"iSLIjg\":[\"Connecter\"],\"iWv3ck\":[\"Échec du rattrapage\"],\"iXZ09g\":[\"Marquer comme terminé\"],\"id08cd\":[\"Visionné S\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"ih87w/\":[\"Ajouter à la bibliothèque\"],\"ihn4zD\":[\"Rechercher…\"],\"itDEco\":[\"Vous avez déjà un compte ? Se connecter\"],\"itheEn\":[\"Avec publicités\"],\"iwCRIF\":[\"Vous serez déconnecté pour modifier l'URL du serveur.\"],\"j5GBIy\":[\"Ouvrez Radarr, allez dans Settings > Import Lists\"],\"jAe8l4\":[[\"0\"],\" sauvegardes · dernière <0/>\"],\"jB3sfe\":[\"Sauvegarde manuelle\"],\"jFnMJ8\":[\"Double appui pour supprimer ce filtre\"],\"jQsPwL\":[\"Sauvegardes planifiées désactivées\"],\"jSjGeu\":[[\"0\"],\" éléments n'ont pas d'identifiants externes et seront résolus par recherche de titre, ce qui peut être moins précis.\"],\"jX6Gzg\":[\"Cela remplacera toute votre base de données par le fichier téléchargé. Une sauvegarde de sécurité de vos données actuelles sera créée au préalable. Les sessions actives devront peut-être être actualisées après la restauration.\"],\"jiHVUy\":[\"Sauvegarde pré-restauration\"],\"k6c41p\":[\"Tâches en arrière-plan\"],\"kBDOjB\":[\"Planning de sauvegarde\"],\"kkDQ8m\":[\"Jeudi\"],\"klOeIX\":[\"Échec du changement de mot de passe\"],\"ks3XeZ\":[\"Ouvrez Sonarr, allez dans Settings > Import Lists\"],\"kvuCtu\":[\"Une erreur s'est produite lors du chargement de ce titre. Veuillez réessayer.\"],\"kx0s+n\":[\"Résultats\"],\"l2wcoS\":[\"Dernière exécution réussie\"],\"l3s5ri\":[\"Importation\"],\"lCF0wC\":[\"Actualiser\"],\"lJ1yo4\":[\"Échec de la connexion\"],\"lVqzRx\":[\"Cliquez sur <0>Add Webhook et collez l'URL ci-dessus\"],\"lXkUEV\":[\"Disponibilité\"],\"lcLe89\":[\"Rechercher des films, séries ou exécuter des commandes\"],\"lfVyvz\":[\"Ajouter à la liste de suivi\"],\"llDXYJ\":[\"Sauvegardes\"],\"llkZR0\":[\"Impossible de charger les intégrations\"],\"ln9/n9\":[\"Pas encore de compte ?\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"lqY3WY\":[\"Changer de serveur\"],\"luoodD\":[\"Configuration requise\"],\"m5WhJy\":[\"Vérifications automatiques des mises à jour\"],\"mIx58S\":[\"Purger les images\"],\"mYBORk\":[\"Film\"],\"ml9cU0\":[\"Échec de la régénération de l'URL \",[\"label\"]],\"mqwkjd\":[\"État de santé\"],\"mqxHH7\":[\"Aller à Explorer\"],\"mzI/c+\":[\"Télécharger\"],\"n1ekoW\":[\"Se connecter\"],\"n3Pzd7\":[\"Sauvegarde créée\"],\"nBHvPL\":[\"Annuler la modification\"],\"nJw77c\":[[\"0\",\"plural\",{\"one\":[\"#\",\" image\"],\"other\":[\"#\",\" images\"]}]],\"nO0Qnj\":[\"Votre code :\"],\"nRP1xx\":[\"Besoin d'aide ?\"],\"nV1LjT\":[\"Activez le type de notification <0>Playback Stop\"],\"nVsE67\":[\"Marquer comme en cours\"],\"nZ7lF1\":[\"Le code d'appareil a expiré. Veuillez réessayer.\"],\"nbfdhU\":[\"Intégrations\"],\"nbmpf9\":[\"Purger les métadonnées\"],\"nnKJTm\":[\"Échec du marquage de tous les épisodes comme visionnés\"],\"nszbQG\":[\"Aucune sauvegarde\"],\"nuh/Wq\":[\"URL de webhook\"],\"nwtY4N\":[\"Une erreur s'est produite\"],\"oAIA3w\":[\"Rechercher des films, séries ou personnes\"],\"oC8IMh\":[\"Rechercher des films, séries, personnes...\"],\"oNvZcA\":[\"Épisodes cette semaine\"],\"oXq+Wr\":[[\"label\"],\" connecté\"],\"ogtYkT\":[\"Mot de passe mis à jour\"],\"ojtedN\":[\"Ouvrez Radarr, allez dans <0>Settings > Import Lists\"],\"olMi35\":[\"Recommandé pour vous\"],\"p+PZEl\":[\"Voici ce qui se passe dans votre bibliothèque\"],\"pAtylB\":[\"Introuvable\"],\"pG9pq1\":[[\"0\",\"plural\",{\"one\":[\"#\",\" fichier supprimé\"],\"other\":[\"#\",\" fichiers supprimés\"]}],\", \",[\"freed\"],\" libéré\"],\"pWWFjv\":[\"Vérifié <0/>\"],\"ph76H6\":[\"Autoriser les nouveaux utilisateurs à créer un compte\"],\"pjgw0N\":[\"Choisissez comment importer vos données \",[\"0\"],\".\"],\"puo3W3\":[\"Redirection…\"],\"q3GraM\":[\"...et \",[\"0\"],\" de plus\"],\"q6nrFE\":[\"décédé à \",[\"age\"],\" ans\"],\"q6pUQ9\":[\"Téléchargez un fichier .db pour remplacer la base de données actuelle. Une sauvegarde de sécurité est créée au préalable.\"],\"q8yluz\":[\"Votre nom\"],\"qA6VR5\":[\"Nécessite <0>Emby Server 4.7.9+ et une licence <1>Emby Premiere<2/> active.\"],\"qF2IBM\":[\"Films ce mois-ci\"],\"qHbApt\":[\"Échec du chargement des paramètres de planning de sauvegarde.\"],\"qLB1zX\":[\"Téléchargez un export \",[\"0\"],\" depuis les paramètres de votre compte \",[\"1\"],\".\"],\"qPNzfu\":[\"Vérifications des mises à jour désactivées\"],\"qWoML/\":[\"Ajoutez un nouveau webhook et collez l'URL ci-dessus\"],\"qiOIiY\":[\"Acheter\"],\"qn1X6N\":[\"Échec de la mise à jour du paramètre d'inscription\"],\"qqWcBV\":[\"Terminé\"],\"qqeAJM\":[\"Jamais\"],\"r9aDAY\":[[\"count\"],\" \",[\"count\",\"plural\",{\"one\":[\"épisode précédent non visionné\"],\"other\":[\"épisodes précédents non visionnés\"]}]],\"rLgPvm\":[\"Sauvegarde\"],\"rSTpb5\":[\"État du serveur\"],\"rczylF\":[\"this week\"],\"rdymVD\":[\"Déclencher la tâche\"],\"rtir7c\":[\"inconnu\"],\"s0U4ZZ\":[\"Épisodes de séries\"],\"s4vVUm\":[\"Impossible de charger les détails de la personne\"],\"s9dVME\":[\"Échec du démarquage de l'épisode\"],\"sGH11W\":[\"Serveur\"],\"sl/qWH\":[\"Télécharger une photo de profil\"],\"sstysK\":[\"Échec du marquage de l'épisode\"],\"stZeiF\":[[\"watched\"],\"/\",[\"total\"],\" épisodes\"],\"t/Ch8S\":[\"Marqué comme en cours\"],\"t/YqKh\":[\"Supprimer\"],\"tfDRzk\":[\"Enregistrer\"],\"tiymc0\":[\"Une erreur s'est produite…\"],\"u9ugU7\":[[\"watchedCount\"],\"/\",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"épisode\"],\"other\":[\"épisodes\"]}]],\"uBAxNB\":[\"Monteur\"],\"uBrbSu\":[\"Échec du démarrage de la connexion \",[\"0\"]],\"uM6jnS\":[\"Restauration échouée\"],\"uMrJrX\":[\"Admins uniquement\"],\"uswLvZ\":[\"Le titre que vous recherchez n'existe pas ou a peut-être été supprimé de la base de données.\"],\"uxOntd\":[[\"watchedCount\"],\" sur \",[\"0\"],\" épisodes regardés\"],\"v2CA3w\":[\"Changer la photo\"],\"v5ipVu\":[\"Marquer tous les épisodes comme visionnés ?\"],\"vKfeax\":[\"Ouvrez Emby, allez dans Settings > Webhooks\"],\"vXIe7J\":[\"Langue\"],\"vuCCZ7\":[\"Échec de l'analyse des données d'importation\"],\"vwKERN\":[\"Échec de la suppression de la sauvegarde\"],\"w8pqsh\":[\"Tout marquer comme visionné\"],\"wA7B2T\":[\"Les nouvelles inscriptions sont fermées. Contactez l'administrateur si vous avez besoin d'un accès.\"],\"wGFX13\":[\"À partir de\"],\"wR1UAy\":[\"Films populaires\"],\"wRWcdL\":[\"Lire la bande-annonce\"],\"wThGrS\":[\"Paramètres de l'application\"],\"wZK4Xg\":[\"Jamais exécuté\"],\"wdLxgL\":[\"Membre depuis \",[\"memberSince\"]],\"wja8aL\":[\"Sans titre\"],\"wtGebH\":[\"La personne que vous recherchez n'existe pas ou a peut-être été supprimée de la base de données.\"],\"wtsbt5\":[\"Ajouter à la liste de suivi\"],\"wtuVU4\":[\"Fréquence\"],\"wx7pwA\":[\"Marquer comme visionné\"],\"x4ZiTl\":[\"Instructions de configuration\"],\"xCJdfg\":[\"Effacer\"],\"xGVfLh\":[\"Continuer\"],\"xLoCm2\":[\"Vérifier la configuration\"],\"xSrU2g\":[[\"healthyCount\"],\" sur \",[\"0\"],\" tâches en bonne santé\"],\"xazqmy\":[\"Saisons\"],\"xbBXhy\":[\"Vérifier périodiquement GitHub pour les nouvelles versions de Sofa\"],\"xrh2/M\":[\"Échec du marquage comme visionné\"],\"y3e9pF\":[\"Supprimer la sauvegarde ?\"],\"y6Urel\":[\"Épisode suivant\"],\"yGvjAo\":[\"Mise à jour disponible : \",[\"0\"]],\"yKu/3Y\":[\"Restaurer\"],\"yYxB17\":[\"Tout effacer\"],\"ybtG1U\":[[\"0\"],\" backup\",[\"1\"],\" stored\"],\"yey/zg\":[\"Base de données restaurée. Rechargement...\"],\"ygo0l/\":[\"Commencer à suivre des films et séries\"],\"yvwIbI\":[\"Télécharger le fichier d'exportation\"],\"yz7wBu\":[\"Fermer\"],\"z1U/Fh\":[\"Note\"],\"z5evln\":[\"Pas de connexion Internet\"],\"zAvS8w\":[\"Connectez-vous pour continuer\"],\"zEqK2w\":[\"La page que vous recherchez n'existe pas.\"],\"zFkiTv\":[\"Installez le plugin Webhook depuis le catalogue de plugins de Jellyfin\"],\"zNyR4f\":[\"Définissez votre profil de qualité et dossier racine préférés\"],\"za8Le/\":[\"Inscriptions fermées\"],\"zb77GC\":[\"Louer\"],\"ztAdhw\":[\"Nom mis à jour\"]}")as Messages; \ No newline at end of file diff --git a/packages/i18n/src/po/it.po b/packages/i18n/src/po/it.po index 50e3ee3..2f3dda3 100644 --- a/packages/i18n/src/po/it.po +++ b/packages/i18n/src/po/it.po @@ -24,12 +24,12 @@ msgid "...and {0} more" msgstr "...e altri {0}" #. placeholder {0}: systemHealth.data.imageCache.imageCount -#: apps/native/src/app/(tabs)/(settings)/index.tsx:456 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:438 msgid "{0, plural, one {# image} other {# images}}" msgstr "{0, plural, one {# immagine} other {# immagini}}" #. placeholder {0}: systemHealth.data.database.titleCount -#: apps/native/src/app/(tabs)/(settings)/index.tsx:442 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:424 msgid "{0, plural, one {# title} other {# titles}}" msgstr "{0, plural, one {# titolo} other {# titoli}}" @@ -44,12 +44,12 @@ msgstr "{0} {1, plural, one {backup} other {backup}} archiviati" #~ msgstr "{0} backup{1} stored" #. placeholder {0}: backups.backupCount -#: apps/web/src/components/settings/system-health-section.tsx:599 +#: apps/web/src/components/settings/system-health-section.tsx:593 msgid "{0} backups · last <0/>" msgstr "{0} backup · ultimo <0/>" #. placeholder {0}: imageCache.imageCount.toLocaleString() -#: apps/web/src/components/settings/system-health-section.tsx:569 +#: apps/web/src/components/settings/system-health-section.tsx:563 msgid "{0} cached images" msgstr "{0} immagini in cache" @@ -157,6 +157,8 @@ msgstr "" msgid "Actions" msgstr "Azioni" +#: apps/native/src/app/person/[id].tsx:50 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:28 #: apps/web/src/components/people/person-hero.tsx:69 msgid "Actor" msgstr "Attore" @@ -200,18 +202,18 @@ msgid "Added to watchlist" msgstr "Aggiunto alla watchlist" #: apps/native/src/app/(tabs)/(settings)/index.tsx:342 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:431 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:470 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:413 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:452 #: apps/web/src/components/nav-bar.tsx:223 #: apps/web/src/components/settings/account-section.tsx:309 msgid "Admin" msgstr "" -#: apps/web/src/routes/_app/settings.tsx:118 +#: apps/web/src/routes/_app/settings.tsx:154 msgid "Admin only" msgstr "Solo admin" -#: apps/native/src/app/person/[id].tsx:267 +#: apps/native/src/app/person/[id].tsx:249 #: apps/web/src/components/people/person-hero.tsx:89 msgid "age {age}" msgstr "età {age}" @@ -233,15 +235,15 @@ msgstr "Hai già un account?" msgid "Already have an account? Sign in" msgstr "Hai già un account? Accedi" -#: apps/web/src/routes/__root.tsx:143 +#: apps/web/src/routes/__root.tsx:142 msgid "An unexpected error occurred while loading this page. You can try again or head back to the dashboard." msgstr "Si è verificato un errore imprevisto durante il caricamento di questa pagina. Puoi riprovare o tornare alla dashboard." -#: apps/native/src/app/(tabs)/(settings)/index.tsx:407 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:389 msgid "Anonymous usage reporting" msgstr "Segnalazione anonima dell'utilizzo" -#: apps/web/src/routes/_app/settings.tsx:99 +#: apps/web/src/routes/_app/settings.tsx:135 msgid "App Settings" msgstr "Impostazioni app" @@ -307,8 +309,8 @@ msgstr "Backup eliminato" msgid "Backup schedule" msgstr "Pianificazione backup" -#: apps/web/src/components/settings/system-health-section.tsx:589 -#: apps/web/src/routes/_app/settings.tsx:154 +#: apps/web/src/components/settings/system-health-section.tsx:583 +#: apps/web/src/routes/_app/settings.tsx:190 msgid "Backups" msgstr "Backup" @@ -354,7 +356,7 @@ msgstr "Annulla" msgid "Cancel editing" msgstr "Annulla modifica" -#: apps/native/src/app/title/[id].tsx:489 +#: apps/native/src/app/title/[id].tsx:493 #: apps/web/src/components/titles/cast-carousel.tsx:21 msgid "Cast" msgstr "" @@ -392,7 +394,7 @@ msgstr "Cambia server" msgid "Check configuration" msgstr "Verifica configurazione" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:483 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:465 msgid "Check for updates" msgstr "Cerca aggiornamenti" @@ -420,7 +422,7 @@ msgstr "Scegli come importare i tuoi dati {0}." msgid "Clear" msgstr "Cancella" -#: apps/web/src/components/command-palette.tsx:302 +#: apps/web/src/components/command-palette.tsx:297 msgid "Clear all" msgstr "Cancella tutto" @@ -447,11 +449,12 @@ msgstr "Clicca <0>+ e seleziona <1>Custom Lists" msgid "Click <0>Add Webhook and paste the URL above" msgstr "Clicca <0>Add Webhook e incolla l'URL sopra" -#: apps/native/src/components/navigation/modal-stack-header.tsx:14 +#: apps/native/src/components/navigation/modal-layout.tsx:26 +#: apps/native/src/components/navigation/modal-layout.tsx:38 msgid "Close" msgstr "Chiudi" -#: apps/native/src/app/(tabs)/(home)/index.tsx:54 +#: apps/native/src/app/(tabs)/(home)/index.tsx:146 #: apps/native/src/components/titles/status-action-button.tsx:45 #: apps/web/src/components/dashboard/stats-display.tsx:219 #: apps/web/src/components/title-card.tsx:74 @@ -492,7 +495,7 @@ msgid "Connect with {0}" msgstr "Connetti con {0}" #: apps/native/src/app/(auth)/server-url.tsx:176 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:449 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:431 #: apps/web/src/components/settings/system-health-section.tsx:236 msgid "Connected" msgstr "Connesso" @@ -521,7 +524,7 @@ msgstr "Connessione in corso…" msgid "Continue" msgstr "Continua" -#: apps/native/src/app/(tabs)/(home)/index.tsx:99 +#: apps/native/src/app/(tabs)/(home)/index.tsx:161 #: apps/web/src/components/dashboard/continue-watching-section.tsx:22 msgid "Continue Watching" msgstr "Continua a guardare" @@ -542,7 +545,7 @@ msgstr "Copia URL" msgid "Could not load integrations" msgstr "Impossibile caricare le integrazioni" -#: apps/native/src/app/person/[id].tsx:185 +#: apps/native/src/app/person/[id].tsx:172 msgid "Could not load person details" msgstr "Impossibile caricare i dettagli della persona" @@ -576,18 +579,18 @@ msgstr "Password attuale" msgid "Current password is required" msgstr "La password attuale è obbligatoria" -#: apps/web/src/routes/_app/settings.tsx:180 +#: apps/web/src/routes/_app/settings.tsx:216 msgid "Danger Zone" msgstr "Zona pericolosa" -#: apps/web/src/routes/__root.tsx:164 +#: apps/web/src/routes/__root.tsx:163 #: apps/web/src/routes/_app/people.$id.tsx:76 #: apps/web/src/routes/_app/titles.$id.tsx:119 #: apps/web/src/routes/_app/titles.$id.tsx:165 msgid "Dashboard" msgstr "" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:439 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:421 #: apps/web/src/components/settings/system-health-section.tsx:210 msgid "Database" msgstr "" @@ -627,17 +630,19 @@ msgstr "Eliminati {0, plural, one {# file} other {# file}}, liberati {freed}" msgid "Device code expired. Please try again." msgstr "Il codice del dispositivo è scaduto. Riprova." -#: apps/native/src/app/person/[id].tsx:267 +#: apps/native/src/app/person/[id].tsx:249 #: apps/web/src/components/people/person-hero.tsx:89 msgid "died at {age}" msgstr "morto a {age}" +#: apps/native/src/app/person/[id].tsx:51 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:29 #: apps/web/src/components/people/person-hero.tsx:71 msgid "Director" msgstr "Regista" #: apps/web/src/components/settings/system-health-section.tsx:394 -#: apps/web/src/components/settings/system-health-section.tsx:580 +#: apps/web/src/components/settings/system-health-section.tsx:574 msgid "Disabled" msgstr "Disabilitato" @@ -680,6 +685,8 @@ msgstr "Scarica" msgid "Download backup" msgstr "Scarica backup" +#: apps/native/src/app/person/[id].tsx:54 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:32 #: apps/web/src/components/people/person-hero.tsx:77 msgid "Editor" msgstr "Montatore" @@ -748,6 +755,11 @@ msgstr "Episodio visto" msgid "Episodes" msgstr "Episodi" +#. placeholder {0}: periodLabels[episodePeriod] +#: apps/native/src/app/(tabs)/(home)/index.tsx:125 +msgid "Episodes {0}" +msgstr "" + #: apps/web/src/components/dashboard/stats-display.tsx:162 #~ msgid "Episodes {periodSelect}" #~ msgstr "Episodes {periodSelect}" @@ -757,8 +769,8 @@ msgid "Episodes {select}" msgstr "Episodi {select}" #: apps/native/src/app/(tabs)/(home)/index.tsx:52 -msgid "Episodes this week" -msgstr "Episodi di questa settimana" +#~ msgid "Episodes this week" +#~ msgstr "Episodi di questa settimana" #: apps/native/src/app/change-password.tsx:67 #: apps/native/src/app/change-password.tsx:77 @@ -770,7 +782,9 @@ msgstr "Errore" msgid "Errors ({0})" msgstr "Errori ({0})" -#: apps/native/src/app/(tabs)/(home)/index.tsx:127 +#: apps/native/src/app/(tabs)/(explore)/_layout.tsx:7 +#: apps/native/src/app/(tabs)/(home)/index.tsx:189 +#: apps/native/src/components/navigation/native-tab-bar.tsx:32 #: apps/web/src/components/nav-bar.tsx:116 #: apps/web/src/components/nav-bar.tsx:277 msgid "Explore" @@ -959,7 +973,7 @@ msgstr "Impossibile caricare l'avatar" msgid "Fetching your library data from {source}..." msgstr "Recupero dei dati della tua libreria da {source}..." -#: apps/native/src/app/person/[id].tsx:296 +#: apps/native/src/app/person/[id].tsx:279 #: apps/web/src/components/people/filmography-grid.tsx:67 msgid "Filmography" msgstr "Filmografia" @@ -988,9 +1002,9 @@ msgstr "Venerdì" msgid "Get Started" msgstr "Inizia" -#: apps/native/src/app/person/[id].tsx:189 -#: apps/native/src/app/person/[id].tsx:213 -#: apps/native/src/app/title/[id].tsx:239 +#: apps/native/src/app/person/[id].tsx:176 +#: apps/native/src/app/person/[id].tsx:196 +#: apps/native/src/app/title/[id].tsx:235 msgid "Go back" msgstr "Torna indietro" @@ -1002,7 +1016,7 @@ msgstr "Vai alla home" msgid "Go to <0>Dashboard > Plugins > Webhook" msgstr "Vai su <0>Dashboard > Plugin > Webhook" -#: apps/web/src/components/command-palette.tsx:345 +#: apps/web/src/components/command-palette.tsx:339 msgid "Go to Dashboard" msgstr "Vai alla Dashboard" @@ -1010,7 +1024,7 @@ msgstr "Vai alla Dashboard" msgid "Go to Dashboard > Plugins > Webhook" msgstr "Vai su Dashboard > Plugin > Webhook" -#: apps/web/src/components/command-palette.tsx:356 +#: apps/web/src/components/command-palette.tsx:349 msgid "Go to Explore" msgstr "Vai a Esplora" @@ -1022,21 +1036,23 @@ msgstr "Stato di salute" msgid "Here's what's happening with your library" msgstr "Ecco cosa sta succedendo nella tua libreria" +#: apps/native/src/app/(tabs)/(home)/_layout.tsx:7 +#: apps/native/src/components/navigation/native-tab-bar.tsx:28 #: apps/web/src/components/nav-bar.tsx:115 #: apps/web/src/components/nav-bar.tsx:276 msgid "Home" msgstr "" #: apps/web/src/components/settings/system-health-section.tsx:308 -#: apps/web/src/components/settings/system-health-section.tsx:558 +#: apps/web/src/components/settings/system-health-section.tsx:552 msgid "Image cache" msgstr "Cache immagini" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:453 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:435 msgid "Image Cache" msgstr "Cache immagini" -#: apps/web/src/components/settings/system-health-section.tsx:546 +#: apps/web/src/components/settings/system-health-section.tsx:540 msgid "Image cache and backup disk usage" msgstr "Utilizzo disco: cache immagini e backup" @@ -1088,7 +1104,7 @@ msgstr "Importati {0} elementi da {1}" msgid "Importing from {source}" msgstr "Importazione da {source} in corso" -#: apps/native/src/app/(tabs)/(home)/index.tsx:53 +#: apps/native/src/app/(tabs)/(home)/index.tsx:138 msgid "In library" msgstr "In libreria" @@ -1096,7 +1112,7 @@ msgstr "In libreria" msgid "In Library" msgstr "In libreria" -#: apps/native/src/app/(tabs)/(home)/index.tsx:117 +#: apps/native/src/app/(tabs)/(home)/index.tsx:179 #: apps/web/src/components/dashboard/library-section.tsx:35 msgid "In Your Library" msgstr "Nella tua libreria" @@ -1132,13 +1148,13 @@ msgstr "" msgid "Keeping <0><1><2>{0}<3>{1} backups." msgstr "Mantenendo <0><1><2>{0}<3>{1} backup." -#: apps/web/src/components/command-palette.tsx:366 -#: apps/web/src/components/command-palette.tsx:381 +#: apps/web/src/components/command-palette.tsx:359 +#: apps/web/src/components/command-palette.tsx:374 msgid "Keyboard Shortcuts" msgstr "Scorciatoie da tastiera" #: apps/native/src/app/(tabs)/(settings)/index.tsx:383 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:391 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:506 #: apps/web/src/components/settings/language-section.tsx:34 msgid "Language" msgstr "Lingua" @@ -1264,15 +1280,16 @@ msgstr "Membro dal {memberSince}" msgid "Monday" msgstr "Lunedì" -#: apps/native/src/app/title/[id].tsx:508 +#: apps/native/src/app/title/[id].tsx:512 msgid "More Like This" msgstr "Simili a questo" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:506 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:488 msgid "More Settings" msgstr "Altre impostazioni" -#: apps/native/src/app/title/[id].tsx:337 +#: apps/native/src/app/title/[id].tsx:333 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:22 #: apps/native/src/components/search/search-result-row.tsx:34 #: apps/native/src/components/search/search-result-row.tsx:81 #: apps/web/src/components/explore/hero-banner.tsx:54 @@ -1285,6 +1302,11 @@ msgstr "Film" msgid "Movies" msgstr "Film" +#. placeholder {0}: periodLabels[moviePeriod] +#: apps/native/src/app/(tabs)/(home)/index.tsx:114 +msgid "Movies {0}" +msgstr "" + #: apps/web/src/components/dashboard/stats-display.tsx:161 #~ msgid "Movies {periodSelect}" #~ msgstr "Movies {periodSelect}" @@ -1294,8 +1316,8 @@ msgid "Movies {select}" msgstr "Film {select}" #: apps/native/src/app/(tabs)/(home)/index.tsx:51 -msgid "Movies this month" -msgstr "Film di questo mese" +#~ msgid "Movies this month" +#~ msgstr "Film di questo mese" #: apps/native/src/app/(auth)/register.tsx:111 #: apps/web/src/components/auth-form.tsx:173 @@ -1311,7 +1333,7 @@ msgstr "Nome aggiornato" msgid "Need more help?" msgstr "Serve altro aiuto?" -#: apps/web/src/components/settings/system-health-section.tsx:456 +#: apps/web/src/components/settings/system-health-section.tsx:453 msgid "Never" msgstr "Mai" @@ -1358,7 +1380,7 @@ msgid "Next run" msgstr "Prossima esecuzione" #: apps/web/src/components/settings/backup-section.tsx:99 -#: apps/web/src/components/settings/system-health-section.tsx:607 +#: apps/web/src/components/settings/system-health-section.tsx:601 msgid "No backups yet" msgstr "Nessun backup ancora" @@ -1368,11 +1390,11 @@ msgstr "Nessun backup ancora" msgid "No internet connection" msgstr "Nessuna connessione internet" -#: apps/native/src/app/(tabs)/(search)/index.tsx:100 +#: apps/native/src/app/(tabs)/(search)/index.tsx:94 msgid "No results for \"{debouncedQuery}\"" msgstr "Nessun risultato per \"{debouncedQuery}\"" -#: apps/web/src/components/command-palette.tsx:212 +#: apps/web/src/components/command-palette.tsx:207 msgid "No results found." msgstr "Nessun risultato trovato." @@ -1411,7 +1433,7 @@ msgstr "Apri Emby, vai su <0>Impostazioni > Webhook" msgid "Open Emby, go to Settings > Webhooks" msgstr "Apri Emby, vai su Impostazioni > Webhook" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:513 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:495 msgid "Open in browser…" msgstr "Apri nel browser…" @@ -1431,7 +1453,7 @@ msgstr "Apri Radarr, vai su <0>Impostazioni > Liste di importazione" msgid "Open Radarr, go to Settings > Import Lists" msgstr "Apri Radarr, vai su Impostazioni > Liste di importazione" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:472 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:454 #: apps/web/src/components/settings/registration-section.tsx:51 msgid "Open registration" msgstr "Registrazione aperta" @@ -1489,12 +1511,13 @@ msgstr "Incolla l'URL di Sonarr nel campo URL della lista" msgid "Periodically check GitHub for new Sofa releases" msgstr "Controlla periodicamente GitHub per nuove versioni di Sofa" +#: apps/native/src/components/search/recently-viewed-row-content.tsx:24 #: apps/native/src/components/search/search-result-row.tsx:34 #: apps/native/src/components/search/search-result-row.tsx:81 msgid "Person" msgstr "Persona" -#: apps/native/src/app/person/[id].tsx:209 +#: apps/native/src/app/person/[id].tsx:192 #: apps/web/src/routes/_app/people.$id.tsx:50 msgid "Person not found" msgstr "Persona non trovata" @@ -1504,12 +1527,12 @@ msgid "Play trailer" msgstr "Riproduci trailer" #: apps/native/src/app/(tabs)/(explore)/index.tsx:89 -#: apps/web/src/components/explore/explore-client.tsx:120 +#: apps/web/src/routes/_app/explore.tsx:141 msgid "Popular Movies" msgstr "Film popolari" #: apps/native/src/app/(tabs)/(explore)/index.tsx:102 -#: apps/web/src/components/explore/explore-client.tsx:130 +#: apps/web/src/routes/_app/explore.tsx:151 msgid "Popular TV Shows" msgstr "Serie TV popolari" @@ -1517,6 +1540,8 @@ msgstr "Serie TV popolari" msgid "Pre-restore backup" msgstr "Backup pre-ripristino" +#: apps/native/src/app/person/[id].tsx:53 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:31 #: apps/web/src/components/people/person-hero.tsx:75 msgid "Producer" msgstr "Produttore" @@ -1577,7 +1602,7 @@ msgstr "{0, plural, one {# titolo} other {# titoli}}, {1, plural, one {# persona msgid "Purging..." msgstr "Svuotamento in corso..." -#: apps/web/src/components/command-palette.tsx:336 +#: apps/web/src/components/command-palette.tsx:331 msgid "Quick Actions" msgstr "Azioni rapide" @@ -1633,7 +1658,7 @@ msgstr "Pronto — nessun polling ancora" msgid "Ready — nothing received yet" msgstr "Pronto — nessun evento ricevuto ancora" -#: apps/web/src/components/command-palette.tsx:295 +#: apps/web/src/components/command-palette.tsx:290 msgid "Recent Searches" msgstr "Ricerche recenti" @@ -1650,7 +1675,7 @@ msgstr "Raccomandazioni" msgid "Recommended" msgstr "Consigliati" -#: apps/native/src/app/(tabs)/(home)/index.tsx:137 +#: apps/native/src/app/(tabs)/(home)/index.tsx:199 #: apps/web/src/components/dashboard/recommendations-section.tsx:22 msgid "Recommended for You" msgstr "Consigliati per te" @@ -1770,7 +1795,7 @@ msgstr "Ripristino fallito" msgid "Restoring…" msgstr "Ripristino in corso…" -#: apps/web/src/components/command-palette.tsx:217 +#: apps/web/src/components/command-palette.tsx:212 msgid "Results" msgstr "Risultati" @@ -1781,11 +1806,11 @@ msgstr "Recupero della cronologia, watchlist e valutazioni..." #: apps/native/src/components/settings/integrations-section.tsx:39 #: apps/native/src/components/ui/server-unreachable-banner.ios.tsx:71 #: apps/native/src/components/ui/server-unreachable-banner.tsx:79 -#: apps/web/src/lib/orpc/client.ts:17 +#: apps/web/src/lib/orpc/client.ts:24 msgid "Retry" msgstr "Riprova" -#: apps/web/src/routes/__root.tsx:116 +#: apps/web/src/routes/__root.tsx:115 msgid "Return home" msgstr "Torna alla home" @@ -1793,7 +1818,7 @@ msgstr "Torna alla home" msgid "Review what was found and choose what to import." msgstr "Rivedi i risultati trovati e scegli cosa importare." -#: apps/web/src/components/settings/system-health-section.tsx:509 +#: apps/web/src/components/settings/system-health-section.tsx:503 msgid "Run now" msgstr "Esegui ora" @@ -1809,7 +1834,7 @@ msgstr "Salva" msgid "Save name" msgstr "Salva nome" -#: apps/web/src/routes/__root.tsx:98 +#: apps/web/src/routes/__root.tsx:97 msgid "Scene not found" msgstr "Scena non trovata" @@ -1833,6 +1858,11 @@ msgstr "Backup pianificati disabilitati" msgid "Scheduled backups enabled" msgstr "Backup pianificati abilitati" +#: apps/native/src/app/(tabs)/(search)/_layout.tsx:7 +#: apps/native/src/components/navigation/native-tab-bar.tsx:41 +msgid "Search" +msgstr "" + #: apps/web/src/components/dashboard/stats-section.tsx:35 msgid "Search for movies and TV shows to start tracking" msgstr "Cerca film e serie TV per iniziare a tracciare" @@ -1842,15 +1872,15 @@ msgstr "Cerca film e serie TV per iniziare a tracciare" msgid "Search for movies, shows, or people" msgstr "Cerca film, serie TV o persone" -#: apps/web/src/components/command-palette.tsx:182 +#: apps/web/src/components/command-palette.tsx:177 msgid "Search for movies, TV shows, or run commands" msgstr "Cerca film, serie TV o esegui comandi" -#: apps/web/src/components/command-palette.tsx:191 +#: apps/web/src/components/command-palette.tsx:186 msgid "Search movies & TV shows…" msgstr "Cerca film e serie TV…" -#: apps/native/src/app/(tabs)/(search)/index.tsx:79 +#: apps/native/src/app/(tabs)/(search)/index.tsx:73 msgid "Search movies, shows, people..." msgstr "Cerca film, serie, persone..." @@ -1872,12 +1902,12 @@ msgstr "Stagione {0}" msgid "Season watched" msgstr "Stagione vista" -#: apps/native/src/app/title/[id].tsx:473 +#: apps/native/src/app/title/[id].tsx:477 msgid "Seasons" msgstr "Stagioni" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:470 -#: apps/web/src/routes/_app/settings.tsx:131 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:452 +#: apps/web/src/routes/_app/settings.tsx:167 msgid "Security" msgstr "Sicurezza" @@ -1885,11 +1915,11 @@ msgstr "Sicurezza" msgid "Self-hosted movie & TV tracker" msgstr "Tracker film & TV self-hosted" -#: apps/web/src/routes/_app/settings.tsx:115 +#: apps/web/src/routes/_app/settings.tsx:151 msgid "Server" msgstr "" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:431 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:413 msgid "Server Health" msgstr "Salute del server" @@ -1908,7 +1938,9 @@ msgstr "Imposta password" msgid "Set your preferred quality profile and root folder" msgstr "Imposta il profilo di qualità e la cartella radice preferiti" +#: apps/native/src/app/(tabs)/(settings)/_layout.tsx:7 #: apps/native/src/components/header-avatar.tsx:55 +#: apps/native/src/components/navigation/native-tab-bar.tsx:36 #: apps/web/src/components/nav-bar.tsx:236 #: apps/web/src/components/nav-bar.tsx:278 #: apps/web/src/components/settings/settings-shell.tsx:30 @@ -1999,9 +2031,9 @@ msgid "Sofa will automatically log movies and episodes when you finish watching msgstr "Sofa registrerà automaticamente film ed episodi quando finisci di guardarli" #: apps/native/src/app/change-password.tsx:77 -#: apps/native/src/app/person/[id].tsx:182 +#: apps/native/src/app/person/[id].tsx:169 #: apps/web/src/components/settings/account-section.tsx:391 -#: apps/web/src/routes/__root.tsx:140 +#: apps/web/src/routes/__root.tsx:139 msgid "Something went wrong" msgstr "Qualcosa è andato storto" @@ -2010,7 +2042,7 @@ msgid "Something went wrong while loading this title. Please try again." msgstr "Qualcosa è andato storto durante il caricamento di questo titolo. Riprova." #: apps/native/src/lib/query-client.ts:33 -#: apps/web/src/lib/orpc/client.ts:15 +#: apps/web/src/lib/orpc/client.ts:22 msgid "Something went wrong…" msgstr "Qualcosa è andato storto…" @@ -2022,7 +2054,7 @@ msgstr "URL lista Sonarr" msgid "Start exploring" msgstr "Inizia a esplorare" -#: apps/native/src/app/(tabs)/(home)/index.tsx:126 +#: apps/native/src/app/(tabs)/(home)/index.tsx:188 msgid "Start tracking movies and shows" msgstr "Inizia a tracciare film e serie" @@ -2042,7 +2074,7 @@ msgstr "Avvio importazione..." msgid "Status updated" msgstr "Stato aggiornato" -#: apps/web/src/components/settings/system-health-section.tsx:543 +#: apps/web/src/components/settings/system-health-section.tsx:537 msgid "Storage" msgstr "Archiviazione" @@ -2075,20 +2107,30 @@ msgstr "Il titolo che stai cercando non esiste o potrebbe essere stato rimosso d msgid "This may take a few minutes for large libraries. Please don't close this tab." msgstr "L'operazione potrebbe richiedere alcuni minuti per librerie grandi. Non chiudere questa scheda." +#: apps/native/src/app/(tabs)/(home)/index.tsx:89 +msgid "this month" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:31 #: apps/web/src/components/dashboard/stats-display.tsx:135 msgid "This Month" msgstr "Questo mese" -#: apps/web/src/routes/__root.tsx:101 +#: apps/web/src/routes/__root.tsx:100 msgid "This page was left on the cutting room floor. It may have been moved, removed, or never made it past the screenplay." msgstr "Questa pagina è rimasta sul pavimento della sala di montaggio. Potrebbe essere stata spostata, rimossa, o non essere mai arrivata alla sceneggiatura." -#: apps/native/src/app/(tabs)/(settings)/index.tsx:557 -#: apps/web/src/routes/_app/settings.tsx:76 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:559 +#: apps/web/src/routes/_app/settings.tsx:112 #: apps/web/src/routes/setup.tsx:180 msgid "This product uses the TMDB API but is not endorsed or certified by TMDB." msgstr "Questo prodotto utilizza le API di TMDB ma non è approvato o certificato da TMDB." +#: apps/native/src/app/(tabs)/(home)/index.tsx:88 +msgid "this week" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:30 #: apps/web/src/components/dashboard/stats-display.tsx:134 msgid "This Week" msgstr "Questa settimana" @@ -2127,6 +2169,11 @@ msgstr "Questo rimuoverà tutti gli elementi dalla tua cronologia." msgid "This will replace your entire database with the uploaded file. A safety backup of your current data will be created first. Active sessions may need to refresh after restore." msgstr "Questo sostituirà l'intero database con il file caricato. Prima verrà creato un backup di sicurezza dei dati attuali. Le sessioni attive potrebbero richiedere un aggiornamento dopo il ripristino." +#: apps/native/src/app/(tabs)/(home)/index.tsx:90 +msgid "this year" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:32 #: apps/web/src/components/dashboard/stats-display.tsx:136 msgid "This Year" msgstr "Quest'anno" @@ -2139,7 +2186,7 @@ msgstr "Giovedì" msgid "Time:" msgstr "Ora:" -#: apps/native/src/app/title/[id].tsx:235 +#: apps/native/src/app/title/[id].tsx:231 #: apps/web/src/routes/_app/titles.$id.tsx:139 msgid "Title not found" msgstr "Titolo non trovato" @@ -2154,6 +2201,11 @@ msgstr "I titoli nella tua watchlist di Sofa verranno aggiunti automaticamente p msgid "Titles on your Sofa watchlist will be automatically added for download when Sonarr polls this list (every 6 hours by default)" msgstr "I titoli nella tua watchlist di Sofa verranno aggiunti automaticamente per il download quando Sonarr interroga questa lista (ogni 6 ore per impostazione predefinita)" +#: apps/native/src/app/(tabs)/(home)/index.tsx:87 +msgid "today" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:29 #: apps/web/src/components/dashboard/stats-display.tsx:133 msgid "Today" msgstr "Oggi" @@ -2184,15 +2236,15 @@ msgid "Trending today" msgstr "In tendenza oggi" #: apps/native/src/app/(tabs)/(explore)/index.tsx:77 -#: apps/web/src/components/explore/explore-client.tsx:108 +#: apps/web/src/routes/_app/explore.tsx:129 msgid "Trending Today" msgstr "In tendenza oggi" -#: apps/web/src/components/settings/system-health-section.tsx:488 +#: apps/web/src/components/settings/system-health-section.tsx:482 msgid "Trigger job" msgstr "Avvia job" -#: apps/web/src/routes/__root.tsx:156 +#: apps/web/src/routes/__root.tsx:155 msgid "Try again" msgstr "Riprova" @@ -2200,7 +2252,8 @@ msgstr "Riprova" msgid "Tuesday" msgstr "Martedì" -#: apps/native/src/app/title/[id].tsx:337 +#: apps/native/src/app/title/[id].tsx:333 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:23 #: apps/native/src/components/search/search-result-row.tsx:81 #: apps/web/src/components/explore/hero-banner.tsx:59 #: apps/web/src/components/people/filmography-grid.tsx:58 @@ -2216,7 +2269,7 @@ msgstr "Episodi TV" msgid "TV show" msgstr "Serie TV" -#: apps/web/src/components/settings/system-health-section.tsx:601 +#: apps/web/src/components/settings/system-health-section.tsx:595 msgid "unknown" msgstr "sconosciuto" @@ -2252,7 +2305,7 @@ msgid "Up next" msgstr "Prossimo" #. placeholder {0}: updateCheck.data.updateCheck.latestVersion -#: apps/native/src/app/(tabs)/(settings)/index.tsx:496 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:478 msgid "Update available: {0}" msgstr "Aggiornamento disponibile: {0}" @@ -2396,7 +2449,7 @@ msgstr "Bentornato" msgid "Welcome back, {name}" msgstr "Bentornato, {name}" -#: apps/native/src/app/title/[id].tsx:430 +#: apps/native/src/app/title/[id].tsx:431 #: apps/web/src/components/titles/title-availability.tsx:130 msgid "Where to Watch" msgstr "Dove guardarlo" @@ -2405,6 +2458,8 @@ msgstr "Dove guardarlo" msgid "With Ads" msgstr "Con pubblicità" +#: apps/native/src/app/person/[id].tsx:52 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:30 #: apps/web/src/components/people/person-hero.tsx:73 msgid "Writer" msgstr "Sceneggiatore" @@ -2422,7 +2477,7 @@ msgstr "Stai usando la v{0}." msgid "Your code:" msgstr "Il tuo codice:" -#: apps/native/src/app/(tabs)/(home)/index.tsx:125 +#: apps/native/src/app/(tabs)/(home)/index.tsx:187 #: apps/web/src/components/dashboard/stats-section.tsx:32 msgid "Your library is empty" msgstr "La tua libreria è vuota" @@ -2430,4 +2485,3 @@ msgstr "La tua libreria è vuota" #: apps/native/src/app/(auth)/register.tsx:121 msgid "Your name" msgstr "Il tuo nome" - diff --git a/packages/i18n/src/po/it.ts b/packages/i18n/src/po/it.ts index 606af9a..98d14bd 100644 --- a/packages/i18n/src/po/it.ts +++ b/packages/i18n/src/po/it.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"+5kO8P\":[\"Sabato\"],\"+6i0lS\":[\"Recupero della cronologia, watchlist e valutazioni...\"],\"+Cv+V9\":[\"Rimuovi dalla libreria\"],\"+JkEpu\":[\"Questa pagina è rimasta sul pavimento della sala di montaggio. Potrebbe essere stata spostata, rimossa, o non essere mai arrivata alla sceneggiatura.\"],\"+K0AvT\":[\"Disconnetti\"],\"+N0l5/\":[\"Connesso a <0>\",[\"serverHost\"],\". Tocca per cambiare.\"],\"+gLHYi\":[\"Impossibile caricare il titolo\"],\"+j1ex/\":[\"Impossibile rimuovere dalla libreria\"],\"+nF1ZO\":[\"Rimuovi foto\"],\"/+6dvC\":[\"Errori (\",[\"0\"],\")\"],\"/BBXeA\":[\"Connessione al server in corso...\"],\"/DwR+n\":[\"Creazione in corso…\"],\"/XtbPO\":[[\"0\"],\" titles\"],\"/cg+QV\":[\"Segna tutta la stagione come vista\"],\"/gQXGv\":[\"Impossibile aggiornare lo stato\"],\"/nT6AE\":[\"Nuova password\"],\"/sHc1/\":[\"Controllo aggiornamenti\"],\"0+dyau\":[\"Impossibile aggiornare l'impostazione di conservazione\"],\"0BFJKK\":[\"Autorizzazione negata. Riprova.\"],\"0GHb20\":[\"Svuotare la cache metadati?\"],\"0IBW21\":[\"Impossibile svuotare le cache\"],\"0gH/sc\":[\"Rimuovi immagine del profilo\"],\"1+P9RR\":[\"Passa a \",[\"0\"]],\"12cc1j\":[\"In visione\"],\"12lVOl\":[\"Tracker film & TV self-hosted\"],\"1B4z0M\":[\"Filmografia\"],\"1J4Ek0\":[\"Esegui il backup automatico del database secondo una pianificazione\"],\"1JhxXW\":[\"Episodio \",[\"0\"],\", \",[\"episodeLabel\"]],\"1N6wNP\":[\"Opzioni di importazione\"],\"1Qz4uG\":[\"Abilita la categoria evento \\\"Playback\\\"\"],\"1hMWR6\":[\"Crea account\"],\"1jHIjh\":[\"Segnata come vista tutta la \",[\"seasonName\"]],\"1vSYsG\":[\"Scarica backup\"],\"1wL1tj\":[\"Serie TV\"],\"2FletP\":[[\"0\",\"plural\",{\"one\":[\"#\",\" titolo\"],\"other\":[\"#\",\" titoli\"]}],\", \",[\"1\",\"plural\",{\"one\":[\"#\",\" persona\"],\"other\":[\"#\",\" persone\"]}],\", \",[\"2\",\"plural\",{\"one\":[\"#\",\" file\"],\"other\":[\"#\",\" file\"]}],\" eliminati (\",[\"freed\"],\" liberati)\"],\"2Fsd9r\":[\"Questo mese\"],\"2MPcep\":[\"Importazione completata\"],\"2Mu33Z\":[\"Gestione cache\"],\"2POOFK\":[\"Gratis\"],\"2Pt2NY\":[\"Questo rimuoverà tutti gli elementi dalla tua cronologia.\"],\"2fCpt5\":[\"Torna alla home\"],\"2pPBp6\":[\"In tendenza oggi\"],\"39y5bn\":[\"Venerdì\"],\"3Blefz\":[\"Valutazioni\"],\"3JTlG8\":[\"Ricerche recenti\"],\"3Jy8bM\":[\"Film \",[\"select\"]],\"3L9OuQ\":[\"Episodio \",[\"0\"]],\"3T8ziB\":[\"Crea un account\"],\"3hELxX\":[\"Inserisci l'URL del tuo server Sofa per iniziare\"],\"4fxLkp\":[\"Apri Sonarr, vai su <0>Impostazioni > Liste di importazione\"],\"4kpBqM\":[\"Ultimo evento \",[\"0\"]],\"4uUjVO\":[\"Produttore\"],\"4x+A56\":[\"Segnalazione anonima dell'utilizzo\"],\"5IShvp\":[\"Importa \",[\"totalItems\"],\" elementi\"],\"5IYJSv\":[\"Esplora titoli\"],\"5Y4mym\":[\"Importa da \",[\"0\"]],\"5ZzgbQ\":[\"Connetti \",[\"0\"]],\"5fEnbK\":[\"Impossibile aggiornare l'impostazione di backup pianificato\"],\"5lWFkC\":[\"Accedi\"],\"5v9C16\":[\"Connesso a \",[\"source\"]],\"623bR4\":[\"Impossibile avviare il job\"],\"6HN0yh\":[\"Apri Plex, vai su Impostazioni > Webhook\"],\"6TNjOJ\":[\"Impossibile aggiornare la valutazione\"],\"6TfUy6\":[\"ultimi \",[\"value\"]],\"6V3Ea3\":[\"Copiato\"],\"6YtxFj\":[\"Nome\"],\"6exX+8\":[\"Rigenera\"],\"6gRgw8\":[\"Riprova\"],\"6lGV3K\":[\"Mostra meno\"],\"76++pR\":[\"Avvisi\"],\"77DIAu\":[\"Vai su Dashboard > Plugin > Webhook\"],\"7Bj3x9\":[\"Non riuscito\"],\"7D50KC\":[\"Disconnesso: \",[\"label\"]],\"7GfM5w\":[\"Visualizzati di recente\"],\"7L01XJ\":[\"Azioni\"],\"7eMo+U\":[\"Vai alla home\"],\"7p5kLi\":[\"Dashboard\"],\"85eoJ1\":[\"Pianificazione aggiornata\"],\"8B9E2D\":[\"Giorno:\"],\"8YwF1J\":[\"Vai su <0>Dashboard > Plugin > Webhook\"],\"8ZsakT\":[\"Password\"],\"8tjQCz\":[\"Esplora\"],\"8vNtLy\":[\"Incolla l'URL di Radarr nel campo URL della lista\"],\"8wYDMp\":[\"Hai già un account?\"],\"9AE3vb\":[\"Apri Plex, vai su <0>Impostazioni > Webhook<1/>\"],\"9GW0ZB\":[\"L'importazione è ancora in corso in background. Ricontrolla più tardi.\"],\"9NyAH9\":[\"Ignorati\"],\"9Xhrps\":[\"Impossibile connettersi\"],\"9ZLGbA\":[\"backups.\"],\"9eF5oV\":[\"Bentornato\"],\"9rG25a\":[\"URL server\"],\"A+0rLe\":[\"Segnato come completato\"],\"AOHgZp\":[\"Episodi\"],\"AOddWK\":[\"Connetti \",[\"label\"]],\"ATfxL/\":[\"Trailer\"],\"AVlZoM\":[\"Ambiente\"],\"Acf6vF\":[\"Salva nome\"],\"AdoUfN\":[\"Impossibile aggiungere alla watchlist\"],\"AeXO77\":[\"Account\"],\"AjtYj0\":[\"In watchlist\"],\"Avee+B\":[\"Impossibile aggiornare il nome\"],\"B2R3xD\":[\"Attiva/disattiva backup pianificati\"],\"BEVzjL\":[\"Importazione fallita\"],\"BQnS5I\":[\"Apri \",[\"source\"],\" per inserire il codice\"],\"BUnoSB\":[[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"backup\"],\"other\":[\"backup\"]}],\" archiviati\"],\"BpttUI\":[\"In tendenza oggi\"],\"BrrIs8\":[\"Archiviazione\"],\"BskWMl\":[\"Non raggiungibile\"],\"BzEFor\":[\"o\"],\"CGDHFb\":[\"Aggiungi una <0>Destinazione generica e incolla l'URL sopra\"],\"CGExDN\":[\"Impossibile svuotare la cache immagini\"],\"CHeXFE\":[\"Stato aggiornato\"],\"CKyk7Q\":[\"Torna indietro\"],\"CaB/+I\":[\"Bentornato, \",[\"name\"]],\"CodnUh\":[\"Rimosso dalla libreria\"],\"CpzGJY\":[\"L'operazione potrebbe richiedere alcuni minuti per librerie grandi. Non chiudere questa scheda.\"],\"CuPxpd\":[\"Richiede un abbonamento <0>Plex Pass<1/> attivo.\"],\"CzBN6D\":[\"Inizia a esplorare\"],\"D+R2Xs\":[\"Avvio importazione...\"],\"D3C4Yx\":[\"La password attuale è obbligatoria\"],\"DBC3t5\":[\"Domenica\"],\"DI4lqs\":[\"Persona non trovata\"],\"DKBbJf\":[\"Aggiunto \\\"\",[\"titleName\"],\"\\\" alla watchlist\"],\"DPfwMq\":[\"Fatto\"],\"DZse/o\":[\"Aggiungi una \\\"Destinazione generica\\\" e incolla l'URL sopra\"],\"E/QGRL\":[\"Disabilitato\"],\"E6nRW7\":[\"Copia URL\"],\"EWQlBH\":[\"La tua libreria è vuota\"],\"EWaCfj\":[\"Inserisci la tua password attuale e scegline una nuova.\"],\"Eeo/Gy\":[\"Impossibile aggiornare l'impostazione\"],\"Efn6WU\":[\"Questo eliminerà tutti i titoli stub non arricchiti e tutte le immagini in cache dal disco. Tutto verrà reimportato e riscaricato secondo necessità.\"],\"Etp5if\":[\"Importazione da \",[\"source\"],\" completata.\"],\"F006BN\":[\"Importa da \",[\"source\"]],\"FNvDMc\":[\"Questa settimana\"],\"FWSp+7\":[\"Inserisci il codice qui sotto sul sito di \",[\"source\"],\" per autorizzare Sofa.\"],\"FXN0ro\":[\"Raccomandazioni\"],\"FaU7Ag\":[\"Abilita il tipo di notifica \\\"Playback Stop\\\"\"],\"FhvLDl\":[[\"watchedCount\"],\"/\",[\"0\"],\" episodes\"],\"Fo2bwm\":[\"Attore\"],\"FwRqjE\":[\"Utilizzo disco: cache immagini e backup\"],\"G00fgM\":[\"ultimi \",[\"n\"]],\"G3myU+\":[\"Martedì\"],\"GcCthe\":[\"In libreria\"],\"Gf39AA\":[[\"0\"],\" attivato\"],\"GnhfWw\":[\"Attiva/disattiva controllo aggiornamenti automatico\"],\"GptGxg\":[\"Cambia password\"],\"GqTZ+S\":[\"Valutato \",[\"ratingStars\"],\" \",[\"ratingStars\",\"plural\",{\"one\":[\"stella\"],\"other\":[\"stelle\"]}]],\"GrdN/F\":[\"Recuperati — \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"episodio\"],\"other\":[\"episodi\"]}],\" segnati come visti\"],\"H4B5LG\":[\"Questo prodotto utilizza le API di TMDB ma non è approvato o certificato da TMDB.\"],\"HBRd5n\":[\"Stagione \",[\"0\"]],\"HD+aQ7\":[\"Backup del database\"],\"HG+31u\":[\"Svuotare tutte le cache?\"],\"Haz+72\":[\"Questo eliminerà tutte le immagini TMDB in cache dal disco. Le immagini verranno riscaricate automaticamente secondo necessità.\"],\"HbReP5\":[\"Segnato \\\"\",[\"titleName\"],\"\\\" come completato\"],\"Hg6o8v\":[\"Aggiorna stato di salute del sistema\"],\"HmEjnC\":[\"Ultimo evento \",[\"timeAgo\"]],\"HvDfH/\":[\"Importati\"],\"I89uD4\":[\"Ripristino in corso…\"],\"IRoxQm\":[\"Registrazione chiusa\"],\"IS0nrP\":[\"Crea account\"],\"IY9rQ0\":[\"Libera spazio sul disco svuotando i metadati e le immagini in cache\"],\"IrC12v\":[\"Applicazione\"],\"J28zul\":[\"Connessione in corso...\"],\"J64cFL\":[\"Aggiornamento libreria\"],\"JKmmmN\":[\"Aggiunto alla watchlist\"],\"JN0f/Y\":[\"Connetti a TMDB\"],\"JR6aH2\":[\"Movies \",[\"periodSelect\"]],\"JRQitQ\":[\"Conferma nuova password\"],\"JRadFJ\":[\"Inizia a tracciare le tue visioni\"],\"JSwq8t\":[\"La creazione di nuovi account è attualmente disabilitata.\"],\"JY5Oyv\":[\"Database\"],\"JjsJnI\":[[\"0\"],\"/\",[\"1\"],\" episodes\"],\"JrFTcr\":[\"Connessione in corso…\"],\"JwFbe8\":[\"TV\"],\"KDw4GX\":[\"Riprova\"],\"KG6681\":[\"Episodio visto\"],\"KIS/Sd\":[\"Esci dalle altre sessioni\"],\"KK0ghs\":[\"Cache immagini\"],\"KVAoFR\":[\"illimitato\"],\"KcXJuc\":[\"Svuotamento in corso...\"],\"KhtG3o\":[\"Aggiorna password\"],\"Khux7w\":[[\"0\",\"plural\",{\"one\":[\"#\",\" titolo\"],\"other\":[\"#\",\" titoli\"]}]],\"KmWyx0\":[\"Job\"],\"KoF0x6\":[\"età \",[\"age\"]],\"Ksiej9\":[\"Richiede un abbonamento Plex Pass attivo.\"],\"Kx9NEt\":[\"Token non valido\"],\"Lk6Jb/\":[\"Ultimo polling \",[\"timeAgo\"]],\"LmEEic\":[\"In attesa di autorizzazione...\"],\"LqKH42\":[\"Connetti con \",[\"0\"]],\"Lrpjji\":[\"Disconnetti \",[\"label\"]],\"Lu6Udx\":[\"Clicca \\\"+\\\" e seleziona \\\"Custom Lists\\\"\"],\"MDoX++\":[\"URL lista Sonarr\"],\"MRBlCJ\":[\"Impossibile rimuovere il segno da alcuni episodi\"],\"MUO7w9\":[\"Segnato \\\"\",[\"titleName\"],\"\\\" come visto\"],\"MZbQHL\":[\"Nessun risultato trovato.\"],\"MdxR1u\":[\"Choose your preferred display language\"],\"MkyzAV\":[\"Autorizza Sofa a leggere la tua libreria \",[\"0\"],\". Nessuna password condivisa.\"],\"N40H+G\":[\"Tutti\"],\"N6SFhC\":[\"Accedi invece\"],\"N7h106\":[\"Sofa v\",[\"0\"],\" è disponibile\"],\"N9RF2M\":[\"Clicca \\\"Add Webhook\\\" e incolla l'URL sopra\"],\"NBo4z0\":[\"Clicca <0>+ e seleziona <1>Custom Lists\"],\"NICUmW\":[\"Regista\"],\"NQzPoO\":[\"Nuovo backup\"],\"NSxl1l\":[\"Altre impostazioni\"],\"NVF43p\":[\"Ora:\"],\"NdPMwS\":[\"Nella tua libreria\"],\"NgaPSG\":[\"Impossibile aggiornare la pianificazione\"],\"O3oNi5\":[\"Email\"],\"OBcj5W\":[\"Questo invaliderà l'URL attuale di \",[\"label\"],\". Dovrai aggiornarlo in \",[\"label\"],\".\"],\"OL8hbM\":[\"La nuova password deve contenere almeno 8 caratteri\"],\"ONWvwQ\":[\"Carica\"],\"OPFjyX\":[\"Installa il <0>plugin Webhook<1/> dal catalogo plugin di Jellyfin\"],\"OW/+RD\":[\"Cronologia visioni\"],\"OZdaTZ\":[\"Persona\"],\"OvO76u\":[\"Torna al login\"],\"OvdFIZ\":[\"Stagione vista\"],\"P2FLLe\":[\"Visualizza rilascio\"],\"PBdLfg\":[\"Nessun titolo trovato per questo genere.\"],\"PQ3qDa\":[\"Recupero dei dati della tua libreria da \",[\"source\"],\"...\"],\"PjNoxI\":[\"Backup pianificato\"],\"Pn2B7/\":[\"Password attuale\"],\"PnEbL/\":[\"Valutato \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"stella\"],\"other\":[\"stelle\"]}]],\"Pwqkdw\":[\"Caricamento…\"],\"Py87xY\":[\"Autorizzazione riuscita ma impossibile recuperare la libreria. Riprova.\"],\"Q3MPWA\":[\"Aggiorna password\"],\"QHcLEN\":[\"Connesso\"],\"QK4UIx\":[\"Segna come visto\"],\"Qjlym2\":[\"Impossibile creare l'account\"],\"Qm1NmK\":[\"O\"],\"Qoq+GP\":[\"Leggi di più\"],\"QphVZW\":[\"Impossibile raggiungere il server\"],\"QqLJHH\":[\"Quest'anno\"],\"R0yu2l\":[\"Recupera episodi\"],\"R4YBui\":[\"Cerca film e serie TV per iniziare a tracciare\"],\"RH46vw\":[[\"0\"],\"/\",[\"1\"],\" \",[\"2\",\"plural\",{\"one\":[\"episodio\"],\"other\":[\"episodi\"]}]],\"RIR15/\":[\"URL lista Radarr\"],\"RLe7Vk\":[\"Verifica in corso…\"],\"ROq8cl\":[\"Impossibile analizzare il file\"],\"RQq8Si\":[\"Registrazione aperta\"],\"S0soqb\":[\"Impossibile rimuovere l'immagine del profilo\"],\"S1McZh\":[\"Impossibile caricare l'avatar\"],\"S2ble5\":[[\"0\"],\" film, \",[\"1\"],\" episodi\"],\"S2qPRR\":[\"Cerca film e serie TV…\"],\"SDND4q\":[\"Non configurato\"],\"SFdAk9\":[\"Non visto S\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"SUIUkB\":[\"Rimuovi visione dalla stagione\"],\"SbS+Bm\":[\"Rigenera URL\"],\"SlfejT\":[\"Errore\"],\"Sp86ju\":[[\"0\"],\" ep\",[\"1\"]],\"SrfROI\":[\"Prossimo\"],\"SyPRjk\":[\"Sofa registrerà automaticamente film ed episodi quando finisci di guardarli\"],\"T0/7WG\":[\"Prossimo backup \",[\"distance\"]],\"TEaX6q\":[\"Backup eliminato\"],\"TI7IKo\":[\"Rated \",[\"0\"],\" star\",[\"1\"]],\"TMb7iE\":[\"Immagine del profilo rimossa\"],\"TqyQQS\":[\"Abilita la categoria evento <0>Playback\"],\"Tz0i8g\":[\"Impostazioni\"],\"U+FxtW\":[\"Traccia cosa guardi. Sai cosa ti aspetta.<0/>La tua libreria, i tuoi dati, le tue regole.\"],\"U3pytU\":[\"Admin\"],\"UC+OWB\":[\"Attiva/disattiva registrazione aperta\"],\"UDMjsP\":[\"Azioni rapide\"],\"UmQ6Fe\":[\"Svuotare la cache immagini?\"],\"UtDm3q\":[\"URL copiato negli appunti\"],\"V1Kh9Z\":[\"Episodi \",[\"select\"]],\"V6uzvC\":[\"Simili a questo\"],\"V9CuQ+\":[\"Connetti a \",[\"source\"]],\"VAcXNz\":[\"Mercoledì\"],\"VKyhZK\":[\"Titolo non trovato\"],\"VQvpro\":[\"Incolla l'URL di Sonarr nel campo URL della lista\"],\"VhMDMg\":[\"Cambia password\"],\"Vx0ayx\":[\"Impossibile segnare alcuni episodi\"],\"WDC4PF\":[\"Episodes \",[\"periodSelect\"]],\"WEYdDv\":[\"Consigliati\"],\"WMCwmR\":[\"Cerca aggiornamenti\"],\"WP48q2\":[\"Cache immagini\"],\"WT1Ibn\":[\"Ultima esecuzione\"],\"Wb3E4g\":[\"Esegui ora\"],\"WgF2UQ\":[\"Stai usando la v\",[\"0\"],\".\"],\"WtWhSi\":[\"Valutazione rimossa\"],\"Wy/3II\":[\"Ultimo polling \",[\"0\"]],\"XFCSYs\":[\"Cast\"],\"XN23JY\":[\"Questo eliminerà i titoli stub non arricchiti che non sono in nessuna libreria utente e pulerà i record di persone orfane. I titoli eliminati verranno reimportati se consultati di nuovo.\"],\"XZwihE\":[\"Pronto — nessun evento ricevuto ancora\"],\"XjTduw\":[\"Carica immagine\"],\"YEGzVq\":[\"Impossibile connettere \",[\"label\"]],\"YErf89\":[\"Impossibile svuotare la cache metadati\"],\"YQ768h\":[\"Scena non trovata\"],\"YiRsXK\":[\"Cancellare la cronologia recente?\"],\"Yjp1zf\":[\"Non hai un server?\"],\"YqMfa9\":[\"Rivedi i risultati trovati e scegli cosa importare.\"],\"ZGUYm0\":[\"Pronto — nessun polling ancora\"],\"ZQKLI1\":[\"Zona pericolosa\"],\"ZVZUoU\":[[\"0\"],\" immagini in cache\"],\"ZWTQ81\":[\"Guarda su \",[\"name\"]],\"a3LDKx\":[\"Sicurezza\"],\"aLBUiR\":[\"Mantenendo <0><1><2>\",[\"0\"],\"<3>\",[\"1\"],\" backup.\"],\"aM0+kY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" titolo obsoleto\"],\"other\":[\"#\",\" titoli obsoleti\"]}],\" e \",[\"1\",\"plural\",{\"one\":[\"#\",\" persona orfana\"],\"other\":[\"#\",\" persone orfane\"]}],\" eliminati\"],\"aO1AxG\":[\"Episodio non visto\"],\"aV/hDI\":[\"Impossibile disconnettere \",[\"label\"]],\"acbSg0\":[\"Tocca due volte per filtrare per \",[\"label\"]],\"agE7k4\":[[\"stars\",\"plural\",{\"one\":[\"#\",\" stella\"],\"other\":[\"#\",\" stelle\"]}]],\"alPRaV\":[\"I titoli nella tua watchlist di Sofa verranno aggiunti automaticamente per il download quando Radarr interroga questa lista (ogni 12 ore per impostazione predefinita)\"],\"aourBv\":[\"Backup pianificati abilitati\"],\"apLLSU\":[\"Sei sicuro di voler uscire?\"],\"atc9MA\":[\"Apri Emby, vai su <0>Impostazioni > Webhook\"],\"auVUJO\":[\"Ripristinare il database?\"],\"ayqfr4\":[\"URL \",[\"label\"],\" rigenerato\"],\"b/8KCH\":[\"Questo segnerà tutti gli episodi di questa serie come visti. Puoi annullarlo in seguito de-segnando le singole stagioni.\"],\"b3Thhd\":[\"Caricamento fallito\"],\"b5DFtH\":[\"Imposta password\"],\"bHYIks\":[\"Esci\"],\"bITrbE\":[\"Svuota tutto\"],\"bNmdjU\":[\"Watchlist\"],\"bTRwag\":[\"Rimuovi dalla libreria\"],\"bXMotV\":[\"Segnato come visto\"],\"bezGJ2\":[[\"0\"],\" images\"],\"boJlGf\":[\"Pagina non trovata\"],\"c1ssjI\":[\"Importazione da \",[\"source\"],\" in corso\"],\"c3b0B0\":[\"Inizia\"],\"c4b9Dm\":[\"Nessun risultato per \\\"\",[\"debouncedQuery\"],\"\\\"\"],\"cQPKZt\":[\"Vai alla Dashboard\"],\"ccAJSB\":[\"Keeping\"],\"cgvva8\":[[\"0\"],\" valutazioni\"],\"cnGeoo\":[\"Elimina\"],\"cpE88+\":[\"Crea il tuo account\"],\"d/6MoL\":[\"Gestisci il tuo account e le tue preferenze\"],\"dA7BWh\":[\"Richiede Emby Server 4.7.9+ e una licenza Emby Premiere attiva.\"],\"dEgA5A\":[\"Annulla\"],\"dTZwve\":[\"Tutti gli episodi segnati come visti\"],\"dUCJry\":[\"Più recenti\"],\"ddwpAr\":[\"Avvisi (\",[\"0\"],\")\"],\"e/ToF5\":[\"Accedi con \",[\"0\"]],\"e9sZMS\":[\"Questo eliminerà definitivamente il backup del <0>\",[\"0\"],\". L'operazione non può essere annullata.\"],\"eFRooE\":[\"Ultima esecuzione fallita\"],\"eM39Om\":[\"Segnata come vista tutta la \",[\"seasonLabel\"]],\"eZjYb8\":[\"Sceneggiatore\"],\"ecUA8p\":[\"Oggi\"],\"evBxZy\":[\"Dove guardarlo\"],\"ezDa1h\":[\"Apri la documentazione\"],\"f+m696\":[\"Si è verificato un errore imprevisto durante il caricamento di questa pagina. Puoi riprovare o tornare alla dashboard.\"],\"f/AKdU\":[\"Sei sicuro di voler disconnettere \",[\"label\"],\"? L'URL attuale smetterà di funzionare.\"],\"f7ax8J\":[\"Apri nel browser…\"],\"fMPkxb\":[\"Mostra di più\"],\"fNMqNn\":[\"Serie TV popolari\"],\"fObVvy\":[\"Immagine del profilo aggiornata\"],\"fRettQ\":[[\"0\"],\" elementi\"],\"fUDRF9\":[\"In watchlist\"],\"fcWrnU\":[\"Esci\"],\"fgLNSM\":[\"Registrati\"],\"fsAEqk\":[\"Continua a guardare\"],\"fzAeQI\":[\"Registrazione su \",[\"serverHost\"]],\"g+gBfk\":[\"Analisi in corso...\"],\"g4JYff\":[\"Importati \",[\"0\"],\" elementi da \",[\"1\"]],\"gKtb5i\":[\"I titoli nella tua watchlist di Sofa verranno aggiunti automaticamente per il download quando Sonarr interroga questa lista (ogni 6 ore per impostazione predefinita)\"],\"gaIAMq\":[\"Rimuovi immagine\"],\"gbEEMp\":[\"Elimina backup\"],\"gcNLi0\":[\"Controllo aggiornamenti abilitato\"],\"gmB6oO\":[\"Pianificazione\"],\"h/T5Yb\":[\"Registrazione aperta\"],\"h4yKYk\":[\"Prossima esecuzione\"],\"h7MgpO\":[\"Scorciatoie da tastiera\"],\"hTXYdY\":[\"Impossibile creare il backup\"],\"hXYY5Q\":[\"Rimossa visione di \",[\"0\"]],\"he3ygx\":[\"Copia\"],\"hjGupC\":[\"Connessione all'importazione persa. Controlla lo stato nelle impostazioni.\"],\"hlqjFc\":[\"In libreria\"],\"hou0tP\":[\"Streaming\"],\"hty0d5\":[\"Lunedì\"],\"i0qMbr\":[\"Home\"],\"i9rcQ/\":[\"Film\"],\"iGma9e\":[\"Aggiornamento fallito\"],\"iSLIjg\":[\"Connetti\"],\"iWv3ck\":[\"Impossibile recuperare gli episodi\"],\"iXZ09g\":[\"Segna come completato\"],\"id08cd\":[\"Visto S\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"ih87w/\":[\"Aggiungi alla libreria\"],\"ihn4zD\":[\"Cerca…\"],\"itDEco\":[\"Hai già un account? Accedi\"],\"itheEn\":[\"Con pubblicità\"],\"iwCRIF\":[\"Verrai disconnesso per cambiare l'URL del server.\"],\"j5GBIy\":[\"Apri Radarr, vai su Impostazioni > Liste di importazione\"],\"jAe8l4\":[[\"0\"],\" backup · ultimo <0/>\"],\"jB3sfe\":[\"Backup manuale\"],\"jFnMJ8\":[\"Tocca due volte per rimuovere questo filtro\"],\"jQsPwL\":[\"Backup pianificati disabilitati\"],\"jSjGeu\":[[\"0\"],\" elementi non hanno ID esterni e verranno risolti tramite ricerca per titolo, che potrebbe essere meno accurata.\"],\"jX6Gzg\":[\"Questo sostituirà l'intero database con il file caricato. Prima verrà creato un backup di sicurezza dei dati attuali. Le sessioni attive potrebbero richiedere un aggiornamento dopo il ripristino.\"],\"jiHVUy\":[\"Backup pre-ripristino\"],\"k6c41p\":[\"Job in background\"],\"kBDOjB\":[\"Pianificazione backup\"],\"kkDQ8m\":[\"Giovedì\"],\"klOeIX\":[\"Impossibile cambiare la password\"],\"ks3XeZ\":[\"Apri Sonarr, vai su Impostazioni > Liste di importazione\"],\"kvuCtu\":[\"Qualcosa è andato storto durante il caricamento di questo titolo. Riprova.\"],\"kx0s+n\":[\"Risultati\"],\"l2wcoS\":[\"Ultima esecuzione riuscita\"],\"l3s5ri\":[\"Importazione\"],\"lCF0wC\":[\"Aggiorna\"],\"lJ1yo4\":[\"Impossibile accedere\"],\"lVqzRx\":[\"Clicca <0>Add Webhook e incolla l'URL sopra\"],\"lXkUEV\":[\"Disponibilità\"],\"lcLe89\":[\"Cerca film, serie TV o esegui comandi\"],\"lfVyvz\":[\"Aggiungi alla watchlist\"],\"llDXYJ\":[\"Backup\"],\"llkZR0\":[\"Impossibile caricare le integrazioni\"],\"ln9/n9\":[\"Non hai un account?\"],\"lpIMne\":[\"Le password non corrispondono\"],\"lqY3WY\":[\"Cambia server\"],\"luoodD\":[\"Configurazione richiesta\"],\"m5WhJy\":[\"Controllo aggiornamenti automatico\"],\"mIx58S\":[\"Svuota immagini\"],\"mYBORk\":[\"Film\"],\"ml9cU0\":[\"Impossibile rigenerare l'URL di \",[\"label\"]],\"mqwkjd\":[\"Stato di salute\"],\"mqxHH7\":[\"Vai a Esplora\"],\"mzI/c+\":[\"Scarica\"],\"n1ekoW\":[\"Accedi\"],\"n3Pzd7\":[\"Backup creato\"],\"nBHvPL\":[\"Annulla modifica\"],\"nJw77c\":[[\"0\",\"plural\",{\"one\":[\"#\",\" immagine\"],\"other\":[\"#\",\" immagini\"]}]],\"nO0Qnj\":[\"Il tuo codice:\"],\"nRP1xx\":[\"Serve altro aiuto?\"],\"nV1LjT\":[\"Abilita il tipo di notifica <0>Playback Stop\"],\"nVsE67\":[\"Segna come in visione\"],\"nZ7lF1\":[\"Il codice del dispositivo è scaduto. Riprova.\"],\"nbfdhU\":[\"Integrazioni\"],\"nbmpf9\":[\"Svuota metadati\"],\"nnKJTm\":[\"Impossibile segnare tutti gli episodi come visti\"],\"nszbQG\":[\"Nessun backup ancora\"],\"nuh/Wq\":[\"URL webhook\"],\"nwtY4N\":[\"Qualcosa è andato storto\"],\"oAIA3w\":[\"Cerca film, serie TV o persone\"],\"oC8IMh\":[\"Cerca film, serie, persone...\"],\"oNvZcA\":[\"Episodi di questa settimana\"],\"oXq+Wr\":[\"Connesso: \",[\"label\"]],\"ogtYkT\":[\"Password aggiornata\"],\"ojtedN\":[\"Apri Radarr, vai su <0>Impostazioni > Liste di importazione\"],\"olMi35\":[\"Consigliati per te\"],\"p+PZEl\":[\"Ecco cosa sta succedendo nella tua libreria\"],\"pAtylB\":[\"Non trovato\"],\"pG9pq1\":[\"Eliminati \",[\"0\",\"plural\",{\"one\":[\"#\",\" file\"],\"other\":[\"#\",\" file\"]}],\", liberati \",[\"freed\"]],\"pWWFjv\":[\"Controllato <0/>\"],\"ph76H6\":[\"Consenti la creazione di nuovi account\"],\"pjgw0N\":[\"Scegli come importare i tuoi dati \",[\"0\"],\".\"],\"puo3W3\":[\"Reindirizzamento in corso…\"],\"q3GraM\":[\"...e altri \",[\"0\"]],\"q6nrFE\":[\"morto a \",[\"age\"]],\"q6pUQ9\":[\"Carica un file .db per sostituire il database attuale. Prima viene creato un backup di sicurezza.\"],\"q8yluz\":[\"Il tuo nome\"],\"qA6VR5\":[\"Richiede <0>Emby Server 4.7.9+ e una licenza <1>Emby Premiere<2/> attiva.\"],\"qF2IBM\":[\"Film di questo mese\"],\"qHbApt\":[\"Impossibile caricare le impostazioni di pianificazione backup.\"],\"qLB1zX\":[\"Carica un'esportazione \",[\"0\"],\" dalle impostazioni del tuo account \",[\"1\"],\".\"],\"qPNzfu\":[\"Controllo aggiornamenti disabilitato\"],\"qWoML/\":[\"Aggiungi un nuovo webhook e incolla l'URL sopra\"],\"qiOIiY\":[\"Acquista\"],\"qn1X6N\":[\"Impossibile aggiornare l'impostazione di registrazione\"],\"qqWcBV\":[\"Completato\"],\"qqeAJM\":[\"Mai\"],\"r9aDAY\":[[\"count\"],\" earlier \",[\"count\",\"plural\",{\"one\":[\"episode\"],\"other\":[\"episodes\"]}],\" unwatched\"],\"rLgPvm\":[\"Backup\"],\"rSTpb5\":[\"Salute del server\"],\"rdymVD\":[\"Avvia job\"],\"rtir7c\":[\"sconosciuto\"],\"s0U4ZZ\":[\"Episodi TV\"],\"s4vVUm\":[\"Impossibile caricare i dettagli della persona\"],\"s9dVME\":[\"Impossibile rimuovere il segno dall'episodio\"],\"sGH11W\":[\"Server\"],\"sl/qWH\":[\"Carica immagine del profilo\"],\"sstysK\":[\"Impossibile segnare l'episodio\"],\"stZeiF\":[[\"watched\"],\"/\",[\"total\"],\" episodi\"],\"t/Ch8S\":[\"Segnato come in visione\"],\"t/YqKh\":[\"Rimuovi\"],\"tfDRzk\":[\"Salva\"],\"tiymc0\":[\"Qualcosa è andato storto…\"],\"u9ugU7\":[[\"watchedCount\"],\"/\",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"episodio\"],\"other\":[\"episodi\"]}]],\"uBAxNB\":[\"Montatore\"],\"uBrbSu\":[\"Impossibile avviare la connessione \",[\"0\"]],\"uM6jnS\":[\"Ripristino fallito\"],\"uMrJrX\":[\"Solo admin\"],\"uswLvZ\":[\"Il titolo che stai cercando non esiste o potrebbe essere stato rimosso dal database.\"],\"uxOntd\":[[\"watchedCount\"],\" di \",[\"0\"],\" episodi visti\"],\"v2CA3w\":[\"Cambia foto\"],\"v5ipVu\":[\"Segnare tutti gli episodi come visti?\"],\"vKfeax\":[\"Apri Emby, vai su Impostazioni > Webhook\"],\"vXIe7J\":[\"Lingua\"],\"vuCCZ7\":[\"Impossibile analizzare i dati di importazione\"],\"vwKERN\":[\"Impossibile eliminare il backup\"],\"w8pqsh\":[\"Segna tutti come visti\"],\"wA7B2T\":[\"La registrazione di nuovi account non è disponibile al momento. Contatta l'amministratore per richiedere l'accesso.\"],\"wGFX13\":[\"Inizia alle\"],\"wR1UAy\":[\"Film popolari\"],\"wRWcdL\":[\"Riproduci trailer\"],\"wThGrS\":[\"Impostazioni app\"],\"wZK4Xg\":[\"Mai eseguito\"],\"wdLxgL\":[\"Membro dal \",[\"memberSince\"]],\"wja8aL\":[\"Senza titolo\"],\"wtGebH\":[\"La persona che stai cercando non esiste o potrebbe essere stata rimossa dal database.\"],\"wtsbt5\":[\"Aggiungi alla watchlist\"],\"wtuVU4\":[\"Frequenza\"],\"wx7pwA\":[\"Segna come visto\"],\"x4ZiTl\":[\"Istruzioni di configurazione\"],\"xCJdfg\":[\"Cancella\"],\"xGVfLh\":[\"Continua\"],\"xLoCm2\":[\"Verifica configurazione\"],\"xSrU2g\":[[\"healthyCount\"],\" di \",[\"0\"],\" job attivi\"],\"xazqmy\":[\"Stagioni\"],\"xbBXhy\":[\"Controlla periodicamente GitHub per nuove versioni di Sofa\"],\"xrh2/M\":[\"Impossibile segnare come visto\"],\"y3e9pF\":[\"Eliminare il backup?\"],\"y6Urel\":[\"Episodio successivo\"],\"yGvjAo\":[\"Aggiornamento disponibile: \",[\"0\"]],\"yKu/3Y\":[\"Ripristina\"],\"yYxB17\":[\"Cancella tutto\"],\"ybtG1U\":[[\"0\"],\" backup\",[\"1\"],\" stored\"],\"yey/zg\":[\"Database ripristinato. Ricaricamento...\"],\"ygo0l/\":[\"Inizia a tracciare film e serie\"],\"yvwIbI\":[\"Carica file di esportazione\"],\"yz7wBu\":[\"Chiudi\"],\"z1U/Fh\":[\"Valutazione\"],\"z5evln\":[\"Nessuna connessione internet\"],\"zAvS8w\":[\"Accedi per continuare\"],\"zEqK2w\":[\"La pagina che stai cercando non esiste.\"],\"zFkiTv\":[\"Installa il plugin Webhook dal catalogo plugin di Jellyfin\"],\"zNyR4f\":[\"Imposta il profilo di qualità e la cartella radice preferiti\"],\"za8Le/\":[\"Registrazione chiusa\"],\"zb77GC\":[\"Noleggia\"],\"ztAdhw\":[\"Nome aggiornato\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"+5kO8P\":[\"Sabato\"],\"+6i0lS\":[\"Recupero della cronologia, watchlist e valutazioni...\"],\"+Cv+V9\":[\"Rimuovi dalla libreria\"],\"+JkEpu\":[\"Questa pagina è rimasta sul pavimento della sala di montaggio. Potrebbe essere stata spostata, rimossa, o non essere mai arrivata alla sceneggiatura.\"],\"+K0AvT\":[\"Disconnetti\"],\"+N0l5/\":[\"Connesso a <0>\",[\"serverHost\"],\". Tocca per cambiare.\"],\"+gLHYi\":[\"Impossibile caricare il titolo\"],\"+j1ex/\":[\"Impossibile rimuovere dalla libreria\"],\"+nF1ZO\":[\"Rimuovi foto\"],\"/+6dvC\":[\"Errori (\",[\"0\"],\")\"],\"/BBXeA\":[\"Connessione al server in corso...\"],\"/DwR+n\":[\"Creazione in corso…\"],\"/XtbPO\":[[\"0\"],\" titles\"],\"/cg+QV\":[\"Segna tutta la stagione come vista\"],\"/gQXGv\":[\"Impossibile aggiornare lo stato\"],\"/nT6AE\":[\"Nuova password\"],\"/sHc1/\":[\"Controllo aggiornamenti\"],\"0+dyau\":[\"Impossibile aggiornare l'impostazione di conservazione\"],\"0BFJKK\":[\"Autorizzazione negata. Riprova.\"],\"0GHb20\":[\"Svuotare la cache metadati?\"],\"0IBW21\":[\"Impossibile svuotare le cache\"],\"0gH/sc\":[\"Rimuovi immagine del profilo\"],\"1+P9RR\":[\"Passa a \",[\"0\"]],\"12cc1j\":[\"In visione\"],\"12lVOl\":[\"Tracker film & TV self-hosted\"],\"1B4z0M\":[\"Filmografia\"],\"1J4Ek0\":[\"Esegui il backup automatico del database secondo una pianificazione\"],\"1JhxXW\":[\"Episodio \",[\"0\"],\", \",[\"episodeLabel\"]],\"1N6wNP\":[\"Opzioni di importazione\"],\"1Qz4uG\":[\"Abilita la categoria evento \\\"Playback\\\"\"],\"1hMWR6\":[\"Crea account\"],\"1jHIjh\":[\"Segnata come vista tutta la \",[\"seasonName\"]],\"1vSYsG\":[\"Scarica backup\"],\"1wL1tj\":[\"Serie TV\"],\"2FletP\":[[\"0\",\"plural\",{\"one\":[\"#\",\" titolo\"],\"other\":[\"#\",\" titoli\"]}],\", \",[\"1\",\"plural\",{\"one\":[\"#\",\" persona\"],\"other\":[\"#\",\" persone\"]}],\", \",[\"2\",\"plural\",{\"one\":[\"#\",\" file\"],\"other\":[\"#\",\" file\"]}],\" eliminati (\",[\"freed\"],\" liberati)\"],\"2Fsd9r\":[\"Questo mese\"],\"2MPcep\":[\"Importazione completata\"],\"2Mu33Z\":[\"Gestione cache\"],\"2POOFK\":[\"Gratis\"],\"2Pt2NY\":[\"Questo rimuoverà tutti gli elementi dalla tua cronologia.\"],\"2fCpt5\":[\"Torna alla home\"],\"2pPBp6\":[\"In tendenza oggi\"],\"39neVN\":[\"Movies \",[\"0\"]],\"39y5bn\":[\"Venerdì\"],\"3Blefz\":[\"Valutazioni\"],\"3JTlG8\":[\"Ricerche recenti\"],\"3Jy8bM\":[\"Film \",[\"select\"]],\"3L9OuQ\":[\"Episodio \",[\"0\"]],\"3T/4MV\":[\"this year\"],\"3T8ziB\":[\"Crea un account\"],\"3hELxX\":[\"Inserisci l'URL del tuo server Sofa per iniziare\"],\"4fxLkp\":[\"Apri Sonarr, vai su <0>Impostazioni > Liste di importazione\"],\"4kpBqM\":[\"Ultimo evento \",[\"0\"]],\"4uUjVO\":[\"Produttore\"],\"4x+A56\":[\"Segnalazione anonima dell'utilizzo\"],\"5IShvp\":[\"Importa \",[\"totalItems\"],\" elementi\"],\"5IYJSv\":[\"Esplora titoli\"],\"5Y4mym\":[\"Importa da \",[\"0\"]],\"5ZzgbQ\":[\"Connetti \",[\"0\"]],\"5fEnbK\":[\"Impossibile aggiornare l'impostazione di backup pianificato\"],\"5lWFkC\":[\"Accedi\"],\"5v9C16\":[\"Connesso a \",[\"source\"]],\"623bR4\":[\"Impossibile avviare il job\"],\"6HN0yh\":[\"Apri Plex, vai su Impostazioni > Webhook\"],\"6TNjOJ\":[\"Impossibile aggiornare la valutazione\"],\"6TfUy6\":[\"ultimi \",[\"value\"]],\"6V3Ea3\":[\"Copiato\"],\"6YtxFj\":[\"Nome\"],\"6exX+8\":[\"Rigenera\"],\"6gRgw8\":[\"Riprova\"],\"6lGV3K\":[\"Mostra meno\"],\"76++pR\":[\"Avvisi\"],\"77DIAu\":[\"Vai su Dashboard > Plugin > Webhook\"],\"79m/GK\":[\"Episodes \",[\"0\"]],\"7Bj3x9\":[\"Non riuscito\"],\"7D50KC\":[\"Disconnesso: \",[\"label\"]],\"7GfM5w\":[\"Visualizzati di recente\"],\"7L01XJ\":[\"Azioni\"],\"7eMo+U\":[\"Vai alla home\"],\"7p5kLi\":[\"Dashboard\"],\"85eoJ1\":[\"Pianificazione aggiornata\"],\"8B9E2D\":[\"Giorno:\"],\"8YwF1J\":[\"Vai su <0>Dashboard > Plugin > Webhook\"],\"8ZsakT\":[\"Password\"],\"8tjQCz\":[\"Esplora\"],\"8vNtLy\":[\"Incolla l'URL di Radarr nel campo URL della lista\"],\"8wYDMp\":[\"Hai già un account?\"],\"9AE3vb\":[\"Apri Plex, vai su <0>Impostazioni > Webhook<1/>\"],\"9GW0ZB\":[\"L'importazione è ancora in corso in background. Ricontrolla più tardi.\"],\"9NyAH9\":[\"Ignorati\"],\"9Xhrps\":[\"Impossibile connettersi\"],\"9ZLGbA\":[\"backups.\"],\"9eF5oV\":[\"Bentornato\"],\"9rG25a\":[\"URL server\"],\"A+0rLe\":[\"Segnato come completato\"],\"A1taO8\":[\"Search\"],\"AOHgZp\":[\"Episodi\"],\"AOddWK\":[\"Connetti \",[\"label\"]],\"ATfxL/\":[\"Trailer\"],\"AVlZoM\":[\"Ambiente\"],\"Acf6vF\":[\"Salva nome\"],\"AdoUfN\":[\"Impossibile aggiungere alla watchlist\"],\"AeXO77\":[\"Account\"],\"AjtYj0\":[\"In watchlist\"],\"Avee+B\":[\"Impossibile aggiornare il nome\"],\"B2R3xD\":[\"Attiva/disattiva backup pianificati\"],\"BEVzjL\":[\"Importazione fallita\"],\"BQnS5I\":[\"Apri \",[\"source\"],\" per inserire il codice\"],\"BUnoSB\":[[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"backup\"],\"other\":[\"backup\"]}],\" archiviati\"],\"BpttUI\":[\"In tendenza oggi\"],\"BrrIs8\":[\"Archiviazione\"],\"BskWMl\":[\"Non raggiungibile\"],\"BzEFor\":[\"o\"],\"CGDHFb\":[\"Aggiungi una <0>Destinazione generica e incolla l'URL sopra\"],\"CGExDN\":[\"Impossibile svuotare la cache immagini\"],\"CHeXFE\":[\"Stato aggiornato\"],\"CKyk7Q\":[\"Torna indietro\"],\"CaB/+I\":[\"Bentornato, \",[\"name\"]],\"CodnUh\":[\"Rimosso dalla libreria\"],\"CpzGJY\":[\"L'operazione potrebbe richiedere alcuni minuti per librerie grandi. Non chiudere questa scheda.\"],\"CuPxpd\":[\"Richiede un abbonamento <0>Plex Pass<1/> attivo.\"],\"CzBN6D\":[\"Inizia a esplorare\"],\"D+R2Xs\":[\"Avvio importazione...\"],\"D3C4Yx\":[\"La password attuale è obbligatoria\"],\"DBC3t5\":[\"Domenica\"],\"DI4lqs\":[\"Persona non trovata\"],\"DKBbJf\":[\"Aggiunto \\\"\",[\"titleName\"],\"\\\" alla watchlist\"],\"DPfwMq\":[\"Fatto\"],\"DZse/o\":[\"Aggiungi una \\\"Destinazione generica\\\" e incolla l'URL sopra\"],\"E/QGRL\":[\"Disabilitato\"],\"E6nRW7\":[\"Copia URL\"],\"EWQlBH\":[\"La tua libreria è vuota\"],\"EWaCfj\":[\"Inserisci la tua password attuale e scegline una nuova.\"],\"Eeo/Gy\":[\"Impossibile aggiornare l'impostazione\"],\"Efn6WU\":[\"Questo eliminerà tutti i titoli stub non arricchiti e tutte le immagini in cache dal disco. Tutto verrà reimportato e riscaricato secondo necessità.\"],\"Etp5if\":[\"Importazione da \",[\"source\"],\" completata.\"],\"F006BN\":[\"Importa da \",[\"source\"]],\"FNvDMc\":[\"Questa settimana\"],\"FWSp+7\":[\"Inserisci il codice qui sotto sul sito di \",[\"source\"],\" per autorizzare Sofa.\"],\"FXN0ro\":[\"Raccomandazioni\"],\"FaU7Ag\":[\"Abilita il tipo di notifica \\\"Playback Stop\\\"\"],\"FhvLDl\":[[\"watchedCount\"],\"/\",[\"0\"],\" episodes\"],\"Fo2bwm\":[\"Attore\"],\"FwRqjE\":[\"Utilizzo disco: cache immagini e backup\"],\"G00fgM\":[\"ultimi \",[\"n\"]],\"G3myU+\":[\"Martedì\"],\"GcCthe\":[\"In libreria\"],\"Gf39AA\":[[\"0\"],\" attivato\"],\"GnhfWw\":[\"Attiva/disattiva controllo aggiornamenti automatico\"],\"GptGxg\":[\"Cambia password\"],\"GqTZ+S\":[\"Valutato \",[\"ratingStars\"],\" \",[\"ratingStars\",\"plural\",{\"one\":[\"stella\"],\"other\":[\"stelle\"]}]],\"GrdN/F\":[\"Recuperati — \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"episodio\"],\"other\":[\"episodi\"]}],\" segnati come visti\"],\"H4B5LG\":[\"Questo prodotto utilizza le API di TMDB ma non è approvato o certificato da TMDB.\"],\"HBRd5n\":[\"Stagione \",[\"0\"]],\"HD+aQ7\":[\"Backup del database\"],\"HG+31u\":[\"Svuotare tutte le cache?\"],\"Haz+72\":[\"Questo eliminerà tutte le immagini TMDB in cache dal disco. Le immagini verranno riscaricate automaticamente secondo necessità.\"],\"HbReP5\":[\"Segnato \\\"\",[\"titleName\"],\"\\\" come completato\"],\"Hg6o8v\":[\"Aggiorna stato di salute del sistema\"],\"HmEjnC\":[\"Ultimo evento \",[\"timeAgo\"]],\"HvDfH/\":[\"Importati\"],\"I89uD4\":[\"Ripristino in corso…\"],\"IRoxQm\":[\"Registrazione chiusa\"],\"IS0nrP\":[\"Crea account\"],\"IY9rQ0\":[\"Libera spazio sul disco svuotando i metadati e le immagini in cache\"],\"IrC12v\":[\"Applicazione\"],\"J28zul\":[\"Connessione in corso...\"],\"J64cFL\":[\"Aggiornamento libreria\"],\"JKmmmN\":[\"Aggiunto alla watchlist\"],\"JN0f/Y\":[\"Connetti a TMDB\"],\"JR6aH2\":[\"Movies \",[\"periodSelect\"]],\"JRQitQ\":[\"Conferma nuova password\"],\"JRadFJ\":[\"Inizia a tracciare le tue visioni\"],\"JSwq8t\":[\"La creazione di nuovi account è attualmente disabilitata.\"],\"JY5Oyv\":[\"Database\"],\"JjsJnI\":[[\"0\"],\"/\",[\"1\"],\" episodes\"],\"JrFTcr\":[\"Connessione in corso…\"],\"JwFbe8\":[\"TV\"],\"KDw4GX\":[\"Riprova\"],\"KG6681\":[\"Episodio visto\"],\"KIS/Sd\":[\"Esci dalle altre sessioni\"],\"KK0ghs\":[\"Cache immagini\"],\"KVAoFR\":[\"illimitato\"],\"KcXJuc\":[\"Svuotamento in corso...\"],\"KhtG3o\":[\"Aggiorna password\"],\"Khux7w\":[[\"0\",\"plural\",{\"one\":[\"#\",\" titolo\"],\"other\":[\"#\",\" titoli\"]}]],\"KmWyx0\":[\"Job\"],\"KoF0x6\":[\"età \",[\"age\"]],\"Ksiej9\":[\"Richiede un abbonamento Plex Pass attivo.\"],\"Kx9NEt\":[\"Token non valido\"],\"Lk6Jb/\":[\"Ultimo polling \",[\"timeAgo\"]],\"LmEEic\":[\"In attesa di autorizzazione...\"],\"LqKH42\":[\"Connetti con \",[\"0\"]],\"Lrpjji\":[\"Disconnetti \",[\"label\"]],\"Lu6Udx\":[\"Clicca \\\"+\\\" e seleziona \\\"Custom Lists\\\"\"],\"MDoX++\":[\"URL lista Sonarr\"],\"MRBlCJ\":[\"Impossibile rimuovere il segno da alcuni episodi\"],\"MUO7w9\":[\"Segnato \\\"\",[\"titleName\"],\"\\\" come visto\"],\"MZbQHL\":[\"Nessun risultato trovato.\"],\"MdxR1u\":[\"Choose your preferred display language\"],\"MkyzAV\":[\"Autorizza Sofa a leggere la tua libreria \",[\"0\"],\". Nessuna password condivisa.\"],\"N40H+G\":[\"Tutti\"],\"N6SFhC\":[\"Accedi invece\"],\"N7h106\":[\"Sofa v\",[\"0\"],\" è disponibile\"],\"N9RF2M\":[\"Clicca \\\"Add Webhook\\\" e incolla l'URL sopra\"],\"NBo4z0\":[\"Clicca <0>+ e seleziona <1>Custom Lists\"],\"NICUmW\":[\"Regista\"],\"NQzPoO\":[\"Nuovo backup\"],\"NSxl1l\":[\"Altre impostazioni\"],\"NVF43p\":[\"Ora:\"],\"NdPMwS\":[\"Nella tua libreria\"],\"NgaPSG\":[\"Impossibile aggiornare la pianificazione\"],\"O3oNi5\":[\"Email\"],\"OBcj5W\":[\"Questo invaliderà l'URL attuale di \",[\"label\"],\". Dovrai aggiornarlo in \",[\"label\"],\".\"],\"OL8hbM\":[\"La nuova password deve contenere almeno 8 caratteri\"],\"ONWvwQ\":[\"Carica\"],\"OPFjyX\":[\"Installa il <0>plugin Webhook<1/> dal catalogo plugin di Jellyfin\"],\"OW/+RD\":[\"Cronologia visioni\"],\"OZdaTZ\":[\"Persona\"],\"OvO76u\":[\"Torna al login\"],\"OvdFIZ\":[\"Stagione vista\"],\"P2FLLe\":[\"Visualizza rilascio\"],\"PBdLfg\":[\"Nessun titolo trovato per questo genere.\"],\"PQ3qDa\":[\"Recupero dei dati della tua libreria da \",[\"source\"],\"...\"],\"PjNoxI\":[\"Backup pianificato\"],\"Pn2B7/\":[\"Password attuale\"],\"PnEbL/\":[\"Valutato \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"stella\"],\"other\":[\"stelle\"]}]],\"Pwqkdw\":[\"Caricamento…\"],\"Py87xY\":[\"Autorizzazione riuscita ma impossibile recuperare la libreria. Riprova.\"],\"Q3MPWA\":[\"Aggiorna password\"],\"QHcLEN\":[\"Connesso\"],\"QK4UIx\":[\"Segna come visto\"],\"Qjlym2\":[\"Impossibile creare l'account\"],\"Qm1NmK\":[\"O\"],\"Qoq+GP\":[\"Leggi di più\"],\"QphVZW\":[\"Impossibile raggiungere il server\"],\"QqLJHH\":[\"Quest'anno\"],\"R0yu2l\":[\"Recupera episodi\"],\"R4YBui\":[\"Cerca film e serie TV per iniziare a tracciare\"],\"RH46vw\":[[\"0\"],\"/\",[\"1\"],\" \",[\"2\",\"plural\",{\"one\":[\"episodio\"],\"other\":[\"episodi\"]}]],\"RIR15/\":[\"URL lista Radarr\"],\"RLe7Vk\":[\"Verifica in corso…\"],\"ROq8cl\":[\"Impossibile analizzare il file\"],\"RQq8Si\":[\"Registrazione aperta\"],\"S0soqb\":[\"Impossibile rimuovere l'immagine del profilo\"],\"S1McZh\":[\"Impossibile caricare l'avatar\"],\"S2ble5\":[[\"0\"],\" film, \",[\"1\"],\" episodi\"],\"S2qPRR\":[\"Cerca film e serie TV…\"],\"SDND4q\":[\"Non configurato\"],\"SFdAk9\":[\"Non visto S\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"SUIUkB\":[\"Rimuovi visione dalla stagione\"],\"SbS+Bm\":[\"Rigenera URL\"],\"SlfejT\":[\"Errore\"],\"Sp86ju\":[[\"0\"],\" ep\",[\"1\"]],\"SrfROI\":[\"Prossimo\"],\"SyPRjk\":[\"Sofa registrerà automaticamente film ed episodi quando finisci di guardarli\"],\"T0/7WG\":[\"Prossimo backup \",[\"distance\"]],\"TEaX6q\":[\"Backup eliminato\"],\"TI7IKo\":[\"Rated \",[\"0\"],\" star\",[\"1\"]],\"TMb7iE\":[\"Immagine del profilo rimossa\"],\"TqyQQS\":[\"Abilita la categoria evento <0>Playback\"],\"Tz0i8g\":[\"Impostazioni\"],\"U+FxtW\":[\"Traccia cosa guardi. Sai cosa ti aspetta.<0/>La tua libreria, i tuoi dati, le tue regole.\"],\"U3pytU\":[\"Admin\"],\"UC+OWB\":[\"Attiva/disattiva registrazione aperta\"],\"UDMjsP\":[\"Azioni rapide\"],\"UmQ6Fe\":[\"Svuotare la cache immagini?\"],\"UtDm3q\":[\"URL copiato negli appunti\"],\"V1Kh9Z\":[\"Episodi \",[\"select\"]],\"V6uzvC\":[\"Simili a questo\"],\"V9CuQ+\":[\"Connetti a \",[\"source\"]],\"VAcXNz\":[\"Mercoledì\"],\"VKyhZK\":[\"Titolo non trovato\"],\"VQvpro\":[\"Incolla l'URL di Sonarr nel campo URL della lista\"],\"VhMDMg\":[\"Cambia password\"],\"Vx0ayx\":[\"Impossibile segnare alcuni episodi\"],\"WDC4PF\":[\"Episodes \",[\"periodSelect\"]],\"WEYdDv\":[\"Consigliati\"],\"WMCwmR\":[\"Cerca aggiornamenti\"],\"WP48q2\":[\"Cache immagini\"],\"WT1Ibn\":[\"Ultima esecuzione\"],\"Wb3E4g\":[\"Esegui ora\"],\"WgF2UQ\":[\"Stai usando la v\",[\"0\"],\".\"],\"WtWhSi\":[\"Valutazione rimossa\"],\"Wy/3II\":[\"Ultimo polling \",[\"0\"]],\"X0OwOB\":[\"today\"],\"XFCSYs\":[\"Cast\"],\"XN23JY\":[\"Questo eliminerà i titoli stub non arricchiti che non sono in nessuna libreria utente e pulerà i record di persone orfane. I titoli eliminati verranno reimportati se consultati di nuovo.\"],\"XZwihE\":[\"Pronto — nessun evento ricevuto ancora\"],\"XjTduw\":[\"Carica immagine\"],\"YEGzVq\":[\"Impossibile connettere \",[\"label\"]],\"YErf89\":[\"Impossibile svuotare la cache metadati\"],\"YQ768h\":[\"Scena non trovata\"],\"YiRsXK\":[\"Cancellare la cronologia recente?\"],\"Yjp1zf\":[\"Non hai un server?\"],\"YqMfa9\":[\"Rivedi i risultati trovati e scegli cosa importare.\"],\"ZGUYm0\":[\"Pronto — nessun polling ancora\"],\"ZQKLI1\":[\"Zona pericolosa\"],\"ZVZUoU\":[[\"0\"],\" immagini in cache\"],\"ZWTQ81\":[\"Guarda su \",[\"name\"]],\"a3LDKx\":[\"Sicurezza\"],\"aLBUiR\":[\"Mantenendo <0><1><2>\",[\"0\"],\"<3>\",[\"1\"],\" backup.\"],\"aM0+kY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" titolo obsoleto\"],\"other\":[\"#\",\" titoli obsoleti\"]}],\" e \",[\"1\",\"plural\",{\"one\":[\"#\",\" persona orfana\"],\"other\":[\"#\",\" persone orfane\"]}],\" eliminati\"],\"aO1AxG\":[\"Episodio non visto\"],\"aV/hDI\":[\"Impossibile disconnettere \",[\"label\"]],\"acbSg0\":[\"Tocca due volte per filtrare per \",[\"label\"]],\"agE7k4\":[[\"stars\",\"plural\",{\"one\":[\"#\",\" stella\"],\"other\":[\"#\",\" stelle\"]}]],\"alPRaV\":[\"I titoli nella tua watchlist di Sofa verranno aggiunti automaticamente per il download quando Radarr interroga questa lista (ogni 12 ore per impostazione predefinita)\"],\"aourBv\":[\"Backup pianificati abilitati\"],\"apLLSU\":[\"Sei sicuro di voler uscire?\"],\"atc9MA\":[\"Apri Emby, vai su <0>Impostazioni > Webhook\"],\"auVUJO\":[\"Ripristinare il database?\"],\"ayqfr4\":[\"URL \",[\"label\"],\" rigenerato\"],\"b/8KCH\":[\"Questo segnerà tutti gli episodi di questa serie come visti. Puoi annullarlo in seguito de-segnando le singole stagioni.\"],\"b0F4W5\":[\"this month\"],\"b3Thhd\":[\"Caricamento fallito\"],\"b5DFtH\":[\"Imposta password\"],\"bHYIks\":[\"Esci\"],\"bITrbE\":[\"Svuota tutto\"],\"bNmdjU\":[\"Watchlist\"],\"bTRwag\":[\"Rimuovi dalla libreria\"],\"bXMotV\":[\"Segnato come visto\"],\"bezGJ2\":[[\"0\"],\" images\"],\"boJlGf\":[\"Pagina non trovata\"],\"c1ssjI\":[\"Importazione da \",[\"source\"],\" in corso\"],\"c3b0B0\":[\"Inizia\"],\"c4b9Dm\":[\"Nessun risultato per \\\"\",[\"debouncedQuery\"],\"\\\"\"],\"cQPKZt\":[\"Vai alla Dashboard\"],\"ccAJSB\":[\"Keeping\"],\"cgvva8\":[[\"0\"],\" valutazioni\"],\"cnGeoo\":[\"Elimina\"],\"cpE88+\":[\"Crea il tuo account\"],\"d/6MoL\":[\"Gestisci il tuo account e le tue preferenze\"],\"dA7BWh\":[\"Richiede Emby Server 4.7.9+ e una licenza Emby Premiere attiva.\"],\"dEgA5A\":[\"Annulla\"],\"dTZwve\":[\"Tutti gli episodi segnati come visti\"],\"dUCJry\":[\"Più recenti\"],\"ddwpAr\":[\"Avvisi (\",[\"0\"],\")\"],\"e/ToF5\":[\"Accedi con \",[\"0\"]],\"e9sZMS\":[\"Questo eliminerà definitivamente il backup del <0>\",[\"0\"],\". L'operazione non può essere annullata.\"],\"eFRooE\":[\"Ultima esecuzione fallita\"],\"eM39Om\":[\"Segnata come vista tutta la \",[\"seasonLabel\"]],\"eZjYb8\":[\"Sceneggiatore\"],\"ecUA8p\":[\"Oggi\"],\"evBxZy\":[\"Dove guardarlo\"],\"ezDa1h\":[\"Apri la documentazione\"],\"f+m696\":[\"Si è verificato un errore imprevisto durante il caricamento di questa pagina. Puoi riprovare o tornare alla dashboard.\"],\"f/AKdU\":[\"Sei sicuro di voler disconnettere \",[\"label\"],\"? L'URL attuale smetterà di funzionare.\"],\"f7ax8J\":[\"Apri nel browser…\"],\"fMPkxb\":[\"Mostra di più\"],\"fNMqNn\":[\"Serie TV popolari\"],\"fObVvy\":[\"Immagine del profilo aggiornata\"],\"fRettQ\":[[\"0\"],\" elementi\"],\"fUDRF9\":[\"In watchlist\"],\"fcWrnU\":[\"Esci\"],\"fgLNSM\":[\"Registrati\"],\"fsAEqk\":[\"Continua a guardare\"],\"fzAeQI\":[\"Registrazione su \",[\"serverHost\"]],\"g+gBfk\":[\"Analisi in corso...\"],\"g4JYff\":[\"Importati \",[\"0\"],\" elementi da \",[\"1\"]],\"gKtb5i\":[\"I titoli nella tua watchlist di Sofa verranno aggiunti automaticamente per il download quando Sonarr interroga questa lista (ogni 6 ore per impostazione predefinita)\"],\"gaIAMq\":[\"Rimuovi immagine\"],\"gbEEMp\":[\"Elimina backup\"],\"gcNLi0\":[\"Controllo aggiornamenti abilitato\"],\"gmB6oO\":[\"Pianificazione\"],\"h/T5Yb\":[\"Registrazione aperta\"],\"h4yKYk\":[\"Prossima esecuzione\"],\"h7MgpO\":[\"Scorciatoie da tastiera\"],\"hTXYdY\":[\"Impossibile creare il backup\"],\"hXYY5Q\":[\"Rimossa visione di \",[\"0\"]],\"he3ygx\":[\"Copia\"],\"hjGupC\":[\"Connessione all'importazione persa. Controlla lo stato nelle impostazioni.\"],\"hlqjFc\":[\"In libreria\"],\"hou0tP\":[\"Streaming\"],\"hty0d5\":[\"Lunedì\"],\"i0qMbr\":[\"Home\"],\"i9rcQ/\":[\"Film\"],\"iGma9e\":[\"Aggiornamento fallito\"],\"iSLIjg\":[\"Connetti\"],\"iWv3ck\":[\"Impossibile recuperare gli episodi\"],\"iXZ09g\":[\"Segna come completato\"],\"id08cd\":[\"Visto S\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"ih87w/\":[\"Aggiungi alla libreria\"],\"ihn4zD\":[\"Cerca…\"],\"itDEco\":[\"Hai già un account? Accedi\"],\"itheEn\":[\"Con pubblicità\"],\"iwCRIF\":[\"Verrai disconnesso per cambiare l'URL del server.\"],\"j5GBIy\":[\"Apri Radarr, vai su Impostazioni > Liste di importazione\"],\"jAe8l4\":[[\"0\"],\" backup · ultimo <0/>\"],\"jB3sfe\":[\"Backup manuale\"],\"jFnMJ8\":[\"Tocca due volte per rimuovere questo filtro\"],\"jQsPwL\":[\"Backup pianificati disabilitati\"],\"jSjGeu\":[[\"0\"],\" elementi non hanno ID esterni e verranno risolti tramite ricerca per titolo, che potrebbe essere meno accurata.\"],\"jX6Gzg\":[\"Questo sostituirà l'intero database con il file caricato. Prima verrà creato un backup di sicurezza dei dati attuali. Le sessioni attive potrebbero richiedere un aggiornamento dopo il ripristino.\"],\"jiHVUy\":[\"Backup pre-ripristino\"],\"k6c41p\":[\"Job in background\"],\"kBDOjB\":[\"Pianificazione backup\"],\"kkDQ8m\":[\"Giovedì\"],\"klOeIX\":[\"Impossibile cambiare la password\"],\"ks3XeZ\":[\"Apri Sonarr, vai su Impostazioni > Liste di importazione\"],\"kvuCtu\":[\"Qualcosa è andato storto durante il caricamento di questo titolo. Riprova.\"],\"kx0s+n\":[\"Risultati\"],\"l2wcoS\":[\"Ultima esecuzione riuscita\"],\"l3s5ri\":[\"Importazione\"],\"lCF0wC\":[\"Aggiorna\"],\"lJ1yo4\":[\"Impossibile accedere\"],\"lVqzRx\":[\"Clicca <0>Add Webhook e incolla l'URL sopra\"],\"lXkUEV\":[\"Disponibilità\"],\"lcLe89\":[\"Cerca film, serie TV o esegui comandi\"],\"lfVyvz\":[\"Aggiungi alla watchlist\"],\"llDXYJ\":[\"Backup\"],\"llkZR0\":[\"Impossibile caricare le integrazioni\"],\"ln9/n9\":[\"Non hai un account?\"],\"lpIMne\":[\"Le password non corrispondono\"],\"lqY3WY\":[\"Cambia server\"],\"luoodD\":[\"Configurazione richiesta\"],\"m5WhJy\":[\"Controllo aggiornamenti automatico\"],\"mIx58S\":[\"Svuota immagini\"],\"mYBORk\":[\"Film\"],\"ml9cU0\":[\"Impossibile rigenerare l'URL di \",[\"label\"]],\"mqwkjd\":[\"Stato di salute\"],\"mqxHH7\":[\"Vai a Esplora\"],\"mzI/c+\":[\"Scarica\"],\"n1ekoW\":[\"Accedi\"],\"n3Pzd7\":[\"Backup creato\"],\"nBHvPL\":[\"Annulla modifica\"],\"nJw77c\":[[\"0\",\"plural\",{\"one\":[\"#\",\" immagine\"],\"other\":[\"#\",\" immagini\"]}]],\"nO0Qnj\":[\"Il tuo codice:\"],\"nRP1xx\":[\"Serve altro aiuto?\"],\"nV1LjT\":[\"Abilita il tipo di notifica <0>Playback Stop\"],\"nVsE67\":[\"Segna come in visione\"],\"nZ7lF1\":[\"Il codice del dispositivo è scaduto. Riprova.\"],\"nbfdhU\":[\"Integrazioni\"],\"nbmpf9\":[\"Svuota metadati\"],\"nnKJTm\":[\"Impossibile segnare tutti gli episodi come visti\"],\"nszbQG\":[\"Nessun backup ancora\"],\"nuh/Wq\":[\"URL webhook\"],\"nwtY4N\":[\"Qualcosa è andato storto\"],\"oAIA3w\":[\"Cerca film, serie TV o persone\"],\"oC8IMh\":[\"Cerca film, serie, persone...\"],\"oNvZcA\":[\"Episodi di questa settimana\"],\"oXq+Wr\":[\"Connesso: \",[\"label\"]],\"ogtYkT\":[\"Password aggiornata\"],\"ojtedN\":[\"Apri Radarr, vai su <0>Impostazioni > Liste di importazione\"],\"olMi35\":[\"Consigliati per te\"],\"p+PZEl\":[\"Ecco cosa sta succedendo nella tua libreria\"],\"pAtylB\":[\"Non trovato\"],\"pG9pq1\":[\"Eliminati \",[\"0\",\"plural\",{\"one\":[\"#\",\" file\"],\"other\":[\"#\",\" file\"]}],\", liberati \",[\"freed\"]],\"pWWFjv\":[\"Controllato <0/>\"],\"ph76H6\":[\"Consenti la creazione di nuovi account\"],\"pjgw0N\":[\"Scegli come importare i tuoi dati \",[\"0\"],\".\"],\"puo3W3\":[\"Reindirizzamento in corso…\"],\"q3GraM\":[\"...e altri \",[\"0\"]],\"q6nrFE\":[\"morto a \",[\"age\"]],\"q6pUQ9\":[\"Carica un file .db per sostituire il database attuale. Prima viene creato un backup di sicurezza.\"],\"q8yluz\":[\"Il tuo nome\"],\"qA6VR5\":[\"Richiede <0>Emby Server 4.7.9+ e una licenza <1>Emby Premiere<2/> attiva.\"],\"qF2IBM\":[\"Film di questo mese\"],\"qHbApt\":[\"Impossibile caricare le impostazioni di pianificazione backup.\"],\"qLB1zX\":[\"Carica un'esportazione \",[\"0\"],\" dalle impostazioni del tuo account \",[\"1\"],\".\"],\"qPNzfu\":[\"Controllo aggiornamenti disabilitato\"],\"qWoML/\":[\"Aggiungi un nuovo webhook e incolla l'URL sopra\"],\"qiOIiY\":[\"Acquista\"],\"qn1X6N\":[\"Impossibile aggiornare l'impostazione di registrazione\"],\"qqWcBV\":[\"Completato\"],\"qqeAJM\":[\"Mai\"],\"r9aDAY\":[[\"count\"],\" earlier \",[\"count\",\"plural\",{\"one\":[\"episode\"],\"other\":[\"episodes\"]}],\" unwatched\"],\"rLgPvm\":[\"Backup\"],\"rSTpb5\":[\"Salute del server\"],\"rczylF\":[\"this week\"],\"rdymVD\":[\"Avvia job\"],\"rtir7c\":[\"sconosciuto\"],\"s0U4ZZ\":[\"Episodi TV\"],\"s4vVUm\":[\"Impossibile caricare i dettagli della persona\"],\"s9dVME\":[\"Impossibile rimuovere il segno dall'episodio\"],\"sGH11W\":[\"Server\"],\"sl/qWH\":[\"Carica immagine del profilo\"],\"sstysK\":[\"Impossibile segnare l'episodio\"],\"stZeiF\":[[\"watched\"],\"/\",[\"total\"],\" episodi\"],\"t/Ch8S\":[\"Segnato come in visione\"],\"t/YqKh\":[\"Rimuovi\"],\"tfDRzk\":[\"Salva\"],\"tiymc0\":[\"Qualcosa è andato storto…\"],\"u9ugU7\":[[\"watchedCount\"],\"/\",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"episodio\"],\"other\":[\"episodi\"]}]],\"uBAxNB\":[\"Montatore\"],\"uBrbSu\":[\"Impossibile avviare la connessione \",[\"0\"]],\"uM6jnS\":[\"Ripristino fallito\"],\"uMrJrX\":[\"Solo admin\"],\"uswLvZ\":[\"Il titolo che stai cercando non esiste o potrebbe essere stato rimosso dal database.\"],\"uxOntd\":[[\"watchedCount\"],\" di \",[\"0\"],\" episodi visti\"],\"v2CA3w\":[\"Cambia foto\"],\"v5ipVu\":[\"Segnare tutti gli episodi come visti?\"],\"vKfeax\":[\"Apri Emby, vai su Impostazioni > Webhook\"],\"vXIe7J\":[\"Lingua\"],\"vuCCZ7\":[\"Impossibile analizzare i dati di importazione\"],\"vwKERN\":[\"Impossibile eliminare il backup\"],\"w8pqsh\":[\"Segna tutti come visti\"],\"wA7B2T\":[\"La registrazione di nuovi account non è disponibile al momento. Contatta l'amministratore per richiedere l'accesso.\"],\"wGFX13\":[\"Inizia alle\"],\"wR1UAy\":[\"Film popolari\"],\"wRWcdL\":[\"Riproduci trailer\"],\"wThGrS\":[\"Impostazioni app\"],\"wZK4Xg\":[\"Mai eseguito\"],\"wdLxgL\":[\"Membro dal \",[\"memberSince\"]],\"wja8aL\":[\"Senza titolo\"],\"wtGebH\":[\"La persona che stai cercando non esiste o potrebbe essere stata rimossa dal database.\"],\"wtsbt5\":[\"Aggiungi alla watchlist\"],\"wtuVU4\":[\"Frequenza\"],\"wx7pwA\":[\"Segna come visto\"],\"x4ZiTl\":[\"Istruzioni di configurazione\"],\"xCJdfg\":[\"Cancella\"],\"xGVfLh\":[\"Continua\"],\"xLoCm2\":[\"Verifica configurazione\"],\"xSrU2g\":[[\"healthyCount\"],\" di \",[\"0\"],\" job attivi\"],\"xazqmy\":[\"Stagioni\"],\"xbBXhy\":[\"Controlla periodicamente GitHub per nuove versioni di Sofa\"],\"xrh2/M\":[\"Impossibile segnare come visto\"],\"y3e9pF\":[\"Eliminare il backup?\"],\"y6Urel\":[\"Episodio successivo\"],\"yGvjAo\":[\"Aggiornamento disponibile: \",[\"0\"]],\"yKu/3Y\":[\"Ripristina\"],\"yYxB17\":[\"Cancella tutto\"],\"ybtG1U\":[[\"0\"],\" backup\",[\"1\"],\" stored\"],\"yey/zg\":[\"Database ripristinato. Ricaricamento...\"],\"ygo0l/\":[\"Inizia a tracciare film e serie\"],\"yvwIbI\":[\"Carica file di esportazione\"],\"yz7wBu\":[\"Chiudi\"],\"z1U/Fh\":[\"Valutazione\"],\"z5evln\":[\"Nessuna connessione internet\"],\"zAvS8w\":[\"Accedi per continuare\"],\"zEqK2w\":[\"La pagina che stai cercando non esiste.\"],\"zFkiTv\":[\"Installa il plugin Webhook dal catalogo plugin di Jellyfin\"],\"zNyR4f\":[\"Imposta il profilo di qualità e la cartella radice preferiti\"],\"za8Le/\":[\"Registrazione chiusa\"],\"zb77GC\":[\"Noleggia\"],\"ztAdhw\":[\"Nome aggiornato\"]}")as Messages; \ No newline at end of file diff --git a/packages/i18n/src/po/pt.po b/packages/i18n/src/po/pt.po index b78accc..7edaf1d 100644 --- a/packages/i18n/src/po/pt.po +++ b/packages/i18n/src/po/pt.po @@ -24,12 +24,12 @@ msgid "...and {0} more" msgstr "...e mais {0}" #. placeholder {0}: systemHealth.data.imageCache.imageCount -#: apps/native/src/app/(tabs)/(settings)/index.tsx:456 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:438 msgid "{0, plural, one {# image} other {# images}}" msgstr "{0, plural, one {# imagem} other {# imagens}}" #. placeholder {0}: systemHealth.data.database.titleCount -#: apps/native/src/app/(tabs)/(settings)/index.tsx:442 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:424 msgid "{0, plural, one {# title} other {# titles}}" msgstr "{0, plural, one {# título} other {# títulos}}" @@ -44,12 +44,12 @@ msgstr "{0} {1, plural, one {backup armazenado} other {backups armazenados}}" #~ msgstr "{0} backup{1} stored" #. placeholder {0}: backups.backupCount -#: apps/web/src/components/settings/system-health-section.tsx:599 +#: apps/web/src/components/settings/system-health-section.tsx:593 msgid "{0} backups · last <0/>" msgstr "{0} backups · último <0/>" #. placeholder {0}: imageCache.imageCount.toLocaleString() -#: apps/web/src/components/settings/system-health-section.tsx:569 +#: apps/web/src/components/settings/system-health-section.tsx:563 msgid "{0} cached images" msgstr "{0} imagens em cache" @@ -157,6 +157,8 @@ msgstr "Conta" msgid "Actions" msgstr "Ações" +#: apps/native/src/app/person/[id].tsx:50 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:28 #: apps/web/src/components/people/person-hero.tsx:69 msgid "Actor" msgstr "Ator" @@ -200,18 +202,18 @@ msgid "Added to watchlist" msgstr "Adicionado à lista de desejos" #: apps/native/src/app/(tabs)/(settings)/index.tsx:342 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:431 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:470 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:413 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:452 #: apps/web/src/components/nav-bar.tsx:223 #: apps/web/src/components/settings/account-section.tsx:309 msgid "Admin" msgstr "Administrador" -#: apps/web/src/routes/_app/settings.tsx:118 +#: apps/web/src/routes/_app/settings.tsx:154 msgid "Admin only" msgstr "Apenas administradores" -#: apps/native/src/app/person/[id].tsx:267 +#: apps/native/src/app/person/[id].tsx:249 #: apps/web/src/components/people/person-hero.tsx:89 msgid "age {age}" msgstr "idade {age}" @@ -233,15 +235,15 @@ msgstr "Já tem uma conta?" msgid "Already have an account? Sign in" msgstr "Já tem uma conta? Entrar" -#: apps/web/src/routes/__root.tsx:143 +#: apps/web/src/routes/__root.tsx:142 msgid "An unexpected error occurred while loading this page. You can try again or head back to the dashboard." msgstr "Ocorreu um erro inesperado ao carregar esta página. Você pode tentar novamente ou voltar ao painel." -#: apps/native/src/app/(tabs)/(settings)/index.tsx:407 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:389 msgid "Anonymous usage reporting" msgstr "Relatório de uso anônimo" -#: apps/web/src/routes/_app/settings.tsx:99 +#: apps/web/src/routes/_app/settings.tsx:135 msgid "App Settings" msgstr "Configurações do App" @@ -307,8 +309,8 @@ msgstr "Backup excluído" msgid "Backup schedule" msgstr "Agendamento de backup" -#: apps/web/src/components/settings/system-health-section.tsx:589 -#: apps/web/src/routes/_app/settings.tsx:154 +#: apps/web/src/components/settings/system-health-section.tsx:583 +#: apps/web/src/routes/_app/settings.tsx:190 msgid "Backups" msgstr "" @@ -354,7 +356,7 @@ msgstr "Cancelar" msgid "Cancel editing" msgstr "Cancelar edição" -#: apps/native/src/app/title/[id].tsx:489 +#: apps/native/src/app/title/[id].tsx:493 #: apps/web/src/components/titles/cast-carousel.tsx:21 msgid "Cast" msgstr "Elenco" @@ -392,7 +394,7 @@ msgstr "Alterar Servidor" msgid "Check configuration" msgstr "Verificar configuração" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:483 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:465 msgid "Check for updates" msgstr "Verificar atualizações" @@ -420,7 +422,7 @@ msgstr "Escolha como importar seus dados do {0}." msgid "Clear" msgstr "Limpar" -#: apps/web/src/components/command-palette.tsx:302 +#: apps/web/src/components/command-palette.tsx:297 msgid "Clear all" msgstr "Limpar tudo" @@ -447,11 +449,12 @@ msgstr "Clique em <0>+ e selecione <1>Custom Lists" msgid "Click <0>Add Webhook and paste the URL above" msgstr "Clique em <0>Add Webhook e cole a URL acima" -#: apps/native/src/components/navigation/modal-stack-header.tsx:14 +#: apps/native/src/components/navigation/modal-layout.tsx:26 +#: apps/native/src/components/navigation/modal-layout.tsx:38 msgid "Close" msgstr "Fechar" -#: apps/native/src/app/(tabs)/(home)/index.tsx:54 +#: apps/native/src/app/(tabs)/(home)/index.tsx:146 #: apps/native/src/components/titles/status-action-button.tsx:45 #: apps/web/src/components/dashboard/stats-display.tsx:219 #: apps/web/src/components/title-card.tsx:74 @@ -492,7 +495,7 @@ msgid "Connect with {0}" msgstr "Conectar com {0}" #: apps/native/src/app/(auth)/server-url.tsx:176 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:449 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:431 #: apps/web/src/components/settings/system-health-section.tsx:236 msgid "Connected" msgstr "Conectado" @@ -521,7 +524,7 @@ msgstr "Conectando…" msgid "Continue" msgstr "Continuar" -#: apps/native/src/app/(tabs)/(home)/index.tsx:99 +#: apps/native/src/app/(tabs)/(home)/index.tsx:161 #: apps/web/src/components/dashboard/continue-watching-section.tsx:22 msgid "Continue Watching" msgstr "Continuar Assistindo" @@ -542,7 +545,7 @@ msgstr "Copiar URL" msgid "Could not load integrations" msgstr "Não foi possível carregar as integrações" -#: apps/native/src/app/person/[id].tsx:185 +#: apps/native/src/app/person/[id].tsx:172 msgid "Could not load person details" msgstr "Não foi possível carregar os detalhes da pessoa" @@ -576,18 +579,18 @@ msgstr "Senha atual" msgid "Current password is required" msgstr "A senha atual é obrigatória" -#: apps/web/src/routes/_app/settings.tsx:180 +#: apps/web/src/routes/_app/settings.tsx:216 msgid "Danger Zone" msgstr "Zona de Perigo" -#: apps/web/src/routes/__root.tsx:164 +#: apps/web/src/routes/__root.tsx:163 #: apps/web/src/routes/_app/people.$id.tsx:76 #: apps/web/src/routes/_app/titles.$id.tsx:119 #: apps/web/src/routes/_app/titles.$id.tsx:165 msgid "Dashboard" msgstr "Painel" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:439 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:421 #: apps/web/src/components/settings/system-health-section.tsx:210 msgid "Database" msgstr "Banco de Dados" @@ -627,17 +630,19 @@ msgstr "{0, plural, one {# arquivo excluído} other {# arquivos excluídos}}, {f msgid "Device code expired. Please try again." msgstr "Código do dispositivo expirou. Tente novamente." -#: apps/native/src/app/person/[id].tsx:267 +#: apps/native/src/app/person/[id].tsx:249 #: apps/web/src/components/people/person-hero.tsx:89 msgid "died at {age}" msgstr "faleceu aos {age}" +#: apps/native/src/app/person/[id].tsx:51 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:29 #: apps/web/src/components/people/person-hero.tsx:71 msgid "Director" msgstr "Diretor" #: apps/web/src/components/settings/system-health-section.tsx:394 -#: apps/web/src/components/settings/system-health-section.tsx:580 +#: apps/web/src/components/settings/system-health-section.tsx:574 msgid "Disabled" msgstr "Desativado" @@ -680,6 +685,8 @@ msgstr "Baixar" msgid "Download backup" msgstr "Baixar backup" +#: apps/native/src/app/person/[id].tsx:54 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:32 #: apps/web/src/components/people/person-hero.tsx:77 msgid "Editor" msgstr "" @@ -748,6 +755,11 @@ msgstr "Episódio assistido" msgid "Episodes" msgstr "Episódios" +#. placeholder {0}: periodLabels[episodePeriod] +#: apps/native/src/app/(tabs)/(home)/index.tsx:125 +msgid "Episodes {0}" +msgstr "" + #: apps/web/src/components/dashboard/stats-display.tsx:162 #~ msgid "Episodes {periodSelect}" #~ msgstr "Episodes {periodSelect}" @@ -757,8 +769,8 @@ msgid "Episodes {select}" msgstr "Episódios {select}" #: apps/native/src/app/(tabs)/(home)/index.tsx:52 -msgid "Episodes this week" -msgstr "Episódios desta semana" +#~ msgid "Episodes this week" +#~ msgstr "Episódios desta semana" #: apps/native/src/app/change-password.tsx:67 #: apps/native/src/app/change-password.tsx:77 @@ -770,7 +782,9 @@ msgstr "Erro" msgid "Errors ({0})" msgstr "Erros ({0})" -#: apps/native/src/app/(tabs)/(home)/index.tsx:127 +#: apps/native/src/app/(tabs)/(explore)/_layout.tsx:7 +#: apps/native/src/app/(tabs)/(home)/index.tsx:189 +#: apps/native/src/components/navigation/native-tab-bar.tsx:32 #: apps/web/src/components/nav-bar.tsx:116 #: apps/web/src/components/nav-bar.tsx:277 msgid "Explore" @@ -959,7 +973,7 @@ msgstr "Falha ao enviar avatar" msgid "Fetching your library data from {source}..." msgstr "Buscando seus dados da biblioteca em {source}..." -#: apps/native/src/app/person/[id].tsx:296 +#: apps/native/src/app/person/[id].tsx:279 #: apps/web/src/components/people/filmography-grid.tsx:67 msgid "Filmography" msgstr "Filmografia" @@ -988,9 +1002,9 @@ msgstr "Sexta-feira" msgid "Get Started" msgstr "Começar" -#: apps/native/src/app/person/[id].tsx:189 -#: apps/native/src/app/person/[id].tsx:213 -#: apps/native/src/app/title/[id].tsx:239 +#: apps/native/src/app/person/[id].tsx:176 +#: apps/native/src/app/person/[id].tsx:196 +#: apps/native/src/app/title/[id].tsx:235 msgid "Go back" msgstr "Voltar" @@ -1002,7 +1016,7 @@ msgstr "Ir para Início" msgid "Go to <0>Dashboard > Plugins > Webhook" msgstr "Acesse <0>Dashboard > Plugins > Webhook" -#: apps/web/src/components/command-palette.tsx:345 +#: apps/web/src/components/command-palette.tsx:339 msgid "Go to Dashboard" msgstr "Ir para o Painel" @@ -1010,7 +1024,7 @@ msgstr "Ir para o Painel" msgid "Go to Dashboard > Plugins > Webhook" msgstr "Acesse Dashboard > Plugins > Webhook" -#: apps/web/src/components/command-palette.tsx:356 +#: apps/web/src/components/command-palette.tsx:349 msgid "Go to Explore" msgstr "Ir para Explorar" @@ -1022,21 +1036,23 @@ msgstr "Status de saúde" msgid "Here's what's happening with your library" msgstr "Veja o que está acontecendo com sua biblioteca" +#: apps/native/src/app/(tabs)/(home)/_layout.tsx:7 +#: apps/native/src/components/navigation/native-tab-bar.tsx:28 #: apps/web/src/components/nav-bar.tsx:115 #: apps/web/src/components/nav-bar.tsx:276 msgid "Home" msgstr "Início" #: apps/web/src/components/settings/system-health-section.tsx:308 -#: apps/web/src/components/settings/system-health-section.tsx:558 +#: apps/web/src/components/settings/system-health-section.tsx:552 msgid "Image cache" msgstr "Cache de imagens" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:453 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:435 msgid "Image Cache" msgstr "Cache de Imagens" -#: apps/web/src/components/settings/system-health-section.tsx:546 +#: apps/web/src/components/settings/system-health-section.tsx:540 msgid "Image cache and backup disk usage" msgstr "Uso de disco de cache de imagens e backups" @@ -1088,7 +1104,7 @@ msgstr "Importados {0} itens de {1}" msgid "Importing from {source}" msgstr "Importando de {source}" -#: apps/native/src/app/(tabs)/(home)/index.tsx:53 +#: apps/native/src/app/(tabs)/(home)/index.tsx:138 msgid "In library" msgstr "Na biblioteca" @@ -1096,7 +1112,7 @@ msgstr "Na biblioteca" msgid "In Library" msgstr "Na Biblioteca" -#: apps/native/src/app/(tabs)/(home)/index.tsx:117 +#: apps/native/src/app/(tabs)/(home)/index.tsx:179 #: apps/web/src/components/dashboard/library-section.tsx:35 msgid "In Your Library" msgstr "Na Sua Biblioteca" @@ -1132,13 +1148,13 @@ msgstr "Tarefa" msgid "Keeping <0><1><2>{0}<3>{1} backups." msgstr "Mantendo <0><1><2>{0}<3>{1} backups." -#: apps/web/src/components/command-palette.tsx:366 -#: apps/web/src/components/command-palette.tsx:381 +#: apps/web/src/components/command-palette.tsx:359 +#: apps/web/src/components/command-palette.tsx:374 msgid "Keyboard Shortcuts" msgstr "Atalhos de Teclado" #: apps/native/src/app/(tabs)/(settings)/index.tsx:383 -#: apps/native/src/app/(tabs)/(settings)/index.tsx:391 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:506 #: apps/web/src/components/settings/language-section.tsx:34 msgid "Language" msgstr "Idioma" @@ -1264,15 +1280,16 @@ msgstr "Membro desde {memberSince}" msgid "Monday" msgstr "Segunda-feira" -#: apps/native/src/app/title/[id].tsx:508 +#: apps/native/src/app/title/[id].tsx:512 msgid "More Like This" msgstr "Mais Como Este" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:506 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:488 msgid "More Settings" msgstr "Mais Configurações" -#: apps/native/src/app/title/[id].tsx:337 +#: apps/native/src/app/title/[id].tsx:333 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:22 #: apps/native/src/components/search/search-result-row.tsx:34 #: apps/native/src/components/search/search-result-row.tsx:81 #: apps/web/src/components/explore/hero-banner.tsx:54 @@ -1285,6 +1302,11 @@ msgstr "Filme" msgid "Movies" msgstr "Filmes" +#. placeholder {0}: periodLabels[moviePeriod] +#: apps/native/src/app/(tabs)/(home)/index.tsx:114 +msgid "Movies {0}" +msgstr "" + #: apps/web/src/components/dashboard/stats-display.tsx:161 #~ msgid "Movies {periodSelect}" #~ msgstr "Movies {periodSelect}" @@ -1294,8 +1316,8 @@ msgid "Movies {select}" msgstr "Filmes {select}" #: apps/native/src/app/(tabs)/(home)/index.tsx:51 -msgid "Movies this month" -msgstr "Filmes este mês" +#~ msgid "Movies this month" +#~ msgstr "Filmes este mês" #: apps/native/src/app/(auth)/register.tsx:111 #: apps/web/src/components/auth-form.tsx:173 @@ -1311,7 +1333,7 @@ msgstr "Nome atualizado" msgid "Need more help?" msgstr "Precisa de mais ajuda?" -#: apps/web/src/components/settings/system-health-section.tsx:456 +#: apps/web/src/components/settings/system-health-section.tsx:453 msgid "Never" msgstr "Nunca" @@ -1358,7 +1380,7 @@ msgid "Next run" msgstr "Próxima execução" #: apps/web/src/components/settings/backup-section.tsx:99 -#: apps/web/src/components/settings/system-health-section.tsx:607 +#: apps/web/src/components/settings/system-health-section.tsx:601 msgid "No backups yet" msgstr "Nenhum backup ainda" @@ -1368,11 +1390,11 @@ msgstr "Nenhum backup ainda" msgid "No internet connection" msgstr "Sem conexão com a internet" -#: apps/native/src/app/(tabs)/(search)/index.tsx:100 +#: apps/native/src/app/(tabs)/(search)/index.tsx:94 msgid "No results for \"{debouncedQuery}\"" msgstr "Nenhum resultado para \"{debouncedQuery}\"" -#: apps/web/src/components/command-palette.tsx:212 +#: apps/web/src/components/command-palette.tsx:207 msgid "No results found." msgstr "Nenhum resultado encontrado." @@ -1411,7 +1433,7 @@ msgstr "Abra o Emby, vá para <0>Settings > Webhooks" msgid "Open Emby, go to Settings > Webhooks" msgstr "Abra o Emby, vá para Settings > Webhooks" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:513 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:495 msgid "Open in browser…" msgstr "Abrir no navegador…" @@ -1431,7 +1453,7 @@ msgstr "Abra o Radarr, vá para <0>Settings > Import Lists" msgid "Open Radarr, go to Settings > Import Lists" msgstr "Abra o Radarr, vá para Settings > Import Lists" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:472 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:454 #: apps/web/src/components/settings/registration-section.tsx:51 msgid "Open registration" msgstr "Registro aberto" @@ -1489,12 +1511,13 @@ msgstr "Cole a URL do Sonarr acima no campo URL da Lista" msgid "Periodically check GitHub for new Sofa releases" msgstr "Verificar periodicamente o GitHub por novas versões do Sofa" +#: apps/native/src/components/search/recently-viewed-row-content.tsx:24 #: apps/native/src/components/search/search-result-row.tsx:34 #: apps/native/src/components/search/search-result-row.tsx:81 msgid "Person" msgstr "Pessoa" -#: apps/native/src/app/person/[id].tsx:209 +#: apps/native/src/app/person/[id].tsx:192 #: apps/web/src/routes/_app/people.$id.tsx:50 msgid "Person not found" msgstr "Pessoa não encontrada" @@ -1504,12 +1527,12 @@ msgid "Play trailer" msgstr "Reproduzir trailer" #: apps/native/src/app/(tabs)/(explore)/index.tsx:89 -#: apps/web/src/components/explore/explore-client.tsx:120 +#: apps/web/src/routes/_app/explore.tsx:141 msgid "Popular Movies" msgstr "Filmes Populares" #: apps/native/src/app/(tabs)/(explore)/index.tsx:102 -#: apps/web/src/components/explore/explore-client.tsx:130 +#: apps/web/src/routes/_app/explore.tsx:151 msgid "Popular TV Shows" msgstr "Séries Populares" @@ -1517,6 +1540,8 @@ msgstr "Séries Populares" msgid "Pre-restore backup" msgstr "Backup pré-restauração" +#: apps/native/src/app/person/[id].tsx:53 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:31 #: apps/web/src/components/people/person-hero.tsx:75 msgid "Producer" msgstr "Produtor" @@ -1577,7 +1602,7 @@ msgstr "{0, plural, one {# título removido} other {# títulos removidos}}, {1, msgid "Purging..." msgstr "Limpando..." -#: apps/web/src/components/command-palette.tsx:336 +#: apps/web/src/components/command-palette.tsx:331 msgid "Quick Actions" msgstr "Ações Rápidas" @@ -1633,7 +1658,7 @@ msgstr "Pronto — ainda não verificado" msgid "Ready — nothing received yet" msgstr "Pronto — nada recebido ainda" -#: apps/web/src/components/command-palette.tsx:295 +#: apps/web/src/components/command-palette.tsx:290 msgid "Recent Searches" msgstr "Pesquisas Recentes" @@ -1650,7 +1675,7 @@ msgstr "Recomendações" msgid "Recommended" msgstr "Recomendado" -#: apps/native/src/app/(tabs)/(home)/index.tsx:137 +#: apps/native/src/app/(tabs)/(home)/index.tsx:199 #: apps/web/src/components/dashboard/recommendations-section.tsx:22 msgid "Recommended for You" msgstr "Recomendado para Você" @@ -1770,7 +1795,7 @@ msgstr "Restauração falhou" msgid "Restoring…" msgstr "Restaurando…" -#: apps/web/src/components/command-palette.tsx:217 +#: apps/web/src/components/command-palette.tsx:212 msgid "Results" msgstr "Resultados" @@ -1781,11 +1806,11 @@ msgstr "Buscando seu histórico de exibição, lista de desejos e avaliações.. #: apps/native/src/components/settings/integrations-section.tsx:39 #: apps/native/src/components/ui/server-unreachable-banner.ios.tsx:71 #: apps/native/src/components/ui/server-unreachable-banner.tsx:79 -#: apps/web/src/lib/orpc/client.ts:17 +#: apps/web/src/lib/orpc/client.ts:24 msgid "Retry" msgstr "Tentar novamente" -#: apps/web/src/routes/__root.tsx:116 +#: apps/web/src/routes/__root.tsx:115 msgid "Return home" msgstr "Voltar ao início" @@ -1793,7 +1818,7 @@ msgstr "Voltar ao início" msgid "Review what was found and choose what to import." msgstr "Revise o que foi encontrado e escolha o que importar." -#: apps/web/src/components/settings/system-health-section.tsx:509 +#: apps/web/src/components/settings/system-health-section.tsx:503 msgid "Run now" msgstr "Executar agora" @@ -1809,7 +1834,7 @@ msgstr "Salvar" msgid "Save name" msgstr "Salvar nome" -#: apps/web/src/routes/__root.tsx:98 +#: apps/web/src/routes/__root.tsx:97 msgid "Scene not found" msgstr "Cena não encontrada" @@ -1833,6 +1858,11 @@ msgstr "Backups agendados desativados" msgid "Scheduled backups enabled" msgstr "Backups agendados ativados" +#: apps/native/src/app/(tabs)/(search)/_layout.tsx:7 +#: apps/native/src/components/navigation/native-tab-bar.tsx:41 +msgid "Search" +msgstr "" + #: apps/web/src/components/dashboard/stats-section.tsx:35 msgid "Search for movies and TV shows to start tracking" msgstr "Pesquise filmes e séries para começar a acompanhar" @@ -1842,15 +1872,15 @@ msgstr "Pesquise filmes e séries para começar a acompanhar" msgid "Search for movies, shows, or people" msgstr "Pesquise filmes, séries ou pessoas" -#: apps/web/src/components/command-palette.tsx:182 +#: apps/web/src/components/command-palette.tsx:177 msgid "Search for movies, TV shows, or run commands" msgstr "Pesquise filmes, séries ou execute comandos" -#: apps/web/src/components/command-palette.tsx:191 +#: apps/web/src/components/command-palette.tsx:186 msgid "Search movies & TV shows…" msgstr "Pesquisar filmes e séries…" -#: apps/native/src/app/(tabs)/(search)/index.tsx:79 +#: apps/native/src/app/(tabs)/(search)/index.tsx:73 msgid "Search movies, shows, people..." msgstr "Pesquisar filmes, séries, pessoas..." @@ -1872,12 +1902,12 @@ msgstr "Temporada {0}" msgid "Season watched" msgstr "Temporada assistida" -#: apps/native/src/app/title/[id].tsx:473 +#: apps/native/src/app/title/[id].tsx:477 msgid "Seasons" msgstr "Temporadas" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:470 -#: apps/web/src/routes/_app/settings.tsx:131 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:452 +#: apps/web/src/routes/_app/settings.tsx:167 msgid "Security" msgstr "Segurança" @@ -1885,11 +1915,11 @@ msgstr "Segurança" msgid "Self-hosted movie & TV tracker" msgstr "Rastreador de filmes e séries auto-hospedado" -#: apps/web/src/routes/_app/settings.tsx:115 +#: apps/web/src/routes/_app/settings.tsx:151 msgid "Server" msgstr "Servidor" -#: apps/native/src/app/(tabs)/(settings)/index.tsx:431 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:413 msgid "Server Health" msgstr "Saúde do Servidor" @@ -1908,7 +1938,9 @@ msgstr "Definir senha" msgid "Set your preferred quality profile and root folder" msgstr "Defina seu perfil de qualidade preferido e pasta raiz" +#: apps/native/src/app/(tabs)/(settings)/_layout.tsx:7 #: apps/native/src/components/header-avatar.tsx:55 +#: apps/native/src/components/navigation/native-tab-bar.tsx:36 #: apps/web/src/components/nav-bar.tsx:236 #: apps/web/src/components/nav-bar.tsx:278 #: apps/web/src/components/settings/settings-shell.tsx:30 @@ -1999,9 +2031,9 @@ msgid "Sofa will automatically log movies and episodes when you finish watching msgstr "O Sofa registrará automaticamente filmes e episódios quando você terminar de assisti-los" #: apps/native/src/app/change-password.tsx:77 -#: apps/native/src/app/person/[id].tsx:182 +#: apps/native/src/app/person/[id].tsx:169 #: apps/web/src/components/settings/account-section.tsx:391 -#: apps/web/src/routes/__root.tsx:140 +#: apps/web/src/routes/__root.tsx:139 msgid "Something went wrong" msgstr "Algo deu errado" @@ -2010,7 +2042,7 @@ msgid "Something went wrong while loading this title. Please try again." msgstr "Algo deu errado ao carregar este título. Tente novamente." #: apps/native/src/lib/query-client.ts:33 -#: apps/web/src/lib/orpc/client.ts:15 +#: apps/web/src/lib/orpc/client.ts:22 msgid "Something went wrong…" msgstr "Algo deu errado…" @@ -2022,7 +2054,7 @@ msgstr "URL da Lista do Sonarr" msgid "Start exploring" msgstr "Começar a explorar" -#: apps/native/src/app/(tabs)/(home)/index.tsx:126 +#: apps/native/src/app/(tabs)/(home)/index.tsx:188 msgid "Start tracking movies and shows" msgstr "Comece a acompanhar filmes e séries" @@ -2042,7 +2074,7 @@ msgstr "Iniciando importação..." msgid "Status updated" msgstr "Status atualizado" -#: apps/web/src/components/settings/system-health-section.tsx:543 +#: apps/web/src/components/settings/system-health-section.tsx:537 msgid "Storage" msgstr "Armazenamento" @@ -2075,20 +2107,30 @@ msgstr "O título que você está procurando não existe ou pode ter sido removi msgid "This may take a few minutes for large libraries. Please don't close this tab." msgstr "Isso pode levar alguns minutos para bibliotecas grandes. Por favor, não feche esta aba." +#: apps/native/src/app/(tabs)/(home)/index.tsx:89 +msgid "this month" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:31 #: apps/web/src/components/dashboard/stats-display.tsx:135 msgid "This Month" msgstr "Este Mês" -#: apps/web/src/routes/__root.tsx:101 +#: apps/web/src/routes/__root.tsx:100 msgid "This page was left on the cutting room floor. It may have been moved, removed, or never made it past the screenplay." msgstr "Esta página ficou no chão da sala de montagem. Pode ter sido movida, removida ou nunca ter passado do roteiro." -#: apps/native/src/app/(tabs)/(settings)/index.tsx:557 -#: apps/web/src/routes/_app/settings.tsx:76 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:559 +#: apps/web/src/routes/_app/settings.tsx:112 #: apps/web/src/routes/setup.tsx:180 msgid "This product uses the TMDB API but is not endorsed or certified by TMDB." msgstr "Este produto usa a API do TMDB, mas não é endossado ou certificado pelo TMDB." +#: apps/native/src/app/(tabs)/(home)/index.tsx:88 +msgid "this week" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:30 #: apps/web/src/components/dashboard/stats-display.tsx:134 msgid "This Week" msgstr "Esta Semana" @@ -2127,6 +2169,11 @@ msgstr "Isso removerá todos os itens do seu histórico." msgid "This will replace your entire database with the uploaded file. A safety backup of your current data will be created first. Active sessions may need to refresh after restore." msgstr "Isso substituirá todo o seu banco de dados pelo arquivo enviado. Um backup de segurança dos seus dados atuais será criado primeiro. As sessões ativas podem precisar ser atualizadas após a restauração." +#: apps/native/src/app/(tabs)/(home)/index.tsx:90 +msgid "this year" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:32 #: apps/web/src/components/dashboard/stats-display.tsx:136 msgid "This Year" msgstr "Este Ano" @@ -2139,7 +2186,7 @@ msgstr "Quinta-feira" msgid "Time:" msgstr "Hora:" -#: apps/native/src/app/title/[id].tsx:235 +#: apps/native/src/app/title/[id].tsx:231 #: apps/web/src/routes/_app/titles.$id.tsx:139 msgid "Title not found" msgstr "Título não encontrado" @@ -2154,6 +2201,11 @@ msgstr "Os títulos na sua lista de desejos do Sofa serão automaticamente adici msgid "Titles on your Sofa watchlist will be automatically added for download when Sonarr polls this list (every 6 hours by default)" msgstr "Os títulos na sua lista de desejos do Sofa serão automaticamente adicionados para download quando o Sonarr verificar esta lista (a cada 6 horas por padrão)" +#: apps/native/src/app/(tabs)/(home)/index.tsx:87 +msgid "today" +msgstr "" + +#: apps/native/src/components/dashboard/stats-card.tsx:29 #: apps/web/src/components/dashboard/stats-display.tsx:133 msgid "Today" msgstr "Hoje" @@ -2184,15 +2236,15 @@ msgid "Trending today" msgstr "Em alta hoje" #: apps/native/src/app/(tabs)/(explore)/index.tsx:77 -#: apps/web/src/components/explore/explore-client.tsx:108 +#: apps/web/src/routes/_app/explore.tsx:129 msgid "Trending Today" msgstr "Em Alta Hoje" -#: apps/web/src/components/settings/system-health-section.tsx:488 +#: apps/web/src/components/settings/system-health-section.tsx:482 msgid "Trigger job" msgstr "Acionar tarefa" -#: apps/web/src/routes/__root.tsx:156 +#: apps/web/src/routes/__root.tsx:155 msgid "Try again" msgstr "Tentar novamente" @@ -2200,7 +2252,8 @@ msgstr "Tentar novamente" msgid "Tuesday" msgstr "Terça-feira" -#: apps/native/src/app/title/[id].tsx:337 +#: apps/native/src/app/title/[id].tsx:333 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:23 #: apps/native/src/components/search/search-result-row.tsx:81 #: apps/web/src/components/explore/hero-banner.tsx:59 #: apps/web/src/components/people/filmography-grid.tsx:58 @@ -2216,7 +2269,7 @@ msgstr "Episódios de séries" msgid "TV show" msgstr "Série" -#: apps/web/src/components/settings/system-health-section.tsx:601 +#: apps/web/src/components/settings/system-health-section.tsx:595 msgid "unknown" msgstr "desconhecido" @@ -2252,7 +2305,7 @@ msgid "Up next" msgstr "A seguir" #. placeholder {0}: updateCheck.data.updateCheck.latestVersion -#: apps/native/src/app/(tabs)/(settings)/index.tsx:496 +#: apps/native/src/app/(tabs)/(settings)/index.tsx:478 msgid "Update available: {0}" msgstr "Atualização disponível: {0}" @@ -2396,7 +2449,7 @@ msgstr "Bem-vindo de volta" msgid "Welcome back, {name}" msgstr "Bem-vindo de volta, {name}" -#: apps/native/src/app/title/[id].tsx:430 +#: apps/native/src/app/title/[id].tsx:431 #: apps/web/src/components/titles/title-availability.tsx:130 msgid "Where to Watch" msgstr "Onde Assistir" @@ -2405,6 +2458,8 @@ msgstr "Onde Assistir" msgid "With Ads" msgstr "Com Anúncios" +#: apps/native/src/app/person/[id].tsx:52 +#: apps/native/src/components/search/recently-viewed-row-content.tsx:30 #: apps/web/src/components/people/person-hero.tsx:73 msgid "Writer" msgstr "Roteirista" @@ -2422,7 +2477,7 @@ msgstr "Você está usando a v{0}." msgid "Your code:" msgstr "Seu código:" -#: apps/native/src/app/(tabs)/(home)/index.tsx:125 +#: apps/native/src/app/(tabs)/(home)/index.tsx:187 #: apps/web/src/components/dashboard/stats-section.tsx:32 msgid "Your library is empty" msgstr "Sua biblioteca está vazia" @@ -2430,4 +2485,3 @@ msgstr "Sua biblioteca está vazia" #: apps/native/src/app/(auth)/register.tsx:121 msgid "Your name" msgstr "Seu nome" - diff --git a/packages/i18n/src/po/pt.ts b/packages/i18n/src/po/pt.ts index df7d4c7..5cd9aae 100644 --- a/packages/i18n/src/po/pt.ts +++ b/packages/i18n/src/po/pt.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"+5kO8P\":[\"Sábado\"],\"+6i0lS\":[\"Buscando seu histórico de exibição, lista de desejos e avaliações...\"],\"+Cv+V9\":[\"Remover da biblioteca\"],\"+JkEpu\":[\"Esta página ficou no chão da sala de montagem. Pode ter sido movida, removida ou nunca ter passado do roteiro.\"],\"+K0AvT\":[\"Desconectar\"],\"+N0l5/\":[\"Conectado a <0>\",[\"serverHost\"],\". Toque para alterar.\"],\"+gLHYi\":[\"Falha ao carregar título\"],\"+j1ex/\":[\"Falha ao remover da biblioteca\"],\"+nF1ZO\":[\"Remover Foto\"],\"/+6dvC\":[\"Erros (\",[\"0\"],\")\"],\"/BBXeA\":[\"Conectando ao servidor...\"],\"/DwR+n\":[\"Criando…\"],\"/XtbPO\":[[\"0\"],\" titles\"],\"/cg+QV\":[\"Marcar todos\"],\"/gQXGv\":[\"Falha ao atualizar status\"],\"/nT6AE\":[\"Nova senha\"],\"/sHc1/\":[\"Verificação de atualização\"],\"0+dyau\":[\"Falha ao atualizar configuração de retenção\"],\"0BFJKK\":[\"Autorização negada. Tente novamente.\"],\"0GHb20\":[\"Limpar cache de metadados?\"],\"0IBW21\":[\"Falha ao limpar caches\"],\"0gH/sc\":[\"Remover foto de perfil\"],\"1+P9RR\":[\"Mudar para \",[\"0\"]],\"12cc1j\":[\"Assistindo\"],\"12lVOl\":[\"Rastreador de filmes e séries auto-hospedado\"],\"1B4z0M\":[\"Filmografia\"],\"1J4Ek0\":[\"Faça backup automático do banco de dados com agendamento\"],\"1JhxXW\":[\"Episódio \",[\"0\"],\", \",[\"episodeLabel\"]],\"1N6wNP\":[\"Opções de importação\"],\"1Qz4uG\":[\"Ative a categoria de evento \\\"Playback\\\"\"],\"1hMWR6\":[\"Criar conta\"],\"1jHIjh\":[\"Todos os episódios de \",[\"seasonName\"],\" assistidos\"],\"1vSYsG\":[\"Baixar backup\"],\"1wL1tj\":[\"Série\"],\"2FletP\":[[\"0\",\"plural\",{\"one\":[\"#\",\" título removido\"],\"other\":[\"#\",\" títulos removidos\"]}],\", \",[\"1\",\"plural\",{\"one\":[\"#\",\" pessoa\"],\"other\":[\"#\",\" pessoas\"]}],\", \",[\"2\",\"plural\",{\"one\":[\"#\",\" arquivo\"],\"other\":[\"#\",\" arquivos\"]}],\" (\",[\"freed\"],\" liberado)\"],\"2Fsd9r\":[\"Este Mês\"],\"2MPcep\":[\"Importação concluída\"],\"2Mu33Z\":[\"Gerenciamento de cache\"],\"2POOFK\":[\"Grátis\"],\"2Pt2NY\":[\"Isso removerá todos os itens do seu histórico.\"],\"2fCpt5\":[\"Voltar ao início\"],\"2pPBp6\":[\"Em alta hoje\"],\"39y5bn\":[\"Sexta-feira\"],\"3Blefz\":[\"Avaliações\"],\"3JTlG8\":[\"Pesquisas Recentes\"],\"3Jy8bM\":[\"Filmes \",[\"select\"]],\"3L9OuQ\":[\"Episódio \",[\"0\"]],\"3T8ziB\":[\"Criar uma conta\"],\"3hELxX\":[\"Insira a URL do seu servidor Sofa para começar\"],\"4fxLkp\":[\"Abra o Sonarr, vá para <0>Settings > Import Lists\"],\"4kpBqM\":[\"Último evento \",[\"0\"]],\"4uUjVO\":[\"Produtor\"],\"4x+A56\":[\"Relatório de uso anônimo\"],\"5IShvp\":[\"Importar \",[\"totalItems\"],\" itens\"],\"5IYJSv\":[\"Explorar títulos\"],\"5Y4mym\":[\"Importar de \",[\"0\"]],\"5ZzgbQ\":[\"Conectar \",[\"0\"]],\"5fEnbK\":[\"Falha ao atualizar configuração de backup agendado\"],\"5lWFkC\":[\"Entrar\"],\"5v9C16\":[\"Conectado a \",[\"source\"]],\"623bR4\":[\"Falha ao acionar tarefa\"],\"6HN0yh\":[\"Abra o Plex, vá para Settings > Webhooks\"],\"6TNjOJ\":[\"Falha ao atualizar avaliação\"],\"6TfUy6\":[\"últimos \",[\"value\"]],\"6V3Ea3\":[\"Copiado\"],\"6YtxFj\":[\"Nome\"],\"6exX+8\":[\"Regenerar\"],\"6gRgw8\":[\"Tentar novamente\"],\"6lGV3K\":[\"Mostrar menos\"],\"76++pR\":[\"Avisos\"],\"77DIAu\":[\"Acesse Dashboard > Plugins > Webhook\"],\"7Bj3x9\":[\"Falhou\"],\"7D50KC\":[[\"label\"],\" desconectado\"],\"7GfM5w\":[\"Vistos Recentemente\"],\"7L01XJ\":[\"Ações\"],\"7eMo+U\":[\"Ir para Início\"],\"7p5kLi\":[\"Painel\"],\"85eoJ1\":[\"Agendamento atualizado\"],\"8B9E2D\":[\"Dia:\"],\"8YwF1J\":[\"Acesse <0>Dashboard > Plugins > Webhook\"],\"8ZsakT\":[\"Senha\"],\"8tjQCz\":[\"Explorar\"],\"8vNtLy\":[\"Cole a URL do Radarr acima no campo URL da Lista\"],\"8wYDMp\":[\"Já tem uma conta?\"],\"9AE3vb\":[\"Abra o Plex, vá para <0>Settings > Webhooks<1/>\"],\"9GW0ZB\":[\"A importação ainda está em andamento em segundo plano. Verifique mais tarde.\"],\"9NyAH9\":[\"Ignorado\"],\"9Xhrps\":[\"Falha ao conectar\"],\"9ZLGbA\":[\"backups.\"],\"9eF5oV\":[\"Bem-vindo de volta\"],\"9rG25a\":[\"URL do Servidor\"],\"A+0rLe\":[\"Marcado como concluído\"],\"AOHgZp\":[\"Episódios\"],\"AOddWK\":[\"Conectar \",[\"label\"]],\"ATfxL/\":[\"Trailer\"],\"AVlZoM\":[\"Ambiente\"],\"Acf6vF\":[\"Salvar nome\"],\"AdoUfN\":[\"Falha ao adicionar à lista de desejos\"],\"AeXO77\":[\"Conta\"],\"AjtYj0\":[\"Na Lista de Desejos\"],\"Avee+B\":[\"Falha ao atualizar nome\"],\"B2R3xD\":[\"Ativar/desativar backups agendados\"],\"BEVzjL\":[\"Importação falhou\"],\"BQnS5I\":[\"Abrir \",[\"source\"],\" para inserir o código\"],\"BUnoSB\":[[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"backup armazenado\"],\"other\":[\"backups armazenados\"]}]],\"BpttUI\":[\"Em Alta Hoje\"],\"BrrIs8\":[\"Armazenamento\"],\"BskWMl\":[\"Inacessível\"],\"BzEFor\":[\"ou\"],\"CGDHFb\":[\"Adicione um <0>Generic Destination e cole a URL acima\"],\"CGExDN\":[\"Falha ao limpar cache de imagens\"],\"CHeXFE\":[\"Status atualizado\"],\"CKyk7Q\":[\"Voltar\"],\"CaB/+I\":[\"Bem-vindo de volta, \",[\"name\"]],\"CodnUh\":[\"Removido da biblioteca\"],\"CpzGJY\":[\"Isso pode levar alguns minutos para bibliotecas grandes. Por favor, não feche esta aba.\"],\"CuPxpd\":[\"Requer uma assinatura ativa do <0>Plex Pass<1/>.\"],\"CzBN6D\":[\"Começar a explorar\"],\"D+R2Xs\":[\"Iniciando importação...\"],\"D3C4Yx\":[\"A senha atual é obrigatória\"],\"DBC3t5\":[\"Domingo\"],\"DI4lqs\":[\"Pessoa não encontrada\"],\"DKBbJf\":[\"Adicionado \\\"\",[\"titleName\"],\"\\\" à lista de desejos\"],\"DPfwMq\":[\"Concluído\"],\"DZse/o\":[\"Adicione um \\\"Generic Destination\\\" e cole a URL acima\"],\"E/QGRL\":[\"Desativado\"],\"E6nRW7\":[\"Copiar URL\"],\"EWQlBH\":[\"Sua biblioteca está vazia\"],\"EWaCfj\":[\"Insira sua senha atual e escolha uma nova.\"],\"Eeo/Gy\":[\"Falha ao atualizar configuração\"],\"Efn6WU\":[\"Isso excluirá todos os títulos stub não enriquecidos e todas as imagens em cache do disco. Tudo será reimportado e baixado novamente conforme necessário.\"],\"Etp5if\":[\"Importação de \",[\"source\"],\" concluída.\"],\"F006BN\":[\"Importar de \",[\"source\"]],\"FNvDMc\":[\"Esta Semana\"],\"FWSp+7\":[\"Insira o código abaixo no site do \",[\"source\"],\" para autorizar o Sofa.\"],\"FXN0ro\":[\"Recomendações\"],\"FaU7Ag\":[\"Ative o tipo de notificação \\\"Playback Stop\\\"\"],\"FhvLDl\":[[\"watchedCount\"],\"/\",[\"0\"],\" episodes\"],\"Fo2bwm\":[\"Ator\"],\"FwRqjE\":[\"Uso de disco de cache de imagens e backups\"],\"G00fgM\":[\"últimos \",[\"n\"]],\"G3myU+\":[\"Terça-feira\"],\"GcCthe\":[\"Na Biblioteca\"],\"Gf39AA\":[[\"0\"],\" acionado\"],\"GnhfWw\":[\"Ativar/desativar verificações automáticas de atualização\"],\"GptGxg\":[\"Alterar senha\"],\"GqTZ+S\":[\"Avaliado com \",[\"ratingStars\"],\" \",[\"ratingStars\",\"plural\",{\"one\":[\"estrela\"],\"other\":[\"estrelas\"]}]],\"GrdN/F\":[\"Em dia — \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"episódio marcado como assistido\"],\"other\":[\"episódios marcados como assistidos\"]}]],\"H4B5LG\":[\"Este produto usa a API do TMDB, mas não é endossado ou certificado pelo TMDB.\"],\"HBRd5n\":[\"Temporada \",[\"0\"]],\"HD+aQ7\":[\"Backups do banco de dados\"],\"HG+31u\":[\"Limpar todos os caches?\"],\"Haz+72\":[\"Isso excluirá todas as imagens TMDB em cache do disco. As imagens serão baixadas novamente automaticamente conforme necessário.\"],\"HbReP5\":[\"Marcado \\\"\",[\"titleName\"],\"\\\" como concluído\"],\"Hg6o8v\":[\"Atualizar status de saúde do sistema\"],\"HmEjnC\":[\"Último evento \",[\"timeAgo\"]],\"HvDfH/\":[\"Importado\"],\"I89uD4\":[\"Restaurando…\"],\"IRoxQm\":[\"Registro fechado\"],\"IS0nrP\":[\"Criar Conta\"],\"IY9rQ0\":[\"Libere espaço em disco limpando metadados e imagens em cache\"],\"IrC12v\":[\"Aplicativo\"],\"J28zul\":[\"Conectando...\"],\"J64cFL\":[\"Atualização da biblioteca\"],\"JKmmmN\":[\"Adicionado à lista de desejos\"],\"JN0f/Y\":[\"Conectar ao TMDB\"],\"JR6aH2\":[\"Movies \",[\"periodSelect\"]],\"JRQitQ\":[\"Confirmar nova senha\"],\"JRadFJ\":[\"Comece a registrar suas visualizações\"],\"JSwq8t\":[\"A criação de novas contas está desativada no momento.\"],\"JY5Oyv\":[\"Banco de Dados\"],\"JjsJnI\":[[\"0\"],\"/\",[\"1\"],\" episodes\"],\"JrFTcr\":[\"Conectando…\"],\"JwFbe8\":[\"Série\"],\"KDw4GX\":[\"Tentar novamente\"],\"KG6681\":[\"Episódio assistido\"],\"KIS/Sd\":[\"Sair de outras sessões\"],\"KK0ghs\":[\"Cache de imagens\"],\"KVAoFR\":[\"ilimitado\"],\"KcXJuc\":[\"Limpando...\"],\"KhtG3o\":[\"Atualizar Senha\"],\"Khux7w\":[[\"0\",\"plural\",{\"one\":[\"#\",\" título\"],\"other\":[\"#\",\" títulos\"]}]],\"KmWyx0\":[\"Tarefa\"],\"KoF0x6\":[\"idade \",[\"age\"]],\"Ksiej9\":[\"Requer uma assinatura ativa do Plex Pass.\"],\"Kx9NEt\":[\"Token inválido\"],\"Lk6Jb/\":[\"Última verificação \",[\"timeAgo\"]],\"LmEEic\":[\"Aguardando autorização...\"],\"LqKH42\":[\"Conectar com \",[\"0\"]],\"Lrpjji\":[\"Desconectar \",[\"label\"]],\"Lu6Udx\":[\"Clique em \\\"+\\\" e selecione \\\"Custom Lists\\\"\"],\"MDoX++\":[\"URL da Lista do Sonarr\"],\"MRBlCJ\":[\"Falha ao desmarcar alguns episódios\"],\"MUO7w9\":[\"Marcado \\\"\",[\"titleName\"],\"\\\" como assistido\"],\"MZbQHL\":[\"Nenhum resultado encontrado.\"],\"MdxR1u\":[\"Choose your preferred display language\"],\"MkyzAV\":[\"Autorize o Sofa a ler sua biblioteca do \",[\"0\"],\". Nenhuma senha é compartilhada.\"],\"N40H+G\":[\"Todos\"],\"N6SFhC\":[\"Entrar em vez disso\"],\"N7h106\":[\"Sofa v\",[\"0\"],\" está disponível\"],\"N9RF2M\":[\"Clique em \\\"Add Webhook\\\" e cole a URL acima\"],\"NBo4z0\":[\"Clique em <0>+ e selecione <1>Custom Lists\"],\"NICUmW\":[\"Diretor\"],\"NQzPoO\":[\"Novo backup\"],\"NSxl1l\":[\"Mais Configurações\"],\"NVF43p\":[\"Hora:\"],\"NdPMwS\":[\"Na Sua Biblioteca\"],\"NgaPSG\":[\"Falha ao atualizar agendamento\"],\"O3oNi5\":[\"E-mail\"],\"OBcj5W\":[\"Isso invalidará a URL atual do \",[\"label\"],\". Você precisará atualizá-la no \",[\"label\"],\".\"],\"OL8hbM\":[\"A nova senha deve ter pelo menos 8 caracteres\"],\"ONWvwQ\":[\"Enviar\"],\"OPFjyX\":[\"Instale o <0>plugin Webhook<1/> do catálogo de plugins do Jellyfin\"],\"OW/+RD\":[\"Histórico de exibição\"],\"OZdaTZ\":[\"Pessoa\"],\"OvO76u\":[\"Voltar ao Login\"],\"OvdFIZ\":[\"Temporada assistida\"],\"P2FLLe\":[\"Ver versão\"],\"PBdLfg\":[\"Nenhum título encontrado para este gênero.\"],\"PQ3qDa\":[\"Buscando seus dados da biblioteca em \",[\"source\"],\"...\"],\"PjNoxI\":[\"Backup agendado\"],\"Pn2B7/\":[\"Senha atual\"],\"PnEbL/\":[\"Avaliado com \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"estrela\"],\"other\":[\"estrelas\"]}]],\"Pwqkdw\":[\"Carregando…\"],\"Py87xY\":[\"Autorização concluída, mas falha ao buscar sua biblioteca. Tente novamente.\"],\"Q3MPWA\":[\"Atualizar senha\"],\"QHcLEN\":[\"Conectado\"],\"QK4UIx\":[\"Marcar como Assistido\"],\"Qjlym2\":[\"Falha ao criar conta\"],\"Qm1NmK\":[\"OU\"],\"Qoq+GP\":[\"Ler mais\"],\"QphVZW\":[\"Não foi possível alcançar o servidor\"],\"QqLJHH\":[\"Este Ano\"],\"R0yu2l\":[\"Colocar em dia\"],\"R4YBui\":[\"Pesquise filmes e séries para começar a acompanhar\"],\"RH46vw\":[[\"0\"],\"/\",[\"1\"],\" \",[\"2\",\"plural\",{\"one\":[\"episódio\"],\"other\":[\"episódios\"]}]],\"RIR15/\":[\"URL da Lista do Radarr\"],\"RLe7Vk\":[\"Verificando…\"],\"ROq8cl\":[\"Falha ao analisar arquivo\"],\"RQq8Si\":[\"Registro aberto\"],\"S0soqb\":[\"Falha ao remover foto de perfil\"],\"S1McZh\":[\"Falha ao enviar avatar\"],\"S2ble5\":[[\"0\"],\" filmes, \",[\"1\"],\" episódios\"],\"S2qPRR\":[\"Pesquisar filmes e séries…\"],\"SDND4q\":[\"Não configurado\"],\"SFdAk9\":[\"Desmarcado T\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"SUIUkB\":[\"Desmarcar todos\"],\"SbS+Bm\":[\"Regenerar URL\"],\"SlfejT\":[\"Erro\"],\"Sp86ju\":[[\"0\"],\" ep\",[\"1\"]],\"SrfROI\":[\"A seguir\"],\"SyPRjk\":[\"O Sofa registrará automaticamente filmes e episódios quando você terminar de assisti-los\"],\"T0/7WG\":[\"Próximo backup \",[\"distance\"]],\"TEaX6q\":[\"Backup excluído\"],\"TI7IKo\":[\"Rated \",[\"0\"],\" star\",[\"1\"]],\"TMb7iE\":[\"Foto de perfil removida\"],\"TqyQQS\":[\"Ative a categoria de evento <0>Playback\"],\"Tz0i8g\":[\"Configurações\"],\"U+FxtW\":[\"Acompanhe o que você assiste. Saiba o que vem a seguir.<0/>Sua biblioteca, seus dados, suas regras.\"],\"U3pytU\":[\"Administrador\"],\"UC+OWB\":[\"Ativar/desativar registro aberto\"],\"UDMjsP\":[\"Ações Rápidas\"],\"UmQ6Fe\":[\"Limpar cache de imagens?\"],\"UtDm3q\":[\"URL copiada para a área de transferência\"],\"V1Kh9Z\":[\"Episódios \",[\"select\"]],\"V6uzvC\":[\"Mais Como Este\"],\"V9CuQ+\":[\"Conectar a \",[\"source\"]],\"VAcXNz\":[\"Quarta-feira\"],\"VKyhZK\":[\"Título não encontrado\"],\"VQvpro\":[\"Cole a URL do Sonarr acima no campo URL da Lista\"],\"VhMDMg\":[\"Alterar Senha\"],\"Vx0ayx\":[\"Falha ao marcar alguns episódios\"],\"WDC4PF\":[\"Episodes \",[\"periodSelect\"]],\"WEYdDv\":[\"Recomendado\"],\"WMCwmR\":[\"Verificar atualizações\"],\"WP48q2\":[\"Cache de Imagens\"],\"WT1Ibn\":[\"Última execução\"],\"Wb3E4g\":[\"Executar agora\"],\"WgF2UQ\":[\"Você está usando a v\",[\"0\"],\".\"],\"WtWhSi\":[\"Avaliação removida\"],\"Wy/3II\":[\"Última verificação \",[\"0\"]],\"XFCSYs\":[\"Elenco\"],\"XN23JY\":[\"Isso excluirá títulos stub não enriquecidos que não estão na biblioteca de nenhum usuário e limpará registros de pessoas órfãs. Os títulos excluídos serão reimportados se acessados novamente.\"],\"XZwihE\":[\"Pronto — nada recebido ainda\"],\"XjTduw\":[\"Enviar foto\"],\"YEGzVq\":[\"Falha ao conectar \",[\"label\"]],\"YErf89\":[\"Falha ao limpar cache de metadados\"],\"YQ768h\":[\"Cena não encontrada\"],\"YiRsXK\":[\"Limpar Vistos Recentemente?\"],\"Yjp1zf\":[\"Não tem um servidor?\"],\"YqMfa9\":[\"Revise o que foi encontrado e escolha o que importar.\"],\"ZGUYm0\":[\"Pronto — ainda não verificado\"],\"ZQKLI1\":[\"Zona de Perigo\"],\"ZVZUoU\":[[\"0\"],\" imagens em cache\"],\"ZWTQ81\":[\"Assistir em \",[\"name\"]],\"a3LDKx\":[\"Segurança\"],\"aLBUiR\":[\"Mantendo <0><1><2>\",[\"0\"],\"<3>\",[\"1\"],\" backups.\"],\"aM0+kY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" título obsoleto removido\"],\"other\":[\"#\",\" títulos obsoletos removidos\"]}],\" e \",[\"1\",\"plural\",{\"one\":[\"#\",\" pessoa órfã\"],\"other\":[\"#\",\" pessoas órfãs\"]}]],\"aO1AxG\":[\"Episódio não assistido\"],\"aV/hDI\":[\"Falha ao desconectar \",[\"label\"]],\"acbSg0\":[\"Toque duas vezes para filtrar por \",[\"label\"]],\"agE7k4\":[\"Avaliado com \",[\"stars\",\"plural\",{\"one\":[\"#\",\" estrela\"],\"other\":[\"#\",\" estrelas\"]}]],\"alPRaV\":[\"Os títulos na sua lista de desejos do Sofa serão automaticamente adicionados para download quando o Radarr verificar esta lista (a cada 12 horas por padrão)\"],\"aourBv\":[\"Backups agendados ativados\"],\"apLLSU\":[\"Tem certeza que deseja sair?\"],\"atc9MA\":[\"Abra o Emby, vá para <0>Settings > Webhooks\"],\"auVUJO\":[\"Restaurar banco de dados?\"],\"ayqfr4\":[\"URL de \",[\"label\"],\" regenerada\"],\"b/8KCH\":[\"Isso marcará todos os episódios desta série como assistidos. Você pode desfazer isso mais tarde desmarcando temporadas individuais.\"],\"b3Thhd\":[\"Envio falhou\"],\"b5DFtH\":[\"Definir senha\"],\"bHYIks\":[\"Sair\"],\"bITrbE\":[\"Limpar tudo\"],\"bNmdjU\":[\"Lista de Desejos\"],\"bTRwag\":[\"Remover da Biblioteca\"],\"bXMotV\":[\"Marcado como assistido\"],\"bezGJ2\":[[\"0\"],\" images\"],\"boJlGf\":[\"Página Não Encontrada\"],\"c1ssjI\":[\"Importando de \",[\"source\"]],\"c3b0B0\":[\"Começar\"],\"c4b9Dm\":[\"Nenhum resultado para \\\"\",[\"debouncedQuery\"],\"\\\"\"],\"cQPKZt\":[\"Ir para o Painel\"],\"ccAJSB\":[\"Keeping\"],\"cgvva8\":[[\"0\"],\" avaliações\"],\"cnGeoo\":[\"Excluir\"],\"cpE88+\":[\"Crie sua conta\"],\"d/6MoL\":[\"Gerencie sua conta e preferências\"],\"dA7BWh\":[\"Requer Emby Server 4.7.9+ e uma licença ativa do Emby Premiere.\"],\"dEgA5A\":[\"Cancelar\"],\"dTZwve\":[\"Todos os episódios marcados como assistidos\"],\"dUCJry\":[\"Mais recente\"],\"ddwpAr\":[\"Avisos (\",[\"0\"],\")\"],\"e/ToF5\":[\"Entrar com \",[\"0\"]],\"e9sZMS\":[\"Isso excluirá permanentemente o backup de <0>\",[\"0\"],\". Esta ação não pode ser desfeita.\"],\"eFRooE\":[\"Última execução falhou\"],\"eM39Om\":[\"Todos os episódios de \",[\"seasonLabel\"],\" assistidos\"],\"eZjYb8\":[\"Roteirista\"],\"ecUA8p\":[\"Hoje\"],\"evBxZy\":[\"Onde Assistir\"],\"ezDa1h\":[\"Abrir documentação\"],\"f+m696\":[\"Ocorreu um erro inesperado ao carregar esta página. Você pode tentar novamente ou voltar ao painel.\"],\"f/AKdU\":[\"Tem certeza que deseja desconectar \",[\"label\"],\"? A URL atual deixará de funcionar.\"],\"f7ax8J\":[\"Abrir no navegador…\"],\"fMPkxb\":[\"Mostrar mais\"],\"fNMqNn\":[\"Séries Populares\"],\"fObVvy\":[\"Foto de perfil atualizada\"],\"fRettQ\":[[\"0\"],\" itens\"],\"fUDRF9\":[\"Na Lista de Desejos\"],\"fcWrnU\":[\"Sair\"],\"fgLNSM\":[\"Registrar\"],\"fsAEqk\":[\"Continuar Assistindo\"],\"fzAeQI\":[\"Registrando em \",[\"serverHost\"]],\"g+gBfk\":[\"Analisando...\"],\"g4JYff\":[\"Importados \",[\"0\"],\" itens de \",[\"1\"]],\"gKtb5i\":[\"Os títulos na sua lista de desejos do Sofa serão automaticamente adicionados para download quando o Sonarr verificar esta lista (a cada 6 horas por padrão)\"],\"gaIAMq\":[\"Remover foto\"],\"gbEEMp\":[\"Excluir backup\"],\"gcNLi0\":[\"Verificações de atualização ativadas\"],\"gmB6oO\":[\"Agendamento\"],\"h/T5Yb\":[\"Registro aberto\"],\"h4yKYk\":[\"Próxima execução\"],\"h7MgpO\":[\"Atalhos de Teclado\"],\"hTXYdY\":[\"Falha ao criar backup\"],\"hXYY5Q\":[\"Desmarcados todos os episódios de \",[\"0\"]],\"he3ygx\":[\"Copiar\"],\"hjGupC\":[\"Conexão de importação perdida. Verifique o status nas configurações.\"],\"hlqjFc\":[\"Na biblioteca\"],\"hou0tP\":[\"Streaming\"],\"hty0d5\":[\"Segunda-feira\"],\"i0qMbr\":[\"Início\"],\"i9rcQ/\":[\"Filmes\"],\"iGma9e\":[\"Atualização falhou\"],\"iSLIjg\":[\"Conectar\"],\"iWv3ck\":[\"Falha ao colocar em dia\"],\"iXZ09g\":[\"Marcar como Concluído\"],\"id08cd\":[\"Assistido T\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"ih87w/\":[\"Adicionar à Biblioteca\"],\"ihn4zD\":[\"Pesquisar…\"],\"itDEco\":[\"Já tem uma conta? Entrar\"],\"itheEn\":[\"Com Anúncios\"],\"iwCRIF\":[\"Você será desconectado para alterar a URL do servidor.\"],\"j5GBIy\":[\"Abra o Radarr, vá para Settings > Import Lists\"],\"jAe8l4\":[[\"0\"],\" backups · último <0/>\"],\"jB3sfe\":[\"Backup manual\"],\"jFnMJ8\":[\"Toque duas vezes para remover este filtro\"],\"jQsPwL\":[\"Backups agendados desativados\"],\"jSjGeu\":[[\"0\"],\" itens não têm IDs externos e serão resolvidos por pesquisa de título, o que pode ser menos preciso.\"],\"jX6Gzg\":[\"Isso substituirá todo o seu banco de dados pelo arquivo enviado. Um backup de segurança dos seus dados atuais será criado primeiro. As sessões ativas podem precisar ser atualizadas após a restauração.\"],\"jiHVUy\":[\"Backup pré-restauração\"],\"k6c41p\":[\"Tarefas em segundo plano\"],\"kBDOjB\":[\"Agendamento de backup\"],\"kkDQ8m\":[\"Quinta-feira\"],\"klOeIX\":[\"Falha ao alterar senha\"],\"ks3XeZ\":[\"Abra o Sonarr, vá para Settings > Import Lists\"],\"kvuCtu\":[\"Algo deu errado ao carregar este título. Tente novamente.\"],\"kx0s+n\":[\"Resultados\"],\"l2wcoS\":[\"Última execução bem-sucedida\"],\"l3s5ri\":[\"Importar\"],\"lCF0wC\":[\"Atualizar\"],\"lJ1yo4\":[\"Falha ao entrar\"],\"lVqzRx\":[\"Clique em <0>Add Webhook e cole a URL acima\"],\"lXkUEV\":[\"Disponibilidade\"],\"lcLe89\":[\"Pesquise filmes, séries ou execute comandos\"],\"lfVyvz\":[\"Adicionar à Lista de Desejos\"],\"llDXYJ\":[\"Backups\"],\"llkZR0\":[\"Não foi possível carregar as integrações\"],\"ln9/n9\":[\"Não tem uma conta?\"],\"lpIMne\":[\"As senhas não coincidem\"],\"lqY3WY\":[\"Alterar Servidor\"],\"luoodD\":[\"Configuração necessária\"],\"m5WhJy\":[\"Verificações automáticas de atualização\"],\"mIx58S\":[\"Limpar imagens\"],\"mYBORk\":[\"Filme\"],\"ml9cU0\":[\"Falha ao regenerar URL de \",[\"label\"]],\"mqwkjd\":[\"Status de saúde\"],\"mqxHH7\":[\"Ir para Explorar\"],\"mzI/c+\":[\"Baixar\"],\"n1ekoW\":[\"Entrar\"],\"n3Pzd7\":[\"Backup criado\"],\"nBHvPL\":[\"Cancelar edição\"],\"nJw77c\":[[\"0\",\"plural\",{\"one\":[\"#\",\" imagem\"],\"other\":[\"#\",\" imagens\"]}]],\"nO0Qnj\":[\"Seu código:\"],\"nRP1xx\":[\"Precisa de mais ajuda?\"],\"nV1LjT\":[\"Ative o tipo de notificação <0>Playback Stop\"],\"nVsE67\":[\"Marcar como Assistindo\"],\"nZ7lF1\":[\"Código do dispositivo expirou. Tente novamente.\"],\"nbfdhU\":[\"Integrações\"],\"nbmpf9\":[\"Limpar metadados\"],\"nnKJTm\":[\"Falha ao marcar todos os episódios como assistidos\"],\"nszbQG\":[\"Nenhum backup ainda\"],\"nuh/Wq\":[\"URL do Webhook\"],\"nwtY4N\":[\"Algo deu errado\"],\"oAIA3w\":[\"Pesquise filmes, séries ou pessoas\"],\"oC8IMh\":[\"Pesquisar filmes, séries, pessoas...\"],\"oNvZcA\":[\"Episódios desta semana\"],\"oXq+Wr\":[[\"label\"],\" conectado\"],\"ogtYkT\":[\"Senha atualizada\"],\"ojtedN\":[\"Abra o Radarr, vá para <0>Settings > Import Lists\"],\"olMi35\":[\"Recomendado para Você\"],\"p+PZEl\":[\"Veja o que está acontecendo com sua biblioteca\"],\"pAtylB\":[\"Não Encontrado\"],\"pG9pq1\":[[\"0\",\"plural\",{\"one\":[\"#\",\" arquivo excluído\"],\"other\":[\"#\",\" arquivos excluídos\"]}],\", \",[\"freed\"],\" liberado\"],\"pWWFjv\":[\"Verificado <0/>\"],\"ph76H6\":[\"Permitir que novos usuários criem contas\"],\"pjgw0N\":[\"Escolha como importar seus dados do \",[\"0\"],\".\"],\"puo3W3\":[\"Redirecionando…\"],\"q3GraM\":[\"...e mais \",[\"0\"]],\"q6nrFE\":[\"faleceu aos \",[\"age\"]],\"q6pUQ9\":[\"Envie um arquivo .db para substituir o banco de dados atual. Um backup de segurança é criado primeiro.\"],\"q8yluz\":[\"Seu nome\"],\"qA6VR5\":[\"Requer <0>Emby Server 4.7.9+ e uma licença ativa do <1>Emby Premiere<2/>.\"],\"qF2IBM\":[\"Filmes este mês\"],\"qHbApt\":[\"Falha ao carregar as configurações do agendamento de backup.\"],\"qLB1zX\":[\"Envie um export \",[\"0\"],\" das configurações da sua conta \",[\"1\"],\".\"],\"qPNzfu\":[\"Verificações de atualização desativadas\"],\"qWoML/\":[\"Adicione um novo webhook e cole a URL acima\"],\"qiOIiY\":[\"Comprar\"],\"qn1X6N\":[\"Falha ao atualizar configuração de registro\"],\"qqWcBV\":[\"Concluído\"],\"qqeAJM\":[\"Nunca\"],\"r9aDAY\":[[\"count\"],\" \",[\"count\",\"plural\",{\"one\":[\"episódio anterior não assistido\"],\"other\":[\"episódios anteriores não assistidos\"]}]],\"rLgPvm\":[\"Backup\"],\"rSTpb5\":[\"Saúde do Servidor\"],\"rdymVD\":[\"Acionar tarefa\"],\"rtir7c\":[\"desconhecido\"],\"s0U4ZZ\":[\"Episódios de séries\"],\"s4vVUm\":[\"Não foi possível carregar os detalhes da pessoa\"],\"s9dVME\":[\"Falha ao desmarcar episódio\"],\"sGH11W\":[\"Servidor\"],\"sl/qWH\":[\"Enviar foto de perfil\"],\"sstysK\":[\"Falha ao marcar episódio\"],\"stZeiF\":[[\"watched\"],\"/\",[\"total\"],\" episódios\"],\"t/Ch8S\":[\"Marcado como assistindo\"],\"t/YqKh\":[\"Remover\"],\"tfDRzk\":[\"Salvar\"],\"tiymc0\":[\"Algo deu errado…\"],\"u9ugU7\":[[\"watchedCount\"],\"/\",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"episódio\"],\"other\":[\"episódios\"]}]],\"uBAxNB\":[\"Editor\"],\"uBrbSu\":[\"Falha ao iniciar conexão com \",[\"0\"]],\"uM6jnS\":[\"Restauração falhou\"],\"uMrJrX\":[\"Apenas administradores\"],\"uswLvZ\":[\"O título que você está procurando não existe ou pode ter sido removido do banco de dados.\"],\"uxOntd\":[[\"watchedCount\"],\" de \",[\"0\"],\" episódios assistidos\"],\"v2CA3w\":[\"Alterar Foto\"],\"v5ipVu\":[\"Marcar todos os episódios como assistidos?\"],\"vKfeax\":[\"Abra o Emby, vá para Settings > Webhooks\"],\"vXIe7J\":[\"Idioma\"],\"vuCCZ7\":[\"Falha ao analisar dados de importação\"],\"vwKERN\":[\"Falha ao excluir backup\"],\"w8pqsh\":[\"Marcar Todos como Assistidos\"],\"wA7B2T\":[\"Novas contas não estão sendo aceitas agora. Entre em contato com o administrador se precisar de acesso.\"],\"wGFX13\":[\"Iniciando às\"],\"wR1UAy\":[\"Filmes Populares\"],\"wRWcdL\":[\"Reproduzir trailer\"],\"wThGrS\":[\"Configurações do App\"],\"wZK4Xg\":[\"Nunca executado\"],\"wdLxgL\":[\"Membro desde \",[\"memberSince\"]],\"wja8aL\":[\"Sem título\"],\"wtGebH\":[\"A pessoa que você está procurando não existe ou pode ter sido removida do banco de dados.\"],\"wtsbt5\":[\"Adicionar à lista de desejos\"],\"wtuVU4\":[\"Frequência\"],\"wx7pwA\":[\"Marcar como Assistido\"],\"x4ZiTl\":[\"Instruções de configuração\"],\"xCJdfg\":[\"Limpar\"],\"xGVfLh\":[\"Continuar\"],\"xLoCm2\":[\"Verificar configuração\"],\"xSrU2g\":[[\"healthyCount\"],\" de \",[\"0\"],\" tarefas saudáveis\"],\"xazqmy\":[\"Temporadas\"],\"xbBXhy\":[\"Verificar periodicamente o GitHub por novas versões do Sofa\"],\"xrh2/M\":[\"Falha ao marcar como assistido\"],\"y3e9pF\":[\"Excluir backup?\"],\"y6Urel\":[\"Próximo Episódio\"],\"yGvjAo\":[\"Atualização disponível: \",[\"0\"]],\"yKu/3Y\":[\"Restaurar\"],\"yYxB17\":[\"Limpar tudo\"],\"ybtG1U\":[[\"0\"],\" backup\",[\"1\"],\" stored\"],\"yey/zg\":[\"Banco de dados restaurado. Recarregando...\"],\"ygo0l/\":[\"Comece a acompanhar filmes e séries\"],\"yvwIbI\":[\"Enviar arquivo de exportação\"],\"yz7wBu\":[\"Fechar\"],\"z1U/Fh\":[\"Avaliação\"],\"z5evln\":[\"Sem conexão com a internet\"],\"zAvS8w\":[\"Entre para continuar\"],\"zEqK2w\":[\"A página que você está procurando não existe.\"],\"zFkiTv\":[\"Instale o plugin Webhook do catálogo de plugins do Jellyfin\"],\"zNyR4f\":[\"Defina seu perfil de qualidade preferido e pasta raiz\"],\"za8Le/\":[\"Registro Fechado\"],\"zb77GC\":[\"Alugar\"],\"ztAdhw\":[\"Nome atualizado\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"+5kO8P\":[\"Sábado\"],\"+6i0lS\":[\"Buscando seu histórico de exibição, lista de desejos e avaliações...\"],\"+Cv+V9\":[\"Remover da biblioteca\"],\"+JkEpu\":[\"Esta página ficou no chão da sala de montagem. Pode ter sido movida, removida ou nunca ter passado do roteiro.\"],\"+K0AvT\":[\"Desconectar\"],\"+N0l5/\":[\"Conectado a <0>\",[\"serverHost\"],\". Toque para alterar.\"],\"+gLHYi\":[\"Falha ao carregar título\"],\"+j1ex/\":[\"Falha ao remover da biblioteca\"],\"+nF1ZO\":[\"Remover Foto\"],\"/+6dvC\":[\"Erros (\",[\"0\"],\")\"],\"/BBXeA\":[\"Conectando ao servidor...\"],\"/DwR+n\":[\"Criando…\"],\"/XtbPO\":[[\"0\"],\" titles\"],\"/cg+QV\":[\"Marcar todos\"],\"/gQXGv\":[\"Falha ao atualizar status\"],\"/nT6AE\":[\"Nova senha\"],\"/sHc1/\":[\"Verificação de atualização\"],\"0+dyau\":[\"Falha ao atualizar configuração de retenção\"],\"0BFJKK\":[\"Autorização negada. Tente novamente.\"],\"0GHb20\":[\"Limpar cache de metadados?\"],\"0IBW21\":[\"Falha ao limpar caches\"],\"0gH/sc\":[\"Remover foto de perfil\"],\"1+P9RR\":[\"Mudar para \",[\"0\"]],\"12cc1j\":[\"Assistindo\"],\"12lVOl\":[\"Rastreador de filmes e séries auto-hospedado\"],\"1B4z0M\":[\"Filmografia\"],\"1J4Ek0\":[\"Faça backup automático do banco de dados com agendamento\"],\"1JhxXW\":[\"Episódio \",[\"0\"],\", \",[\"episodeLabel\"]],\"1N6wNP\":[\"Opções de importação\"],\"1Qz4uG\":[\"Ative a categoria de evento \\\"Playback\\\"\"],\"1hMWR6\":[\"Criar conta\"],\"1jHIjh\":[\"Todos os episódios de \",[\"seasonName\"],\" assistidos\"],\"1vSYsG\":[\"Baixar backup\"],\"1wL1tj\":[\"Série\"],\"2FletP\":[[\"0\",\"plural\",{\"one\":[\"#\",\" título removido\"],\"other\":[\"#\",\" títulos removidos\"]}],\", \",[\"1\",\"plural\",{\"one\":[\"#\",\" pessoa\"],\"other\":[\"#\",\" pessoas\"]}],\", \",[\"2\",\"plural\",{\"one\":[\"#\",\" arquivo\"],\"other\":[\"#\",\" arquivos\"]}],\" (\",[\"freed\"],\" liberado)\"],\"2Fsd9r\":[\"Este Mês\"],\"2MPcep\":[\"Importação concluída\"],\"2Mu33Z\":[\"Gerenciamento de cache\"],\"2POOFK\":[\"Grátis\"],\"2Pt2NY\":[\"Isso removerá todos os itens do seu histórico.\"],\"2fCpt5\":[\"Voltar ao início\"],\"2pPBp6\":[\"Em alta hoje\"],\"39neVN\":[\"Movies \",[\"0\"]],\"39y5bn\":[\"Sexta-feira\"],\"3Blefz\":[\"Avaliações\"],\"3JTlG8\":[\"Pesquisas Recentes\"],\"3Jy8bM\":[\"Filmes \",[\"select\"]],\"3L9OuQ\":[\"Episódio \",[\"0\"]],\"3T/4MV\":[\"this year\"],\"3T8ziB\":[\"Criar uma conta\"],\"3hELxX\":[\"Insira a URL do seu servidor Sofa para começar\"],\"4fxLkp\":[\"Abra o Sonarr, vá para <0>Settings > Import Lists\"],\"4kpBqM\":[\"Último evento \",[\"0\"]],\"4uUjVO\":[\"Produtor\"],\"4x+A56\":[\"Relatório de uso anônimo\"],\"5IShvp\":[\"Importar \",[\"totalItems\"],\" itens\"],\"5IYJSv\":[\"Explorar títulos\"],\"5Y4mym\":[\"Importar de \",[\"0\"]],\"5ZzgbQ\":[\"Conectar \",[\"0\"]],\"5fEnbK\":[\"Falha ao atualizar configuração de backup agendado\"],\"5lWFkC\":[\"Entrar\"],\"5v9C16\":[\"Conectado a \",[\"source\"]],\"623bR4\":[\"Falha ao acionar tarefa\"],\"6HN0yh\":[\"Abra o Plex, vá para Settings > Webhooks\"],\"6TNjOJ\":[\"Falha ao atualizar avaliação\"],\"6TfUy6\":[\"últimos \",[\"value\"]],\"6V3Ea3\":[\"Copiado\"],\"6YtxFj\":[\"Nome\"],\"6exX+8\":[\"Regenerar\"],\"6gRgw8\":[\"Tentar novamente\"],\"6lGV3K\":[\"Mostrar menos\"],\"76++pR\":[\"Avisos\"],\"77DIAu\":[\"Acesse Dashboard > Plugins > Webhook\"],\"79m/GK\":[\"Episodes \",[\"0\"]],\"7Bj3x9\":[\"Falhou\"],\"7D50KC\":[[\"label\"],\" desconectado\"],\"7GfM5w\":[\"Vistos Recentemente\"],\"7L01XJ\":[\"Ações\"],\"7eMo+U\":[\"Ir para Início\"],\"7p5kLi\":[\"Painel\"],\"85eoJ1\":[\"Agendamento atualizado\"],\"8B9E2D\":[\"Dia:\"],\"8YwF1J\":[\"Acesse <0>Dashboard > Plugins > Webhook\"],\"8ZsakT\":[\"Senha\"],\"8tjQCz\":[\"Explorar\"],\"8vNtLy\":[\"Cole a URL do Radarr acima no campo URL da Lista\"],\"8wYDMp\":[\"Já tem uma conta?\"],\"9AE3vb\":[\"Abra o Plex, vá para <0>Settings > Webhooks<1/>\"],\"9GW0ZB\":[\"A importação ainda está em andamento em segundo plano. Verifique mais tarde.\"],\"9NyAH9\":[\"Ignorado\"],\"9Xhrps\":[\"Falha ao conectar\"],\"9ZLGbA\":[\"backups.\"],\"9eF5oV\":[\"Bem-vindo de volta\"],\"9rG25a\":[\"URL do Servidor\"],\"A+0rLe\":[\"Marcado como concluído\"],\"A1taO8\":[\"Search\"],\"AOHgZp\":[\"Episódios\"],\"AOddWK\":[\"Conectar \",[\"label\"]],\"ATfxL/\":[\"Trailer\"],\"AVlZoM\":[\"Ambiente\"],\"Acf6vF\":[\"Salvar nome\"],\"AdoUfN\":[\"Falha ao adicionar à lista de desejos\"],\"AeXO77\":[\"Conta\"],\"AjtYj0\":[\"Na Lista de Desejos\"],\"Avee+B\":[\"Falha ao atualizar nome\"],\"B2R3xD\":[\"Ativar/desativar backups agendados\"],\"BEVzjL\":[\"Importação falhou\"],\"BQnS5I\":[\"Abrir \",[\"source\"],\" para inserir o código\"],\"BUnoSB\":[[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"backup armazenado\"],\"other\":[\"backups armazenados\"]}]],\"BpttUI\":[\"Em Alta Hoje\"],\"BrrIs8\":[\"Armazenamento\"],\"BskWMl\":[\"Inacessível\"],\"BzEFor\":[\"ou\"],\"CGDHFb\":[\"Adicione um <0>Generic Destination e cole a URL acima\"],\"CGExDN\":[\"Falha ao limpar cache de imagens\"],\"CHeXFE\":[\"Status atualizado\"],\"CKyk7Q\":[\"Voltar\"],\"CaB/+I\":[\"Bem-vindo de volta, \",[\"name\"]],\"CodnUh\":[\"Removido da biblioteca\"],\"CpzGJY\":[\"Isso pode levar alguns minutos para bibliotecas grandes. Por favor, não feche esta aba.\"],\"CuPxpd\":[\"Requer uma assinatura ativa do <0>Plex Pass<1/>.\"],\"CzBN6D\":[\"Começar a explorar\"],\"D+R2Xs\":[\"Iniciando importação...\"],\"D3C4Yx\":[\"A senha atual é obrigatória\"],\"DBC3t5\":[\"Domingo\"],\"DI4lqs\":[\"Pessoa não encontrada\"],\"DKBbJf\":[\"Adicionado \\\"\",[\"titleName\"],\"\\\" à lista de desejos\"],\"DPfwMq\":[\"Concluído\"],\"DZse/o\":[\"Adicione um \\\"Generic Destination\\\" e cole a URL acima\"],\"E/QGRL\":[\"Desativado\"],\"E6nRW7\":[\"Copiar URL\"],\"EWQlBH\":[\"Sua biblioteca está vazia\"],\"EWaCfj\":[\"Insira sua senha atual e escolha uma nova.\"],\"Eeo/Gy\":[\"Falha ao atualizar configuração\"],\"Efn6WU\":[\"Isso excluirá todos os títulos stub não enriquecidos e todas as imagens em cache do disco. Tudo será reimportado e baixado novamente conforme necessário.\"],\"Etp5if\":[\"Importação de \",[\"source\"],\" concluída.\"],\"F006BN\":[\"Importar de \",[\"source\"]],\"FNvDMc\":[\"Esta Semana\"],\"FWSp+7\":[\"Insira o código abaixo no site do \",[\"source\"],\" para autorizar o Sofa.\"],\"FXN0ro\":[\"Recomendações\"],\"FaU7Ag\":[\"Ative o tipo de notificação \\\"Playback Stop\\\"\"],\"FhvLDl\":[[\"watchedCount\"],\"/\",[\"0\"],\" episodes\"],\"Fo2bwm\":[\"Ator\"],\"FwRqjE\":[\"Uso de disco de cache de imagens e backups\"],\"G00fgM\":[\"últimos \",[\"n\"]],\"G3myU+\":[\"Terça-feira\"],\"GcCthe\":[\"Na Biblioteca\"],\"Gf39AA\":[[\"0\"],\" acionado\"],\"GnhfWw\":[\"Ativar/desativar verificações automáticas de atualização\"],\"GptGxg\":[\"Alterar senha\"],\"GqTZ+S\":[\"Avaliado com \",[\"ratingStars\"],\" \",[\"ratingStars\",\"plural\",{\"one\":[\"estrela\"],\"other\":[\"estrelas\"]}]],\"GrdN/F\":[\"Em dia — \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"episódio marcado como assistido\"],\"other\":[\"episódios marcados como assistidos\"]}]],\"H4B5LG\":[\"Este produto usa a API do TMDB, mas não é endossado ou certificado pelo TMDB.\"],\"HBRd5n\":[\"Temporada \",[\"0\"]],\"HD+aQ7\":[\"Backups do banco de dados\"],\"HG+31u\":[\"Limpar todos os caches?\"],\"Haz+72\":[\"Isso excluirá todas as imagens TMDB em cache do disco. As imagens serão baixadas novamente automaticamente conforme necessário.\"],\"HbReP5\":[\"Marcado \\\"\",[\"titleName\"],\"\\\" como concluído\"],\"Hg6o8v\":[\"Atualizar status de saúde do sistema\"],\"HmEjnC\":[\"Último evento \",[\"timeAgo\"]],\"HvDfH/\":[\"Importado\"],\"I89uD4\":[\"Restaurando…\"],\"IRoxQm\":[\"Registro fechado\"],\"IS0nrP\":[\"Criar Conta\"],\"IY9rQ0\":[\"Libere espaço em disco limpando metadados e imagens em cache\"],\"IrC12v\":[\"Aplicativo\"],\"J28zul\":[\"Conectando...\"],\"J64cFL\":[\"Atualização da biblioteca\"],\"JKmmmN\":[\"Adicionado à lista de desejos\"],\"JN0f/Y\":[\"Conectar ao TMDB\"],\"JR6aH2\":[\"Movies \",[\"periodSelect\"]],\"JRQitQ\":[\"Confirmar nova senha\"],\"JRadFJ\":[\"Comece a registrar suas visualizações\"],\"JSwq8t\":[\"A criação de novas contas está desativada no momento.\"],\"JY5Oyv\":[\"Banco de Dados\"],\"JjsJnI\":[[\"0\"],\"/\",[\"1\"],\" episodes\"],\"JrFTcr\":[\"Conectando…\"],\"JwFbe8\":[\"Série\"],\"KDw4GX\":[\"Tentar novamente\"],\"KG6681\":[\"Episódio assistido\"],\"KIS/Sd\":[\"Sair de outras sessões\"],\"KK0ghs\":[\"Cache de imagens\"],\"KVAoFR\":[\"ilimitado\"],\"KcXJuc\":[\"Limpando...\"],\"KhtG3o\":[\"Atualizar Senha\"],\"Khux7w\":[[\"0\",\"plural\",{\"one\":[\"#\",\" título\"],\"other\":[\"#\",\" títulos\"]}]],\"KmWyx0\":[\"Tarefa\"],\"KoF0x6\":[\"idade \",[\"age\"]],\"Ksiej9\":[\"Requer uma assinatura ativa do Plex Pass.\"],\"Kx9NEt\":[\"Token inválido\"],\"Lk6Jb/\":[\"Última verificação \",[\"timeAgo\"]],\"LmEEic\":[\"Aguardando autorização...\"],\"LqKH42\":[\"Conectar com \",[\"0\"]],\"Lrpjji\":[\"Desconectar \",[\"label\"]],\"Lu6Udx\":[\"Clique em \\\"+\\\" e selecione \\\"Custom Lists\\\"\"],\"MDoX++\":[\"URL da Lista do Sonarr\"],\"MRBlCJ\":[\"Falha ao desmarcar alguns episódios\"],\"MUO7w9\":[\"Marcado \\\"\",[\"titleName\"],\"\\\" como assistido\"],\"MZbQHL\":[\"Nenhum resultado encontrado.\"],\"MdxR1u\":[\"Choose your preferred display language\"],\"MkyzAV\":[\"Autorize o Sofa a ler sua biblioteca do \",[\"0\"],\". Nenhuma senha é compartilhada.\"],\"N40H+G\":[\"Todos\"],\"N6SFhC\":[\"Entrar em vez disso\"],\"N7h106\":[\"Sofa v\",[\"0\"],\" está disponível\"],\"N9RF2M\":[\"Clique em \\\"Add Webhook\\\" e cole a URL acima\"],\"NBo4z0\":[\"Clique em <0>+ e selecione <1>Custom Lists\"],\"NICUmW\":[\"Diretor\"],\"NQzPoO\":[\"Novo backup\"],\"NSxl1l\":[\"Mais Configurações\"],\"NVF43p\":[\"Hora:\"],\"NdPMwS\":[\"Na Sua Biblioteca\"],\"NgaPSG\":[\"Falha ao atualizar agendamento\"],\"O3oNi5\":[\"E-mail\"],\"OBcj5W\":[\"Isso invalidará a URL atual do \",[\"label\"],\". Você precisará atualizá-la no \",[\"label\"],\".\"],\"OL8hbM\":[\"A nova senha deve ter pelo menos 8 caracteres\"],\"ONWvwQ\":[\"Enviar\"],\"OPFjyX\":[\"Instale o <0>plugin Webhook<1/> do catálogo de plugins do Jellyfin\"],\"OW/+RD\":[\"Histórico de exibição\"],\"OZdaTZ\":[\"Pessoa\"],\"OvO76u\":[\"Voltar ao Login\"],\"OvdFIZ\":[\"Temporada assistida\"],\"P2FLLe\":[\"Ver versão\"],\"PBdLfg\":[\"Nenhum título encontrado para este gênero.\"],\"PQ3qDa\":[\"Buscando seus dados da biblioteca em \",[\"source\"],\"...\"],\"PjNoxI\":[\"Backup agendado\"],\"Pn2B7/\":[\"Senha atual\"],\"PnEbL/\":[\"Avaliado com \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"estrela\"],\"other\":[\"estrelas\"]}]],\"Pwqkdw\":[\"Carregando…\"],\"Py87xY\":[\"Autorização concluída, mas falha ao buscar sua biblioteca. Tente novamente.\"],\"Q3MPWA\":[\"Atualizar senha\"],\"QHcLEN\":[\"Conectado\"],\"QK4UIx\":[\"Marcar como Assistido\"],\"Qjlym2\":[\"Falha ao criar conta\"],\"Qm1NmK\":[\"OU\"],\"Qoq+GP\":[\"Ler mais\"],\"QphVZW\":[\"Não foi possível alcançar o servidor\"],\"QqLJHH\":[\"Este Ano\"],\"R0yu2l\":[\"Colocar em dia\"],\"R4YBui\":[\"Pesquise filmes e séries para começar a acompanhar\"],\"RH46vw\":[[\"0\"],\"/\",[\"1\"],\" \",[\"2\",\"plural\",{\"one\":[\"episódio\"],\"other\":[\"episódios\"]}]],\"RIR15/\":[\"URL da Lista do Radarr\"],\"RLe7Vk\":[\"Verificando…\"],\"ROq8cl\":[\"Falha ao analisar arquivo\"],\"RQq8Si\":[\"Registro aberto\"],\"S0soqb\":[\"Falha ao remover foto de perfil\"],\"S1McZh\":[\"Falha ao enviar avatar\"],\"S2ble5\":[[\"0\"],\" filmes, \",[\"1\"],\" episódios\"],\"S2qPRR\":[\"Pesquisar filmes e séries…\"],\"SDND4q\":[\"Não configurado\"],\"SFdAk9\":[\"Desmarcado T\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"SUIUkB\":[\"Desmarcar todos\"],\"SbS+Bm\":[\"Regenerar URL\"],\"SlfejT\":[\"Erro\"],\"Sp86ju\":[[\"0\"],\" ep\",[\"1\"]],\"SrfROI\":[\"A seguir\"],\"SyPRjk\":[\"O Sofa registrará automaticamente filmes e episódios quando você terminar de assisti-los\"],\"T0/7WG\":[\"Próximo backup \",[\"distance\"]],\"TEaX6q\":[\"Backup excluído\"],\"TI7IKo\":[\"Rated \",[\"0\"],\" star\",[\"1\"]],\"TMb7iE\":[\"Foto de perfil removida\"],\"TqyQQS\":[\"Ative a categoria de evento <0>Playback\"],\"Tz0i8g\":[\"Configurações\"],\"U+FxtW\":[\"Acompanhe o que você assiste. Saiba o que vem a seguir.<0/>Sua biblioteca, seus dados, suas regras.\"],\"U3pytU\":[\"Administrador\"],\"UC+OWB\":[\"Ativar/desativar registro aberto\"],\"UDMjsP\":[\"Ações Rápidas\"],\"UmQ6Fe\":[\"Limpar cache de imagens?\"],\"UtDm3q\":[\"URL copiada para a área de transferência\"],\"V1Kh9Z\":[\"Episódios \",[\"select\"]],\"V6uzvC\":[\"Mais Como Este\"],\"V9CuQ+\":[\"Conectar a \",[\"source\"]],\"VAcXNz\":[\"Quarta-feira\"],\"VKyhZK\":[\"Título não encontrado\"],\"VQvpro\":[\"Cole a URL do Sonarr acima no campo URL da Lista\"],\"VhMDMg\":[\"Alterar Senha\"],\"Vx0ayx\":[\"Falha ao marcar alguns episódios\"],\"WDC4PF\":[\"Episodes \",[\"periodSelect\"]],\"WEYdDv\":[\"Recomendado\"],\"WMCwmR\":[\"Verificar atualizações\"],\"WP48q2\":[\"Cache de Imagens\"],\"WT1Ibn\":[\"Última execução\"],\"Wb3E4g\":[\"Executar agora\"],\"WgF2UQ\":[\"Você está usando a v\",[\"0\"],\".\"],\"WtWhSi\":[\"Avaliação removida\"],\"Wy/3II\":[\"Última verificação \",[\"0\"]],\"X0OwOB\":[\"today\"],\"XFCSYs\":[\"Elenco\"],\"XN23JY\":[\"Isso excluirá títulos stub não enriquecidos que não estão na biblioteca de nenhum usuário e limpará registros de pessoas órfãs. Os títulos excluídos serão reimportados se acessados novamente.\"],\"XZwihE\":[\"Pronto — nada recebido ainda\"],\"XjTduw\":[\"Enviar foto\"],\"YEGzVq\":[\"Falha ao conectar \",[\"label\"]],\"YErf89\":[\"Falha ao limpar cache de metadados\"],\"YQ768h\":[\"Cena não encontrada\"],\"YiRsXK\":[\"Limpar Vistos Recentemente?\"],\"Yjp1zf\":[\"Não tem um servidor?\"],\"YqMfa9\":[\"Revise o que foi encontrado e escolha o que importar.\"],\"ZGUYm0\":[\"Pronto — ainda não verificado\"],\"ZQKLI1\":[\"Zona de Perigo\"],\"ZVZUoU\":[[\"0\"],\" imagens em cache\"],\"ZWTQ81\":[\"Assistir em \",[\"name\"]],\"a3LDKx\":[\"Segurança\"],\"aLBUiR\":[\"Mantendo <0><1><2>\",[\"0\"],\"<3>\",[\"1\"],\" backups.\"],\"aM0+kY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" título obsoleto removido\"],\"other\":[\"#\",\" títulos obsoletos removidos\"]}],\" e \",[\"1\",\"plural\",{\"one\":[\"#\",\" pessoa órfã\"],\"other\":[\"#\",\" pessoas órfãs\"]}]],\"aO1AxG\":[\"Episódio não assistido\"],\"aV/hDI\":[\"Falha ao desconectar \",[\"label\"]],\"acbSg0\":[\"Toque duas vezes para filtrar por \",[\"label\"]],\"agE7k4\":[\"Avaliado com \",[\"stars\",\"plural\",{\"one\":[\"#\",\" estrela\"],\"other\":[\"#\",\" estrelas\"]}]],\"alPRaV\":[\"Os títulos na sua lista de desejos do Sofa serão automaticamente adicionados para download quando o Radarr verificar esta lista (a cada 12 horas por padrão)\"],\"aourBv\":[\"Backups agendados ativados\"],\"apLLSU\":[\"Tem certeza que deseja sair?\"],\"atc9MA\":[\"Abra o Emby, vá para <0>Settings > Webhooks\"],\"auVUJO\":[\"Restaurar banco de dados?\"],\"ayqfr4\":[\"URL de \",[\"label\"],\" regenerada\"],\"b/8KCH\":[\"Isso marcará todos os episódios desta série como assistidos. Você pode desfazer isso mais tarde desmarcando temporadas individuais.\"],\"b0F4W5\":[\"this month\"],\"b3Thhd\":[\"Envio falhou\"],\"b5DFtH\":[\"Definir senha\"],\"bHYIks\":[\"Sair\"],\"bITrbE\":[\"Limpar tudo\"],\"bNmdjU\":[\"Lista de Desejos\"],\"bTRwag\":[\"Remover da Biblioteca\"],\"bXMotV\":[\"Marcado como assistido\"],\"bezGJ2\":[[\"0\"],\" images\"],\"boJlGf\":[\"Página Não Encontrada\"],\"c1ssjI\":[\"Importando de \",[\"source\"]],\"c3b0B0\":[\"Começar\"],\"c4b9Dm\":[\"Nenhum resultado para \\\"\",[\"debouncedQuery\"],\"\\\"\"],\"cQPKZt\":[\"Ir para o Painel\"],\"ccAJSB\":[\"Keeping\"],\"cgvva8\":[[\"0\"],\" avaliações\"],\"cnGeoo\":[\"Excluir\"],\"cpE88+\":[\"Crie sua conta\"],\"d/6MoL\":[\"Gerencie sua conta e preferências\"],\"dA7BWh\":[\"Requer Emby Server 4.7.9+ e uma licença ativa do Emby Premiere.\"],\"dEgA5A\":[\"Cancelar\"],\"dTZwve\":[\"Todos os episódios marcados como assistidos\"],\"dUCJry\":[\"Mais recente\"],\"ddwpAr\":[\"Avisos (\",[\"0\"],\")\"],\"e/ToF5\":[\"Entrar com \",[\"0\"]],\"e9sZMS\":[\"Isso excluirá permanentemente o backup de <0>\",[\"0\"],\". Esta ação não pode ser desfeita.\"],\"eFRooE\":[\"Última execução falhou\"],\"eM39Om\":[\"Todos os episódios de \",[\"seasonLabel\"],\" assistidos\"],\"eZjYb8\":[\"Roteirista\"],\"ecUA8p\":[\"Hoje\"],\"evBxZy\":[\"Onde Assistir\"],\"ezDa1h\":[\"Abrir documentação\"],\"f+m696\":[\"Ocorreu um erro inesperado ao carregar esta página. Você pode tentar novamente ou voltar ao painel.\"],\"f/AKdU\":[\"Tem certeza que deseja desconectar \",[\"label\"],\"? A URL atual deixará de funcionar.\"],\"f7ax8J\":[\"Abrir no navegador…\"],\"fMPkxb\":[\"Mostrar mais\"],\"fNMqNn\":[\"Séries Populares\"],\"fObVvy\":[\"Foto de perfil atualizada\"],\"fRettQ\":[[\"0\"],\" itens\"],\"fUDRF9\":[\"Na Lista de Desejos\"],\"fcWrnU\":[\"Sair\"],\"fgLNSM\":[\"Registrar\"],\"fsAEqk\":[\"Continuar Assistindo\"],\"fzAeQI\":[\"Registrando em \",[\"serverHost\"]],\"g+gBfk\":[\"Analisando...\"],\"g4JYff\":[\"Importados \",[\"0\"],\" itens de \",[\"1\"]],\"gKtb5i\":[\"Os títulos na sua lista de desejos do Sofa serão automaticamente adicionados para download quando o Sonarr verificar esta lista (a cada 6 horas por padrão)\"],\"gaIAMq\":[\"Remover foto\"],\"gbEEMp\":[\"Excluir backup\"],\"gcNLi0\":[\"Verificações de atualização ativadas\"],\"gmB6oO\":[\"Agendamento\"],\"h/T5Yb\":[\"Registro aberto\"],\"h4yKYk\":[\"Próxima execução\"],\"h7MgpO\":[\"Atalhos de Teclado\"],\"hTXYdY\":[\"Falha ao criar backup\"],\"hXYY5Q\":[\"Desmarcados todos os episódios de \",[\"0\"]],\"he3ygx\":[\"Copiar\"],\"hjGupC\":[\"Conexão de importação perdida. Verifique o status nas configurações.\"],\"hlqjFc\":[\"Na biblioteca\"],\"hou0tP\":[\"Streaming\"],\"hty0d5\":[\"Segunda-feira\"],\"i0qMbr\":[\"Início\"],\"i9rcQ/\":[\"Filmes\"],\"iGma9e\":[\"Atualização falhou\"],\"iSLIjg\":[\"Conectar\"],\"iWv3ck\":[\"Falha ao colocar em dia\"],\"iXZ09g\":[\"Marcar como Concluído\"],\"id08cd\":[\"Assistido T\",[\"seasonNum\"],\" E\",[\"epNum\"]],\"ih87w/\":[\"Adicionar à Biblioteca\"],\"ihn4zD\":[\"Pesquisar…\"],\"itDEco\":[\"Já tem uma conta? Entrar\"],\"itheEn\":[\"Com Anúncios\"],\"iwCRIF\":[\"Você será desconectado para alterar a URL do servidor.\"],\"j5GBIy\":[\"Abra o Radarr, vá para Settings > Import Lists\"],\"jAe8l4\":[[\"0\"],\" backups · último <0/>\"],\"jB3sfe\":[\"Backup manual\"],\"jFnMJ8\":[\"Toque duas vezes para remover este filtro\"],\"jQsPwL\":[\"Backups agendados desativados\"],\"jSjGeu\":[[\"0\"],\" itens não têm IDs externos e serão resolvidos por pesquisa de título, o que pode ser menos preciso.\"],\"jX6Gzg\":[\"Isso substituirá todo o seu banco de dados pelo arquivo enviado. Um backup de segurança dos seus dados atuais será criado primeiro. As sessões ativas podem precisar ser atualizadas após a restauração.\"],\"jiHVUy\":[\"Backup pré-restauração\"],\"k6c41p\":[\"Tarefas em segundo plano\"],\"kBDOjB\":[\"Agendamento de backup\"],\"kkDQ8m\":[\"Quinta-feira\"],\"klOeIX\":[\"Falha ao alterar senha\"],\"ks3XeZ\":[\"Abra o Sonarr, vá para Settings > Import Lists\"],\"kvuCtu\":[\"Algo deu errado ao carregar este título. Tente novamente.\"],\"kx0s+n\":[\"Resultados\"],\"l2wcoS\":[\"Última execução bem-sucedida\"],\"l3s5ri\":[\"Importar\"],\"lCF0wC\":[\"Atualizar\"],\"lJ1yo4\":[\"Falha ao entrar\"],\"lVqzRx\":[\"Clique em <0>Add Webhook e cole a URL acima\"],\"lXkUEV\":[\"Disponibilidade\"],\"lcLe89\":[\"Pesquise filmes, séries ou execute comandos\"],\"lfVyvz\":[\"Adicionar à Lista de Desejos\"],\"llDXYJ\":[\"Backups\"],\"llkZR0\":[\"Não foi possível carregar as integrações\"],\"ln9/n9\":[\"Não tem uma conta?\"],\"lpIMne\":[\"As senhas não coincidem\"],\"lqY3WY\":[\"Alterar Servidor\"],\"luoodD\":[\"Configuração necessária\"],\"m5WhJy\":[\"Verificações automáticas de atualização\"],\"mIx58S\":[\"Limpar imagens\"],\"mYBORk\":[\"Filme\"],\"ml9cU0\":[\"Falha ao regenerar URL de \",[\"label\"]],\"mqwkjd\":[\"Status de saúde\"],\"mqxHH7\":[\"Ir para Explorar\"],\"mzI/c+\":[\"Baixar\"],\"n1ekoW\":[\"Entrar\"],\"n3Pzd7\":[\"Backup criado\"],\"nBHvPL\":[\"Cancelar edição\"],\"nJw77c\":[[\"0\",\"plural\",{\"one\":[\"#\",\" imagem\"],\"other\":[\"#\",\" imagens\"]}]],\"nO0Qnj\":[\"Seu código:\"],\"nRP1xx\":[\"Precisa de mais ajuda?\"],\"nV1LjT\":[\"Ative o tipo de notificação <0>Playback Stop\"],\"nVsE67\":[\"Marcar como Assistindo\"],\"nZ7lF1\":[\"Código do dispositivo expirou. Tente novamente.\"],\"nbfdhU\":[\"Integrações\"],\"nbmpf9\":[\"Limpar metadados\"],\"nnKJTm\":[\"Falha ao marcar todos os episódios como assistidos\"],\"nszbQG\":[\"Nenhum backup ainda\"],\"nuh/Wq\":[\"URL do Webhook\"],\"nwtY4N\":[\"Algo deu errado\"],\"oAIA3w\":[\"Pesquise filmes, séries ou pessoas\"],\"oC8IMh\":[\"Pesquisar filmes, séries, pessoas...\"],\"oNvZcA\":[\"Episódios desta semana\"],\"oXq+Wr\":[[\"label\"],\" conectado\"],\"ogtYkT\":[\"Senha atualizada\"],\"ojtedN\":[\"Abra o Radarr, vá para <0>Settings > Import Lists\"],\"olMi35\":[\"Recomendado para Você\"],\"p+PZEl\":[\"Veja o que está acontecendo com sua biblioteca\"],\"pAtylB\":[\"Não Encontrado\"],\"pG9pq1\":[[\"0\",\"plural\",{\"one\":[\"#\",\" arquivo excluído\"],\"other\":[\"#\",\" arquivos excluídos\"]}],\", \",[\"freed\"],\" liberado\"],\"pWWFjv\":[\"Verificado <0/>\"],\"ph76H6\":[\"Permitir que novos usuários criem contas\"],\"pjgw0N\":[\"Escolha como importar seus dados do \",[\"0\"],\".\"],\"puo3W3\":[\"Redirecionando…\"],\"q3GraM\":[\"...e mais \",[\"0\"]],\"q6nrFE\":[\"faleceu aos \",[\"age\"]],\"q6pUQ9\":[\"Envie um arquivo .db para substituir o banco de dados atual. Um backup de segurança é criado primeiro.\"],\"q8yluz\":[\"Seu nome\"],\"qA6VR5\":[\"Requer <0>Emby Server 4.7.9+ e uma licença ativa do <1>Emby Premiere<2/>.\"],\"qF2IBM\":[\"Filmes este mês\"],\"qHbApt\":[\"Falha ao carregar as configurações do agendamento de backup.\"],\"qLB1zX\":[\"Envie um export \",[\"0\"],\" das configurações da sua conta \",[\"1\"],\".\"],\"qPNzfu\":[\"Verificações de atualização desativadas\"],\"qWoML/\":[\"Adicione um novo webhook e cole a URL acima\"],\"qiOIiY\":[\"Comprar\"],\"qn1X6N\":[\"Falha ao atualizar configuração de registro\"],\"qqWcBV\":[\"Concluído\"],\"qqeAJM\":[\"Nunca\"],\"r9aDAY\":[[\"count\"],\" \",[\"count\",\"plural\",{\"one\":[\"episódio anterior não assistido\"],\"other\":[\"episódios anteriores não assistidos\"]}]],\"rLgPvm\":[\"Backup\"],\"rSTpb5\":[\"Saúde do Servidor\"],\"rczylF\":[\"this week\"],\"rdymVD\":[\"Acionar tarefa\"],\"rtir7c\":[\"desconhecido\"],\"s0U4ZZ\":[\"Episódios de séries\"],\"s4vVUm\":[\"Não foi possível carregar os detalhes da pessoa\"],\"s9dVME\":[\"Falha ao desmarcar episódio\"],\"sGH11W\":[\"Servidor\"],\"sl/qWH\":[\"Enviar foto de perfil\"],\"sstysK\":[\"Falha ao marcar episódio\"],\"stZeiF\":[[\"watched\"],\"/\",[\"total\"],\" episódios\"],\"t/Ch8S\":[\"Marcado como assistindo\"],\"t/YqKh\":[\"Remover\"],\"tfDRzk\":[\"Salvar\"],\"tiymc0\":[\"Algo deu errado…\"],\"u9ugU7\":[[\"watchedCount\"],\"/\",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":[\"episódio\"],\"other\":[\"episódios\"]}]],\"uBAxNB\":[\"Editor\"],\"uBrbSu\":[\"Falha ao iniciar conexão com \",[\"0\"]],\"uM6jnS\":[\"Restauração falhou\"],\"uMrJrX\":[\"Apenas administradores\"],\"uswLvZ\":[\"O título que você está procurando não existe ou pode ter sido removido do banco de dados.\"],\"uxOntd\":[[\"watchedCount\"],\" de \",[\"0\"],\" episódios assistidos\"],\"v2CA3w\":[\"Alterar Foto\"],\"v5ipVu\":[\"Marcar todos os episódios como assistidos?\"],\"vKfeax\":[\"Abra o Emby, vá para Settings > Webhooks\"],\"vXIe7J\":[\"Idioma\"],\"vuCCZ7\":[\"Falha ao analisar dados de importação\"],\"vwKERN\":[\"Falha ao excluir backup\"],\"w8pqsh\":[\"Marcar Todos como Assistidos\"],\"wA7B2T\":[\"Novas contas não estão sendo aceitas agora. Entre em contato com o administrador se precisar de acesso.\"],\"wGFX13\":[\"Iniciando às\"],\"wR1UAy\":[\"Filmes Populares\"],\"wRWcdL\":[\"Reproduzir trailer\"],\"wThGrS\":[\"Configurações do App\"],\"wZK4Xg\":[\"Nunca executado\"],\"wdLxgL\":[\"Membro desde \",[\"memberSince\"]],\"wja8aL\":[\"Sem título\"],\"wtGebH\":[\"A pessoa que você está procurando não existe ou pode ter sido removida do banco de dados.\"],\"wtsbt5\":[\"Adicionar à lista de desejos\"],\"wtuVU4\":[\"Frequência\"],\"wx7pwA\":[\"Marcar como Assistido\"],\"x4ZiTl\":[\"Instruções de configuração\"],\"xCJdfg\":[\"Limpar\"],\"xGVfLh\":[\"Continuar\"],\"xLoCm2\":[\"Verificar configuração\"],\"xSrU2g\":[[\"healthyCount\"],\" de \",[\"0\"],\" tarefas saudáveis\"],\"xazqmy\":[\"Temporadas\"],\"xbBXhy\":[\"Verificar periodicamente o GitHub por novas versões do Sofa\"],\"xrh2/M\":[\"Falha ao marcar como assistido\"],\"y3e9pF\":[\"Excluir backup?\"],\"y6Urel\":[\"Próximo Episódio\"],\"yGvjAo\":[\"Atualização disponível: \",[\"0\"]],\"yKu/3Y\":[\"Restaurar\"],\"yYxB17\":[\"Limpar tudo\"],\"ybtG1U\":[[\"0\"],\" backup\",[\"1\"],\" stored\"],\"yey/zg\":[\"Banco de dados restaurado. Recarregando...\"],\"ygo0l/\":[\"Comece a acompanhar filmes e séries\"],\"yvwIbI\":[\"Enviar arquivo de exportação\"],\"yz7wBu\":[\"Fechar\"],\"z1U/Fh\":[\"Avaliação\"],\"z5evln\":[\"Sem conexão com a internet\"],\"zAvS8w\":[\"Entre para continuar\"],\"zEqK2w\":[\"A página que você está procurando não existe.\"],\"zFkiTv\":[\"Instale o plugin Webhook do catálogo de plugins do Jellyfin\"],\"zNyR4f\":[\"Defina seu perfil de qualidade preferido e pasta raiz\"],\"za8Le/\":[\"Registro Fechado\"],\"zb77GC\":[\"Alugar\"],\"ztAdhw\":[\"Nome atualizado\"]}")as Messages; \ No newline at end of file