rename user-facing strings to jellybloom
This commit is contained in:
@@ -40,10 +40,10 @@ export default function DetailPage() {
|
||||
// page so items not in the library get a proper detail view + Request CTA.
|
||||
const tmdbRoute = parseTmdbRouteId(id)
|
||||
if (tmdbRoute) return <TmdbDetailPage tmdbId={tmdbRoute.tmdbId} kind={tmdbRoute.kind} />
|
||||
return <JellyfinDetailPage id={id} />
|
||||
return <LibraryDetailPage id={id} />
|
||||
}
|
||||
|
||||
function JellyfinDetailPage({ id }: { id?: string }) {
|
||||
function LibraryDetailPage({ id }: { id?: string }) {
|
||||
const { data: item, isLoading } = useItemDetails(id)
|
||||
const { sentinelRef: stickySentinelRef, past: pastHero } = usePastSentinel()
|
||||
const toggleFavorite = useBulkToggleFavorite()
|
||||
|
||||
@@ -84,7 +84,7 @@ export default function LoginPage({ onLogin }: Props) {
|
||||
transition={{ delay: 0.32 }}
|
||||
className="text-[13px] text-text-3 mt-1"
|
||||
>
|
||||
Connect to your Jellyfin server to begin
|
||||
Connect to your server to begin
|
||||
</motion.p>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -173,7 +173,7 @@ export default function SettingsPage() {
|
||||
<span className="text-[11px] font-semibold text-text-2 uppercase tracking-[0.14em]">Preferences</span>
|
||||
</div>
|
||||
<h1 className="text-3xl md:text-4xl font-bold font-display text-text-1 tracking-tight">Settings</h1>
|
||||
<p className="text-[13px] text-text-3 mt-1.5">Customize your Jellyfin experience</p>
|
||||
<p className="text-[13px] text-text-3 mt-1.5">Customize your Jellybloom experience</p>
|
||||
</div>
|
||||
|
||||
<SettingsSearchContext.Provider value={search}>
|
||||
|
||||
@@ -114,9 +114,9 @@ export function EmptyHome() {
|
||||
<Compass size={28} className="text-accent" />
|
||||
</div>
|
||||
</div>
|
||||
<h2 className="text-[20px] font-semibold text-text-1 mb-1.5 tracking-tight">Welcome to Jellyfin</h2>
|
||||
<h2 className="text-[20px] font-semibold text-text-1 mb-1.5 tracking-tight">Welcome to Jellybloom</h2>
|
||||
<p className="text-[13px] text-text-3 max-w-md leading-relaxed">
|
||||
Your library is quiet. Add movies, shows, or music to your Jellyfin server and they'll appear here.
|
||||
Your library is quiet. Add movies, shows, or music to your server and they'll appear here.
|
||||
</p>
|
||||
</div>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user