chore: format
This commit is contained in:
@@ -5,7 +5,10 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
|
||||||
|
|
||||||
<title>Jumble</title>
|
<title>Jumble</title>
|
||||||
<meta name="description" content="A user-friendly Nostr client focused on relay feed browsing and relay discovery" />
|
<meta
|
||||||
|
name="description"
|
||||||
|
content="A user-friendly Nostr client focused on relay feed browsing and relay discovery"
|
||||||
|
/>
|
||||||
<meta
|
<meta
|
||||||
name="keywords"
|
name="keywords"
|
||||||
content="jumble, nostr, web, client, relay, feed, social, pwa, simple, clean"
|
content="jumble, nostr, web, client, relay, feed, social, pwa, simple, clean"
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
|
import Note from '@/components/Note'
|
||||||
import { Button } from '@/components/ui/button'
|
import { Button } from '@/components/ui/button'
|
||||||
|
import { ScrollArea } from '@/components/ui/scroll-area'
|
||||||
import { useToast } from '@/hooks/use-toast'
|
import { useToast } from '@/hooks/use-toast'
|
||||||
import { createCommentDraftEvent, createShortTextNoteDraftEvent } from '@/lib/draft-event'
|
import { createCommentDraftEvent, createShortTextNoteDraftEvent } from '@/lib/draft-event'
|
||||||
import { useNostr } from '@/providers/NostrProvider'
|
import { useNostr } from '@/providers/NostrProvider'
|
||||||
@@ -14,9 +16,6 @@ import Preview from './Preview'
|
|||||||
import SendOnlyToSwitch from './SendOnlyToSwitch'
|
import SendOnlyToSwitch from './SendOnlyToSwitch'
|
||||||
import Uploader from './Uploader'
|
import Uploader from './Uploader'
|
||||||
import { preprocessContent } from './utils'
|
import { preprocessContent } from './utils'
|
||||||
import Note from '@/components/Note'
|
|
||||||
import { ScrollArea } from "@/components/ui/scroll-area"
|
|
||||||
|
|
||||||
|
|
||||||
export default function NormalPostContent({
|
export default function NormalPostContent({
|
||||||
defaultContent = '',
|
defaultContent = '',
|
||||||
@@ -117,13 +116,13 @@ export default function NormalPostContent({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="space-y-4">
|
<div className="space-y-4">
|
||||||
{parentEvent && (
|
{parentEvent && (
|
||||||
<ScrollArea className="max-h-48 rounded-lg border bg-muted/40 overflow-y-auto">
|
<ScrollArea className="max-h-48 rounded-lg border bg-muted/40 overflow-y-auto">
|
||||||
<div className="p-2 sm:p-3 pointer-events-none">
|
<div className="p-2 sm:p-3 pointer-events-none">
|
||||||
<Note size="small" event={parentEvent} hideStats hideParentNotePreview />
|
<Note size="small" event={parentEvent} hideStats hideParentNotePreview />
|
||||||
</div>
|
</div>
|
||||||
</ScrollArea>
|
</ScrollArea>
|
||||||
)}
|
)}
|
||||||
<TextareaWithMentions
|
<TextareaWithMentions
|
||||||
className="h-32"
|
className="h-32"
|
||||||
setTextValue={setContent}
|
setTextValue={setContent}
|
||||||
|
|||||||
@@ -1,11 +1,9 @@
|
|||||||
import * as React from "react"
|
import * as React from 'react'
|
||||||
import useEmblaCarousel, {
|
import useEmblaCarousel, { type UseEmblaCarouselType } from 'embla-carousel-react'
|
||||||
type UseEmblaCarouselType,
|
import { ArrowLeft, ArrowRight } from 'lucide-react'
|
||||||
} from "embla-carousel-react"
|
|
||||||
import { ArrowLeft, ArrowRight } from "lucide-react"
|
|
||||||
|
|
||||||
import { cn } from "@/lib/utils"
|
import { cn } from '@/lib/utils'
|
||||||
import { Button } from "@/components/ui/button"
|
import { Button } from '@/components/ui/button'
|
||||||
|
|
||||||
type CarouselApi = UseEmblaCarouselType[1]
|
type CarouselApi = UseEmblaCarouselType[1]
|
||||||
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>
|
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>
|
||||||
@@ -15,7 +13,7 @@ type CarouselPlugin = UseCarouselParameters[1]
|
|||||||
type CarouselProps = {
|
type CarouselProps = {
|
||||||
opts?: CarouselOptions
|
opts?: CarouselOptions
|
||||||
plugins?: CarouselPlugin
|
plugins?: CarouselPlugin
|
||||||
orientation?: "horizontal" | "vertical"
|
orientation?: 'horizontal' | 'vertical'
|
||||||
setApi?: (api: CarouselApi) => void
|
setApi?: (api: CarouselApi) => void
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -34,7 +32,7 @@ function useCarousel() {
|
|||||||
const context = React.useContext(CarouselContext)
|
const context = React.useContext(CarouselContext)
|
||||||
|
|
||||||
if (!context) {
|
if (!context) {
|
||||||
throw new Error("useCarousel must be used within a <Carousel />")
|
throw new Error('useCarousel must be used within a <Carousel />')
|
||||||
}
|
}
|
||||||
|
|
||||||
return context
|
return context
|
||||||
@@ -43,218 +41,193 @@ function useCarousel() {
|
|||||||
const Carousel = React.forwardRef<
|
const Carousel = React.forwardRef<
|
||||||
HTMLDivElement,
|
HTMLDivElement,
|
||||||
React.HTMLAttributes<HTMLDivElement> & CarouselProps
|
React.HTMLAttributes<HTMLDivElement> & CarouselProps
|
||||||
>(
|
>(({ orientation = 'horizontal', opts, setApi, plugins, className, children, ...props }, ref) => {
|
||||||
(
|
const [carouselRef, api] = useEmblaCarousel(
|
||||||
{
|
{
|
||||||
orientation = "horizontal",
|
...opts,
|
||||||
opts,
|
axis: orientation === 'horizontal' ? 'x' : 'y'
|
||||||
setApi,
|
|
||||||
plugins,
|
|
||||||
className,
|
|
||||||
children,
|
|
||||||
...props
|
|
||||||
},
|
},
|
||||||
ref
|
plugins
|
||||||
) => {
|
)
|
||||||
const [carouselRef, api] = useEmblaCarousel(
|
const [canScrollPrev, setCanScrollPrev] = React.useState(false)
|
||||||
{
|
const [canScrollNext, setCanScrollNext] = React.useState(false)
|
||||||
...opts,
|
|
||||||
axis: orientation === "horizontal" ? "x" : "y",
|
|
||||||
},
|
|
||||||
plugins
|
|
||||||
)
|
|
||||||
const [canScrollPrev, setCanScrollPrev] = React.useState(false)
|
|
||||||
const [canScrollNext, setCanScrollNext] = React.useState(false)
|
|
||||||
|
|
||||||
const onSelect = React.useCallback((api: CarouselApi) => {
|
const onSelect = React.useCallback((api: CarouselApi) => {
|
||||||
if (!api) {
|
if (!api) {
|
||||||
return
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
setCanScrollPrev(api.canScrollPrev())
|
||||||
|
setCanScrollNext(api.canScrollNext())
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
const scrollPrev = React.useCallback(() => {
|
||||||
|
api?.scrollPrev()
|
||||||
|
}, [api])
|
||||||
|
|
||||||
|
const scrollNext = React.useCallback(() => {
|
||||||
|
api?.scrollNext()
|
||||||
|
}, [api])
|
||||||
|
|
||||||
|
const handleKeyDown = React.useCallback(
|
||||||
|
(event: React.KeyboardEvent<HTMLDivElement>) => {
|
||||||
|
if (event.key === 'ArrowLeft') {
|
||||||
|
event.preventDefault()
|
||||||
|
scrollPrev()
|
||||||
|
} else if (event.key === 'ArrowRight') {
|
||||||
|
event.preventDefault()
|
||||||
|
scrollNext()
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
[scrollPrev, scrollNext]
|
||||||
|
)
|
||||||
|
|
||||||
setCanScrollPrev(api.canScrollPrev())
|
React.useEffect(() => {
|
||||||
setCanScrollNext(api.canScrollNext())
|
if (!api || !setApi) {
|
||||||
}, [])
|
return
|
||||||
|
}
|
||||||
|
|
||||||
const scrollPrev = React.useCallback(() => {
|
setApi(api)
|
||||||
api?.scrollPrev()
|
}, [api, setApi])
|
||||||
}, [api])
|
|
||||||
|
|
||||||
const scrollNext = React.useCallback(() => {
|
React.useEffect(() => {
|
||||||
api?.scrollNext()
|
if (!api) {
|
||||||
}, [api])
|
return
|
||||||
|
}
|
||||||
|
|
||||||
const handleKeyDown = React.useCallback(
|
onSelect(api)
|
||||||
(event: React.KeyboardEvent<HTMLDivElement>) => {
|
api.on('reInit', onSelect)
|
||||||
if (event.key === "ArrowLeft") {
|
api.on('select', onSelect)
|
||||||
event.preventDefault()
|
|
||||||
scrollPrev()
|
|
||||||
} else if (event.key === "ArrowRight") {
|
|
||||||
event.preventDefault()
|
|
||||||
scrollNext()
|
|
||||||
}
|
|
||||||
},
|
|
||||||
[scrollPrev, scrollNext]
|
|
||||||
)
|
|
||||||
|
|
||||||
React.useEffect(() => {
|
return () => {
|
||||||
if (!api || !setApi) {
|
api?.off('select', onSelect)
|
||||||
return
|
}
|
||||||
}
|
}, [api, onSelect])
|
||||||
|
|
||||||
setApi(api)
|
return (
|
||||||
}, [api, setApi])
|
<CarouselContext.Provider
|
||||||
|
value={{
|
||||||
|
carouselRef,
|
||||||
|
api: api,
|
||||||
|
opts,
|
||||||
|
orientation: orientation || (opts?.axis === 'y' ? 'vertical' : 'horizontal'),
|
||||||
|
scrollPrev,
|
||||||
|
scrollNext,
|
||||||
|
canScrollPrev,
|
||||||
|
canScrollNext
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
ref={ref}
|
||||||
|
onKeyDownCapture={handleKeyDown}
|
||||||
|
className={cn('relative', className)}
|
||||||
|
role="region"
|
||||||
|
aria-roledescription="carousel"
|
||||||
|
{...props}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
</div>
|
||||||
|
</CarouselContext.Provider>
|
||||||
|
)
|
||||||
|
})
|
||||||
|
Carousel.displayName = 'Carousel'
|
||||||
|
|
||||||
React.useEffect(() => {
|
const CarouselContent = React.forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>(
|
||||||
if (!api) {
|
({ className, ...props }, ref) => {
|
||||||
return
|
const { carouselRef, orientation } = useCarousel()
|
||||||
}
|
|
||||||
|
|
||||||
onSelect(api)
|
|
||||||
api.on("reInit", onSelect)
|
|
||||||
api.on("select", onSelect)
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
api?.off("select", onSelect)
|
|
||||||
}
|
|
||||||
}, [api, onSelect])
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<CarouselContext.Provider
|
<div ref={carouselRef} className="overflow-hidden">
|
||||||
value={{
|
|
||||||
carouselRef,
|
|
||||||
api: api,
|
|
||||||
opts,
|
|
||||||
orientation:
|
|
||||||
orientation || (opts?.axis === "y" ? "vertical" : "horizontal"),
|
|
||||||
scrollPrev,
|
|
||||||
scrollNext,
|
|
||||||
canScrollPrev,
|
|
||||||
canScrollNext,
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<div
|
<div
|
||||||
ref={ref}
|
ref={ref}
|
||||||
onKeyDownCapture={handleKeyDown}
|
className={cn(
|
||||||
className={cn("relative", className)}
|
'flex',
|
||||||
role="region"
|
orientation === 'horizontal' ? '-ml-4' : '-mt-4 flex-col',
|
||||||
aria-roledescription="carousel"
|
className
|
||||||
|
)}
|
||||||
{...props}
|
{...props}
|
||||||
>
|
/>
|
||||||
{children}
|
</div>
|
||||||
</div>
|
|
||||||
</CarouselContext.Provider>
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
Carousel.displayName = "Carousel"
|
CarouselContent.displayName = 'CarouselContent'
|
||||||
|
|
||||||
const CarouselContent = React.forwardRef<
|
const CarouselItem = React.forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>(
|
||||||
HTMLDivElement,
|
({ className, ...props }, ref) => {
|
||||||
React.HTMLAttributes<HTMLDivElement>
|
const { orientation } = useCarousel()
|
||||||
>(({ className, ...props }, ref) => {
|
|
||||||
const { carouselRef, orientation } = useCarousel()
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div ref={carouselRef} className="overflow-hidden">
|
|
||||||
<div
|
<div
|
||||||
ref={ref}
|
ref={ref}
|
||||||
|
role="group"
|
||||||
|
aria-roledescription="slide"
|
||||||
className={cn(
|
className={cn(
|
||||||
"flex",
|
'min-w-0 shrink-0 grow-0 basis-full',
|
||||||
orientation === "horizontal" ? "-ml-4" : "-mt-4 flex-col",
|
orientation === 'horizontal' ? 'pl-4' : 'pt-4',
|
||||||
className
|
className
|
||||||
)}
|
)}
|
||||||
{...props}
|
{...props}
|
||||||
/>
|
/>
|
||||||
</div>
|
)
|
||||||
)
|
}
|
||||||
})
|
)
|
||||||
CarouselContent.displayName = "CarouselContent"
|
CarouselItem.displayName = 'CarouselItem'
|
||||||
|
|
||||||
const CarouselItem = React.forwardRef<
|
const CarouselPrevious = React.forwardRef<HTMLButtonElement, React.ComponentProps<typeof Button>>(
|
||||||
HTMLDivElement,
|
({ className, variant = 'outline', size = 'icon', ...props }, ref) => {
|
||||||
React.HTMLAttributes<HTMLDivElement>
|
const { orientation, scrollPrev, canScrollPrev } = useCarousel()
|
||||||
>(({ className, ...props }, ref) => {
|
|
||||||
const { orientation } = useCarousel()
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<Button
|
||||||
ref={ref}
|
ref={ref}
|
||||||
role="group"
|
variant={variant}
|
||||||
aria-roledescription="slide"
|
size={size}
|
||||||
className={cn(
|
className={cn(
|
||||||
"min-w-0 shrink-0 grow-0 basis-full",
|
'absolute h-8 w-8 rounded-full',
|
||||||
orientation === "horizontal" ? "pl-4" : "pt-4",
|
orientation === 'horizontal'
|
||||||
className
|
? '-left-12 top-1/2 -translate-y-1/2'
|
||||||
)}
|
: '-top-12 left-1/2 -translate-x-1/2 rotate-90',
|
||||||
{...props}
|
className
|
||||||
/>
|
)}
|
||||||
)
|
disabled={!canScrollPrev}
|
||||||
})
|
onClick={scrollPrev}
|
||||||
CarouselItem.displayName = "CarouselItem"
|
{...props}
|
||||||
|
>
|
||||||
|
<ArrowLeft className="h-4 w-4" />
|
||||||
|
<span className="sr-only">Previous slide</span>
|
||||||
|
</Button>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
)
|
||||||
|
CarouselPrevious.displayName = 'CarouselPrevious'
|
||||||
|
|
||||||
const CarouselPrevious = React.forwardRef<
|
const CarouselNext = React.forwardRef<HTMLButtonElement, React.ComponentProps<typeof Button>>(
|
||||||
HTMLButtonElement,
|
({ className, variant = 'outline', size = 'icon', ...props }, ref) => {
|
||||||
React.ComponentProps<typeof Button>
|
const { orientation, scrollNext, canScrollNext } = useCarousel()
|
||||||
>(({ className, variant = "outline", size = "icon", ...props }, ref) => {
|
|
||||||
const { orientation, scrollPrev, canScrollPrev } = useCarousel()
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Button
|
<Button
|
||||||
ref={ref}
|
ref={ref}
|
||||||
variant={variant}
|
variant={variant}
|
||||||
size={size}
|
size={size}
|
||||||
className={cn(
|
className={cn(
|
||||||
"absolute h-8 w-8 rounded-full",
|
'absolute h-8 w-8 rounded-full',
|
||||||
orientation === "horizontal"
|
orientation === 'horizontal'
|
||||||
? "-left-12 top-1/2 -translate-y-1/2"
|
? '-right-12 top-1/2 -translate-y-1/2'
|
||||||
: "-top-12 left-1/2 -translate-x-1/2 rotate-90",
|
: '-bottom-12 left-1/2 -translate-x-1/2 rotate-90',
|
||||||
className
|
className
|
||||||
)}
|
)}
|
||||||
disabled={!canScrollPrev}
|
disabled={!canScrollNext}
|
||||||
onClick={scrollPrev}
|
onClick={scrollNext}
|
||||||
{...props}
|
{...props}
|
||||||
>
|
>
|
||||||
<ArrowLeft className="h-4 w-4" />
|
<ArrowRight className="h-4 w-4" />
|
||||||
<span className="sr-only">Previous slide</span>
|
<span className="sr-only">Next slide</span>
|
||||||
</Button>
|
</Button>
|
||||||
)
|
)
|
||||||
})
|
}
|
||||||
CarouselPrevious.displayName = "CarouselPrevious"
|
)
|
||||||
|
CarouselNext.displayName = 'CarouselNext'
|
||||||
|
|
||||||
const CarouselNext = React.forwardRef<
|
export { type CarouselApi, Carousel, CarouselContent, CarouselItem, CarouselPrevious, CarouselNext }
|
||||||
HTMLButtonElement,
|
|
||||||
React.ComponentProps<typeof Button>
|
|
||||||
>(({ className, variant = "outline", size = "icon", ...props }, ref) => {
|
|
||||||
const { orientation, scrollNext, canScrollNext } = useCarousel()
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Button
|
|
||||||
ref={ref}
|
|
||||||
variant={variant}
|
|
||||||
size={size}
|
|
||||||
className={cn(
|
|
||||||
"absolute h-8 w-8 rounded-full",
|
|
||||||
orientation === "horizontal"
|
|
||||||
? "-right-12 top-1/2 -translate-y-1/2"
|
|
||||||
: "-bottom-12 left-1/2 -translate-x-1/2 rotate-90",
|
|
||||||
className
|
|
||||||
)}
|
|
||||||
disabled={!canScrollNext}
|
|
||||||
onClick={scrollNext}
|
|
||||||
{...props}
|
|
||||||
>
|
|
||||||
<ArrowRight className="h-4 w-4" />
|
|
||||||
<span className="sr-only">Next slide</span>
|
|
||||||
</Button>
|
|
||||||
)
|
|
||||||
})
|
|
||||||
CarouselNext.displayName = "CarouselNext"
|
|
||||||
|
|
||||||
export {
|
|
||||||
type CarouselApi,
|
|
||||||
Carousel,
|
|
||||||
CarouselContent,
|
|
||||||
CarouselItem,
|
|
||||||
CarouselPrevious,
|
|
||||||
CarouselNext,
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import * as React from "react"
|
import * as React from 'react'
|
||||||
import * as TabsPrimitive from "@radix-ui/react-tabs"
|
import * as TabsPrimitive from '@radix-ui/react-tabs'
|
||||||
|
|
||||||
import { cn } from "@/lib/utils"
|
import { cn } from '@/lib/utils'
|
||||||
|
|
||||||
const Tabs = TabsPrimitive.Root
|
const Tabs = TabsPrimitive.Root
|
||||||
|
|
||||||
@@ -12,7 +12,7 @@ const TabsList = React.forwardRef<
|
|||||||
<TabsPrimitive.List
|
<TabsPrimitive.List
|
||||||
ref={ref}
|
ref={ref}
|
||||||
className={cn(
|
className={cn(
|
||||||
"inline-flex h-9 items-center justify-center rounded-lg bg-muted p-1 text-muted-foreground",
|
'inline-flex h-9 items-center justify-center rounded-lg bg-muted p-1 text-muted-foreground',
|
||||||
className
|
className
|
||||||
)}
|
)}
|
||||||
{...props}
|
{...props}
|
||||||
@@ -27,7 +27,7 @@ const TabsTrigger = React.forwardRef<
|
|||||||
<TabsPrimitive.Trigger
|
<TabsPrimitive.Trigger
|
||||||
ref={ref}
|
ref={ref}
|
||||||
className={cn(
|
className={cn(
|
||||||
"inline-flex items-center justify-center whitespace-nowrap rounded-md px-3 py-1 text-sm font-medium ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-background data-[state=active]:text-foreground data-[state=active]:shadow",
|
'inline-flex items-center justify-center whitespace-nowrap rounded-md px-3 py-1 text-sm font-medium ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-background data-[state=active]:text-foreground data-[state=active]:shadow',
|
||||||
className
|
className
|
||||||
)}
|
)}
|
||||||
{...props}
|
{...props}
|
||||||
@@ -42,7 +42,7 @@ const TabsContent = React.forwardRef<
|
|||||||
<TabsPrimitive.Content
|
<TabsPrimitive.Content
|
||||||
ref={ref}
|
ref={ref}
|
||||||
className={cn(
|
className={cn(
|
||||||
"mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",
|
'mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2',
|
||||||
className
|
className
|
||||||
)}
|
)}
|
||||||
{...props}
|
{...props}
|
||||||
|
|||||||
@@ -1,218 +1,218 @@
|
|||||||
export default {
|
export default {
|
||||||
translation: {
|
translation: {
|
||||||
'Welcome! 🥳': 'Witamy! 🥳',
|
'Welcome! 🥳': 'Witamy! 🥳',
|
||||||
About: 'O Nas',
|
About: 'O Nas',
|
||||||
'New Note': 'Nowa Publikacja',
|
'New Note': 'Nowa Publikacja',
|
||||||
Post: 'Publikuj',
|
Post: 'Publikuj',
|
||||||
Home: 'Strona Główna',
|
Home: 'Strona Główna',
|
||||||
'Relay settings': 'Ustawienia transmiterów',
|
'Relay settings': 'Ustawienia transmiterów',
|
||||||
Settings: 'Ustawienia',
|
Settings: 'Ustawienia',
|
||||||
SidebarRelays: 'Transmitery',
|
SidebarRelays: 'Transmitery',
|
||||||
Refresh: 'Odśwież',
|
Refresh: 'Odśwież',
|
||||||
Profile: 'Twój Profil',
|
Profile: 'Twój Profil',
|
||||||
Logout: 'Wyloguj',
|
Logout: 'Wyloguj',
|
||||||
Following: 'Obserwowani',
|
Following: 'Obserwowani',
|
||||||
followings: 'niżej wymienionych',
|
followings: 'niżej wymienionych',
|
||||||
reposted: 'Udostępnił',
|
reposted: 'Udostępnił',
|
||||||
'just now': 'teraz',
|
'just now': 'teraz',
|
||||||
'n minutes ago': '{{n}} m',
|
'n minutes ago': '{{n}} m',
|
||||||
'n m': '{{n}}m',
|
'n m': '{{n}}m',
|
||||||
'n hours ago': '{{n}} g',
|
'n hours ago': '{{n}} g',
|
||||||
'n h': '{{n}}h',
|
'n h': '{{n}}h',
|
||||||
'n days ago': '{{n}} d ',
|
'n days ago': '{{n}} d ',
|
||||||
'n d': '{{n}}d',
|
'n d': '{{n}}d',
|
||||||
date: '{{timestamp, date}}',
|
date: '{{timestamp, date}}',
|
||||||
Follow: 'Obserwuj',
|
Follow: 'Obserwuj',
|
||||||
Unfollow: 'Porzuć',
|
Unfollow: 'Porzuć',
|
||||||
'Follow failed': 'Obserwacja nieudana',
|
'Follow failed': 'Obserwacja nieudana',
|
||||||
'Unfollow failed': 'Porzucenie obserwacji nieudane',
|
'Unfollow failed': 'Porzucenie obserwacji nieudane',
|
||||||
'show new notes': 'Pokaż nowe wpisy',
|
'show new notes': 'Pokaż nowe wpisy',
|
||||||
'loading...': 'ładowanie...',
|
'loading...': 'ładowanie...',
|
||||||
'no more notes': 'Koniec wpisów',
|
'no more notes': 'Koniec wpisów',
|
||||||
'reply to': 'Odpowiedź na',
|
'reply to': 'Odpowiedź na',
|
||||||
reply: 'odpowiedz',
|
reply: 'odpowiedz',
|
||||||
Reply: 'Skomentuj',
|
Reply: 'Skomentuj',
|
||||||
'load more older replies': 'Pobierz więcej starszych odpowiedzi',
|
'load more older replies': 'Pobierz więcej starszych odpowiedzi',
|
||||||
'Write something...': 'Napisz coś...',
|
'Write something...': 'Napisz coś...',
|
||||||
Cancel: 'Anuluj',
|
Cancel: 'Anuluj',
|
||||||
Mentions: 'Wzmianki',
|
Mentions: 'Wzmianki',
|
||||||
'Failed to post': 'Nie udało się opublikować',
|
'Failed to post': 'Nie udało się opublikować',
|
||||||
'Post successful': 'Twój wpis został wysłany.',
|
'Post successful': 'Twój wpis został wysłany.',
|
||||||
'Your post has been published': 'Publikowani są jedynie użytkownicy z białej listy',
|
'Your post has been published': 'Publikowani są jedynie użytkownicy z białej listy',
|
||||||
Repost: 'Udostępnij',
|
Repost: 'Udostępnij',
|
||||||
Quote: 'Zacytuj',
|
Quote: 'Zacytuj',
|
||||||
'Copy event ID': 'Skopiuj ID wydarzenia',
|
'Copy event ID': 'Skopiuj ID wydarzenia',
|
||||||
'Copy user ID': 'Skopiuj ID użytkownika',
|
'Copy user ID': 'Skopiuj ID użytkownika',
|
||||||
'View raw event': 'Pokaż szczegóły wpisu',
|
'View raw event': 'Pokaż szczegóły wpisu',
|
||||||
Like: 'Polub',
|
Like: 'Polub',
|
||||||
'switch to light theme': 'Przełącz na jasny motyw',
|
'switch to light theme': 'Przełącz na jasny motyw',
|
||||||
'switch to dark theme': 'Przełącz na ciemny motyw ',
|
'switch to dark theme': 'Przełącz na ciemny motyw ',
|
||||||
'switch to system theme': 'Przełącz na motyw systemu (automatyczny)',
|
'switch to system theme': 'Przełącz na motyw systemu (automatyczny)',
|
||||||
Note: 'Cały wpis',
|
Note: 'Cały wpis',
|
||||||
note: 'note',
|
note: 'note',
|
||||||
"username's following": '{{username}} obserwuje:',
|
"username's following": '{{username}} obserwuje:',
|
||||||
"username's used relays": '{{username}} użył transmiterów',
|
"username's used relays": '{{username}} użył transmiterów',
|
||||||
"username's muted": 'Zablokowani przez {{username}} ',
|
"username's muted": 'Zablokowani przez {{username}} ',
|
||||||
Login: 'Logowanie',
|
Login: 'Logowanie',
|
||||||
'Follows you': 'Obserwujący',
|
'Follows you': 'Obserwujący',
|
||||||
'Relay Settings': 'Ustawienia transmiterów',
|
'Relay Settings': 'Ustawienia transmiterów',
|
||||||
'Relay set name': 'Wpisz nazwę grupy',
|
'Relay set name': 'Wpisz nazwę grupy',
|
||||||
'Add a new relay set': 'Utwórz grupę transmiterów',
|
'Add a new relay set': 'Utwórz grupę transmiterów',
|
||||||
Add: 'Dodaj',
|
Add: 'Dodaj',
|
||||||
'n relays': '{{n}} szt.',
|
'n relays': '{{n}} szt.',
|
||||||
Rename: 'Zmień nazwę',
|
Rename: 'Zmień nazwę',
|
||||||
'Copy share link': 'Kopiuj link',
|
'Copy share link': 'Kopiuj link',
|
||||||
Delete: 'Usuń',
|
Delete: 'Usuń',
|
||||||
'Relay already exists': 'Transmiter już istnieje',
|
'Relay already exists': 'Transmiter już istnieje',
|
||||||
'invalid relay URL': 'Nieprawidłowy URL transmitera',
|
'invalid relay URL': 'Nieprawidłowy URL transmitera',
|
||||||
'Add a new relay': 'Dodaj nowy transmiter',
|
'Add a new relay': 'Dodaj nowy transmiter',
|
||||||
back: 'z powrotem',
|
back: 'z powrotem',
|
||||||
'Lost in the void': 'Zagubiony w przestrzeni',
|
'Lost in the void': 'Zagubiony w przestrzeni',
|
||||||
'Carry me home': 'Na stronę główną',
|
'Carry me home': 'Na stronę główną',
|
||||||
'no replies': 'Brak komentarzy',
|
'no replies': 'Brak komentarzy',
|
||||||
'Reply to': 'Odpowiedz do',
|
'Reply to': 'Odpowiedz do',
|
||||||
Search: 'Wyszukiwarka',
|
Search: 'Wyszukiwarka',
|
||||||
'The relays you are connected to do not support search':
|
'The relays you are connected to do not support search':
|
||||||
'Podłączone transmitery nie obsługują wyszukiwania',
|
'Podłączone transmitery nie obsługują wyszukiwania',
|
||||||
'Show more...': 'Więcej...',
|
'Show more...': 'Więcej...',
|
||||||
'All users': 'Wszyscy użytkownicy',
|
'All users': 'Wszyscy użytkownicy',
|
||||||
'Display replies': 'Wyświetl komentarze',
|
'Display replies': 'Wyświetl komentarze',
|
||||||
Notes: 'Wpisy',
|
Notes: 'Wpisy',
|
||||||
Replies: 'Komentarze',
|
Replies: 'Komentarze',
|
||||||
Notifications: 'Powiadomienia',
|
Notifications: 'Powiadomienia',
|
||||||
'no more notifications': 'Koniec powiadomień',
|
'no more notifications': 'Koniec powiadomień',
|
||||||
'Using private key login is insecure. It is recommended to use a browser extension for login, such as alby, nostr-keyx or nos2x.':
|
'Using private key login is insecure. It is recommended to use a browser extension for login, such as alby, nostr-keyx or nos2x.':
|
||||||
'Korzystanie z logowania za pomocą klucza prywatnego może nie być bezpieczne. Zaleca się używanie rozszerzenia przeglądarki do logowania, takiego jak Alby, Keys.Band lub Nos2x.',
|
'Korzystanie z logowania za pomocą klucza prywatnego może nie być bezpieczne. Zaleca się używanie rozszerzenia przeglądarki do logowania, takiego jak Alby, Keys.Band lub Nos2x.',
|
||||||
'Login with Browser Extension': 'Logowanie z rozszerzeniem przeglądarki',
|
'Login with Browser Extension': 'Logowanie z rozszerzeniem przeglądarki',
|
||||||
'Login with Bunker': 'Logowanie z bunkrem',
|
'Login with Bunker': 'Logowanie z bunkrem',
|
||||||
'Login with Private Key': 'Logowanie z prywatnym kluczem (nsec)',
|
'Login with Private Key': 'Logowanie z prywatnym kluczem (nsec)',
|
||||||
'reload notes': 'Odśwież',
|
'reload notes': 'Odśwież',
|
||||||
'Logged in Accounts': 'Zalogowane konta',
|
'Logged in Accounts': 'Zalogowane konta',
|
||||||
'Add an Account': 'Dodaj Konto',
|
'Add an Account': 'Dodaj Konto',
|
||||||
'More options': 'Więcej opcji',
|
'More options': 'Więcej opcji',
|
||||||
'Add client tag': 'Dodaj tag klienta',
|
'Add client tag': 'Dodaj tag klienta',
|
||||||
'Show others this was sent via Jumble': 'Pokaż innym, że zostało to wysłane przez Jumble',
|
'Show others this was sent via Jumble': 'Pokaż innym, że zostało to wysłane przez Jumble',
|
||||||
'Are you sure you want to logout?': 'Czy na pewno chcesz się wylogować?',
|
'Are you sure you want to logout?': 'Czy na pewno chcesz się wylogować?',
|
||||||
'relay sets': 'Zestawy transmiterów',
|
'relay sets': 'Zestawy transmiterów',
|
||||||
edit: 'edytuj',
|
edit: 'edytuj',
|
||||||
Languages: 'Języki',
|
Languages: 'Języki',
|
||||||
Theme: 'Wygląd',
|
Theme: 'Wygląd',
|
||||||
System: 'Domyślny',
|
System: 'Domyślny',
|
||||||
Light: 'Jasny',
|
Light: 'Jasny',
|
||||||
Dark: 'Ciemny',
|
Dark: 'Ciemny',
|
||||||
Temporary: 'Tymczasowe',
|
Temporary: 'Tymczasowe',
|
||||||
'Choose a relay set': 'Wybierz zestaw transmiterów',
|
'Choose a relay set': 'Wybierz zestaw transmiterów',
|
||||||
'Switch account': 'Zmień konto',
|
'Switch account': 'Zmień konto',
|
||||||
Pictures: 'Zdjęcia',
|
Pictures: 'Zdjęcia',
|
||||||
'Picture note': 'Wpis Graficzny',
|
'Picture note': 'Wpis Graficzny',
|
||||||
'A special note for picture-first clients like Olas':
|
'A special note for picture-first clients like Olas':
|
||||||
'Publikacja ze zdjęciami i opisem dla klientów takich jak Olas',
|
'Publikacja ze zdjęciami i opisem dla klientów takich jak Olas',
|
||||||
'Picture note requires images': 'Wpis graficzny wymaga obrazów',
|
'Picture note requires images': 'Wpis graficzny wymaga obrazów',
|
||||||
Relays: 'Transmitery',
|
Relays: 'Transmitery',
|
||||||
image: 'grafika',
|
image: 'grafika',
|
||||||
'Normal Note': 'Zwykły wpis',
|
'Normal Note': 'Zwykły wpis',
|
||||||
'Picture Note': 'Wpis graficzny',
|
'Picture Note': 'Wpis graficzny',
|
||||||
'R & W': 'O & Z',
|
'R & W': 'O & Z',
|
||||||
Read: 'Odczyt',
|
Read: 'Odczyt',
|
||||||
Write: 'Zapis',
|
Write: 'Zapis',
|
||||||
'Pull relay sets': 'Pobierz zestaw transmiterów',
|
'Pull relay sets': 'Pobierz zestaw transmiterów',
|
||||||
'Select the relay sets you want to pull': 'Wybierz zestaw transmiterów do pobrania',
|
'Select the relay sets you want to pull': 'Wybierz zestaw transmiterów do pobrania',
|
||||||
'No relay sets found': 'Nie znaleziono zestawu transmiterów',
|
'No relay sets found': 'Nie znaleziono zestawu transmiterów',
|
||||||
'Pull n relay sets': 'Pobierz {{n}} zestawów transmiterów',
|
'Pull n relay sets': 'Pobierz {{n}} zestawów transmiterów',
|
||||||
Pull: 'Pobierz',
|
Pull: 'Pobierz',
|
||||||
'Select all': 'Wszystkie',
|
'Select all': 'Wszystkie',
|
||||||
'Relay Sets': 'Grupy transmiterów',
|
'Relay Sets': 'Grupy transmiterów',
|
||||||
'Read & Write Relays': 'Transmitery zapisu i odczytu',
|
'Read & Write Relays': 'Transmitery zapisu i odczytu',
|
||||||
'read relays description':
|
'read relays description':
|
||||||
'Transmitery odczytu służą do wyszukiwania zdarzeń dotyczących użytkownika. Inni użytkownicy będą publikować wpisy, które chcą, abyś zobaczył, w transmiterach odczytu.',
|
'Transmitery odczytu służą do wyszukiwania zdarzeń dotyczących użytkownika. Inni użytkownicy będą publikować wpisy, które chcą, abyś zobaczył, w transmiterach odczytu.',
|
||||||
'write relays description':
|
'write relays description':
|
||||||
'Transmitery zapisu służą do publikowania wydarzeń. Inni użytkownicy będą wyszukiwać zdarzenia z transmiterów zapisu.',
|
'Transmitery zapisu służą do publikowania wydarzeń. Inni użytkownicy będą wyszukiwać zdarzenia z transmiterów zapisu.',
|
||||||
'read & write relays notice': 'Liczba serwerów odczytu i zapisu powinna wynosić od 2 do 4.',
|
'read & write relays notice': 'Liczba serwerów odczytu i zapisu powinna wynosić od 2 do 4.',
|
||||||
"Don't have an account yet?": 'Nie masz jeszcze konta?',
|
"Don't have an account yet?": 'Nie masz jeszcze konta?',
|
||||||
'or simply generate a private key': 'lub wygeneruj klucz prywatny nowego konta',
|
'or simply generate a private key': 'lub wygeneruj klucz prywatny nowego konta',
|
||||||
'This is a private key. Do not share it with anyone. Keep it safe and secure. You will not be able to recover it if you lose it.':
|
'This is a private key. Do not share it with anyone. Keep it safe and secure. You will not be able to recover it if you lose it.':
|
||||||
'Jest to klucz prywatny. Nie należy go nikomu udostępniać. Przechowuj go w bezpiecznym miejscu. W przypadku jego utraty nie będzie można go odzyskać.',
|
'Jest to klucz prywatny. Nie należy go nikomu udostępniać. Przechowuj go w bezpiecznym miejscu. W przypadku jego utraty nie będzie można go odzyskać.',
|
||||||
Edit: 'Edytuj',
|
Edit: 'Edytuj',
|
||||||
Save: 'Zapisz',
|
Save: 'Zapisz',
|
||||||
'Display Name': 'Twoja nazwa użytkownika',
|
'Display Name': 'Twoja nazwa użytkownika',
|
||||||
Bio: 'O mnie',
|
Bio: 'O mnie',
|
||||||
'Nostr Address (NIP-05)': 'Adres Nostr (NIP-05)',
|
'Nostr Address (NIP-05)': 'Adres Nostr (NIP-05)',
|
||||||
'Invalid NIP-05 address': 'Nieprawidłowy adres NIP-05',
|
'Invalid NIP-05 address': 'Nieprawidłowy adres NIP-05',
|
||||||
'Copy private key': 'Kopiuj klucz prywatny',
|
'Copy private key': 'Kopiuj klucz prywatny',
|
||||||
'Enter the password to decrypt your ncryptsec': 'Wprowadź hasło, aby odszyfrować ncryptsec',
|
'Enter the password to decrypt your ncryptsec': 'Wprowadź hasło, aby odszyfrować ncryptsec',
|
||||||
Back: 'Wróć',
|
Back: 'Wróć',
|
||||||
'optional: encrypt nsec': 'opcjonalnie: encrypt nsec',
|
'optional: encrypt nsec': 'opcjonalnie: encrypt nsec',
|
||||||
password: 'hasło',
|
password: 'hasło',
|
||||||
'Sign up': 'Zarejestruj się',
|
'Sign up': 'Zarejestruj się',
|
||||||
'Save to': 'Zapisz do',
|
'Save to': 'Zapisz do',
|
||||||
'Enter a name for the new relay set': 'Wpisz nazwę nowegej grupy transmiterów',
|
'Enter a name for the new relay set': 'Wpisz nazwę nowegej grupy transmiterów',
|
||||||
'Save to a new relay set': 'Zapisz do nowego zestawu przekaźników',
|
'Save to a new relay set': 'Zapisz do nowego zestawu przekaźników',
|
||||||
Mute: 'Zablokuj',
|
Mute: 'Zablokuj',
|
||||||
Muted: 'Zablokowani',
|
Muted: 'Zablokowani',
|
||||||
Unmute: 'Przywróć',
|
Unmute: 'Przywróć',
|
||||||
'Mute user': 'Ucisz użytkownika ',
|
'Mute user': 'Ucisz użytkownika ',
|
||||||
'Unmute user': 'Przywróć użytkownika ',
|
'Unmute user': 'Przywróć użytkownika ',
|
||||||
'Append n relays': 'Dodaj {{n}} transmiterów',
|
'Append n relays': 'Dodaj {{n}} transmiterów',
|
||||||
Append: 'Dodaj',
|
Append: 'Dodaj',
|
||||||
'Select relays to append': 'Wybierz transmitery do dodania',
|
'Select relays to append': 'Wybierz transmitery do dodania',
|
||||||
'calculating...': 'obliczanie...',
|
'calculating...': 'obliczanie...',
|
||||||
'Calculate optimal read relays': 'Obliczanie optymalnego odczytu transmiterów',
|
'Calculate optimal read relays': 'Obliczanie optymalnego odczytu transmiterów',
|
||||||
'Login to set': 'Zaloguj się',
|
'Login to set': 'Zaloguj się',
|
||||||
'Please login to view following feed': 'Zaloguj się, aby wyświetlić poniższy wpis',
|
'Please login to view following feed': 'Zaloguj się, aby wyświetlić poniższy wpis',
|
||||||
'Send only to r': 'Wyślij tylko do {{r}}',
|
'Send only to r': 'Wyślij tylko do {{r}}',
|
||||||
'Send only to these relays': 'Wyślij tylko do tych transmiterów',
|
'Send only to these relays': 'Wyślij tylko do tych transmiterów',
|
||||||
Explore: 'Transmitery',
|
Explore: 'Transmitery',
|
||||||
'Search relays': 'Wyszukaj transmiter',
|
'Search relays': 'Wyszukaj transmiter',
|
||||||
relayInfoBadgeAuth: '✔️',
|
relayInfoBadgeAuth: '✔️',
|
||||||
relayInfoBadgeSearch: 'Wyszukaj',
|
relayInfoBadgeSearch: 'Wyszukaj',
|
||||||
relayInfoBadgePayment: 'Płatność',
|
relayInfoBadgePayment: 'Płatność',
|
||||||
Operator: 'Operator',
|
Operator: 'Operator',
|
||||||
Contact: 'Kontakt',
|
Contact: 'Kontakt',
|
||||||
Software: 'Software',
|
Software: 'Software',
|
||||||
Version: 'Wersja',
|
Version: 'Wersja',
|
||||||
'Random Relays': 'Losowo wybrane',
|
'Random Relays': 'Losowo wybrane',
|
||||||
randomRelaysRefresh: 'Odśwież',
|
randomRelaysRefresh: 'Odśwież',
|
||||||
'Explore more': 'Zobacz więcej',
|
'Explore more': 'Zobacz więcej',
|
||||||
'Payment page': 'Strona płatności',
|
'Payment page': 'Strona płatności',
|
||||||
'Supported NIPs': 'Obsługiwane NIP-y',
|
'Supported NIPs': 'Obsługiwane NIP-y',
|
||||||
'Open in a': 'Otwórz w {{a}}',
|
'Open in a': 'Otwórz w {{a}}',
|
||||||
'Cannot handle event of kind k': 'Nie można obsłużyć zdarzenia typu {{k}}',
|
'Cannot handle event of kind k': 'Nie można obsłużyć zdarzenia typu {{k}}',
|
||||||
'Sorry! The note cannot be found 😔 ': 'Przepraszam! Nie można znaleźć wpisu 😔',
|
'Sorry! The note cannot be found 😔 ': 'Przepraszam! Nie można znaleźć wpisu 😔',
|
||||||
'This user has been muted': 'Ten użytkownik został wyciszony',
|
'This user has been muted': 'Ten użytkownik został wyciszony',
|
||||||
Wallet: 'Portfel',
|
Wallet: 'Portfel',
|
||||||
Sats: 'satsów',
|
Sats: 'satsów',
|
||||||
sats: 'satsów',
|
sats: 'satsów',
|
||||||
'Zap to': 'Zap dla użytkownika ',
|
'Zap to': 'Zap dla użytkownika ',
|
||||||
'Zap n sats': 'Zap {{n}} satsów',
|
'Zap n sats': 'Zap {{n}} satsów',
|
||||||
zapComment: 'Komentarz do zapa',
|
zapComment: 'Komentarz do zapa',
|
||||||
'Default zap amount': 'Standardowa kwota zapa',
|
'Default zap amount': 'Standardowa kwota zapa',
|
||||||
'Default zap comment': 'Standardowy komentarz do zapa',
|
'Default zap comment': 'Standardowy komentarz do zapa',
|
||||||
'Lightning Address (or LNURL)': 'Lightning Adres (lub LNURL)',
|
'Lightning Address (or LNURL)': 'Lightning Adres (lub LNURL)',
|
||||||
'Quick zap': 'Szybki zap',
|
'Quick zap': 'Szybki zap',
|
||||||
'If enabled, you can zap with a single click. Click and hold for custom amounts':
|
'If enabled, you can zap with a single click. Click and hold for custom amounts':
|
||||||
'Jeśli włączysz tę opcję, będzie można wysyłać zapa jednym kliknięciem. Naciśnij i przytrzymaj, aby wprowadzić inną kwotę',
|
'Jeśli włączysz tę opcję, będzie można wysyłać zapa jednym kliknięciem. Naciśnij i przytrzymaj, aby wprowadzić inną kwotę',
|
||||||
All: 'Wszystkie',
|
All: 'Wszystkie',
|
||||||
Reactions: 'Odzewy',
|
Reactions: 'Odzewy',
|
||||||
Zaps: 'Zapy',
|
Zaps: 'Zapy',
|
||||||
'Enjoying Jumble?': 'Podoba ci się Jumble?',
|
'Enjoying Jumble?': 'Podoba ci się Jumble?',
|
||||||
'Your donation helps me maintain Jumble and make it better! 😊':
|
'Your donation helps me maintain Jumble and make it better! 😊':
|
||||||
'Twoja darowizna pomoże mi utrzymać i ulepszać Jumble! 😊',
|
'Twoja darowizna pomoże mi utrzymać i ulepszać Jumble! 😊',
|
||||||
'Earlier notifications': 'Wcześniejsze powiadomienia',
|
'Earlier notifications': 'Wcześniejsze powiadomienia',
|
||||||
|
|
||||||
// NOTE: The translations below were generated by ChatGPT and have not yet been verified.
|
// NOTE: The translations below were generated by ChatGPT and have not yet been verified.
|
||||||
'Temporarily display this note': 'Tymczas wyświetl ten wpis',
|
'Temporarily display this note': 'Tymczas wyświetl ten wpis',
|
||||||
buttonFollowing: 'Obserwujesz',
|
buttonFollowing: 'Obserwujesz',
|
||||||
'Are you sure you want to unfollow this user?':
|
'Are you sure you want to unfollow this user?':
|
||||||
'Czy na pewno chcesz przestać obserwować tego użytkownika?',
|
'Czy na pewno chcesz przestać obserwować tego użytkownika?',
|
||||||
'Recent Supporters': 'Ostatni wspierający',
|
'Recent Supporters': 'Ostatni wspierający',
|
||||||
'Seen on': 'Widziany na',
|
'Seen on': 'Widziany na',
|
||||||
'Temporarily display this reply': 'Tymczasowo wyświetl tę odpowiedź',
|
'Temporarily display this reply': 'Tymczasowo wyświetl tę odpowiedź',
|
||||||
'Not found the note': 'Nie znaleziono wpisu',
|
'Not found the note': 'Nie znaleziono wpisu',
|
||||||
'no more replies': 'brak kolejnych odpowiedzi',
|
'no more replies': 'brak kolejnych odpowiedzi',
|
||||||
'Relay sets': 'Zestawy transmiterów',
|
'Relay sets': 'Zestawy transmiterów',
|
||||||
'Favorite Relays': 'Ulubione transmitery',
|
'Favorite Relays': 'Ulubione transmitery',
|
||||||
"Following's Favorites": 'Ulubione transmitery obserwowanych',
|
"Following's Favorites": 'Ulubione transmitery obserwowanych',
|
||||||
'no more relays': 'brak kolejnych transmiterów',
|
'no more relays': 'brak kolejnych transmiterów',
|
||||||
'Favorited by': 'Ulubione przez'
|
'Favorited by': 'Ulubione przez'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,7 @@
|
|||||||
/** @type {import('tailwindcss').Config} */
|
/** @type {import('tailwindcss').Config} */
|
||||||
export default {
|
export default {
|
||||||
darkMode: ['class'],
|
darkMode: ['class'],
|
||||||
content: [
|
content: ['./index.html', './src/**/*.{ts,tsx}'],
|
||||||
'./index.html',
|
|
||||||
'./src/**/*.{ts,tsx}',
|
|
||||||
],
|
|
||||||
theme: {
|
theme: {
|
||||||
extend: {
|
extend: {
|
||||||
borderRadius: {
|
borderRadius: {
|
||||||
|
|||||||
Reference in New Issue
Block a user