Fix all the weird eslint warnings (#2245)

* actually fix the weird lint errors

* Prettier auto-format

---------

Co-authored-by: ameer2468 <33054370+ameer2468@users.noreply.github.com>
Co-authored-by: Vítor Vasconcellos <vasconcellos.dev@gmail.com>
This commit is contained in:
Utku 2024-03-26 16:46:44 -04:00 committed by GitHub
parent 6277c8cb5f
commit 9a1cdf1dca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
65 changed files with 4188 additions and 4194 deletions

View file

@ -7,7 +7,7 @@ type OS = 'darwin' | 'windows' | 'linux';
type Arch = 'x64' | 'arm64';
type TargetConfig = { bundle: string; ext: string };
type BuildTarget = {
updater: { bundle: string; bundleExt: string; archiveExt: string; };
updater: { bundle: string; bundleExt: string; archiveExt: string };
standalone: Array<TargetConfig>;
};
@ -31,7 +31,7 @@ const OS_TARGETS = {
linux: {
updater: {
bundle: 'appimage',
bundleExt: "AppImage",
bundleExt: 'AppImage',
archiveExt: 'tar.gz'
},
standalone: [
@ -57,8 +57,8 @@ async function globFiles(pattern: string) {
return await globber.glob();
}
async function uploadUpdater({ bundle, bundleExt, archiveExt }: BuildTarget["updater"]) {
const fullExt = `${bundleExt}.${archiveExt}`
async function uploadUpdater({ bundle, bundleExt, archiveExt }: BuildTarget['updater']) {
const fullExt = `${bundleExt}.${archiveExt}`;
const files = await globFiles(`${BUNDLE_DIR}/${bundle}/*.${fullExt}*`);
const updaterPath = files.find((file) => file.endsWith(fullExt));

View file

@ -20,7 +20,7 @@ export function DockerDialog({
<Dialog.Root open={open} onOpenChange={setOpen}>
<Dialog.Portal>
<Dialog.Overlay className="fixed inset-0 z-50 bg-app/80 backdrop-blur-sm radix-state-closed:animate-out radix-state-closed:fade-out-0 radix-state-open:animate-in radix-state-open:fade-in-0" />
<Dialog.Content className="fixed left-[50%] top-[50%] z-50 w-[500px] translate-x-[-50%] translate-y-[-50%] overflow-hidden rounded-md border border-app-line bg-app shadow-lg outline-none duration-200 radix-state-closed:animate-out radix-state-closed:fade-out-0 radix-state-closed:zoom-out-95 radix-state-closed:slide-out-to-left-1/2 radix-state-closed:slide-out-to-top-[48%] radix-state-open:animate-in radix-state-open:fade-in-0 radix-state-open:zoom-in-95 radix-state-open:slide-in-from-left-1/2 radix-state-open:slide-in-from-top-[48%]">
<Dialog.Content className="fixed left-1/2 top-1/2 z-50 w-[500px] translate-x-[-1/2] translate-y-[-1/2] overflow-hidden rounded-md border border-app-line bg-app shadow-lg outline-none duration-200 radix-state-closed:animate-out radix-state-closed:fade-out-0 radix-state-closed:zoom-out-95 radix-state-closed:slide-out-to-left-1/2 radix-state-closed:slide-out-to-top-[48%] radix-state-open:animate-in radix-state-open:fade-in-0 radix-state-open:zoom-in-95 radix-state-open:slide-in-from-left-1/2 radix-state-open:slide-in-from-top-[48%]">
<div className="p-3 pt-0">
<h2 className="py-2 text-center text-lg font-semibold text-ink">Docker</h2>
{/* Link */}

View file

@ -96,7 +96,7 @@ export function Platform({ platform, ...props }: ComponentProps<'a'> & PlatformP
<Tooltip label={platform.name}>
<Outer {...props}>
<Icon
className={`h-[24px] w-[24px] text-white ${
className={`size-[24px] text-white ${
platform.disabled ? 'opacity-20' : 'opacity-90'
}`}
weight="fill"

View file

@ -30,7 +30,7 @@ export async function Footer() {
/>
<div className="m-auto grid min-h-64 max-w-[100rem] grid-cols-2 gap-6 p-8 pb-20 pt-10 text-white sm:grid-cols-2 lg:grid-cols-6">
<div className="col-span-2">
<Image alt="Spacedrive logo" src={Logo} className="mb-5 h-10 w-10" />
<Image alt="Spacedrive logo" src={Logo} className="mb-5 size-10" />
<h1 className="mb-1 text-xl font-bold">Spacedrive</h1>
<p className="text-sm text-gray-350 opacity-50">
@ -38,31 +38,31 @@ export async function Footer() {
</p>
<div className="mb-10 mt-12 flex flex-row space-x-3">
<FooterLink link="https://x.com/spacedriveapp">
<Twitter className="h-6 w-6" />
<Twitter className="size-6" />
</FooterLink>
<FooterLink aria-label="discord" link="https://discord.gg/gTaF2Z44f5">
<Discord className="h-6 w-6" />
<Discord className="size-6" />
</FooterLink>
<FooterLink
aria-label="instagram"
link="https://instagram.com/spacedriveapp"
>
<Instagram className="h-6 w-6" />
<Instagram className="size-6" />
</FooterLink>
<FooterLink aria-label="github" link="https://github.com/spacedriveapp">
<Github className="h-6 w-6" />
<Github className="size-6" />
</FooterLink>
<FooterLink
aria-label="open collective"
link="https://opencollective.com/spacedrive"
>
<Opencollective className="h-6 w-6" />
<Opencollective className="size-6" />
</FooterLink>
<FooterLink
aria-label="twitch stream"
link="https://twitch.tv/jamiepinelive"
>
<Twitch className="h-6 w-6" />
<Twitch className="size-6" />
</FooterLink>
</div>
</div>
@ -141,8 +141,8 @@ export async function Footer() {
</div>
</div>
<div className="absolute top-0 flex h-1 w-full flex-row items-center justify-center opacity-100">
<div className="h-[1px] w-1/2 bg-gradient-to-r from-transparent to-white/10"></div>
<div className="h-[1px] w-1/2 bg-gradient-to-l from-transparent to-white/10"></div>
<div className="h-px w-1/2 bg-gradient-to-r from-transparent to-white/10"></div>
<div className="h-px w-1/2 bg-gradient-to-l from-transparent to-white/10"></div>
</div>
</footer>
);

View file

@ -20,7 +20,7 @@ export function MobileDropdown() {
<Dropdown.Root
button={
<Button aria-label="mobile-menu" className="hover:!bg-transparent" size="icon">
<DotsThreeVertical weight="bold" className="h-6 w-6 " />
<DotsThreeVertical weight="bold" className="size-6 " />
</Button>
}
className="right-4 top-2 block text-white lg:hidden"

View file

@ -12,7 +12,7 @@ export function NavBar() {
<div className="navbar-blur fixed z-[55] h-16 w-full !bg-black/10 px-2 transition">
<div className="relative m-auto flex h-full max-w-[100rem] items-center p-5">
<Link href="/" className="absolute flex flex-row items-center">
<Image alt="Spacedrive logo" src={Logo} className="z-30 mr-3 h-8 w-8" />
<Image alt="Spacedrive logo" src={Logo} className="z-30 mr-3 size-8" />
<h3 className="text-xl font-bold text-white">Spacedrive</h3>
</Link>
@ -40,7 +40,7 @@ export function NavBar() {
target="_blank"
rel="noreferrer"
>
<Discord className="h-6 w-6 text-white opacity-100 duration-300 hover:opacity-50" />
<Discord className="size-6 text-white opacity-100 duration-300 hover:opacity-50" />
</Link>
<Link
aria-label="github"
@ -48,13 +48,13 @@ export function NavBar() {
target="_blank"
rel="noreferrer"
>
<Github className="h-6 w-6 text-white opacity-100 duration-300 hover:opacity-50" />
<Github className="size-6 text-white opacity-100 duration-300 hover:opacity-50" />
</Link>
</div>
</div>
<div className="absolute bottom-0 flex h-1 w-full flex-row items-center justify-center pt-4 opacity-100">
<div className="h-[1px] w-1/2 bg-gradient-to-r from-transparent to-white/10"></div>
<div className="h-[1px] w-1/2 bg-gradient-to-l from-transparent to-white/10"></div>
<div className="h-px w-1/2 bg-gradient-to-r from-transparent to-white/10"></div>
<div className="h-px w-1/2 bg-gradient-to-l from-transparent to-white/10"></div>
</div>
</div>
);

View file

@ -24,7 +24,7 @@ export function NewBanner(props: NewBannerProps) {
<Newspaper weight="fill" className="text-white " size={20} />
<p className="font-regular truncate text-white">{headline}</p>
</div>
<div role="separator" className="h-22 mx-4 w-[1px] bg-zinc-700/70" />
<div role="separator" className="h-22 mx-4 w-px bg-zinc-700/70" />
<span className="font-regular shrink-0 bg-gradient-to-r from-violet-400 to-fuchsia-400 bg-clip-text text-transparent decoration-primary-600">
{link} <span aria-hidden="true">&rarr;</span>
</span>

View file

@ -13,7 +13,7 @@ export function Breadcrumbs() {
<div className="flex flex-row items-center gap-1">
{slug.map((item, index) => (
<Fragment key={index}>
{index > 0 && <CaretRight className="h-4 w-4" />}
{index > 0 && <CaretRight className="size-4" />}
<span className="px-1 text-sm">{toTitleCase(item)}</span>
</Fragment>
))}

View file

@ -36,7 +36,7 @@ export function OpenMobileSidebarButton() {
return (
<Button className="ml-1 !border-none !px-2" onClick={() => menu.setOpen((o) => !o)}>
<List weight="bold" className="h-6 w-6" />
<List weight="bold" className="size-6" />
</Button>
);
}
@ -57,7 +57,7 @@ export function MobileSidebarWrapper({ children }: PropsWithChildren) {
onClick={() => menu.setOpen((o) => !o)}
className="-ml-0.5 mb-3 !border-none !px-1"
>
<X weight="bold" className="h-6 w-6" />
<X weight="bold" className="size-6" />
</Button>
{children}
</div>

View file

@ -58,7 +58,7 @@ export async function Sidebar() {
slug={section.slug}
>
<div className="mr-4 rounded-lg border-t border-gray-400/20 bg-gray-500 p-1">
<Icon weight="bold" className="h-4 w-4 text-white opacity-80" />
<Icon weight="bold" className="size-4 text-white opacity-80" />
</div>
{toTitleCase(section.slug)}
</SectionLink>

View file

@ -16,7 +16,7 @@ export default function NotFound() {
<Markdown classNames="flex w-full justify-center">
<div className="m-auto flex flex-col items-center ">
<div className="h-32" />
<SmileyXEyes className="mb-3 h-44 w-44" />
<SmileyXEyes className="mb-3 size-44" />
<h1 className="mb-2 text-center">
In the quantum realm this page potentially exists.
</h1>

View file

@ -103,14 +103,14 @@ const PackageCard = ({ features, name, price, toggle, subTitle }: Props) => {
<p className="text-md mb-4 uppercase text-[#A7ADD2]">{name}</p>
{price && (
<>
<p className="text-2xl font-bold leading-[1] text-white">
<p className="text-2xl font-bold leading-none text-white">
${toggle ? price.yearly : price.monthly}
</p>
<p className="text-md text-[#A7ADD2]">per {duration}</p>
</>
)}
{subTitle && (
<p className="text-2xl font-bold leading-[1] text-white">{subTitle}</p>
<p className="text-2xl font-bold leading-none text-white">{subTitle}</p>
)}
</div>
</div>
@ -128,7 +128,7 @@ const PackageCard = ({ features, name, price, toggle, subTitle }: Props) => {
)}
{features.map((feature, index) => (
<div key={index} className="flex items-center justify-center gap-2.5">
<div className="flex h-5 w-5 items-center justify-center rounded-full border border-[#353252] bg-[#2A2741]">
<div className="flex size-5 items-center justify-center rounded-full border border-[#353252] bg-[#2A2741]">
<Check weight="bold" size={12} color="white" />
</div>
<p className="text-sm text-white">{feature}</p>

View file

@ -28,7 +28,7 @@ export default function Page() {
{items.map((item, i) => (
<Fragment key={i}>
{/* Using span so i can use the group-last-of-type selector */}
<span className="group flex max-w-[10rem] items-start justify-end gap-4 first:items-start">
<span className="group flex max-w-40 items-start justify-end gap-4 first:items-start">
<div
className={clsx(
'flex flex-col items-end',

View file

@ -76,32 +76,32 @@ export function TeamMember(props: TeamMemberProps) {
<div className="mt-3 flex flex-row space-x-2">
{props.socials?.twitter && (
<Link href={props.socials.twitter}>
<Twitter className="h-[20px] w-[20px]" />
<Twitter className="size-[20px]" />
</Link>
)}
{props.socials?.github && (
<Link href={props.socials.github}>
<Github className="h-[20px] w-[20px]" />
<Github className="size-[20px]" />
</Link>
)}
{props.socials?.gitlab && (
<Link href={props.socials.gitlab}>
<Gitlab className="h-[20px] w-[20px]" />
<Gitlab className="size-[20px]" />
</Link>
)}
{props.socials?.twitch && (
<Link href={props.socials.twitch}>
<Twitch className="h-[20px] w-[20px]" />
<Twitch className="size-[20px]" />
</Link>
)}
{props.socials?.dribbble && (
<Link href={props.socials.dribbble}>
<Dribbble className="h-[20px] w-[20px]" />
<Dribbble className="size-[20px]" />
</Link>
)}
{props.socials?.website && (
<Link href={props.socials.website}>
<Website className="h-[20px] w-[20px]" />
<Website className="size-[20px]" />
</Link>
)}
</div>

View file

@ -56,7 +56,7 @@ const BentoBoxes = () => {
lg:grid lg:grid-cols-6"
>
<BentoBox colSpan={4} className="p-6" bgUrl="images/bento/encrypt-bg.webp">
<div className="bento-radial-gradient-fade absolute right-0 top-0 z-20 h-full w-full" />
<div className="bento-radial-gradient-fade absolute right-0 top-0 z-20 size-full" />
<div className="relative z-20">
<Heading>Encryption</Heading>
<Text className="mx-auto max-w-[417px]">
@ -64,7 +64,7 @@ const BentoBoxes = () => {
unauthorized access and guaranteed protection.
</Text>
</div>
<div className="flex h-[80%] w-auto items-start justify-center">
<div className="flex h-4/5 w-auto items-start justify-center">
<Image
className="mx-auto"
alt="Encryption"
@ -77,7 +77,7 @@ const BentoBoxes = () => {
</div>
</BentoBox>
<BentoBox colSpan={2} className="p-6">
<div className="flex h-[75%] w-auto items-center justify-center">
<div className="flex h-3/4 w-auto items-center justify-center">
<Image
className="mx-auto mt-3 brightness-125"
alt="Powerful tags"
@ -88,9 +88,9 @@ const BentoBoxes = () => {
src="/images/bento/tags.webp"
/>
</div>
<div className="bento-radial-gradient-fade absolute right-0 top-0 z-20 h-full w-full" />
<div className="bento-radial-gradient-fade absolute right-0 top-0 z-20 size-full" />
<div className="relative z-[40] mt-2 md:mt-7">
<div className="relative z-40 mt-2 md:mt-7">
<Heading>Powerful tags</Heading>
<Text>
Create and apply tags to your files and folders, and instantly locate
@ -105,8 +105,8 @@ const BentoBoxes = () => {
Easily find your files and folders through our search
</Text>
</div>
<div className="bento-radial-gradient-fade absolute right-0 top-0 z-20 h-full w-full" />
<div className="flex h-[80%] w-auto items-start justify-center">
<div className="bento-radial-gradient-fade absolute right-0 top-0 z-20 size-full" />
<div className="flex h-4/5 w-auto items-start justify-center">
<Image
className="mx-auto brightness-110"
alt="Search"
@ -119,8 +119,8 @@ const BentoBoxes = () => {
</div>
</BentoBox>
<BentoBox colSpan={2} className="p-6">
<div className="bento-radial-gradient-fade absolute right-0 top-0 z-20 h-full w-full" />
<div className="flex h-[80%] w-auto items-center justify-center">
<div className="bento-radial-gradient-fade absolute right-0 top-0 z-20 size-full" />
<div className="flex h-4/5 w-auto items-center justify-center">
<Image
className="mx-auto brightness-125"
alt="Library"
@ -143,8 +143,8 @@ const BentoBoxes = () => {
Send files to other devices quickly and easily
</Text>
</div>
<div className="bento-radial-gradient-fade absolute right-0 top-0 z-20 h-full w-full" />
<div className="flex h-[80%] w-auto items-center justify-center">
<div className="bento-radial-gradient-fade absolute right-0 top-0 z-20 size-full" />
<div className="flex h-4/5 w-auto items-center justify-center">
<div
style={
{
@ -211,7 +211,7 @@ const BentoBoxes = () => {
Windows, macOS, Linux, iOS, Android, and the web. Spacedrive is everywhere.
</Text>
</div>
<div className="bento-radial-gradient-fade absolute right-0 top-0 z-20 h-full w-full" />
<div className="bento-radial-gradient-fade absolute right-0 top-0 z-20 size-full" />
</BentoBox>
</MagicContainer>
);

View file

@ -61,7 +61,7 @@ export default function NavBar() {
<div className="navbar-blur fixed z-[55] h-16 w-full !bg-black/10 px-2 transition">
<div className="relative m-auto flex h-full max-w-[100rem] items-center p-5">
<Link href="/" className="absolute flex flex-row items-center">
<Image alt="Spacedrive logo" src={Logo} className="z-30 mr-3 h-8 w-8" />
<Image alt="Spacedrive logo" src={Logo} className="z-30 mr-3 size-8" />
<h3 className="text-xl font-bold text-white">Spacedrive</h3>
</Link>
@ -88,7 +88,7 @@ export default function NavBar() {
className="ml-[140px] hover:!bg-transparent"
size="icon"
>
<DotsThreeVertical weight="bold" className="h-6 w-6 " />
<DotsThreeVertical weight="bold" className="size-6 " />
</Button>
}
className="right-4 top-2 block h-6 w-44 text-white lg:hidden"
@ -145,7 +145,7 @@ export default function NavBar() {
target="_blank"
rel="noreferrer"
>
<Discord className="h-6 w-6 text-white opacity-100 duration-300 hover:opacity-50" />
<Discord className="size-6 text-white opacity-100 duration-300 hover:opacity-50" />
</Link>
<Link
aria-label="github"
@ -153,13 +153,13 @@ export default function NavBar() {
target="_blank"
rel="noreferrer"
>
<Github className="h-6 w-6 text-white opacity-100 duration-300 hover:opacity-50" />
<Github className="size-6 text-white opacity-100 duration-300 hover:opacity-50" />
</Link>
</div>
</div>
<div className="absolute bottom-0 flex h-1 w-full flex-row items-center justify-center pt-4 opacity-100">
<div className="h-[1px] w-1/2 bg-gradient-to-r from-transparent to-white/10"></div>
<div className="h-[1px] w-1/2 bg-gradient-to-l from-transparent to-white/10"></div>
<div className="h-px w-1/2 bg-gradient-to-r from-transparent to-white/10"></div>
<div className="h-px w-1/2 bg-gradient-to-l from-transparent to-white/10"></div>
</div>
</div>
);

View file

@ -24,7 +24,7 @@ const NewBanner: React.FC<NewBannerProps> = (props) => {
<Newspaper weight="fill" className="text-white " size={20} />
<p className="font-regular truncate text-white">{headline}</p>
</div>
<div role="separator" className="h-22 mx-4 w-[1px] bg-zinc-700/70" />
<div role="separator" className="h-22 mx-4 w-px bg-zinc-700/70" />
<Link
href={href}
className="font-regular shrink-0 bg-gradient-to-r from-violet-400 to-fuchsia-400 bg-clip-text text-transparent decoration-primary-600"

View file

@ -14,7 +14,7 @@ const WormHole = () => {
className="absolute top-[-150px] w-full max-w-[450px] rotate-[300deg] sm:top-[-200px]
sm:max-w-[500px] md:top-[-200px] lg:top-auto lg:mr-[250px] lg:max-w-full lg:rotate-0"
>
<div className="absolute left-[200px] top-[50px] z-10 h-full w-full">
<div className="absolute left-[200px] top-[50px] z-10 size-full">
<Image
width={30}
height={45}
@ -24,7 +24,7 @@ const WormHole = () => {
src="/images/icons/heart.svg"
/>
</div>
<div className="absolute left-[200px] top-[50px] z-10 h-full w-full">
<div className="absolute left-[200px] top-[50px] z-10 size-full">
<Image
width={40}
height={45}
@ -36,8 +36,8 @@ const WormHole = () => {
</div>
<div
className="absolute top-[-100px] z-10
h-full w-full
sm:left-[200px] sm:top-[10px]"
size-full sm:left-[200px]
sm:top-[10px]"
>
<Image
width={40}
@ -50,8 +50,8 @@ const WormHole = () => {
</div>
<div
className="absolute left-[120px] top-[-50px]
z-10 h-full w-full
sm:left-[200px] sm:top-[-10px]"
z-10 size-full sm:left-[200px]
sm:top-[-10px]"
>
<Image
width={40}
@ -63,8 +63,8 @@ const WormHole = () => {
/>
</div>
<div
className="absolute left-[200px] top-[350px] z-10 h-full
w-full lg:left-[200px] lg:top-[300px]"
className="absolute left-[200px] top-[350px] z-10 size-full
lg:left-[200px] lg:top-[300px]"
>
<Image
width={40}
@ -75,7 +75,7 @@ const WormHole = () => {
src="/images/icons/video.svg"
/>
</div>
<div className="absolute left-[200px] top-[150px] z-10 h-full w-full">
<div className="absolute left-[200px] top-[150px] z-10 size-full">
<Image
width={40}
height={45}
@ -85,7 +85,7 @@ const WormHole = () => {
src="/images/icons/application.svg"
/>
</div>
<div className="absolute left-[120px] top-[50px] z-10 h-full w-full lg:left-[200px] lg:top-[120px]">
<div className="absolute left-[120px] top-[50px] z-10 size-full lg:left-[200px] lg:top-[120px]">
<Image
width={40}
height={45}
@ -95,7 +95,7 @@ const WormHole = () => {
src="/images/icons/collection.svg"
/>
</div>
<div className="absolute left-[120px] top-[50px] z-10 h-full w-full sm:left-[200px] sm:top-[300px] lg:left-[200px] lg:top-[420px]">
<div className="absolute left-[120px] top-[50px] z-10 size-full sm:left-[200px] sm:top-[300px] lg:left-[200px] lg:top-[420px]">
<Image
width={40}
height={45}
@ -108,7 +108,7 @@ const WormHole = () => {
<div
className="absolute
left-[60px] top-[-190px]
z-10 h-full w-full sm:left-[50px] sm:top-[50px] lg:left-[200px] lg:top-[490px]"
z-10 size-full sm:left-[50px] sm:top-[50px] lg:left-[200px] lg:top-[490px]"
>
<Image
width={40}
@ -121,7 +121,7 @@ const WormHole = () => {
</div>
<div
className="absolute left-[120px] top-[50px]
z-10 h-full w-full md:left-[200px] md:top-[350px]"
z-10 size-full md:left-[200px] md:top-[350px]"
>
<Image
width={40}
@ -132,7 +132,7 @@ const WormHole = () => {
src="/images/icons/database.svg"
/>
</div>
<div className="absolute left-[100px] top-[-200px] z-10 h-full w-full sm:left-[150px] sm:top-[50px]">
<div className="absolute left-[100px] top-[-200px] z-10 size-full sm:left-[150px] sm:top-[50px]">
<Image
width={40}
height={45}
@ -153,7 +153,7 @@ const WormHole = () => {
</div>
<div
className={clsx(
'worm-hole-border-gradient relative top-[100px] z-[20] flex w-full max-w-[500px] flex-col rounded-lg',
'worm-hole-border-gradient relative top-[100px] z-20 flex w-full max-w-[500px] flex-col rounded-lg',
'items-center justify-center gap-2 bg-gradient-to-r from-[#080710]/0 to-[#080710]/50 p-8 backdrop-blur-sm'
)}
>

View file

@ -21,7 +21,7 @@ export default function Notice({ text, type, title }: NoticeProps) {
)}
>
<div className="flex flex-row items-center gap-x-1">
<Icon className="my-0 h-5 w-5 text-white" />
<Icon className="my-0 size-5 text-white" />
<h5 className="m-0 text-sm font-bold uppercase text-white">{title || type}</h5>
</div>
<p className="mx-0 my-1 mb-0 text-white">

View file

@ -17,7 +17,7 @@ export const ProgressBar = memo((props: ProgressBarProps) => {
return (
<View style={tw`h-1 overflow-hidden rounded-full bg-app-button`}>
<MotiView
style={tw`h-full w-[50%] bg-accent`}
style={tw`h-full w-1/2 bg-accent`}
from={{ left: '-50%' }}
animate={{ left: '100%' }}
transition={{ type: 'timing', duration: 1500, loop: true }}

View file

@ -67,7 +67,7 @@ const Job = ({ progress, message, error }: JobProps) => {
backgroundColor={tw.color('ink-light/5')}
>
{(fill) => (
<View style={tw`flex-row items-end gap-[1px]`}>
<View style={tw`flex-row items-end gap-px`}>
<Text style={tw`text-lg font-bold text-white`}>
{error ? '0' : fill.toFixed(0)}
</Text>
@ -79,7 +79,7 @@ const Job = ({ progress, message, error }: JobProps) => {
</View>
)}
</AnimatedCircularProgress>
<Text style={tw`w-[60%] text-sm leading-5 text-ink-dull`}>{message}</Text>
<Text style={tw`w-3/5 text-sm leading-5 text-ink-dull`}>{message}</Text>
</View>
</Card>
);

View file

@ -36,7 +36,7 @@ const ListLocation = ({ location, modalRef }: ListLocationProps) => {
)}
>
<Card style={tw`h-auto flex-row justify-between gap-3 border-0 p-3`}>
<View style={tw`w-[50%] flex-row items-center gap-2`}>
<View style={tw`w-1/2 flex-row items-center gap-2`}>
<View style={tw`relative`}>
<FolderIcon size={38} />
<View

View file

@ -7,6 +7,7 @@ import { ClassInput } from 'twrnc/dist/esm/types';
import { byteSize, Statistics, StatisticsResponse, useLibraryContext } from '@sd/client';
import useCounter from '~/hooks/useCounter';
import { tw, twStyle } from '~/lib/tailwind';
import Card from '../layout/Card';
const StatItemNames: Partial<Record<keyof Statistics, string>> = {
@ -31,13 +32,9 @@ const StatItem = ({ title, bytes, isLoading, style }: StatItemProps) => {
return (
<Card
style={twStyle(
'flex flex-col items-center justify-center p-2',
style,
{
hidden: isLoading
}
)}
style={twStyle('flex flex-col items-center justify-center p-2', style, {
hidden: isLoading
})}
>
<Text style={tw`text-sm font-bold text-zinc-400`}>{title}</Text>
<View style={tw`mt-1 flex-row items-baseline`}>

View file

@ -84,7 +84,7 @@ const StatCard = ({ icon, name, connectionType, ...stats }: StatCardProps) => {
style={tw`flex h-10 flex-row items-center gap-1.5 border-t border-app-cardborder px-2`}
>
<View
style={tw`rounded border border-app-lightborder bg-app-highlight px-1.5 py-[1px]`}
style={tw`rounded border border-app-lightborder bg-app-highlight px-1.5 py-px`}
>
<Text style={tw`text-xs font-medium uppercase text-ink-dull`}>
{connectionType || 'Local'}

View file

@ -12,7 +12,7 @@ export const InfoPill = (props: Props) => {
return (
<View
style={twStyle(
'rounded-md border border-transparent bg-app-highlight px-[6px] py-[1px] shadow shadow-app-shade/5',
'rounded-md border border-transparent bg-app-highlight px-[6px] py-px shadow shadow-app-shade/5',
props.containerStyle
)}
>
@ -27,7 +27,7 @@ export function PlaceholderPill(props: Props) {
return (
<View
style={twStyle(
'rounded-md border border-dashed border-app-highlight bg-transparent px-[6px] py-[1px] shadow shadow-app-shade/10',
'rounded-md border border-dashed border-app-highlight bg-transparent px-[6px] py-px shadow shadow-app-shade/10',
props.containerStyle
)}
>

View file

@ -16,7 +16,7 @@ type SwitchContainerProps = { title: string; description?: string } & SwitchProp
export const SwitchContainer: FC<SwitchContainerProps> = ({ title, description, ...props }) => {
return (
<View style={tw`flex flex-row items-center justify-between pb-6`}>
<View style={tw`w-[80%]`}>
<View style={tw`w-4/5`}>
<Text style={tw`text-sm font-medium text-ink`}>{title}</Text>
{description && <Text style={tw`mt-2 text-sm text-ink-dull`}>{description}</Text>}
</View>

View file

@ -24,7 +24,7 @@ const SettingsToggle = ({ title, description, onEnabledChange, control, name }:
return (
<View style={tw`flex-row items-center justify-between`}>
<View style={tw`w-[75%]`}>
<View style={tw`w-3/4`}>
<Text style={tw`text-sm font-medium text-ink`}>{title}</Text>
{description && <Text style={tw`mt-1 text-xs text-ink-dull`}>{description}</Text>}
</View>

View file

@ -40,7 +40,7 @@ export default function LocationsScreen({ viewStyle }: Props) {
return (
<ScreenContainer scrollview={false} style={tw`relative px-6 py-0`}>
<Pressable
style={tw`absolute z-10 items-center justify-center w-12 h-12 rounded-full bottom-7 right-7 bg-accent`}
style={tw`absolute bottom-7 right-7 z-10 h-12 w-12 items-center justify-center rounded-full bg-accent`}
onPress={() => {
modalRef.current?.present();
}}

View file

@ -1,7 +1,6 @@
import { useNavigation, useRoute } from '@react-navigation/native';
import { AppLogo, BloomOne } from '@sd/assets/images';
import { SdMobIntro } from '@sd/assets/videos';
import { useOnboardingStore } from '@sd/client';
import { ResizeMode, Video } from 'expo-av';
import { MotiView } from 'moti';
import { CaretLeft } from 'phosphor-react-native';
@ -9,6 +8,7 @@ import { useEffect } from 'react';
import { Image, KeyboardAvoidingView, Platform, Pressable, Text, View } from 'react-native';
import Animated from 'react-native-reanimated';
import { useSafeAreaInsets } from 'react-native-safe-area-context';
import { useOnboardingStore } from '@sd/client';
import { FadeInUpAnimation, LogoAnimation } from '~/components/animation/layout';
import { AnimatedButton } from '~/components/primitive/Button';
import { styled, tw, twStyle } from '~/lib/tailwind';

View file

@ -59,7 +59,7 @@ function Theme(props: ThemeProps) {
<View
style={twStyle(
{ backgroundColor: props.insideColor, borderColor: props.highlightColor },
'absolute bottom-[-1px] right-[-1px] h-[60px] w-[75px] rounded-tl-xl border'
'absolute -bottom-px -right-px h-[60px] w-[75px] rounded-tl-xl border'
)}
>
<Text

View file

@ -14,11 +14,11 @@ const config: StorybookConfig = {
}
],
addons: [
'@storybook/addon-links',
'@storybook/addon-essentials',
'@storybook/addon-interactions',
'@storybook/addon-styling-webpack'
],
'@storybook/addon-links',
'@storybook/addon-essentials',
'@storybook/addon-interactions',
'@storybook/addon-styling-webpack'
],
framework: {
name: '@storybook/react-vite',
options: {}

View file

@ -15,10 +15,7 @@ const MediaViewIcon = () => {
name="Image"
className="absolute -top-1 left-6 size-14 rotate-6 overflow-hidden"
/>
<Icon
name="Video"
className="absolute top-2 z-10 size-14 -rotate-6 overflow-hidden"
/>
<Icon name="Video" className="absolute top-2 z-10 size-14 -rotate-6 overflow-hidden" />
</div>
);
};

View file

@ -83,7 +83,7 @@ export const DragOverlay = memo(() => {
size={32}
frame
frameClassName={clsx(
'!border-[1px] shadow-md',
'!border-DEFAULT shadow-md',
isDark ? 'shadow-app-shade/50' : 'shadow-app-shade/25'
)}
/>

View file

@ -156,7 +156,7 @@ const Thumbnails = ({ items }: { items: ExplorerItem[] }) => {
className={clsx(
thumbs.length > 1 && '!absolute',
i === 0 && thumbs.length > 1 && 'z-30 !h-[76%] !w-[76%]',
i === 1 && 'z-20 !h-[80%] !w-[80%] rotate-[-5deg]',
i === 1 && 'z-20 !h-4/5 !w-4/5 rotate-[-5deg]',
i === 2 && 'z-10 !h-[84%] !w-[84%] rotate-[7deg]'
)}
childClassName={(type) =>

View file

@ -89,7 +89,7 @@ export const useExplorerTopBarOptions = () => {
icon: (
<SidebarSimple
weight={showInspector ? 'fill' : 'regular'}
className={clsx(TOP_BAR_ICON_STYLE, 'scale-x-[-1]')}
className={clsx(TOP_BAR_ICON_STYLE, '-scale-x-100')}
/>
),
individual: true,

View file

@ -148,7 +148,7 @@ const ItemSize = () => {
if (!showSize) return null;
return (
<div className="truncate rounded-md px-1.5 py-[1px] text-center text-tiny text-ink-dull">
<div className="truncate rounded-md px-1.5 py-px text-center text-tiny text-ink-dull">
{`${bytes}`}
</div>
);
@ -162,9 +162,7 @@ function LabelItemCount({ data }: { data: Extract<ExplorerItem, { type: 'Label'
{
filters: [
{
object: { labels: { in: [data.item.id]
}
}
object: { labels: { in: [data.item.id] } }
}
]
}
@ -173,7 +171,7 @@ function LabelItemCount({ data }: { data: Extract<ExplorerItem, { type: 'Label'
if (count.data === undefined) return;
return (
<div className="truncate rounded-md px-1.5 py-[1px] text-center text-tiny text-ink-dull">
<div className="truncate rounded-md px-1.5 py-px text-center text-tiny text-ink-dull">
{t('item_with_count', { count: count.data })}
</div>
);

View file

@ -17,11 +17,11 @@
}
[id^='headlessui-dialog-panel-'] > div.flex-1.overflow-y-auto::-webkit-scrollbar {
@apply w-1 #{!important};
@apply w-1 #{!important};
}
[id^='headlessui-dialog-panel-'] > div.flex-1.overflow-y-auto::-webkit-scrollbar-thumb {
@apply bg-app-explorerScrollbar w-10 rounded-full #{!important};
@apply w-10 rounded-full bg-app-explorerScrollbar #{!important};
}
.command-palette-content ul a {

View file

@ -4,9 +4,5 @@ import { useLibraryQuery } from '~/../packages/client/src';
export default () => {
const { data: isActive } = useLibraryQuery(['jobs.isActive']);
return isActive ? (
<Loader className="size-[20px]" />
) : (
<CheckCircle className="size-5" />
);
return isActive ? <Loader className="size-[20px]" /> : <CheckCircle className="size-5" />;
};

View file

@ -1,6 +1,13 @@
import { Gear } from '@phosphor-icons/react';
import { useState } from 'react';
import { useNavigate } from 'react-router';
import { JobManagerContextProvider, LibraryContextProvider, useClientContext, useDebugState, useLibrarySubscription } from '@sd/client';
import {
JobManagerContextProvider,
LibraryContextProvider,
useClientContext,
useDebugState,
useLibrarySubscription
} from '@sd/client';
import { Button, ButtonLink, Popover, Tooltip, usePopover } from '@sd/ui';
import { useKeysMatcher, useLocale, useShortcut } from '~/hooks';
import { usePlatform } from '~/util/Platform';
@ -8,7 +15,6 @@ import { usePlatform } from '~/util/Platform';
import DebugPopover from '../DebugPopover';
import { IsRunningJob, JobManager } from '../JobManager';
import FeedbackButton from './FeedbackButton';
import { useState } from 'react';
export default () => {
const { library } = useClientContext();
@ -45,7 +51,11 @@ export default () => {
)}
</>
)}
{library && <LibraryContextProvider library={library}><SyncStatusIndicator/></LibraryContextProvider>}
{library && (
<LibraryContextProvider library={library}>
<SyncStatusIndicator />
</LibraryContextProvider>
)}
<div className="flex w-full items-center justify-between">
<div className="flex">
<ButtonLink
@ -101,9 +111,9 @@ export default () => {
function SyncStatusIndicator() {
const [syncing, setSyncing] = useState(false);
useLibrarySubscription(["sync.active"], {
useLibrarySubscription(['sync.active'], {
onData: setSyncing
})
});
return null
return null;
}

View file

@ -14,7 +14,7 @@ export interface TopBarButtonProps {
}
const topBarButtonStyle = cva(
'text-md relative mr-[1px] flex border-none !p-0.5 font-medium text-ink outline-none transition-colors duration-100 hover:bg-app-selected hover:text-ink radix-state-open:bg-app-selected',
'text-md relative mr-px flex border-none !p-0.5 font-medium text-ink outline-none transition-colors duration-100 hover:bg-app-selected hover:text-ink radix-state-open:bg-app-selected',
{
variants: {
active: {

View file

@ -121,7 +121,7 @@ function Tabs() {
else if (e.button === 1) removeTab(index);
}}
className={clsx(
'duration-[50ms] group relative flex h-full min-w-[10rem] shrink-0 flex-row items-center justify-center px-8 text-center',
'duration-[50ms] group relative flex h-full min-w-40 shrink-0 flex-row items-center justify-center px-8 text-center',
ctx.tabIndex === index
? 'text-ink'
: 'top-bar-blur border-t border-sidebar-divider bg-sidebar/30 text-ink-faint/60 transition-colors hover:bg-app/50'

View file

@ -17,9 +17,7 @@ export const Component = () => {
return null;
};
return (
<div className="flex size-full flex-col items-start p-4">{authSensitiveChild()}</div>
);
return <div className="flex size-full flex-col items-start p-4">{authSensitiveChild()}</div>;
};
function Authenticated() {

View file

@ -74,7 +74,7 @@ const EphemeralNotice = ({ path }: { path: string }) => {
<Dialog.Root open={!dismissed}>
<Dialog.Portal>
<Dialog.Overlay className="fixed inset-0 z-50 bg-app/80 backdrop-blur-sm radix-state-closed:animate-out radix-state-closed:fade-out-0 radix-state-open:animate-in radix-state-open:fade-in-0" />
<Dialog.Content className="fixed left-[50%] top-[50%] z-50 w-96 translate-x-[-50%] translate-y-[-50%] overflow-hidden rounded-md border border-app-line bg-app shadow-lg outline-none duration-200 radix-state-closed:animate-out radix-state-closed:fade-out-0 radix-state-closed:zoom-out-95 radix-state-closed:slide-out-to-left-1/2 radix-state-closed:slide-out-to-top-[48%] radix-state-open:animate-in radix-state-open:fade-in-0 radix-state-open:zoom-in-95 radix-state-open:slide-in-from-left-1/2 radix-state-open:slide-in-from-top-[48%]">
<Dialog.Content className="fixed left-1/2 top-1/2 z-50 w-96 -translate-x-1/2 -translate-y-1/2 overflow-hidden rounded-md border border-app-line bg-app shadow-lg outline-none duration-200 radix-state-closed:animate-out radix-state-closed:fade-out-0 radix-state-closed:zoom-out-95 radix-state-closed:slide-out-to-left-1/2 radix-state-closed:slide-out-to-top-[48%] radix-state-open:animate-in radix-state-open:fade-in-0 radix-state-open:zoom-in-95 radix-state-open:slide-in-from-left-1/2 radix-state-open:slide-in-from-top-[48%]">
<div className="relative flex aspect-video overflow-hidden border-b border-app-line/50 bg-gradient-to-b from-app-darkBox to-app to-80% pl-5 pt-5">
<div
className={clsx(

View file

@ -137,7 +137,7 @@ const LocationExplorer = ({ location }: { location: Location; path?: string }) =
center={<SearchBar />}
left={
<div className="flex items-center gap-2">
<Folder size={22} className="mt-[-1px]" />
<Folder size={22} className="-mt-px" />
<span className="truncate text-sm font-medium">{title}</span>
<LocationOfflineInfo location={location} />
<LocationOptions location={location} path={path || ''} />

View file

@ -48,7 +48,7 @@ export const Component = () => {
<TopBarPortal
left={
<div className="flex items-center gap-2">
<Icon name="Laptop" size={24} className="mt-[-1px]" />
<Icon name="Laptop" size={24} className="-mt-px" />
<span className="truncate text-sm font-medium">{title}</span>
</div>
}

View file

@ -33,7 +33,7 @@ const OverviewSection = ({
{/* {title && <div className="mx-7 mb-3 h-[1px] w-full bg-app-line/50" />} */}
<HorizontalScroll>{children}</HorizontalScroll>
<div className="my-2 h-[1px] w-full " />
<div className="my-2 h-px w-full " />
</div>
);
};

View file

@ -170,11 +170,7 @@ const FilterOptionText = ({ filter, search }: { filter: SearchFilterCRUD; search
});
}}
>
<Input
className="w-[75%]"
value={value}
onChange={(e) => setValue(e.target.value)}
/>
<Input className="w-3/4" value={value} onChange={(e) => setValue(e.target.value)} />
<Button
disabled={value.length === 0 || allFiltersKeys.has(key)}
variant="accent"
@ -490,7 +486,7 @@ export const filterRegistry = [
empty={() => (
<div className="flex flex-col items-center justify-center gap-2 p-2">
<SDIcon name="Tags" size={32} />
<p className="w-[80%] text-center text-xs text-ink-dull">
<p className="w-4/5 text-center text-xs text-ink-dull">
You have not created any tags
</p>
</div>

View file

@ -280,10 +280,10 @@ function SystemTheme(props: ThemeProps) {
return (
<div className="w-[150px]">
<div className="relative flex h-[90px]">
<div className="relative h-full w-[50%] grow overflow-hidden rounded-l-lg bg-black">
<div className="relative h-full w-1/2 grow overflow-hidden rounded-l-lg bg-black">
<Theme className="rounded-r-none" {...themes[1]!} />
</div>
<div className={clsx('relative h-full w-[50%] grow overflow-hidden rounded-r-lg')}>
<div className={clsx('relative h-full w-1/2 grow overflow-hidden rounded-r-lg')}>
<Theme className="rounded-l-none" {...themes[0]!} />
</div>
{props.isSelected && (

View file

@ -31,7 +31,7 @@ export const Component = () => {
<>
<Heading title="Saved Searches" description="Manage your saved searches." />
<div className="flex flex-col gap-4 lg:flex-row">
<Card className="flex min-w-[14rem] flex-col gap-2 !px-2">
<Card className="flex min-w-56 flex-col gap-2 !px-2">
{savedSearches.data?.map((search) => (
<button
onClick={() => setSelectedSearchId(search.id)}

View file

@ -1,3 +1,4 @@
/* eslint-disable solid/reactivity */
/** @jsxImportSource solid-js */
import { createSignal } from 'solid-js';

View file

@ -103,7 +103,7 @@ export default function OnboardingLocations() {
<Icon
name="Folder"
size={46}
className="relative left-[-25px] z-[0] brightness-[0.6]"
className="relative left-[-25px] z-0 brightness-[0.6]"
/>
</div>
<OnboardingTitle>{t('add_locations')}</OnboardingTitle>

View file

@ -1,452 +1,452 @@
{
"about": "Acerca de",
"about_vision_text": "Muchos de nosotros tenemos múltiples cuentas en la nube, discos que no tienen copias de seguridad y datos en riesgo de ser perdidos. Dependemos de servicios en la nube como Google Photos e iCloud, pero estamos limitados con una capacidad reducida y casi cero interoperabilidad entre servicios y sistemas operativos. Los álbumes de fotos no deberían estar atascados en un ecosistema de dispositivos o ser utilizados para datos publicitarios. Deberían ser independientes del SO, permanentes y de propiedad personal. Los datos que creamos son nuestro legado, que nos sobrevivirá mucho tiempo: la tecnología de código abierto es la única forma de asegurarnos de mantener el control absoluto sobre los datos que definen nuestras vidas, en una escala ilimitada.",
"about_vision_title": "Visión",
"accept": "Aceptar",
"accessed": "Accedido",
"account": "Cuenta",
"actions": "Acciones",
"add": "Agregar",
"add_device": "Agregar Dispositivo",
"add_library": "Agregar Biblioteca",
"add_location": "Agregar ubicación",
"add_location_description": "Mejora tu experiencia en Spacedrive agregando tus ubicaciones favoritas a tu biblioteca personal, para una gestión de archivos eficiente y sin interrupciones.",
"add_location_tooltip": "Agregar ruta como una ubicación indexada",
"add_locations": "Agregar Ubicaciones",
"add_tag": "Agregar Etiqueta",
"advanced_settings": "Configuración avanzada",
"all_jobs_have_been_cleared": "Todos los trabajos han sido eliminados.",
"alpha_release_description": "Estamos encantados de que pruebes Spacedrive, ahora en lanzamiento Alpha, mostrando nuevas funcionalidades emocionantes. Como con cualquier lanzamiento inicial, esta versión puede contener algunos errores. Amablemente solicitamos tu ayuda para informar cualquier problema que encuentres en nuestro canal de Discord. Tu valiosa retroalimentación contribuirá en gran medida a mejorar la experiencia de usuario.",
"alpha_release_title": "Lanzamiento Alpha",
"appearance": "Apariencia",
"appearance_description": "Cambia la apariencia de tu cliente.",
"archive": "Archivo",
"archive_coming_soon": "El archivado de ubicaciones estará disponible pronto...",
"archive_info": "Extrae datos de la Biblioteca como un archivo, útil para preservar la estructura de carpetas de la Ubicación.",
"are_you_sure": "¿Estás seguro?",
"assign_tag": "Asignar etiqueta",
"audio_preview_not_supported": "La previsualización de audio no está soportada.",
"back": "Atrás",
"backups": "Copias de seguridad",
"backups_description": "Administra tus copias de seguridad de la base de datos de Spacedrive.",
"blur_effects": "Efectos de desenfoque",
"blur_effects_description": "Algunos componentes tendrán un efecto de desenfoque aplicado.",
"cancel": "Cancelar",
"cancel_selection": "Cancelar selección",
"celcius": "Celsius",
"change": "Cambiar",
"changelog": "Registro de cambios",
"changelog_page_description": "Mira qué nuevas funciones geniales estamos creando",
"changelog_page_title": "Registro de cambios",
"checksum": "Suma de verificación",
"clear_finished_jobs": "Eliminar trabajos finalizados",
"client": "Cliente",
"close": "Cerrar",
"close_current_tab": "Cerrar pestaña actual",
"clouds": "Nubes",
"color": "Color",
"coming_soon": "Próximamente",
"compress": "Comprimir",
"configure_location": "Configurar Ubicación",
"connected": "Conectado",
"contacts": "Contactos",
"contacts_description": "Administra tus contactos en Spacedrive.",
"content_id": "ID de contenido",
"continue": "Continuar",
"convert_to": "Convertir a",
"coordinates": "Coordenadas",
"copied": "Copiado",
"copy": "Copiar",
"copy_as_path": "Copiar como ruta",
"copy_object": "Copiar objeto",
"copy_path_to_clipboard": "Copiar ruta al portapapeles",
"copy_success": "Elementos copiados",
"create": "Crear",
"create_library": "Crear una Biblioteca",
"create_library_description": "Las bibliotecas son una base de datos segura, en el dispositivo. Tus archivos permanecen donde están, la Biblioteca los cataloga y almacena todos los datos relacionados con Spacedrive.",
"create_new_library": "Crear nueva biblioteca",
"create_new_library_description": "Las bibliotecas son una base de datos segura, en el dispositivo. Tus archivos permanecen donde están, la Biblioteca los cataloga y almacena todos los datos relacionados con Spacedrive.",
"create_new_tag": "Crear Nueva Etiqueta",
"create_new_tag_description": "Elige un nombre y un color.",
"create_tag": "Crear Etiqueta",
"created": "Creado",
"creating_library": "Creando biblioteca...",
"creating_your_library": "Creando tu biblioteca",
"current": "Actual",
"current_directory": "Directorio Actual",
"current_directory_with_descendants": "Directorio Actual Con Descendientes",
"custom": "Personalizado",
"cut": "Cortar",
"cut_object": "Cortar objeto",
"cut_success": "Elementos cortados",
"data_folder": "Carpeta de datos",
"debug_mode": "Modo de depuración",
"debug_mode_description": "Habilitar funciones de depuración adicionales dentro de la aplicación.",
"default": "Predeterminado",
"delete": "Eliminar",
"delete_dialog_title": "Eliminar {{prefix}} {{type}}",
"delete_info": "Esto no eliminará la carpeta real en el disco. Los medios de vista previa serán eliminados.",
"delete_library": "Eliminar Biblioteca",
"delete_library_description": "Esto es permanente, tus archivos no serán eliminados, solo la biblioteca de Spacedrive.",
"delete_location": "Eliminar Ubicación",
"delete_location_description": "Eliminar una ubicación también removerá todos los archivos asociados con ella de la base de datos de Spacedrive, los archivos mismos no serán eliminados.",
"delete_object": "Eliminar objeto",
"delete_rule": "Eliminar regla",
"delete_tag": "Eliminar Etiqueta",
"delete_tag_description": "¿Estás seguro de que quieres eliminar esta etiqueta? Esto no se puede deshacer y los archivos etiquetados serán desvinculados.",
"delete_warning": "Advertencia: Esto eliminará tu {{type}} para siempre, aún no tenemos papelera...",
"description": "Descripción",
"deselect": "Deseleccionar",
"details": "Detalles",
"devices": "Dispositivos",
"devices_coming_soon_tooltip": "¡Próximamente! Esta versión alfa no incluye la sincronización de bibliotecas, estará lista muy pronto.",
"dialog": "Diálogo",
"dialog_shortcut_description": "Para realizar acciones y operaciones",
"direction": "Dirección",
"disabled": "Deshabilitado",
"display_formats": "Formatos de visualización",
"display_name": "Nombre visible",
"distance": "Distancia",
"done": "Hecho",
"dont_show_again": "No mostrar de nuevo",
"double_click_action": "Acción de doble clic",
"download": "Descargar",
"duplicate": "Duplicar",
"duplicate_object": "Duplicar objeto",
"duplicate_success": "Elementos duplicados",
"edit": "Editar",
"edit_library": "Editar Biblioteca",
"edit_location": "Editar Ubicación",
"enable_networking": "Habilitar Redes",
"encrypt": "Encriptar",
"encrypt_library": "Encriptar Biblioteca",
"encrypt_library_coming_soon": "Encriptación de biblioteca próximamente",
"encrypt_library_description": "Habilitar la encriptación para esta biblioteca, esto solo encriptará la base de datos de Spacedrive, no los archivos en sí.",
"ephemeral_notice_browse": "Explora tus archivos y carpetas directamente desde tu dispositivo.",
"ephemeral_notice_consider_indexing": "Considera indexar tus ubicaciones locales para una exploración más rápida y eficiente.",
"erase": "Borrar",
"erase_a_file": "Borrar un archivo",
"erase_a_file_description": "Configura tus ajustes de borrado.",
"error": "Error",
"error_loading_original_file": "Error cargando el archivo original",
"expand": "Expandir",
"explorer": "Explorador",
"explorer_shortcut_description": "Para navegar e interactuar con el sistema de archivos",
"export": "Exportar",
"export_library": "Exportar Biblioteca",
"export_library_coming_soon": "Exportación de biblioteca próximamente",
"export_library_description": "Exporta esta biblioteca a un archivo.",
"extensions": "Extensiones",
"extensions_description": "Instala extensiones para extender la funcionalidad de este cliente.",
"fahrenheit": "Fahrenheit",
"failed_to_cancel_job": "Error al cancelar el trabajo.",
"failed_to_clear_all_jobs": "Error al eliminar todos los trabajos.",
"failed_to_copy_file": "Error al copiar el archivo",
"failed_to_copy_file_path": "Error al copiar la ruta del archivo",
"failed_to_cut_file": "Error al cortar el archivo",
"failed_to_duplicate_file": "Error al duplicar el archivo",
"failed_to_generate_checksum": "Error al generar suma de verificación",
"failed_to_generate_labels": "Error al generar etiquetas",
"failed_to_generate_thumbnails": "Error al generar miniaturas",
"failed_to_load_tags": "Error al cargar etiquetas",
"failed_to_pause_job": "Error al pausar el trabajo.",
"failed_to_reindex_location": "Error al reindexar ubicación",
"failed_to_remove_file_from_recents": "Error al eliminar archivo de recientes",
"failed_to_remove_job": "Error al eliminar el trabajo.",
"failed_to_rescan_location": "Error al volver a escanear ubicación",
"failed_to_resume_job": "Error al reanudar el trabajo.",
"failed_to_update_location_settings": "Error al actualizar configuraciones de ubicación",
"favorite": "Favorito",
"favorites": "Favoritos",
"feedback": "Retroalimentación",
"feedback_is_required": "La retroalimentación es obligatoria",
"feedback_login_description": "Iniciar sesión nos permite responder a tu retroalimentación",
"feedback_placeholder": "Tu retroalimentación...",
"feedback_toast_error_message": "Hubo un error al enviar tu retroalimentación. Por favor, inténtalo de nuevo.",
"file_already_exist_in_this_location": "El archivo ya existe en esta ubicación",
"file_indexing_rules": "Reglas de indexación de archivos",
"filters": "Filtros",
"forward": "Adelante",
"full_disk_access": "Acceso completo al disco",
"full_disk_access_description": "Para proporcionar la mejor experiencia, necesitamos acceso a tu disco para indexar tus archivos. Tus archivos solo están disponibles para ti.",
"full_reindex": "Reindexación completa",
"full_reindex_info": "Realiza un escaneo completo de esta Ubicación.",
"general": "General",
"general_settings": "Configuraciones Generales",
"general_settings_description": "Configuraciones generales relacionadas con este cliente.",
"general_shortcut_description": "Atajos de uso general",
"generatePreviewMedia_label": "Generar medios de vista previa para esta Ubicación",
"generate_checksums": "Generar Sumas de Verificación",
"go_back": "Regresar",
"got_it": "Entendido",
"grid_gap": "Espaciado",
"grid_view": "Vista de Cuadrícula",
"grid_view_notice_description": "Obtén una visión general de tus archivos con la Vista de Cuadrícula. Esta vista muestra tus archivos y carpetas como imágenes en miniatura, facilitando la identificación rápida del archivo que buscas.",
"hidden_label": "Evita que la ubicación y su contenido aparezcan en categorías resumen, búsqueda y etiquetas a menos que \"Mostrar elementos ocultos\" esté habilitado.",
"hide_in_library_search": "Ocultar en la búsqueda de la Biblioteca",
"hide_in_library_search_description": "Oculta archivos con esta etiqueta de los resultados al buscar en toda la biblioteca.",
"hide_in_sidebar": "Ocultar en la barra lateral",
"hide_in_sidebar_description": "Prevenir que esta etiqueta se muestre en la barra lateral de la aplicación.",
"hide_location_from_view": "Ocultar ubicación y contenido de la vista",
"home": "Inicio",
"image_labeler_ai_model": "Modelo AI de reconocimiento de etiquetas de imagen",
"image_labeler_ai_model_description": "El modelo utilizado para reconocer objetos en imágenes. Los modelos más grandes son más precisos pero más lentos.",
"import": "Importar",
"indexed": "Indexado",
"indexer_rule_reject_allow_label": "Por defecto, una regla de indexación funciona como una lista de Rechazo, resultando en la exclusión de cualquier archivo que coincida con sus criterios. Habilitar esta opción transformará en una lista de Permitir, permitiendo que la ubicación indexe solo archivos que cumplan con sus reglas especificadas.",
"indexer_rules": "Reglas de indexación",
"indexer_rules_info": "Las reglas de indexación te permiten especificar rutas a ignorar usando comodines.",
"install": "Instalar",
"install_update": "Instalar Actualización",
"installed": "Instalado",
"item_size": "Tamaño de elemento",
"item_with_count_one": "{{count}} artículo",
"item_with_count_other": "{{count}} artículos",
"job_has_been_canceled": "El trabajo ha sido cancelado.",
"job_has_been_paused": "El trabajo ha sido pausado.",
"job_has_been_removed": "El trabajo ha sido eliminado.",
"job_has_been_resumed": "El trabajo ha sido reanudado.",
"join": "Unirse",
"join_discord": "Unirse a Discord",
"join_library": "Unirse a una Biblioteca",
"join_library_description": "Las bibliotecas son una base de datos segura, en el dispositivo. Tus archivos permanecen donde están, la Biblioteca los cataloga y almacena todos los datos relacionados con Spacedrive.",
"key": "Clave",
"key_manager": "Administrador de Claves",
"key_manager_description": "Crea claves de encriptación, monta y desmonta tus claves para ver archivos desencriptados al vuelo.",
"keybinds": "Atajos de Teclado",
"keybinds_description": "Ver y administrar atajos de teclado del cliente",
"keys": "Claves",
"kilometers": "Kilómetros",
"labels": "Etiquetas",
"language": "Idioma",
"language_description": "Cambiar el idioma de la interfaz de Spacedrive",
"learn_more_about_telemetry": "Aprende más sobre la telemetría",
"libraries": "Bibliotecas",
"libraries_description": "La base de datos contiene todos los datos de la biblioteca y metadatos de archivos.",
"library": "Biblioteca",
"library_name": "Nombre de la Biblioteca",
"library_overview": "Resumen de la Biblioteca",
"library_settings": "Configuraciones de la Biblioteca",
"library_settings_description": "Configuraciones generales relacionadas con la biblioteca activa actualmente.",
"list_view": "Vista de Lista",
"list_view_notice_description": "Navega fácilmente a través de tus archivos y carpetas con la Vista de Lista. Esta vista muestra tus archivos en un formato de lista simple y organizado, permitiéndote localizar y acceder rápidamente a los archivos que necesitas.",
"loading": "Cargando",
"local": "Local",
"local_locations": "Ubicaciones Locales",
"local_node": "Nodo Local",
"location_connected_tooltip": "La ubicación está siendo vigilada en busca de cambios",
"location_disconnected_tooltip": "La ubicación no está siendo vigilada en busca de cambios",
"location_display_name_info": "El nombre de esta Ubicación, esto es lo que se mostrará en la barra lateral. No renombrará la carpeta real en el disco.",
"location_is_already_linked": "Ubicación ya está vinculada",
"location_path_info": "La ruta a esta Ubicación, aquí es donde los archivos serán almacenados en el disco.",
"location_type": "Tipo de Ubicación",
"location_type_managed": "Spacedrive ordenará los archivos por ti. Si la Ubicación no está vacía se creará una carpeta \"spacedrive\".",
"location_type_normal": "El contenido será indexado como está, los nuevos archivos no serán ordenados automáticamente.",
"location_type_replica": "Esta Ubicación es una réplica de otra, su contenido será sincronizado automáticamente.",
"locations": "Ubicaciones",
"locations_description": "Administra tus ubicaciones de almacenamiento.",
"lock": "Bloquear",
"log_in_with_browser": "Iniciar sesión con el navegador",
"log_out": "Cerrar sesión",
"logged_in_as": "Conectado como {{email}}",
"logout": "Cerrar sesión",
"manage_library": "Administrar Biblioteca",
"managed": "Gestionado",
"media": "Medios",
"media_view_context": "Contexto de Vista de Medios",
"media_view_notice_description": "Descubre fotos y videos fácilmente, la Vista de Medios mostrará resultados comenzando en la ubicación actual incluyendo subdirectorios.",
"meet_contributors_behind_spacedrive": "Conoce a los colaboradores detrás de Spacedrive",
"meet_title": "Conoce: {{title}}",
"miles": "Millas",
"mode": "Modo",
"modified": "Modificado",
"more": "Más",
"more_actions": "Más acciones...",
"more_info": "Más información",
"move_back_within_quick_preview": "Retroceder dentro de la vista rápida",
"move_files": "Mover Archivos",
"move_forward_within_quick_preview": "Avanzar dentro de la vista rápida",
"name": "Nombre",
"navigate_back": "Navegar hacia atrás",
"navigate_backwards": "Navegar hacia atrás",
"navigate_files_downwards": "Navegar archivos hacia abajo",
"navigate_files_leftwards": "Navegar archivos hacia la izquierda",
"navigate_files_rightwards": "Navegar archivos hacia la derecha",
"navigate_files_upwards": "Navegar archivos hacia arriba",
"navigate_forward": "Navegar hacia adelante",
"navigate_forwards": "Navegar hacia adelante",
"navigate_to_settings_page": "Navegar a la página de ajustes",
"network": "Red",
"network_page_description": "Otros nodos de Spacedrive en tu LAN aparecerán aquí, junto con tus montajes de red del sistema operativo por defecto.",
"networking": "Redes",
"networking_port": "Puerto de Redes",
"networking_port_description": "El puerto para que la red peer-to-peer de Spacedrive se comunique. Deberías dejar esto deshabilitado a menos que tengas un firewall restrictivo. ¡No expongas al internet!",
"new_folder": "Nueva carpeta",
"new_library": "Nueva biblioteca",
"new_location": "Nueva ubicación",
"new_location_web_description": "Como estás utilizando la versión de navegador de Spacedrive, por ahora tendrás que especificar una URL absoluta de un directorio local al nodo remoto.",
"new_tab": "Nueva pestaña",
"new_tag": "Nueva etiqueta",
"no_files_found_here": "No se encontraron archivos aquí",
"no_jobs": "No hay trabajos.",
"no_tag_selected": "No se seleccionó etiqueta",
"no_tags": "No hay etiquetas",
"node_name": "Nombre del Nodo",
"no_nodes_found": "No se encontraron nodos de Spacedrive.",
"nodes": "Nodos",
"nodes_description": "Administra los nodos conectados a esta biblioteca. Un nodo es una instancia del backend de Spacedrive, ejecutándose en un dispositivo o servidor. Cada nodo lleva una copia de la base de datos y se sincroniza mediante conexiones peer-to-peer en tiempo real.",
"none": "Ninguno",
"normal": "Normal",
"not_you": "¿No eres tú?",
"number_of_passes": "# de pasadas",
"object_id": "ID de Objeto",
"offline": "Fuera de línea",
"online": "En línea",
"open": "Abrir",
"open_file": "Abrir Archivo",
"open_new_location_once_added": "Abrir nueva ubicación una vez agregada",
"open_new_tab": "Abrir nueva pestaña",
"open_object": "Abrir objeto",
"open_object_from_quick_preview_in_native_file_manager": "Abrir objeto desde la vista rápida en el administrador de archivos nativo",
"open_settings": "Abrir Configuraciones",
"open_with": "Abrir con",
"or": "O",
"overview": "Resumen",
"page": "Página",
"page_shortcut_description": "Diferentes páginas en la aplicación",
"pair": "Emparejar",
"pairing_with_node": "Emparejando con {{node}}",
"paste": "Pegar",
"paste_object": "Pegar objeto",
"paste_success": "Elementos pegados",
"path": "Ruta",
"path_copied_to_clipboard_description": "Ruta para la ubicación {{location}} copiada al portapapeles.",
"path_copied_to_clipboard_title": "Ruta copiada al portapapeles",
"pause": "Pausar",
"peers": "Pares",
"people": "Gente",
"privacy": "Privacidad",
"privacy_description": "Spacedrive está construido para la privacidad, es por eso que somos de código abierto y primero locales. Por eso, haremos muy claro qué datos se comparten con nosotros.",
"quick_preview": "Vista rápida",
"quick_view": "Vista rápida",
"recent_jobs": "Trabajos recientes",
"recents": "Recientes",
"regen_labels": "Regenerar Etiquetas",
"regen_thumbnails": "Regenerar Miniaturas",
"regenerate_thumbs": "Regenerar Miniaturas",
"reindex": "Reindexar",
"reject": "Rechazar",
"reload": "Recargar",
"remove": "Eliminar",
"remove_from_recents": "Eliminar de Recientes",
"rename": "Renombrar",
"rename_object": "Renombrar objeto",
"replica": "Réplica",
"rescan_directory": "Reescanear Directorio",
"rescan_location": "Reescanear Ubicación",
"reset": "Restablecer",
"resources": "Recursos",
"restore": "Restaurar",
"resume": "Reanudar",
"retry": "Reintentar",
"reveal_in_native_file_manager": "Revelar en el administrador de archivos nativo",
"revel_in_browser": "Mostrar en {{browser}}",
"running": "Ejecutando",
"save": "Guardar",
"save_changes": "Guardar Cambios",
"saved_searches": "Búsquedas Guardadas",
"search_extensions": "Buscar extensiones",
"secure_delete": "Borrado seguro",
"security": "Seguridad",
"security_description": "Mantén tu cliente seguro.",
"send": "Enviar",
"settings": "Configuraciones",
"setup": "Configurar",
"share": "Compartir",
"share_anonymous_usage": "Compartir uso anónimo",
"share_anonymous_usage_description": "Compartir datos de telemetría completamente anónimos para ayudar a los desarrolladores a mejorar la aplicación",
"share_bare_minimum": "Compartir lo mínimo indispensable",
"share_bare_minimum_description": "Solo compartir que soy un usuario activo de Spacedrive y algunos detalles técnicos",
"sharing": "Compartiendo",
"sharing_description": "Administra quién tiene acceso a tus bibliotecas.",
"show_details": "Mostrar detalles",
"show_hidden_files": "Mostrar Archivos Ocultos",
"show_object_size": "Mostrar Tamaño del Objeto",
"show_path_bar": "Mostrar Barra de Ruta",
"show_slider": "Mostrar deslizador",
"size": "Tamaño",
"skip_login": "Saltar inicio de sesión",
"sort_by": "Ordenar por",
"spacedrive_account": "Cuenta de Spacedrive",
"spacedrive_cloud": "Spacedrive Cloud",
"spacedrive_cloud_description": "Spacedrive siempre es primero local, pero ofreceremos nuestros propios servicios en la nube opcionalmente en el futuro. Por ahora, la autenticación solo se utiliza para la función de retroalimentación, de lo contrario no es requerida.",
"spacedrop_a_file": "Soltar un Archivo",
"spacedrop_description": "Comparta al instante con dispositivos que ejecuten Spacedrive en su red.",
"spacedrop_already_progress": "Spacedrop ya está en progreso",
"spacedrop_rejected": "Spacedrop rechazado",
"square_thumbnails": "Miniaturas Cuadradas",
"star_on_github": "Dar estrella en GitHub",
"stop": "Detener",
"success": "Éxito",
"support": "Soporte",
"switch_to_grid_view": "Cambiar a vista de cuadrícula",
"switch_to_list_view": "Cambiar a vista de lista",
"switch_to_media_view": "Cambiar a vista de medios",
"switch_to_next_tab": "Cambiar a la siguiente pestaña",
"switch_to_previous_tab": "Cambiar a la pestaña anterior",
"sync": "Sincronizar",
"syncPreviewMedia_label": "Sincronizar medios de vista previa para esta Ubicación con tus dispositivos",
"sync_description": "Administra cómo se sincroniza Spacedrive.",
"sync_with_library": "Sincronizar con la Biblioteca",
"sync_with_library_description": "Si se habilita, tus atajos de teclado se sincronizarán con la biblioteca, de lo contrario solo se aplicarán a este cliente.",
"tags": "Etiquetas",
"tags_description": "Administra tus etiquetas.",
"telemetry_description": "Activa para proporcionar a los desarrolladores datos detallados de uso y telemetría para mejorar la aplicación. Desactiva para enviar solo datos básicos: tu estado de actividad, versión de la aplicación, versión central y plataforma (por ejemplo, móvil, web o escritorio).",
"telemetry_title": "Compartir datos adicionales de telemetría y uso",
"temperature": "Temperatura",
"thank_you_for_your_feedback": "¡Gracias por tu retroalimentación!",
"thumbnailer_cpu_usage": "Uso de CPU del generador de miniaturas",
"thumbnailer_cpu_usage_description": "Limita cuánto CPU puede usar el generador de miniaturas para el procesamiento en segundo plano.",
"toggle_all": "Seleccionar todo",
"toggle_hidden_files": "Alternar archivos ocultos",
"toggle_image_slider_within_quick_preview": "Alternar deslizador de imágenes dentro de la vista rápida",
"toggle_inspector": "Alternar inspector",
"toggle_job_manager": "Alternar el gestor de trabajos",
"toggle_metadata": "Alternar metadatos",
"toggle_path_bar": "Alternar barra de ruta",
"toggle_quick_preview": "Alternar vista rápida",
"type": "Tipo",
"ui_animations": "Animaciones de la UI",
"ui_animations_description": "Los diálogos y otros elementos de la UI se animarán al abrirse y cerrarse.",
"unnamed_location": "Ubicación sin nombre",
"usage": "Uso",
"usage_description": "Tu uso de la biblioteca e información del hardware",
"value": "Valor",
"video_preview_not_supported": "La vista previa de video no es soportada.",
"want_to_do_this_later": "¿Quieres hacer esto más tarde?",
"website": "Sitio web",
"your_account": "Tu cuenta",
"your_account_description": "Cuenta de Spacedrive e información.",
"your_local_network": "Tu Red Local",
"your_privacy": "Tu Privacidad",
"new_update_available": "¡Nueva actualización disponible!",
"version": "Versión {{version}}",
"downloading_update": "Descargando actualización",
"update_downloaded": "Actualización descargada. Reinicia Spacedrive para instalar",
"failed_to_download_update": "Error al descargar la actualización",
"updated_successfully": "Actualizado correctamente, estás en la versión {{version}}",
"view_changes": "Ver cambios",
"update": "Actualizar",
"ask_spacedrive": "Pregúntale a SpaceDrive",
"close_command_palette": "Cerrar paleta de comandos",
"disconnected": "Desconectado",
"go_to_labels": "Ir a etiquetas",
"go_to_location": "Ir a la ubicación",
"go_to_overview": "Ir a la descripción general",
"go_to_recents": "Ir a recientes",
"go_to_settings": "Ir a la configuración",
"go_to_tag": "Ir a la etiqueta",
"no_labels": "Sin etiquetas",
"search_for_files_and_actions": "Buscar archivos y acciones...",
"toggle_command_palette": "Alternar paleta de comandos"
"about": "Acerca de",
"about_vision_text": "Muchos de nosotros tenemos múltiples cuentas en la nube, discos que no tienen copias de seguridad y datos en riesgo de ser perdidos. Dependemos de servicios en la nube como Google Photos e iCloud, pero estamos limitados con una capacidad reducida y casi cero interoperabilidad entre servicios y sistemas operativos. Los álbumes de fotos no deberían estar atascados en un ecosistema de dispositivos o ser utilizados para datos publicitarios. Deberían ser independientes del SO, permanentes y de propiedad personal. Los datos que creamos son nuestro legado, que nos sobrevivirá mucho tiempo: la tecnología de código abierto es la única forma de asegurarnos de mantener el control absoluto sobre los datos que definen nuestras vidas, en una escala ilimitada.",
"about_vision_title": "Visión",
"accept": "Aceptar",
"accessed": "Accedido",
"account": "Cuenta",
"actions": "Acciones",
"add": "Agregar",
"add_device": "Agregar Dispositivo",
"add_library": "Agregar Biblioteca",
"add_location": "Agregar ubicación",
"add_location_description": "Mejora tu experiencia en Spacedrive agregando tus ubicaciones favoritas a tu biblioteca personal, para una gestión de archivos eficiente y sin interrupciones.",
"add_location_tooltip": "Agregar ruta como una ubicación indexada",
"add_locations": "Agregar Ubicaciones",
"add_tag": "Agregar Etiqueta",
"advanced_settings": "Configuración avanzada",
"all_jobs_have_been_cleared": "Todos los trabajos han sido eliminados.",
"alpha_release_description": "Estamos encantados de que pruebes Spacedrive, ahora en lanzamiento Alpha, mostrando nuevas funcionalidades emocionantes. Como con cualquier lanzamiento inicial, esta versión puede contener algunos errores. Amablemente solicitamos tu ayuda para informar cualquier problema que encuentres en nuestro canal de Discord. Tu valiosa retroalimentación contribuirá en gran medida a mejorar la experiencia de usuario.",
"alpha_release_title": "Lanzamiento Alpha",
"appearance": "Apariencia",
"appearance_description": "Cambia la apariencia de tu cliente.",
"archive": "Archivo",
"archive_coming_soon": "El archivado de ubicaciones estará disponible pronto...",
"archive_info": "Extrae datos de la Biblioteca como un archivo, útil para preservar la estructura de carpetas de la Ubicación.",
"are_you_sure": "¿Estás seguro?",
"assign_tag": "Asignar etiqueta",
"audio_preview_not_supported": "La previsualización de audio no está soportada.",
"back": "Atrás",
"backups": "Copias de seguridad",
"backups_description": "Administra tus copias de seguridad de la base de datos de Spacedrive.",
"blur_effects": "Efectos de desenfoque",
"blur_effects_description": "Algunos componentes tendrán un efecto de desenfoque aplicado.",
"cancel": "Cancelar",
"cancel_selection": "Cancelar selección",
"celcius": "Celsius",
"change": "Cambiar",
"changelog": "Registro de cambios",
"changelog_page_description": "Mira qué nuevas funciones geniales estamos creando",
"changelog_page_title": "Registro de cambios",
"checksum": "Suma de verificación",
"clear_finished_jobs": "Eliminar trabajos finalizados",
"client": "Cliente",
"close": "Cerrar",
"close_current_tab": "Cerrar pestaña actual",
"clouds": "Nubes",
"color": "Color",
"coming_soon": "Próximamente",
"compress": "Comprimir",
"configure_location": "Configurar Ubicación",
"connected": "Conectado",
"contacts": "Contactos",
"contacts_description": "Administra tus contactos en Spacedrive.",
"content_id": "ID de contenido",
"continue": "Continuar",
"convert_to": "Convertir a",
"coordinates": "Coordenadas",
"copied": "Copiado",
"copy": "Copiar",
"copy_as_path": "Copiar como ruta",
"copy_object": "Copiar objeto",
"copy_path_to_clipboard": "Copiar ruta al portapapeles",
"copy_success": "Elementos copiados",
"create": "Crear",
"create_library": "Crear una Biblioteca",
"create_library_description": "Las bibliotecas son una base de datos segura, en el dispositivo. Tus archivos permanecen donde están, la Biblioteca los cataloga y almacena todos los datos relacionados con Spacedrive.",
"create_new_library": "Crear nueva biblioteca",
"create_new_library_description": "Las bibliotecas son una base de datos segura, en el dispositivo. Tus archivos permanecen donde están, la Biblioteca los cataloga y almacena todos los datos relacionados con Spacedrive.",
"create_new_tag": "Crear Nueva Etiqueta",
"create_new_tag_description": "Elige un nombre y un color.",
"create_tag": "Crear Etiqueta",
"created": "Creado",
"creating_library": "Creando biblioteca...",
"creating_your_library": "Creando tu biblioteca",
"current": "Actual",
"current_directory": "Directorio Actual",
"current_directory_with_descendants": "Directorio Actual Con Descendientes",
"custom": "Personalizado",
"cut": "Cortar",
"cut_object": "Cortar objeto",
"cut_success": "Elementos cortados",
"data_folder": "Carpeta de datos",
"debug_mode": "Modo de depuración",
"debug_mode_description": "Habilitar funciones de depuración adicionales dentro de la aplicación.",
"default": "Predeterminado",
"delete": "Eliminar",
"delete_dialog_title": "Eliminar {{prefix}} {{type}}",
"delete_info": "Esto no eliminará la carpeta real en el disco. Los medios de vista previa serán eliminados.",
"delete_library": "Eliminar Biblioteca",
"delete_library_description": "Esto es permanente, tus archivos no serán eliminados, solo la biblioteca de Spacedrive.",
"delete_location": "Eliminar Ubicación",
"delete_location_description": "Eliminar una ubicación también removerá todos los archivos asociados con ella de la base de datos de Spacedrive, los archivos mismos no serán eliminados.",
"delete_object": "Eliminar objeto",
"delete_rule": "Eliminar regla",
"delete_tag": "Eliminar Etiqueta",
"delete_tag_description": "¿Estás seguro de que quieres eliminar esta etiqueta? Esto no se puede deshacer y los archivos etiquetados serán desvinculados.",
"delete_warning": "Advertencia: Esto eliminará tu {{type}} para siempre, aún no tenemos papelera...",
"description": "Descripción",
"deselect": "Deseleccionar",
"details": "Detalles",
"devices": "Dispositivos",
"devices_coming_soon_tooltip": "¡Próximamente! Esta versión alfa no incluye la sincronización de bibliotecas, estará lista muy pronto.",
"dialog": "Diálogo",
"dialog_shortcut_description": "Para realizar acciones y operaciones",
"direction": "Dirección",
"disabled": "Deshabilitado",
"display_formats": "Formatos de visualización",
"display_name": "Nombre visible",
"distance": "Distancia",
"done": "Hecho",
"dont_show_again": "No mostrar de nuevo",
"double_click_action": "Acción de doble clic",
"download": "Descargar",
"duplicate": "Duplicar",
"duplicate_object": "Duplicar objeto",
"duplicate_success": "Elementos duplicados",
"edit": "Editar",
"edit_library": "Editar Biblioteca",
"edit_location": "Editar Ubicación",
"enable_networking": "Habilitar Redes",
"encrypt": "Encriptar",
"encrypt_library": "Encriptar Biblioteca",
"encrypt_library_coming_soon": "Encriptación de biblioteca próximamente",
"encrypt_library_description": "Habilitar la encriptación para esta biblioteca, esto solo encriptará la base de datos de Spacedrive, no los archivos en sí.",
"ephemeral_notice_browse": "Explora tus archivos y carpetas directamente desde tu dispositivo.",
"ephemeral_notice_consider_indexing": "Considera indexar tus ubicaciones locales para una exploración más rápida y eficiente.",
"erase": "Borrar",
"erase_a_file": "Borrar un archivo",
"erase_a_file_description": "Configura tus ajustes de borrado.",
"error": "Error",
"error_loading_original_file": "Error cargando el archivo original",
"expand": "Expandir",
"explorer": "Explorador",
"explorer_shortcut_description": "Para navegar e interactuar con el sistema de archivos",
"export": "Exportar",
"export_library": "Exportar Biblioteca",
"export_library_coming_soon": "Exportación de biblioteca próximamente",
"export_library_description": "Exporta esta biblioteca a un archivo.",
"extensions": "Extensiones",
"extensions_description": "Instala extensiones para extender la funcionalidad de este cliente.",
"fahrenheit": "Fahrenheit",
"failed_to_cancel_job": "Error al cancelar el trabajo.",
"failed_to_clear_all_jobs": "Error al eliminar todos los trabajos.",
"failed_to_copy_file": "Error al copiar el archivo",
"failed_to_copy_file_path": "Error al copiar la ruta del archivo",
"failed_to_cut_file": "Error al cortar el archivo",
"failed_to_duplicate_file": "Error al duplicar el archivo",
"failed_to_generate_checksum": "Error al generar suma de verificación",
"failed_to_generate_labels": "Error al generar etiquetas",
"failed_to_generate_thumbnails": "Error al generar miniaturas",
"failed_to_load_tags": "Error al cargar etiquetas",
"failed_to_pause_job": "Error al pausar el trabajo.",
"failed_to_reindex_location": "Error al reindexar ubicación",
"failed_to_remove_file_from_recents": "Error al eliminar archivo de recientes",
"failed_to_remove_job": "Error al eliminar el trabajo.",
"failed_to_rescan_location": "Error al volver a escanear ubicación",
"failed_to_resume_job": "Error al reanudar el trabajo.",
"failed_to_update_location_settings": "Error al actualizar configuraciones de ubicación",
"favorite": "Favorito",
"favorites": "Favoritos",
"feedback": "Retroalimentación",
"feedback_is_required": "La retroalimentación es obligatoria",
"feedback_login_description": "Iniciar sesión nos permite responder a tu retroalimentación",
"feedback_placeholder": "Tu retroalimentación...",
"feedback_toast_error_message": "Hubo un error al enviar tu retroalimentación. Por favor, inténtalo de nuevo.",
"file_already_exist_in_this_location": "El archivo ya existe en esta ubicación",
"file_indexing_rules": "Reglas de indexación de archivos",
"filters": "Filtros",
"forward": "Adelante",
"full_disk_access": "Acceso completo al disco",
"full_disk_access_description": "Para proporcionar la mejor experiencia, necesitamos acceso a tu disco para indexar tus archivos. Tus archivos solo están disponibles para ti.",
"full_reindex": "Reindexación completa",
"full_reindex_info": "Realiza un escaneo completo de esta Ubicación.",
"general": "General",
"general_settings": "Configuraciones Generales",
"general_settings_description": "Configuraciones generales relacionadas con este cliente.",
"general_shortcut_description": "Atajos de uso general",
"generatePreviewMedia_label": "Generar medios de vista previa para esta Ubicación",
"generate_checksums": "Generar Sumas de Verificación",
"go_back": "Regresar",
"got_it": "Entendido",
"grid_gap": "Espaciado",
"grid_view": "Vista de Cuadrícula",
"grid_view_notice_description": "Obtén una visión general de tus archivos con la Vista de Cuadrícula. Esta vista muestra tus archivos y carpetas como imágenes en miniatura, facilitando la identificación rápida del archivo que buscas.",
"hidden_label": "Evita que la ubicación y su contenido aparezcan en categorías resumen, búsqueda y etiquetas a menos que \"Mostrar elementos ocultos\" esté habilitado.",
"hide_in_library_search": "Ocultar en la búsqueda de la Biblioteca",
"hide_in_library_search_description": "Oculta archivos con esta etiqueta de los resultados al buscar en toda la biblioteca.",
"hide_in_sidebar": "Ocultar en la barra lateral",
"hide_in_sidebar_description": "Prevenir que esta etiqueta se muestre en la barra lateral de la aplicación.",
"hide_location_from_view": "Ocultar ubicación y contenido de la vista",
"home": "Inicio",
"image_labeler_ai_model": "Modelo AI de reconocimiento de etiquetas de imagen",
"image_labeler_ai_model_description": "El modelo utilizado para reconocer objetos en imágenes. Los modelos más grandes son más precisos pero más lentos.",
"import": "Importar",
"indexed": "Indexado",
"indexer_rule_reject_allow_label": "Por defecto, una regla de indexación funciona como una lista de Rechazo, resultando en la exclusión de cualquier archivo que coincida con sus criterios. Habilitar esta opción transformará en una lista de Permitir, permitiendo que la ubicación indexe solo archivos que cumplan con sus reglas especificadas.",
"indexer_rules": "Reglas de indexación",
"indexer_rules_info": "Las reglas de indexación te permiten especificar rutas a ignorar usando comodines.",
"install": "Instalar",
"install_update": "Instalar Actualización",
"installed": "Instalado",
"item_size": "Tamaño de elemento",
"item_with_count_one": "{{count}} artículo",
"item_with_count_other": "{{count}} artículos",
"job_has_been_canceled": "El trabajo ha sido cancelado.",
"job_has_been_paused": "El trabajo ha sido pausado.",
"job_has_been_removed": "El trabajo ha sido eliminado.",
"job_has_been_resumed": "El trabajo ha sido reanudado.",
"join": "Unirse",
"join_discord": "Unirse a Discord",
"join_library": "Unirse a una Biblioteca",
"join_library_description": "Las bibliotecas son una base de datos segura, en el dispositivo. Tus archivos permanecen donde están, la Biblioteca los cataloga y almacena todos los datos relacionados con Spacedrive.",
"key": "Clave",
"key_manager": "Administrador de Claves",
"key_manager_description": "Crea claves de encriptación, monta y desmonta tus claves para ver archivos desencriptados al vuelo.",
"keybinds": "Atajos de Teclado",
"keybinds_description": "Ver y administrar atajos de teclado del cliente",
"keys": "Claves",
"kilometers": "Kilómetros",
"labels": "Etiquetas",
"language": "Idioma",
"language_description": "Cambiar el idioma de la interfaz de Spacedrive",
"learn_more_about_telemetry": "Aprende más sobre la telemetría",
"libraries": "Bibliotecas",
"libraries_description": "La base de datos contiene todos los datos de la biblioteca y metadatos de archivos.",
"library": "Biblioteca",
"library_name": "Nombre de la Biblioteca",
"library_overview": "Resumen de la Biblioteca",
"library_settings": "Configuraciones de la Biblioteca",
"library_settings_description": "Configuraciones generales relacionadas con la biblioteca activa actualmente.",
"list_view": "Vista de Lista",
"list_view_notice_description": "Navega fácilmente a través de tus archivos y carpetas con la Vista de Lista. Esta vista muestra tus archivos en un formato de lista simple y organizado, permitiéndote localizar y acceder rápidamente a los archivos que necesitas.",
"loading": "Cargando",
"local": "Local",
"local_locations": "Ubicaciones Locales",
"local_node": "Nodo Local",
"location_connected_tooltip": "La ubicación está siendo vigilada en busca de cambios",
"location_disconnected_tooltip": "La ubicación no está siendo vigilada en busca de cambios",
"location_display_name_info": "El nombre de esta Ubicación, esto es lo que se mostrará en la barra lateral. No renombrará la carpeta real en el disco.",
"location_is_already_linked": "Ubicación ya está vinculada",
"location_path_info": "La ruta a esta Ubicación, aquí es donde los archivos serán almacenados en el disco.",
"location_type": "Tipo de Ubicación",
"location_type_managed": "Spacedrive ordenará los archivos por ti. Si la Ubicación no está vacía se creará una carpeta \"spacedrive\".",
"location_type_normal": "El contenido será indexado como está, los nuevos archivos no serán ordenados automáticamente.",
"location_type_replica": "Esta Ubicación es una réplica de otra, su contenido será sincronizado automáticamente.",
"locations": "Ubicaciones",
"locations_description": "Administra tus ubicaciones de almacenamiento.",
"lock": "Bloquear",
"log_in_with_browser": "Iniciar sesión con el navegador",
"log_out": "Cerrar sesión",
"logged_in_as": "Conectado como {{email}}",
"logout": "Cerrar sesión",
"manage_library": "Administrar Biblioteca",
"managed": "Gestionado",
"media": "Medios",
"media_view_context": "Contexto de Vista de Medios",
"media_view_notice_description": "Descubre fotos y videos fácilmente, la Vista de Medios mostrará resultados comenzando en la ubicación actual incluyendo subdirectorios.",
"meet_contributors_behind_spacedrive": "Conoce a los colaboradores detrás de Spacedrive",
"meet_title": "Conoce: {{title}}",
"miles": "Millas",
"mode": "Modo",
"modified": "Modificado",
"more": "Más",
"more_actions": "Más acciones...",
"more_info": "Más información",
"move_back_within_quick_preview": "Retroceder dentro de la vista rápida",
"move_files": "Mover Archivos",
"move_forward_within_quick_preview": "Avanzar dentro de la vista rápida",
"name": "Nombre",
"navigate_back": "Navegar hacia atrás",
"navigate_backwards": "Navegar hacia atrás",
"navigate_files_downwards": "Navegar archivos hacia abajo",
"navigate_files_leftwards": "Navegar archivos hacia la izquierda",
"navigate_files_rightwards": "Navegar archivos hacia la derecha",
"navigate_files_upwards": "Navegar archivos hacia arriba",
"navigate_forward": "Navegar hacia adelante",
"navigate_forwards": "Navegar hacia adelante",
"navigate_to_settings_page": "Navegar a la página de ajustes",
"network": "Red",
"network_page_description": "Otros nodos de Spacedrive en tu LAN aparecerán aquí, junto con tus montajes de red del sistema operativo por defecto.",
"networking": "Redes",
"networking_port": "Puerto de Redes",
"networking_port_description": "El puerto para que la red peer-to-peer de Spacedrive se comunique. Deberías dejar esto deshabilitado a menos que tengas un firewall restrictivo. ¡No expongas al internet!",
"new_folder": "Nueva carpeta",
"new_library": "Nueva biblioteca",
"new_location": "Nueva ubicación",
"new_location_web_description": "Como estás utilizando la versión de navegador de Spacedrive, por ahora tendrás que especificar una URL absoluta de un directorio local al nodo remoto.",
"new_tab": "Nueva pestaña",
"new_tag": "Nueva etiqueta",
"no_files_found_here": "No se encontraron archivos aquí",
"no_jobs": "No hay trabajos.",
"no_tag_selected": "No se seleccionó etiqueta",
"no_tags": "No hay etiquetas",
"node_name": "Nombre del Nodo",
"no_nodes_found": "No se encontraron nodos de Spacedrive.",
"nodes": "Nodos",
"nodes_description": "Administra los nodos conectados a esta biblioteca. Un nodo es una instancia del backend de Spacedrive, ejecutándose en un dispositivo o servidor. Cada nodo lleva una copia de la base de datos y se sincroniza mediante conexiones peer-to-peer en tiempo real.",
"none": "Ninguno",
"normal": "Normal",
"not_you": "¿No eres tú?",
"number_of_passes": "# de pasadas",
"object_id": "ID de Objeto",
"offline": "Fuera de línea",
"online": "En línea",
"open": "Abrir",
"open_file": "Abrir Archivo",
"open_new_location_once_added": "Abrir nueva ubicación una vez agregada",
"open_new_tab": "Abrir nueva pestaña",
"open_object": "Abrir objeto",
"open_object_from_quick_preview_in_native_file_manager": "Abrir objeto desde la vista rápida en el administrador de archivos nativo",
"open_settings": "Abrir Configuraciones",
"open_with": "Abrir con",
"or": "O",
"overview": "Resumen",
"page": "Página",
"page_shortcut_description": "Diferentes páginas en la aplicación",
"pair": "Emparejar",
"pairing_with_node": "Emparejando con {{node}}",
"paste": "Pegar",
"paste_object": "Pegar objeto",
"paste_success": "Elementos pegados",
"path": "Ruta",
"path_copied_to_clipboard_description": "Ruta para la ubicación {{location}} copiada al portapapeles.",
"path_copied_to_clipboard_title": "Ruta copiada al portapapeles",
"pause": "Pausar",
"peers": "Pares",
"people": "Gente",
"privacy": "Privacidad",
"privacy_description": "Spacedrive está construido para la privacidad, es por eso que somos de código abierto y primero locales. Por eso, haremos muy claro qué datos se comparten con nosotros.",
"quick_preview": "Vista rápida",
"quick_view": "Vista rápida",
"recent_jobs": "Trabajos recientes",
"recents": "Recientes",
"regen_labels": "Regenerar Etiquetas",
"regen_thumbnails": "Regenerar Miniaturas",
"regenerate_thumbs": "Regenerar Miniaturas",
"reindex": "Reindexar",
"reject": "Rechazar",
"reload": "Recargar",
"remove": "Eliminar",
"remove_from_recents": "Eliminar de Recientes",
"rename": "Renombrar",
"rename_object": "Renombrar objeto",
"replica": "Réplica",
"rescan_directory": "Reescanear Directorio",
"rescan_location": "Reescanear Ubicación",
"reset": "Restablecer",
"resources": "Recursos",
"restore": "Restaurar",
"resume": "Reanudar",
"retry": "Reintentar",
"reveal_in_native_file_manager": "Revelar en el administrador de archivos nativo",
"revel_in_browser": "Mostrar en {{browser}}",
"running": "Ejecutando",
"save": "Guardar",
"save_changes": "Guardar Cambios",
"saved_searches": "Búsquedas Guardadas",
"search_extensions": "Buscar extensiones",
"secure_delete": "Borrado seguro",
"security": "Seguridad",
"security_description": "Mantén tu cliente seguro.",
"send": "Enviar",
"settings": "Configuraciones",
"setup": "Configurar",
"share": "Compartir",
"share_anonymous_usage": "Compartir uso anónimo",
"share_anonymous_usage_description": "Compartir datos de telemetría completamente anónimos para ayudar a los desarrolladores a mejorar la aplicación",
"share_bare_minimum": "Compartir lo mínimo indispensable",
"share_bare_minimum_description": "Solo compartir que soy un usuario activo de Spacedrive y algunos detalles técnicos",
"sharing": "Compartiendo",
"sharing_description": "Administra quién tiene acceso a tus bibliotecas.",
"show_details": "Mostrar detalles",
"show_hidden_files": "Mostrar Archivos Ocultos",
"show_object_size": "Mostrar Tamaño del Objeto",
"show_path_bar": "Mostrar Barra de Ruta",
"show_slider": "Mostrar deslizador",
"size": "Tamaño",
"skip_login": "Saltar inicio de sesión",
"sort_by": "Ordenar por",
"spacedrive_account": "Cuenta de Spacedrive",
"spacedrive_cloud": "Spacedrive Cloud",
"spacedrive_cloud_description": "Spacedrive siempre es primero local, pero ofreceremos nuestros propios servicios en la nube opcionalmente en el futuro. Por ahora, la autenticación solo se utiliza para la función de retroalimentación, de lo contrario no es requerida.",
"spacedrop_a_file": "Soltar un Archivo",
"spacedrop_description": "Comparta al instante con dispositivos que ejecuten Spacedrive en su red.",
"spacedrop_already_progress": "Spacedrop ya está en progreso",
"spacedrop_rejected": "Spacedrop rechazado",
"square_thumbnails": "Miniaturas Cuadradas",
"star_on_github": "Dar estrella en GitHub",
"stop": "Detener",
"success": "Éxito",
"support": "Soporte",
"switch_to_grid_view": "Cambiar a vista de cuadrícula",
"switch_to_list_view": "Cambiar a vista de lista",
"switch_to_media_view": "Cambiar a vista de medios",
"switch_to_next_tab": "Cambiar a la siguiente pestaña",
"switch_to_previous_tab": "Cambiar a la pestaña anterior",
"sync": "Sincronizar",
"syncPreviewMedia_label": "Sincronizar medios de vista previa para esta Ubicación con tus dispositivos",
"sync_description": "Administra cómo se sincroniza Spacedrive.",
"sync_with_library": "Sincronizar con la Biblioteca",
"sync_with_library_description": "Si se habilita, tus atajos de teclado se sincronizarán con la biblioteca, de lo contrario solo se aplicarán a este cliente.",
"tags": "Etiquetas",
"tags_description": "Administra tus etiquetas.",
"telemetry_description": "Activa para proporcionar a los desarrolladores datos detallados de uso y telemetría para mejorar la aplicación. Desactiva para enviar solo datos básicos: tu estado de actividad, versión de la aplicación, versión central y plataforma (por ejemplo, móvil, web o escritorio).",
"telemetry_title": "Compartir datos adicionales de telemetría y uso",
"temperature": "Temperatura",
"thank_you_for_your_feedback": "¡Gracias por tu retroalimentación!",
"thumbnailer_cpu_usage": "Uso de CPU del generador de miniaturas",
"thumbnailer_cpu_usage_description": "Limita cuánto CPU puede usar el generador de miniaturas para el procesamiento en segundo plano.",
"toggle_all": "Seleccionar todo",
"toggle_hidden_files": "Alternar archivos ocultos",
"toggle_image_slider_within_quick_preview": "Alternar deslizador de imágenes dentro de la vista rápida",
"toggle_inspector": "Alternar inspector",
"toggle_job_manager": "Alternar el gestor de trabajos",
"toggle_metadata": "Alternar metadatos",
"toggle_path_bar": "Alternar barra de ruta",
"toggle_quick_preview": "Alternar vista rápida",
"type": "Tipo",
"ui_animations": "Animaciones de la UI",
"ui_animations_description": "Los diálogos y otros elementos de la UI se animarán al abrirse y cerrarse.",
"unnamed_location": "Ubicación sin nombre",
"usage": "Uso",
"usage_description": "Tu uso de la biblioteca e información del hardware",
"value": "Valor",
"video_preview_not_supported": "La vista previa de video no es soportada.",
"want_to_do_this_later": "¿Quieres hacer esto más tarde?",
"website": "Sitio web",
"your_account": "Tu cuenta",
"your_account_description": "Cuenta de Spacedrive e información.",
"your_local_network": "Tu Red Local",
"your_privacy": "Tu Privacidad",
"new_update_available": "¡Nueva actualización disponible!",
"version": "Versión {{version}}",
"downloading_update": "Descargando actualización",
"update_downloaded": "Actualización descargada. Reinicia Spacedrive para instalar",
"failed_to_download_update": "Error al descargar la actualización",
"updated_successfully": "Actualizado correctamente, estás en la versión {{version}}",
"view_changes": "Ver cambios",
"update": "Actualizar",
"ask_spacedrive": "Pregúntale a SpaceDrive",
"close_command_palette": "Cerrar paleta de comandos",
"disconnected": "Desconectado",
"go_to_labels": "Ir a etiquetas",
"go_to_location": "Ir a la ubicación",
"go_to_overview": "Ir a la descripción general",
"go_to_recents": "Ir a recientes",
"go_to_settings": "Ir a la configuración",
"go_to_tag": "Ir a la etiqueta",
"no_labels": "Sin etiquetas",
"search_for_files_and_actions": "Buscar archivos y acciones...",
"toggle_command_palette": "Alternar paleta de comandos"
}

View file

@ -1,452 +1,452 @@
{
"about": "À propos",
"about_vision_text": "Beaucoup d'entre nous ont plusieurs comptes cloud, des disques qui ne sont pas sauvegardés et des données à risque de perte. Nous dépendons de services cloud comme Google Photos et iCloud, mais sommes enfermés avec une capacité limitée et presque zéro interopérabilité entre les services et les systèmes d'exploitation. Les albums photo ne devraient pas être coincés dans un écosystème d'appareils, ou récoltés pour des données publicitaires. Ils devraient être indépendants du système d'exploitation, permanents et personnels. Les données que nous créons sont notre héritage, qui nous survivra longtemps - la technologie open source est le seul moyen d'assurer que nous conservons un contrôle absolu sur les données qui définissent nos vies, à une échelle illimitée.",
"about_vision_title": "Vision",
"accept": "Accepter",
"accessed": "Accédé",
"account": "Compte",
"actions": "Actions",
"add": "Ajouter",
"add_device": "Ajouter un appareil",
"add_library": "Ajouter une bibliothèque",
"add_location": "Ajouter un emplacement",
"add_location_description": "Améliorez votre expérience Spacedrive en ajoutant vos emplacements préférés à votre bibliothèque personnelle, pour une gestion des fichiers fluide et efficace.",
"add_location_tooltip": "Ajouter le chemin comme emplacement indexé",
"add_locations": "Ajouter des emplacements",
"add_tag": "Ajouter une étiquette",
"advanced_settings": "Paramètres avancés",
"all_jobs_have_been_cleared": "Tous les travaux ont été annulés.",
"alpha_release_description": "Nous sommes ravis que vous essayiez Spacedrive, maintenant en version Alpha, présentant de nouvelles fonctionnalités excitantes. Comme pour toute première version, cette version peut contenir des bugs. Nous vous demandons gentiment votre aide pour signaler tout problème rencontré sur notre chaîne Discord. Vos précieux retours contribueront grandement à améliorer l'expérience utilisateur.",
"alpha_release_title": "Version Alpha",
"appearance": "Apparence",
"appearance_description": "Changez l'apparence de votre client.",
"archive": "Archiver",
"archive_coming_soon": "L'archivage des emplacements arrive bientôt...",
"archive_info": "Extrayez les données de la bibliothèque sous forme d'archive, utile pour préserver la structure des dossiers de l'emplacement.",
"are_you_sure": "Êtes-vous sûr ?",
"assign_tag": "Attribuer une étiquette",
"audio_preview_not_supported": "L'aperçu audio n'est pas pris en charge.",
"back": "Retour",
"backups": "Sauvegardes",
"backups_description": "Gérez les sauvegardes de votre base de données Spacedrive.",
"blur_effects": "Effets de flou",
"blur_effects_description": "Certains composants se verront appliquer un effet de flou.",
"cancel": "Annuler",
"cancel_selection": "Annuler la sélection",
"celcius": "Celsius",
"change": "Modifier",
"changelog": "Journal des modifications",
"changelog_page_description": "Découvrez les nouvelles fonctionnalités cool que nous développons",
"changelog_page_title": "Changelog",
"checksum": "Somme de contrôle",
"clear_finished_jobs": "Effacer les travaux terminés",
"client": "Client",
"close": "Fermer",
"close_current_tab": "Fermer l'onglet actuel",
"clouds": "Nuages",
"color": "Couleur",
"coming_soon": "Bientôt",
"compress": "Compresser",
"configure_location": "Configurer l'emplacement",
"connected": "Connecté",
"contacts": "Contacts",
"contacts_description": "Gérez vos contacts dans Spacedrive.",
"content_id": "ID de contenu",
"continue": "Continuer",
"convert_to": "Convertir en",
"coordinates": "Coordonnées",
"copied": "Copié",
"copy": "Copier",
"copy_as_path": "Copier en tant que chemin",
"copy_object": "Copier l'objet",
"copy_path_to_clipboard": "Copier le chemin dans le presse-papiers",
"copy_success": "Éléments copiés",
"create": "Créer",
"create_library": "Créer une bibliothèque",
"create_library_description": "Les bibliothèques sont une base de données sécurisée, sur l'appareil. Vos fichiers restent où ils sont, la bibliothèque les catalogue et stocke toutes les données liées à Spacedrive.",
"create_new_library": "Créer une nouvelle bibliothèque",
"create_new_library_description": "Les bibliothèques sont une base de données sécurisée, sur l'appareil. Vos fichiers restent où ils sont, la bibliothèque les catalogue et stocke toutes les données liées à Spacedrive.",
"create_new_tag": "Créer une nouvelle étiquette",
"create_new_tag_description": "Choisissez un nom et une couleur.",
"create_tag": "Créer une étiquette",
"created": "Créé",
"creating_library": "Création de la bibliothèque...",
"creating_your_library": "Création de votre bibliothèque",
"current": "Actuel",
"current_directory": "Répertoire actuel",
"current_directory_with_descendants": "Répertoire actuel avec descendants",
"custom": "Personnalisé",
"cut": "Couper",
"cut_object": "Couper l'objet",
"cut_success": "Éléments coupés",
"data_folder": "Dossier de données",
"debug_mode": "Mode débogage",
"debug_mode_description": "Activez des fonctionnalités de débogage supplémentaires dans l'application.",
"default": "Défaut",
"delete": "Supprimer",
"delete_dialog_title": "Supprimer {{prefix}} {{type}}",
"delete_info": "Cela ne supprimera pas le dossier réel sur le disque. Les médias aperçus seront supprimés.",
"delete_library": "Supprimer la bibliothèque",
"delete_library_description": "Ceci est permanent, vos fichiers ne seront pas supprimés, seule la bibliothèque Spacedrive le sera.",
"delete_location": "Supprimer l'emplacement",
"delete_location_description": "Supprimer un emplacement supprimera également tous les fichiers associés de la base de données Spacedrive, les fichiers eux-mêmes ne seront pas supprimés.",
"delete_object": "Supprimer l'objet",
"delete_rule": "Supprimer la règle",
"delete_tag": "Supprimer l'étiquette",
"delete_tag_description": "Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela ne peut pas être annulé et les fichiers étiquetés seront dissociés.",
"delete_warning": "Attention : Ceci supprimera votre {{type}} pour toujours, nous n'avons pas encore de corbeille...",
"description": "Description",
"deselect": "Désélectionner",
"details": "Détails",
"devices": "Appareils",
"devices_coming_soon_tooltip": "Bientôt disponible ! Cette version alpha n'inclut pas la synchronisation des bibliothèques, cela sera prêt très prochainement.",
"dialog": "Dialogue",
"dialog_shortcut_description": "Pour effectuer des actions et des opérations",
"direction": "Direction",
"disabled": "Désactivé",
"display_formats": "Formats d'affichage",
"display_name": "Nom affiché",
"distance": "Distance",
"done": "Terminé",
"dont_show_again": "Ne plus afficher",
"double_click_action": "Action double clic",
"download": "Télécharger",
"duplicate": "Dupliquer",
"duplicate_object": "Dupliquer l'objet",
"duplicate_success": "Éléments dupliqués",
"edit": "Éditer",
"edit_library": "Éditer la bibliothèque",
"edit_location": "Éditer l'emplacement",
"enable_networking": "Activer le réseau",
"encrypt": "Chiffrer",
"encrypt_library": "Chiffrer la bibliothèque",
"encrypt_library_coming_soon": "Le chiffrement de la bibliothèque arrive bientôt",
"encrypt_library_description": "Activez le chiffrement pour cette bibliothèque, cela ne chiffrera que la base de données Spacedrive, pas les fichiers eux-mêmes.",
"ephemeral_notice_browse": "Parcourez vos fichiers et dossiers directement depuis votre appareil.",
"ephemeral_notice_consider_indexing": "Envisagez d'indexer vos emplacements locaux pour une exploration plus rapide et plus efficace.",
"erase": "Effacer",
"erase_a_file": "Effacer un fichier",
"erase_a_file_description": "Configurez vos paramètres d'effacement.",
"error": "Erreur",
"error_loading_original_file": "Erreur lors du chargement du fichier original",
"expand": "Étendre",
"explorer": "Explorateur",
"explorer_shortcut_description": "Pour naviguer et interagir avec le système de fichiers",
"export": "Exporter",
"export_library": "Exporter la bibliothèque",
"export_library_coming_soon": "L'exportation de la bibliothèque arrivera bientôt",
"export_library_description": "Exporter cette bibliothèque dans un fichier.",
"extensions": "Extensions",
"extensions_description": "Installez des extensions pour étendre la fonctionnalité de ce client.",
"fahrenheit": "Fahrenheit",
"failed_to_cancel_job": "Échec de l'annulation du travail.",
"failed_to_clear_all_jobs": "Échec de l'effacement de tous les travaux.",
"failed_to_copy_file": "Échec de la copie du fichier",
"failed_to_copy_file_path": "Échec de la copie du chemin du fichier",
"failed_to_cut_file": "Échec de la découpe du fichier",
"failed_to_duplicate_file": "Échec de la duplication du fichier",
"failed_to_generate_checksum": "Échec de la génération de la somme de contrôle",
"failed_to_generate_labels": "Échec de la génération des étiquettes",
"failed_to_generate_thumbnails": "Échec de la génération des vignettes",
"failed_to_load_tags": "Échec du chargement des étiquettes",
"failed_to_pause_job": "Échec de la mise en pause du travail.",
"failed_to_reindex_location": "Échec de la réindexation de l'emplacement",
"failed_to_remove_file_from_recents": "Échec de la suppression du fichier des éléments récents",
"failed_to_remove_job": "Échec de la suppression du travail.",
"failed_to_resume_job": "Échec de la reprise du travail.",
"failed_to_update_location_settings": "Échec de la mise à jour des paramètres de l'emplacement",
"favorite": "Favori",
"favorites": "Favoris",
"feedback": "Retour d'information",
"feedback_is_required": "Le retour d'information est requis",
"feedback_login_description": "La connexion nous permet de répondre à votre retour d'information",
"feedback_placeholder": "Votre retour d'information...",
"feedback_toast_error_message": "Une erreur s'est produite lors de l'envoi de votre retour d'information. Veuillez réessayer.",
"file_already_exist_in_this_location": "Le fichier existe déjà à cet emplacement",
"file_indexing_rules": "Règles d'indexation des fichiers",
"filters": "Filtres",
"forward": "Avancer",
"full_disk_access": "Accès complet au disque",
"full_disk_access_description": "Pour offrir la meilleure expérience, nous avons besoin d'accéder à votre disque afin d'indexer vos fichiers. Vos fichiers ne sont accessibles qu'à vous.",
"full_reindex": "Réindexation complète",
"full_reindex_info": "Effectuer un nouveau scan complet de cet emplacement.",
"general": "Général",
"general_settings": "Paramètres généraux",
"general_settings_description": "Paramètres généraux liés à ce client.",
"general_shortcut_description": "Raccourcis d'utilisation générale",
"generatePreviewMedia_label": "Générer des médias d'aperçu pour cet emplacement",
"generate_checksums": "Générer des sommes de contrôle",
"go_back": "Revenir",
"got_it": "Compris",
"grid_gap": "Écartement de grille",
"grid_view": "Vue en grille",
"grid_view_notice_description": "Obtenez un aperçu visuel de vos fichiers avec la vue en grille. Cette vue affiche vos fichiers et dossiers sous forme d'images miniatures, facilitant l'identification rapide du fichier que vous recherchez.",
"hidden_label": "Empêche l'emplacement et son contenu d'apparaître dans les catégories résumées, la recherche et les étiquettes à moins que l'option \"Afficher les éléments cachés\" soit activée.",
"hide_in_library_search": "Masquer dans la recherche de la bibliothèque",
"hide_in_library_search_description": "Masquer les fichiers avec cette étiquette des résultats lors de la recherche dans toute la bibliothèque.",
"hide_in_sidebar": "Masquer dans la barre latérale",
"hide_in_sidebar_description": "Empêcher cette étiquette de s'afficher dans la barre latérale de l'application.",
"hide_location_from_view": "Masquer l'emplacement et le contenu de la vue",
"home": "Accueil",
"image_labeler_ai_model": "Modèle d'IA de reconnaissance d'étiquettes d'image",
"image_labeler_ai_model_description": "Le modèle utilisé pour reconnaître les objets dans les images. Les modèles plus grands sont plus précis mais plus lents.",
"import": "Importer",
"indexed": "Indexé",
"indexer_rule_reject_allow_label": "Par défaut, une règle d'indexeur fonctionne comme une liste de rejet, entraînant l'exclusion de tous les fichiers qui correspondent à ses critères. Activer cette option la transformera en une liste d'autorisation, permettant à l'emplacement d'indexer uniquement les fichiers qui répondent à ses règles spécifiées.",
"indexer_rules": "Règles de l'indexeur",
"indexer_rules_info": "Les règles de l'indexeur vous permettent de spécifier des chemins à ignorer en utilisant des glob patterns.",
"install": "Installer",
"install_update": "Installer la mise à jour",
"installed": "Installé",
"item_size": "Taille de l'élément",
"item_with_count_one": "{{count}} article",
"item_with_count_other": "{{count}} articles",
"job_has_been_canceled": "Le travail a été annulé.",
"job_has_been_paused": "Le travail a été mis en pause.",
"job_has_been_removed": "Le travail a été supprimé.",
"job_has_been_resumed": "Le travail a été repris.",
"join": "Rejoindre",
"join_discord": "Rejoindre Discord",
"join_library": "Rejoindre une bibliothèque",
"join_library_description": "Les bibliothèques sont une base de données sécurisée, sur l'appareil. Vos fichiers restent où ils sont, la bibliothèque les catalogue et stocke toutes les données liées à Spacedrive.",
"key": "Clé",
"key_manager": "Gestionnaire de clés",
"key_manager_description": "Créez des clés de chiffrement, montez et démontez vos clés pour voir les fichiers déchiffrés à la volée.",
"keybinds": "Raccourcis clavier",
"keybinds_description": "Afficher et gérer les raccourcis clavier du client",
"keys": "Clés",
"kilometers": "Kilomètres",
"labels": "Étiquettes",
"language": "Langue",
"language_description": "Changer la langue de l'interface Spacedrive",
"learn_more_about_telemetry": "En savoir plus sur la télémesure",
"libraries": "Bibliothèques",
"libraries_description": "La base de données contient toutes les données de la bibliothèque et les métadonnées des fichiers.",
"library": "Bibliothèque",
"library_name": "Nom de la bibliothèque",
"library_overview": "Aperçu de la bibliothèque",
"library_settings": "Paramètres de la bibliothèque",
"library_settings_description": "Paramètres généraux liés à la bibliothèque actuellement active.",
"list_view": "Vue en liste",
"list_view_notice_description": "Naviguez facilement à travers vos fichiers et dossiers avec la vue en liste. Cette vue affiche vos fichiers dans un format de liste simple et organisé, vous permettant de localiser et d'accéder rapidement aux fichiers dont vous avez besoin.",
"loading": "Chargement",
"local": "Local",
"local_locations": "Emplacements locaux",
"local_node": "Nœud local",
"location_connected_tooltip": "L'emplacement est surveillé pour les changements",
"location_disconnected_tooltip": "L'emplacement n'est pas surveillé pour les changements",
"location_display_name_info": "Le nom de cet emplacement, c'est ce qui sera affiché dans la barre latérale. Ne renommera pas le dossier réel sur le disque.",
"location_is_already_linked": "L'emplacement est déjà lié",
"location_path_info": "Le chemin vers cet emplacement, c'est là que les fichiers seront stockés sur le disque.",
"location_type": "Type d'emplacement",
"location_type_managed": "Spacedrive triera les fichiers pour vous. Si l'emplacement n'est pas vide, un dossier \"spacedrive\" sera créé.",
"location_type_normal": "Le contenu sera indexé tel quel, les nouveaux fichiers ne seront pas automatiquement triés.",
"location_type_replica": "Cet emplacement est une réplique d'un autre, son contenu sera automatiquement synchronisé.",
"locations": "Emplacements",
"locations_description": "Gérez vos emplacements de stockage.",
"lock": "Verrouiller",
"log_in_with_browser": "Se connecter avec le navigateur",
"log_out": "Se déconnecter",
"logged_in_as": "Connecté en tant que {{email}}",
"logout": "Déconnexion",
"manage_library": "Gérer la bibliothèque",
"managed": "Géré",
"media": "Médias",
"media_view_context": "Contexte de vue média",
"media_view_notice_description": "Découvrez facilement les photos et vidéos, la vue média affichera les résultats en commençant par l'emplacement actuel, y compris les sous-répertoires.",
"meet_contributors_behind_spacedrive": "Rencontrez les contributeurs derrière Spacedrive",
"meet_title": "Rencontrer {{title}}",
"miles": "Miles",
"mode": "Mode",
"modified": "Modifié",
"more": "Plus",
"more_actions": "Plus d'actions...",
"more_info": "Plus d'info",
"move_back_within_quick_preview": "Revenir en arrière dans l'aperçu rapide",
"move_files": "Déplacer les fichiers",
"move_forward_within_quick_preview": "Avancer dans l'aperçu rapide",
"name": "Nom",
"navigate_back": "Naviguer en arrière",
"navigate_backwards": "Naviguer vers l'arrière",
"navigate_files_downwards": "Naviguer vers le bas dans les fichiers",
"navigate_files_leftwards": "Naviguer vers la gauche dans les fichiers",
"navigate_files_rightwards": "Naviguer vers la droite dans les fichiers",
"navigate_files_upwards": "Naviguer vers le haut dans les fichiers",
"navigate_forward": "Naviguer en avant",
"navigate_forwards": "Naviguer vers l'avant",
"navigate_to_settings_page": "Accéder à la page des paramètres",
"network": "Réseau",
"network_page_description": "Les autres nœuds Spacedrive de votre LAN apparaîtront ici, ainsi que vos montages réseau par défaut du système d'exploitation.",
"networking": "Réseautage",
"networking_port": "Port réseau",
"networking_port_description": "Le port pour la communication en peer-to-peer de Spacedrive. Vous devriez laisser ceci désactivé à moins que vous n'ayez un pare-feu restrictif. Ne pas exposer à internet !",
"new_folder": "Nouveau dossier",
"new_library": "Nouvelle bibliothèque",
"new_location": "Nouvel emplacement",
"new_location_web_description": "Comme vous utilisez la version navigateur de Spacedrive, vous devrez (pour l'instant) spécifier une URL absolue d'un répertoire local au nœud distant.",
"new_tab": "Nouvel onglet",
"new_tag": "Nouvelle étiquette",
"no_files_found_here": "Aucun fichier trouvé ici",
"no_jobs": "Aucun travail.",
"no_tag_selected": "Aucune étiquette sélectionnée",
"no_tags": "Aucune étiquette",
"node_name": "Nom du nœud",
"no_nodes_found": "Aucun nœud Spacedrive n'a été trouvé.",
"nodes": "Nœuds",
"nodes_description": "Gérez les nœuds connectés à cette bibliothèque. Un nœud est une instance du backend de Spacedrive, s'exécutant sur un appareil ou un serveur. Chaque nœud porte une copie de la base de données et se synchronise via des connexions peer-to-peer en temps réel.",
"none": "Aucun",
"normal": "Normal",
"not_you": "Pas vous ?",
"number_of_passes": "Nombre de passes",
"object_id": "ID de l'objet",
"offline": "Hors ligne",
"online": "En ligne",
"open": "Ouvrir",
"open_file": "Ouvrir le fichier",
"open_new_location_once_added": "Ouvrir le nouvel emplacement une fois ajouté",
"open_new_tab": "Ouvrir un nouvel onglet",
"open_object": "Ouvrir l'objet",
"open_object_from_quick_preview_in_native_file_manager": "Ouvrir l'objet depuis l'aperçu rapide dans le gestionnaire de fichiers natif",
"open_settings": "Ouvrir les paramètres",
"open_with": "Ouvrir avec",
"or": "OU",
"overview": "Aperçu",
"page": "Page",
"page_shortcut_description": "Différentes pages de l'application",
"pair": "Associer",
"pairing_with_node": "Appairage avec {{node}}",
"paste": "Coller",
"paste_object": "Coller l'objet",
"paste_success": "Éléments collés",
"path": "Chemin",
"path_copied_to_clipboard_description": "Chemin pour l'emplacement {{location}} copié dans le presse-papiers.",
"path_copied_to_clipboard_title": "Chemin copié dans le presse-papiers",
"pause": "Pause",
"peers": "Pairs",
"people": "Personnes",
"privacy": "Confidentialité",
"privacy_description": "Spacedrive est conçu pour la confidentialité, c'est pourquoi nous sommes open source et local d'abord. Nous serons donc très clairs sur les données partagées avec nous.",
"quick_preview": "Aperçu rapide",
"quick_view": "Vue rapide",
"recent_jobs": "Travaux récents",
"recents": "Récents",
"regen_labels": "Régénérer les étiquettes",
"regen_thumbnails": "Régénérer les vignettes",
"regenerate_thumbs": "Régénérer les miniatures",
"reindex": "Réindexer",
"reject": "Rejeter",
"reload": "Recharger",
"remove": "Retirer",
"remove_from_recents": "Retirer des récents",
"rename": "Renommer",
"rename_object": "Renommer l'objet",
"replica": "Réplique",
"rescan_directory": "Réanalyser le répertoire",
"rescan_location": "Réanalyser l'emplacement",
"reset": "Réinitialiser",
"resources": "Ressources",
"restore": "Restaurer",
"resume": "Reprendre",
"retry": "Réessayer",
"reveal_in_native_file_manager": "Révéler dans le gestionnaire de fichiers natif",
"revel_in_browser": "Révéler dans {{browser}}",
"running": "En cours",
"save": "Sauvegarder",
"save_changes": "Sauvegarder les modifications",
"saved_searches": "Recherches enregistrées",
"search_extensions": "Rechercher des extensions",
"secure_delete": "Suppression sécurisée",
"security": "Sécurité",
"security_description": "Gardez votre client en sécurité.",
"send": "Envoyer",
"settings": "Paramètres",
"setup": "Configuration",
"share": "Partager",
"share_anonymous_usage": "Partager l'utilisation anonyme",
"share_anonymous_usage_description": "Partager des données de télémétrie complètement anonymes pour aider les développeurs à améliorer l'application",
"share_bare_minimum": "Partager le strict minimum",
"share_bare_minimum_description": "Partager uniquement que je suis un utilisateur actif de Spacedrive et quelques détails techniques",
"sharing": "Partage",
"sharing_description": "Gérer qui a accès à vos bibliothèques.",
"show_details": "Afficher les détails",
"show_hidden_files": "Afficher les fichiers cachés",
"show_object_size": "Afficher la taille de l'objet",
"show_path_bar": "Afficher la barre de chemin",
"show_slider": "Afficher le curseur",
"size": "Taille",
"skip_login": "Passer la connexion",
"sort_by": "Trier par",
"spacedrive_account": "Compte Spacedrive",
"spacedrive_cloud": "Cloud Spacedrive",
"spacedrive_cloud_description": "Spacedrive est toujours local en premier lieu, mais nous proposerons nos propres services cloud en option à l'avenir. Pour l'instant, l'authentification est uniquement utilisée pour la fonctionnalité de retour d'information, sinon elle n'est pas requise.",
"spacedrop_a_file": "Déposer un fichier dans Spacedrive",
"spacedrop_description": "Partagez instantanément avec les appareils exécutant Spacedrive sur votre réseau.",
"spacedrop_already_progress": "Spacedrop déjà en cours",
"spacedrop_rejected": "Spacedrop rejeté",
"square_thumbnails": "Vignettes carrées",
"star_on_github": "Mettre une étoile sur GitHub",
"stop": "Arrêter",
"success": "Succès",
"support": "Support",
"switch_to_grid_view": "Passer à la vue en grille",
"switch_to_list_view": "Passer à la vue en liste",
"switch_to_media_view": "Passer à la vue des médias",
"switch_to_next_tab": "Passer à l'onglet suivant",
"switch_to_previous_tab": "Passer à l'onglet précédent",
"sync": "Synchroniser",
"syncPreviewMedia_label": "Synchroniser les médias d'aperçu pour cet emplacement avec vos appareils",
"sync_description": "Gérer la manière dont Spacedrive se synchronise.",
"sync_with_library": "Synchroniser avec la bibliothèque",
"sync_with_library_description": "Si activé, vos raccourcis seront synchronisés avec la bibliothèque, sinon ils s'appliqueront uniquement à ce client.",
"tags": "Étiquettes",
"tags_description": "Gérer vos étiquettes.",
"telemetry_description": "Activez pour fournir aux développeurs des données détaillées d'utilisation et de télémesure afin d'améliorer l'application. Désactivez pour n'envoyer que les données de base : votre statut d'activité, la version de l'application, la version du noyau et la plateforme (par exemple, mobile, web ou ordinateur de bureau).",
"telemetry_title": "Partager des données de télémesure et d'utilisation supplémentaires",
"temperature": "Température",
"thank_you_for_your_feedback": "Merci pour votre retour d'information !",
"thumbnailer_cpu_usage": "Utilisation CPU du générateur de vignettes",
"thumbnailer_cpu_usage_description": "Limiter la quantité de CPU que le générateur de vignettes peut utiliser pour le traitement en arrière-plan.",
"toggle_all": "Basculer tous",
"toggle_hidden_files": "Activer/désactiver les fichiers cachés",
"toggle_image_slider_within_quick_preview": "Activer/désactiver le curseur d'image dans l'aperçu rapide",
"toggle_inspector": "Activer/désactiver l'inspecteur",
"toggle_job_manager": "Activer/désactiver le gestionnaire de tâches",
"toggle_metadata": "Activer/désactiver les métadonnées",
"toggle_path_bar": "Activer/désactiver la barre de chemin",
"toggle_quick_preview": "Activer/désactiver l'aperçu rapide",
"type": "Type",
"ui_animations": "Animations de l'interface",
"ui_animations_description": "Les dialogues et autres éléments d'interface animeront lors de l'ouverture et de la fermeture.",
"unnamed_location": "Emplacement sans nom",
"usage": "Utilisation",
"usage_description": "Votre utilisation de la bibliothèque et les informations matérielles",
"value": "Valeur",
"video_preview_not_supported": "L'aperçu vidéo n'est pas pris en charge.",
"want_to_do_this_later": "Vous voulez faire ça plus tard ?",
"website": "Site web",
"your_account": "Votre compte",
"your_account_description": "Compte et informations Spacedrive.",
"your_local_network": "Votre réseau local",
"your_privacy": "Votre confidentialité",
"new_update_available": "Nouvelle mise à jour disponible !",
"version": "Version {{version}}",
"downloading_update": "Téléchargement de la mise à jour",
"update_downloaded": "Mise à jour téléchargée. Redémarrez Spacedrive pour installer",
"failed_to_download_update": "Échec du téléchargement de la mise à jour",
"updated_successfully": "Mise à jour réussie, vous êtes en version {{version}}",
"view_changes": "Voir les changements",
"update": "Mettre à jour",
"ask_spacedrive": "Demandez à Spacedrive",
"close_command_palette": "Fermer la palette de commandes",
"disconnected": "Débranché",
"failed_to_rescan_location": "Échec de la nouvelle analyse de l'emplacement",
"go_to_labels": "Aller aux étiquettes",
"go_to_location": "Aller à l'emplacement",
"go_to_overview": "Aller à l'aperçu",
"go_to_recents": "Aller aux récents",
"go_to_settings": "Aller aux paramètres",
"go_to_tag": "Aller au tag",
"no_labels": "Pas d'étiquettes",
"search_for_files_and_actions": "Rechercher des fichiers et des actions...",
"toggle_command_palette": "Basculer la palette de commandes"
"about": "À propos",
"about_vision_text": "Beaucoup d'entre nous ont plusieurs comptes cloud, des disques qui ne sont pas sauvegardés et des données à risque de perte. Nous dépendons de services cloud comme Google Photos et iCloud, mais sommes enfermés avec une capacité limitée et presque zéro interopérabilité entre les services et les systèmes d'exploitation. Les albums photo ne devraient pas être coincés dans un écosystème d'appareils, ou récoltés pour des données publicitaires. Ils devraient être indépendants du système d'exploitation, permanents et personnels. Les données que nous créons sont notre héritage, qui nous survivra longtemps - la technologie open source est le seul moyen d'assurer que nous conservons un contrôle absolu sur les données qui définissent nos vies, à une échelle illimitée.",
"about_vision_title": "Vision",
"accept": "Accepter",
"accessed": "Accédé",
"account": "Compte",
"actions": "Actions",
"add": "Ajouter",
"add_device": "Ajouter un appareil",
"add_library": "Ajouter une bibliothèque",
"add_location": "Ajouter un emplacement",
"add_location_description": "Améliorez votre expérience Spacedrive en ajoutant vos emplacements préférés à votre bibliothèque personnelle, pour une gestion des fichiers fluide et efficace.",
"add_location_tooltip": "Ajouter le chemin comme emplacement indexé",
"add_locations": "Ajouter des emplacements",
"add_tag": "Ajouter une étiquette",
"advanced_settings": "Paramètres avancés",
"all_jobs_have_been_cleared": "Tous les travaux ont été annulés.",
"alpha_release_description": "Nous sommes ravis que vous essayiez Spacedrive, maintenant en version Alpha, présentant de nouvelles fonctionnalités excitantes. Comme pour toute première version, cette version peut contenir des bugs. Nous vous demandons gentiment votre aide pour signaler tout problème rencontré sur notre chaîne Discord. Vos précieux retours contribueront grandement à améliorer l'expérience utilisateur.",
"alpha_release_title": "Version Alpha",
"appearance": "Apparence",
"appearance_description": "Changez l'apparence de votre client.",
"archive": "Archiver",
"archive_coming_soon": "L'archivage des emplacements arrive bientôt...",
"archive_info": "Extrayez les données de la bibliothèque sous forme d'archive, utile pour préserver la structure des dossiers de l'emplacement.",
"are_you_sure": "Êtes-vous sûr ?",
"assign_tag": "Attribuer une étiquette",
"audio_preview_not_supported": "L'aperçu audio n'est pas pris en charge.",
"back": "Retour",
"backups": "Sauvegardes",
"backups_description": "Gérez les sauvegardes de votre base de données Spacedrive.",
"blur_effects": "Effets de flou",
"blur_effects_description": "Certains composants se verront appliquer un effet de flou.",
"cancel": "Annuler",
"cancel_selection": "Annuler la sélection",
"celcius": "Celsius",
"change": "Modifier",
"changelog": "Journal des modifications",
"changelog_page_description": "Découvrez les nouvelles fonctionnalités cool que nous développons",
"changelog_page_title": "Changelog",
"checksum": "Somme de contrôle",
"clear_finished_jobs": "Effacer les travaux terminés",
"client": "Client",
"close": "Fermer",
"close_current_tab": "Fermer l'onglet actuel",
"clouds": "Nuages",
"color": "Couleur",
"coming_soon": "Bientôt",
"compress": "Compresser",
"configure_location": "Configurer l'emplacement",
"connected": "Connecté",
"contacts": "Contacts",
"contacts_description": "Gérez vos contacts dans Spacedrive.",
"content_id": "ID de contenu",
"continue": "Continuer",
"convert_to": "Convertir en",
"coordinates": "Coordonnées",
"copied": "Copié",
"copy": "Copier",
"copy_as_path": "Copier en tant que chemin",
"copy_object": "Copier l'objet",
"copy_path_to_clipboard": "Copier le chemin dans le presse-papiers",
"copy_success": "Éléments copiés",
"create": "Créer",
"create_library": "Créer une bibliothèque",
"create_library_description": "Les bibliothèques sont une base de données sécurisée, sur l'appareil. Vos fichiers restent où ils sont, la bibliothèque les catalogue et stocke toutes les données liées à Spacedrive.",
"create_new_library": "Créer une nouvelle bibliothèque",
"create_new_library_description": "Les bibliothèques sont une base de données sécurisée, sur l'appareil. Vos fichiers restent où ils sont, la bibliothèque les catalogue et stocke toutes les données liées à Spacedrive.",
"create_new_tag": "Créer une nouvelle étiquette",
"create_new_tag_description": "Choisissez un nom et une couleur.",
"create_tag": "Créer une étiquette",
"created": "Créé",
"creating_library": "Création de la bibliothèque...",
"creating_your_library": "Création de votre bibliothèque",
"current": "Actuel",
"current_directory": "Répertoire actuel",
"current_directory_with_descendants": "Répertoire actuel avec descendants",
"custom": "Personnalisé",
"cut": "Couper",
"cut_object": "Couper l'objet",
"cut_success": "Éléments coupés",
"data_folder": "Dossier de données",
"debug_mode": "Mode débogage",
"debug_mode_description": "Activez des fonctionnalités de débogage supplémentaires dans l'application.",
"default": "Défaut",
"delete": "Supprimer",
"delete_dialog_title": "Supprimer {{prefix}} {{type}}",
"delete_info": "Cela ne supprimera pas le dossier réel sur le disque. Les médias aperçus seront supprimés.",
"delete_library": "Supprimer la bibliothèque",
"delete_library_description": "Ceci est permanent, vos fichiers ne seront pas supprimés, seule la bibliothèque Spacedrive le sera.",
"delete_location": "Supprimer l'emplacement",
"delete_location_description": "Supprimer un emplacement supprimera également tous les fichiers associés de la base de données Spacedrive, les fichiers eux-mêmes ne seront pas supprimés.",
"delete_object": "Supprimer l'objet",
"delete_rule": "Supprimer la règle",
"delete_tag": "Supprimer l'étiquette",
"delete_tag_description": "Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela ne peut pas être annulé et les fichiers étiquetés seront dissociés.",
"delete_warning": "Attention : Ceci supprimera votre {{type}} pour toujours, nous n'avons pas encore de corbeille...",
"description": "Description",
"deselect": "Désélectionner",
"details": "Détails",
"devices": "Appareils",
"devices_coming_soon_tooltip": "Bientôt disponible ! Cette version alpha n'inclut pas la synchronisation des bibliothèques, cela sera prêt très prochainement.",
"dialog": "Dialogue",
"dialog_shortcut_description": "Pour effectuer des actions et des opérations",
"direction": "Direction",
"disabled": "Désactivé",
"display_formats": "Formats d'affichage",
"display_name": "Nom affiché",
"distance": "Distance",
"done": "Terminé",
"dont_show_again": "Ne plus afficher",
"double_click_action": "Action double clic",
"download": "Télécharger",
"duplicate": "Dupliquer",
"duplicate_object": "Dupliquer l'objet",
"duplicate_success": "Éléments dupliqués",
"edit": "Éditer",
"edit_library": "Éditer la bibliothèque",
"edit_location": "Éditer l'emplacement",
"enable_networking": "Activer le réseau",
"encrypt": "Chiffrer",
"encrypt_library": "Chiffrer la bibliothèque",
"encrypt_library_coming_soon": "Le chiffrement de la bibliothèque arrive bientôt",
"encrypt_library_description": "Activez le chiffrement pour cette bibliothèque, cela ne chiffrera que la base de données Spacedrive, pas les fichiers eux-mêmes.",
"ephemeral_notice_browse": "Parcourez vos fichiers et dossiers directement depuis votre appareil.",
"ephemeral_notice_consider_indexing": "Envisagez d'indexer vos emplacements locaux pour une exploration plus rapide et plus efficace.",
"erase": "Effacer",
"erase_a_file": "Effacer un fichier",
"erase_a_file_description": "Configurez vos paramètres d'effacement.",
"error": "Erreur",
"error_loading_original_file": "Erreur lors du chargement du fichier original",
"expand": "Étendre",
"explorer": "Explorateur",
"explorer_shortcut_description": "Pour naviguer et interagir avec le système de fichiers",
"export": "Exporter",
"export_library": "Exporter la bibliothèque",
"export_library_coming_soon": "L'exportation de la bibliothèque arrivera bientôt",
"export_library_description": "Exporter cette bibliothèque dans un fichier.",
"extensions": "Extensions",
"extensions_description": "Installez des extensions pour étendre la fonctionnalité de ce client.",
"fahrenheit": "Fahrenheit",
"failed_to_cancel_job": "Échec de l'annulation du travail.",
"failed_to_clear_all_jobs": "Échec de l'effacement de tous les travaux.",
"failed_to_copy_file": "Échec de la copie du fichier",
"failed_to_copy_file_path": "Échec de la copie du chemin du fichier",
"failed_to_cut_file": "Échec de la découpe du fichier",
"failed_to_duplicate_file": "Échec de la duplication du fichier",
"failed_to_generate_checksum": "Échec de la génération de la somme de contrôle",
"failed_to_generate_labels": "Échec de la génération des étiquettes",
"failed_to_generate_thumbnails": "Échec de la génération des vignettes",
"failed_to_load_tags": "Échec du chargement des étiquettes",
"failed_to_pause_job": "Échec de la mise en pause du travail.",
"failed_to_reindex_location": "Échec de la réindexation de l'emplacement",
"failed_to_remove_file_from_recents": "Échec de la suppression du fichier des éléments récents",
"failed_to_remove_job": "Échec de la suppression du travail.",
"failed_to_resume_job": "Échec de la reprise du travail.",
"failed_to_update_location_settings": "Échec de la mise à jour des paramètres de l'emplacement",
"favorite": "Favori",
"favorites": "Favoris",
"feedback": "Retour d'information",
"feedback_is_required": "Le retour d'information est requis",
"feedback_login_description": "La connexion nous permet de répondre à votre retour d'information",
"feedback_placeholder": "Votre retour d'information...",
"feedback_toast_error_message": "Une erreur s'est produite lors de l'envoi de votre retour d'information. Veuillez réessayer.",
"file_already_exist_in_this_location": "Le fichier existe déjà à cet emplacement",
"file_indexing_rules": "Règles d'indexation des fichiers",
"filters": "Filtres",
"forward": "Avancer",
"full_disk_access": "Accès complet au disque",
"full_disk_access_description": "Pour offrir la meilleure expérience, nous avons besoin d'accéder à votre disque afin d'indexer vos fichiers. Vos fichiers ne sont accessibles qu'à vous.",
"full_reindex": "Réindexation complète",
"full_reindex_info": "Effectuer un nouveau scan complet de cet emplacement.",
"general": "Général",
"general_settings": "Paramètres généraux",
"general_settings_description": "Paramètres généraux liés à ce client.",
"general_shortcut_description": "Raccourcis d'utilisation générale",
"generatePreviewMedia_label": "Générer des médias d'aperçu pour cet emplacement",
"generate_checksums": "Générer des sommes de contrôle",
"go_back": "Revenir",
"got_it": "Compris",
"grid_gap": "Écartement de grille",
"grid_view": "Vue en grille",
"grid_view_notice_description": "Obtenez un aperçu visuel de vos fichiers avec la vue en grille. Cette vue affiche vos fichiers et dossiers sous forme d'images miniatures, facilitant l'identification rapide du fichier que vous recherchez.",
"hidden_label": "Empêche l'emplacement et son contenu d'apparaître dans les catégories résumées, la recherche et les étiquettes à moins que l'option \"Afficher les éléments cachés\" soit activée.",
"hide_in_library_search": "Masquer dans la recherche de la bibliothèque",
"hide_in_library_search_description": "Masquer les fichiers avec cette étiquette des résultats lors de la recherche dans toute la bibliothèque.",
"hide_in_sidebar": "Masquer dans la barre latérale",
"hide_in_sidebar_description": "Empêcher cette étiquette de s'afficher dans la barre latérale de l'application.",
"hide_location_from_view": "Masquer l'emplacement et le contenu de la vue",
"home": "Accueil",
"image_labeler_ai_model": "Modèle d'IA de reconnaissance d'étiquettes d'image",
"image_labeler_ai_model_description": "Le modèle utilisé pour reconnaître les objets dans les images. Les modèles plus grands sont plus précis mais plus lents.",
"import": "Importer",
"indexed": "Indexé",
"indexer_rule_reject_allow_label": "Par défaut, une règle d'indexeur fonctionne comme une liste de rejet, entraînant l'exclusion de tous les fichiers qui correspondent à ses critères. Activer cette option la transformera en une liste d'autorisation, permettant à l'emplacement d'indexer uniquement les fichiers qui répondent à ses règles spécifiées.",
"indexer_rules": "Règles de l'indexeur",
"indexer_rules_info": "Les règles de l'indexeur vous permettent de spécifier des chemins à ignorer en utilisant des glob patterns.",
"install": "Installer",
"install_update": "Installer la mise à jour",
"installed": "Installé",
"item_size": "Taille de l'élément",
"item_with_count_one": "{{count}} article",
"item_with_count_other": "{{count}} articles",
"job_has_been_canceled": "Le travail a été annulé.",
"job_has_been_paused": "Le travail a été mis en pause.",
"job_has_been_removed": "Le travail a été supprimé.",
"job_has_been_resumed": "Le travail a été repris.",
"join": "Rejoindre",
"join_discord": "Rejoindre Discord",
"join_library": "Rejoindre une bibliothèque",
"join_library_description": "Les bibliothèques sont une base de données sécurisée, sur l'appareil. Vos fichiers restent où ils sont, la bibliothèque les catalogue et stocke toutes les données liées à Spacedrive.",
"key": "Clé",
"key_manager": "Gestionnaire de clés",
"key_manager_description": "Créez des clés de chiffrement, montez et démontez vos clés pour voir les fichiers déchiffrés à la volée.",
"keybinds": "Raccourcis clavier",
"keybinds_description": "Afficher et gérer les raccourcis clavier du client",
"keys": "Clés",
"kilometers": "Kilomètres",
"labels": "Étiquettes",
"language": "Langue",
"language_description": "Changer la langue de l'interface Spacedrive",
"learn_more_about_telemetry": "En savoir plus sur la télémesure",
"libraries": "Bibliothèques",
"libraries_description": "La base de données contient toutes les données de la bibliothèque et les métadonnées des fichiers.",
"library": "Bibliothèque",
"library_name": "Nom de la bibliothèque",
"library_overview": "Aperçu de la bibliothèque",
"library_settings": "Paramètres de la bibliothèque",
"library_settings_description": "Paramètres généraux liés à la bibliothèque actuellement active.",
"list_view": "Vue en liste",
"list_view_notice_description": "Naviguez facilement à travers vos fichiers et dossiers avec la vue en liste. Cette vue affiche vos fichiers dans un format de liste simple et organisé, vous permettant de localiser et d'accéder rapidement aux fichiers dont vous avez besoin.",
"loading": "Chargement",
"local": "Local",
"local_locations": "Emplacements locaux",
"local_node": "Nœud local",
"location_connected_tooltip": "L'emplacement est surveillé pour les changements",
"location_disconnected_tooltip": "L'emplacement n'est pas surveillé pour les changements",
"location_display_name_info": "Le nom de cet emplacement, c'est ce qui sera affiché dans la barre latérale. Ne renommera pas le dossier réel sur le disque.",
"location_is_already_linked": "L'emplacement est déjà lié",
"location_path_info": "Le chemin vers cet emplacement, c'est là que les fichiers seront stockés sur le disque.",
"location_type": "Type d'emplacement",
"location_type_managed": "Spacedrive triera les fichiers pour vous. Si l'emplacement n'est pas vide, un dossier \"spacedrive\" sera créé.",
"location_type_normal": "Le contenu sera indexé tel quel, les nouveaux fichiers ne seront pas automatiquement triés.",
"location_type_replica": "Cet emplacement est une réplique d'un autre, son contenu sera automatiquement synchronisé.",
"locations": "Emplacements",
"locations_description": "Gérez vos emplacements de stockage.",
"lock": "Verrouiller",
"log_in_with_browser": "Se connecter avec le navigateur",
"log_out": "Se déconnecter",
"logged_in_as": "Connecté en tant que {{email}}",
"logout": "Déconnexion",
"manage_library": "Gérer la bibliothèque",
"managed": "Géré",
"media": "Médias",
"media_view_context": "Contexte de vue média",
"media_view_notice_description": "Découvrez facilement les photos et vidéos, la vue média affichera les résultats en commençant par l'emplacement actuel, y compris les sous-répertoires.",
"meet_contributors_behind_spacedrive": "Rencontrez les contributeurs derrière Spacedrive",
"meet_title": "Rencontrer {{title}}",
"miles": "Miles",
"mode": "Mode",
"modified": "Modifié",
"more": "Plus",
"more_actions": "Plus d'actions...",
"more_info": "Plus d'info",
"move_back_within_quick_preview": "Revenir en arrière dans l'aperçu rapide",
"move_files": "Déplacer les fichiers",
"move_forward_within_quick_preview": "Avancer dans l'aperçu rapide",
"name": "Nom",
"navigate_back": "Naviguer en arrière",
"navigate_backwards": "Naviguer vers l'arrière",
"navigate_files_downwards": "Naviguer vers le bas dans les fichiers",
"navigate_files_leftwards": "Naviguer vers la gauche dans les fichiers",
"navigate_files_rightwards": "Naviguer vers la droite dans les fichiers",
"navigate_files_upwards": "Naviguer vers le haut dans les fichiers",
"navigate_forward": "Naviguer en avant",
"navigate_forwards": "Naviguer vers l'avant",
"navigate_to_settings_page": "Accéder à la page des paramètres",
"network": "Réseau",
"network_page_description": "Les autres nœuds Spacedrive de votre LAN apparaîtront ici, ainsi que vos montages réseau par défaut du système d'exploitation.",
"networking": "Réseautage",
"networking_port": "Port réseau",
"networking_port_description": "Le port pour la communication en peer-to-peer de Spacedrive. Vous devriez laisser ceci désactivé à moins que vous n'ayez un pare-feu restrictif. Ne pas exposer à internet !",
"new_folder": "Nouveau dossier",
"new_library": "Nouvelle bibliothèque",
"new_location": "Nouvel emplacement",
"new_location_web_description": "Comme vous utilisez la version navigateur de Spacedrive, vous devrez (pour l'instant) spécifier une URL absolue d'un répertoire local au nœud distant.",
"new_tab": "Nouvel onglet",
"new_tag": "Nouvelle étiquette",
"no_files_found_here": "Aucun fichier trouvé ici",
"no_jobs": "Aucun travail.",
"no_tag_selected": "Aucune étiquette sélectionnée",
"no_tags": "Aucune étiquette",
"node_name": "Nom du nœud",
"no_nodes_found": "Aucun nœud Spacedrive n'a été trouvé.",
"nodes": "Nœuds",
"nodes_description": "Gérez les nœuds connectés à cette bibliothèque. Un nœud est une instance du backend de Spacedrive, s'exécutant sur un appareil ou un serveur. Chaque nœud porte une copie de la base de données et se synchronise via des connexions peer-to-peer en temps réel.",
"none": "Aucun",
"normal": "Normal",
"not_you": "Pas vous ?",
"number_of_passes": "Nombre de passes",
"object_id": "ID de l'objet",
"offline": "Hors ligne",
"online": "En ligne",
"open": "Ouvrir",
"open_file": "Ouvrir le fichier",
"open_new_location_once_added": "Ouvrir le nouvel emplacement une fois ajouté",
"open_new_tab": "Ouvrir un nouvel onglet",
"open_object": "Ouvrir l'objet",
"open_object_from_quick_preview_in_native_file_manager": "Ouvrir l'objet depuis l'aperçu rapide dans le gestionnaire de fichiers natif",
"open_settings": "Ouvrir les paramètres",
"open_with": "Ouvrir avec",
"or": "OU",
"overview": "Aperçu",
"page": "Page",
"page_shortcut_description": "Différentes pages de l'application",
"pair": "Associer",
"pairing_with_node": "Appairage avec {{node}}",
"paste": "Coller",
"paste_object": "Coller l'objet",
"paste_success": "Éléments collés",
"path": "Chemin",
"path_copied_to_clipboard_description": "Chemin pour l'emplacement {{location}} copié dans le presse-papiers.",
"path_copied_to_clipboard_title": "Chemin copié dans le presse-papiers",
"pause": "Pause",
"peers": "Pairs",
"people": "Personnes",
"privacy": "Confidentialité",
"privacy_description": "Spacedrive est conçu pour la confidentialité, c'est pourquoi nous sommes open source et local d'abord. Nous serons donc très clairs sur les données partagées avec nous.",
"quick_preview": "Aperçu rapide",
"quick_view": "Vue rapide",
"recent_jobs": "Travaux récents",
"recents": "Récents",
"regen_labels": "Régénérer les étiquettes",
"regen_thumbnails": "Régénérer les vignettes",
"regenerate_thumbs": "Régénérer les miniatures",
"reindex": "Réindexer",
"reject": "Rejeter",
"reload": "Recharger",
"remove": "Retirer",
"remove_from_recents": "Retirer des récents",
"rename": "Renommer",
"rename_object": "Renommer l'objet",
"replica": "Réplique",
"rescan_directory": "Réanalyser le répertoire",
"rescan_location": "Réanalyser l'emplacement",
"reset": "Réinitialiser",
"resources": "Ressources",
"restore": "Restaurer",
"resume": "Reprendre",
"retry": "Réessayer",
"reveal_in_native_file_manager": "Révéler dans le gestionnaire de fichiers natif",
"revel_in_browser": "Révéler dans {{browser}}",
"running": "En cours",
"save": "Sauvegarder",
"save_changes": "Sauvegarder les modifications",
"saved_searches": "Recherches enregistrées",
"search_extensions": "Rechercher des extensions",
"secure_delete": "Suppression sécurisée",
"security": "Sécurité",
"security_description": "Gardez votre client en sécurité.",
"send": "Envoyer",
"settings": "Paramètres",
"setup": "Configuration",
"share": "Partager",
"share_anonymous_usage": "Partager l'utilisation anonyme",
"share_anonymous_usage_description": "Partager des données de télémétrie complètement anonymes pour aider les développeurs à améliorer l'application",
"share_bare_minimum": "Partager le strict minimum",
"share_bare_minimum_description": "Partager uniquement que je suis un utilisateur actif de Spacedrive et quelques détails techniques",
"sharing": "Partage",
"sharing_description": "Gérer qui a accès à vos bibliothèques.",
"show_details": "Afficher les détails",
"show_hidden_files": "Afficher les fichiers cachés",
"show_object_size": "Afficher la taille de l'objet",
"show_path_bar": "Afficher la barre de chemin",
"show_slider": "Afficher le curseur",
"size": "Taille",
"skip_login": "Passer la connexion",
"sort_by": "Trier par",
"spacedrive_account": "Compte Spacedrive",
"spacedrive_cloud": "Cloud Spacedrive",
"spacedrive_cloud_description": "Spacedrive est toujours local en premier lieu, mais nous proposerons nos propres services cloud en option à l'avenir. Pour l'instant, l'authentification est uniquement utilisée pour la fonctionnalité de retour d'information, sinon elle n'est pas requise.",
"spacedrop_a_file": "Déposer un fichier dans Spacedrive",
"spacedrop_description": "Partagez instantanément avec les appareils exécutant Spacedrive sur votre réseau.",
"spacedrop_already_progress": "Spacedrop déjà en cours",
"spacedrop_rejected": "Spacedrop rejeté",
"square_thumbnails": "Vignettes carrées",
"star_on_github": "Mettre une étoile sur GitHub",
"stop": "Arrêter",
"success": "Succès",
"support": "Support",
"switch_to_grid_view": "Passer à la vue en grille",
"switch_to_list_view": "Passer à la vue en liste",
"switch_to_media_view": "Passer à la vue des médias",
"switch_to_next_tab": "Passer à l'onglet suivant",
"switch_to_previous_tab": "Passer à l'onglet précédent",
"sync": "Synchroniser",
"syncPreviewMedia_label": "Synchroniser les médias d'aperçu pour cet emplacement avec vos appareils",
"sync_description": "Gérer la manière dont Spacedrive se synchronise.",
"sync_with_library": "Synchroniser avec la bibliothèque",
"sync_with_library_description": "Si activé, vos raccourcis seront synchronisés avec la bibliothèque, sinon ils s'appliqueront uniquement à ce client.",
"tags": "Étiquettes",
"tags_description": "Gérer vos étiquettes.",
"telemetry_description": "Activez pour fournir aux développeurs des données détaillées d'utilisation et de télémesure afin d'améliorer l'application. Désactivez pour n'envoyer que les données de base : votre statut d'activité, la version de l'application, la version du noyau et la plateforme (par exemple, mobile, web ou ordinateur de bureau).",
"telemetry_title": "Partager des données de télémesure et d'utilisation supplémentaires",
"temperature": "Température",
"thank_you_for_your_feedback": "Merci pour votre retour d'information !",
"thumbnailer_cpu_usage": "Utilisation CPU du générateur de vignettes",
"thumbnailer_cpu_usage_description": "Limiter la quantité de CPU que le générateur de vignettes peut utiliser pour le traitement en arrière-plan.",
"toggle_all": "Basculer tous",
"toggle_hidden_files": "Activer/désactiver les fichiers cachés",
"toggle_image_slider_within_quick_preview": "Activer/désactiver le curseur d'image dans l'aperçu rapide",
"toggle_inspector": "Activer/désactiver l'inspecteur",
"toggle_job_manager": "Activer/désactiver le gestionnaire de tâches",
"toggle_metadata": "Activer/désactiver les métadonnées",
"toggle_path_bar": "Activer/désactiver la barre de chemin",
"toggle_quick_preview": "Activer/désactiver l'aperçu rapide",
"type": "Type",
"ui_animations": "Animations de l'interface",
"ui_animations_description": "Les dialogues et autres éléments d'interface animeront lors de l'ouverture et de la fermeture.",
"unnamed_location": "Emplacement sans nom",
"usage": "Utilisation",
"usage_description": "Votre utilisation de la bibliothèque et les informations matérielles",
"value": "Valeur",
"video_preview_not_supported": "L'aperçu vidéo n'est pas pris en charge.",
"want_to_do_this_later": "Vous voulez faire ça plus tard ?",
"website": "Site web",
"your_account": "Votre compte",
"your_account_description": "Compte et informations Spacedrive.",
"your_local_network": "Votre réseau local",
"your_privacy": "Votre confidentialité",
"new_update_available": "Nouvelle mise à jour disponible !",
"version": "Version {{version}}",
"downloading_update": "Téléchargement de la mise à jour",
"update_downloaded": "Mise à jour téléchargée. Redémarrez Spacedrive pour installer",
"failed_to_download_update": "Échec du téléchargement de la mise à jour",
"updated_successfully": "Mise à jour réussie, vous êtes en version {{version}}",
"view_changes": "Voir les changements",
"update": "Mettre à jour",
"ask_spacedrive": "Demandez à Spacedrive",
"close_command_palette": "Fermer la palette de commandes",
"disconnected": "Débranché",
"failed_to_rescan_location": "Échec de la nouvelle analyse de l'emplacement",
"go_to_labels": "Aller aux étiquettes",
"go_to_location": "Aller à l'emplacement",
"go_to_overview": "Aller à l'aperçu",
"go_to_recents": "Aller aux récents",
"go_to_settings": "Aller aux paramètres",
"go_to_tag": "Aller au tag",
"no_labels": "Pas d'étiquettes",
"search_for_files_and_actions": "Rechercher des fichiers et des actions...",
"toggle_command_palette": "Basculer la palette de commandes"
}

View file

@ -1,452 +1,452 @@
{
"about": "Su di noi",
"about_vision_text": "Molti di noi hanno più account cloud, dischi di cui non è stato eseguito il backup e dati a rischio di essere persi. Dipendiamo da servizi cloud come Google Photos e iCloud, che sono limitati dalla loro capacità e scarsissima interoperabilità tra servizi e sistemi operativi. Gli album fotografici non dovrebbero essere bloccati in un ecosistema di dispositivi, o essere usati per raccogliere dati. Dovrebbero essere agnostici dal sistema operativo, e detenuti permanentemente e personalmente. I dati che creiamo sono la nostra eredità, che sopravviverà molto più a lungo di noi. La tecnologia open source è l'unico modo per assicurarci di conservare il controllo assoluto sui dati che definisce le nostre vite, a scala illimitata.",
"about_vision_title": "Visione",
"accept": "Accetta",
"accessed": "Aperto",
"account": "Account",
"actions": "Azioni",
"add": "Aggiungi",
"add_device": "Aggiungi dispositivo",
"add_library": "Aggiungi libreria",
"add_location": "Aggiungi Posizione",
"add_location_description": "Migliora la tua esperienza con Spacedrive aggiungendo le tue posizioni preferite alla tua libreria personale, per una gestione dei file semplice ed efficiente.",
"add_location_tooltip": "Aggiungi percorso come posizione indicizzata",
"add_locations": "Aggiungi Percorso",
"add_tag": "Aggiungi Tag",
"advanced_settings": "Impostazioni avanzate",
"all_jobs_have_been_cleared": "Tutti i lavori sono stati cancellati.",
"alpha_release_description": "Siamo molto lieti che stiate provando Spacedrive, ora in versione Alpha, che presenta nuove entusiasmanti funzionalità. Come ogni rilascio iniziale, questa versione potrebbe contenere alcuni bug. Vi chiediamo gentilmente aiuto nel segnalare qualsiasi problema che incontrerete nel nostro canale Discord. Il vostro prezioso feedback contribuirà notevolmente a migliorare l'esperienza utente.",
"alpha_release_title": "Versione Alpha",
"appearance": "Aspetto",
"appearance_description": "Cambia l'aspetto del tuo client.",
"archive": "Archivio",
"archive_coming_soon": "L'archiviazione delle posizioni arriverà in futuro...",
"archive_info": "Estrai dati dalla Libreria come archivio, utile per preservare la struttura della cartella Posizioni.",
"are_you_sure": "Sei sicuro?",
"assign_tag": "Assegna tag",
"audio_preview_not_supported": "L'anteprima audio non è disponibile.",
"back": "Indietro",
"backups": "Backups",
"backups_description": "Gestisci i tuoi backup del database di Spacedrive.",
"blur_effects": "Effetti di sfocatura",
"blur_effects_description": "Alcuni componenti avranno un effetto di sfocatura applicato ad essi.",
"cancel": "Annulla",
"cancel_selection": "Annulla selezione",
"celcius": "Celsius",
"change": "Cambia",
"changelog": "Changelog",
"changelog_page_description": "Scopri quali nuove fantastiche funzionalità stiamo realizzando",
"changelog_page_title": "Changelog",
"checksum": "Checksum",
"clear_finished_jobs": "Cancella i lavori completati",
"client": "Client",
"close": "Chiudi",
"close_current_tab": "Chiudi scheda corrente",
"clouds": "Clouds",
"color": "Colore",
"coming_soon": "In arrivo prossimamente",
"compress": "Comprimi",
"configure_location": "Configura posizione",
"connected": "Connesso",
"contacts": "Contatti",
"contacts_description": "Gestisci i tuoi contatti su Spacedrive.",
"content_id": "ID Contenuto",
"continue": "Continua",
"convert_to": "Converti in",
"coordinates": "Coordinate",
"copied": "Copiato",
"copy": "Copia",
"copy_as_path": "Copia come percorso",
"copy_object": "Copia oggetto",
"copy_path_to_clipboard": "Copia percorso nella clipboard",
"create": "Crea",
"create_library": "Crea una libreria",
"create_library_description": "Le librerie sono un database sicuro sul dispositivo. I tuoi file rimangono dove sono, la Libreria li cataloga e memorizza tutti i dati relativi a Spacedrive",
"create_new_library": "Crea una nuova Libreria",
"create_new_library_description": "Le librerie sono un database sicuro sul dispositivo. I tuoi file rimangono dove sono, la Libreria li cataloga e memorizza tutti i dati relativi a Spacedrive",
"create_new_tag": "Crea un nuovo Tag",
"create_new_tag_description": "Scegli un nome e un colore.",
"create_tag": "Crea il Tag",
"created": "Creato",
"creating_library": "Creando la libreria...",
"creating_your_library": "Creando la tua libreria",
"current": "Attuale",
"current_directory": "Cartella attuale",
"current_directory_with_descendants": "Cartella attuale con discendenti",
"custom": "Personalizzato",
"cut": "Taglia",
"cut_object": "Taglia oggetto",
"data_folder": "Cartella dati",
"debug_mode": "Modalità debug",
"debug_mode_description": "Abilita funzionalità di debug aggiuntive all'interno dell'app.",
"default": "Predefinito",
"delete": "Elimina",
"delete_dialog_title": "Elimina {{prefix}} {{type}}",
"delete_info": "Non eliminerà la cartella dal tuo disco, solo le anteprime saranno eliminate.",
"delete_library": "Elimina Libreria",
"delete_library_description": "Questa azione è permanente, i tuoi file non saranno eliminati, solo la libreria di Spacedrive.",
"delete_location": "Elimina Posizione",
"delete_location_description": "Eliminare una posizione eliminerà anche tutti i file associati ad essa dal database di Spacedrive, i file stessi non saranno eliminati.",
"delete_object": "Elimina oggetto",
"delete_rule": "Elimina regola",
"delete_tag": "Elimina Tag",
"delete_tag_description": "Sei sicuro di voler cancellare questa etichetta? Questa operazione non può essere annullata e i file etichettati verranno scollegati.",
"delete_warning": "Attenzione: stai per eliminare il tuo {{type}} per sempre, non abbiamo ancora un cestino...",
"description": "Descrizione",
"deselect": "Deseleziona",
"details": "Dettagli",
"devices": "Dispositivi",
"devices_coming_soon_tooltip": "In arrivo prossimamente! Questa alpha non include la sincronizzazione delle librerie, è in arrivo molto presto.",
"dialog": "Finestra di dialogo",
"dialog_shortcut_description": "Per eseguire azioni e operazioni",
"direction": "Direzione",
"disabled": "Disabilitato",
"disconnected": "Disconnected",
"display_formats": "Formati di visualizzazione",
"display_name": "Nome da visualizzare",
"distance": "Distanza",
"done": "Completato",
"dont_show_again": "Non mostrare di nuovo",
"double_click_action": "Azione doppio click",
"download": "Scaricati",
"duplicate": "Duplicato",
"duplicate_object": "Duplica oggetto",
"edit": "Modifica",
"edit_library": "Modifica Libreria",
"edit_location": "Modifica Posizione",
"enable_networking": "Abilita Rete",
"encrypt": "Crittografa",
"encrypt_library": "Crittografa la Libreria",
"encrypt_library_coming_soon": "La crittografia della libreria arriverà prossimamente",
"encrypt_library_description": "Abilita la crittografia per questa libreria, questo cifrerà solo il database di Spacedrive, non i file stessi.",
"ephemeral_notice_browse": "Sfoglia i tuoi file e cartelle direttamente dal tuo dispositivo.",
"ephemeral_notice_consider_indexing": "Prendi in considerazione l'indicizzazione delle tue posizioni locali per un'esplorazione più rapida ed efficiente.",
"erase": "Elimina",
"erase_a_file": "Elimina un file",
"erase_a_file_description": "Configura le impostazioni di eliminazione.",
"error": "Errore",
"error_loading_original_file": "Errore durante il caricamento del file originale",
"expand": "Espandi",
"explorer": "Explorer",
"explorer_shortcut_description": "Per navigare e interagire con il sistema di file",
"export": "Esporta",
"export_library": "Esporta la Libreria",
"export_library_coming_soon": "L'esportazione della libreria arriverà prossimamente",
"export_library_description": "Esporta questa libreria in un file.",
"extensions": "Estensioni",
"extensions_description": "Installa estensioni per estendere le funzionalità di questo client.",
"fahrenheit": "Fahrenheit",
"failed_to_cancel_job": "Impossibile annullare il lavoro.",
"failed_to_clear_all_jobs": "Impossibile cancellare tutti i lavori.",
"failed_to_copy_file": "Impossibile copiare il file",
"failed_to_copy_file_path": "Impossibile copiare il percorso del file",
"failed_to_cut_file": "Impossibile tagliare il file",
"failed_to_duplicate_file": "Impossibile duplicare il file",
"failed_to_generate_checksum": "Impossibile generare il checksum",
"failed_to_generate_labels": "Impossibile generare etichette",
"failed_to_generate_thumbnails": "Impossibile generare le anteprime",
"failed_to_load_tags": "Impossibile caricare i tag",
"failed_to_pause_job": "Impossibile mettere in pausa il lavoro.",
"failed_to_reindex_location": "Impossibile reindicizzare la posizione",
"failed_to_remove_file_from_recents": "Impossibile rimuovere il file dai recenti",
"failed_to_remove_job": "Impossibile rimuovere il lavoro.",
"failed_to_rescan_location": "Impossibile eseguire nuovamente la scansione della posizione",
"failed_to_resume_job": "Impossibile riprendere il lavoro.",
"failed_to_update_location_settings": "Impossibile aggiornare le impostazioni del percorso",
"favorite": "Preferito",
"favorites": "Preferiti",
"feedback": "Feedback",
"feedback_is_required": "Il feedback è obbligatorio",
"feedback_login_description": "Effettuando l'accesso possiamo rispondere al tuo feedback",
"feedback_placeholder": "Il tuo feedback...",
"feedback_toast_error_message": "Si è verificato un errore durante l'invio del tuo feedback. Riprova.",
"file_already_exist_in_this_location": "Il file esiste già in questa posizione",
"file_indexing_rules": "Regole di indicizzazione dei file",
"filters": "Filtri",
"forward": "Avanti",
"full_disk_access": "Accesso completo al disco",
"full_disk_access_description": "Per fornire l'esperienza migliore, abbiamo bisogno di accedere al tuo disco per indicizzare i tuoi file. I tuoi file rimangono accessibili solo da te.",
"full_reindex": "Reindicizzazione Completa",
"full_reindex_info": "Esegui una nuova scansione completa di questa posizione.",
"general": "Generale",
"general_settings": "Impostazioni Generali",
"general_settings_description": "Impostazioni generali relative a questo client.",
"general_shortcut_description": "Scorciatoie d'uso generale",
"generatePreviewMedia_label": "Genera anteprime per questa posizione",
"generate_checksums": "Genera i checksum",
"go_back": "Indietro",
"got_it": "Capito",
"grid_gap": "Spaziatura",
"grid_view": "Vista a griglia",
"grid_view_notice_description": "Ottieni una panoramica visiva dei tuoi file con la Visualizzazione a griglia. Questa visualizzazione mostra i file e le cartelle come anteprime, facilitando l'identificazione rapida del file che stai cercando.",
"hidden_label": "Impedisce che la posizione e i suoi contenuti vengano visualizzati nelle categorie di riepilogo, nella ricerca e nei tag a meno che non sia abilitato \"Mostra elementi nascosti\".",
"hide_in_library_search": "Nascondi nella ricerca della libreria",
"hide_in_library_search_description": "Nascondi i file con questo tag dai risultati nella ricerca della libreria.",
"hide_in_sidebar": "Nascondi nella barra laterale",
"hide_in_sidebar_description": "Impedisci che questo tag venga visualizzato nella barra laterale dell'app.",
"hide_location_from_view": "Nascondi posizione e contenuti",
"home": "Home",
"image_labeler_ai_model": "Modello AI per il riconoscimento delle etichette delle immagini",
"image_labeler_ai_model_description": "Il modello utilizzato per riconoscere oggetti nelle immagini. I modelli più grandi sono più precisi ma anche più lenti.",
"import": "Importa",
"indexed": "Indicizzato",
"indexer_rule_reject_allow_label": "Per impostazione predefinita, una regola dell'indicizzatore funziona come una lista di esclusione, comportando l'esclusione di tutti i file che soddisfano i suoi criteri. Abilitando questa opzione, la trasformerà in una lista di inclusione, consentendo alla posizione di indicizzare esclusivamente i file che soddisfano le sue regole specificate.",
"indexer_rules": "Regole dell'indicizzatore",
"indexer_rules_info": "Le regole dell'indicizzatore consentono di specificare percorsi da ignorare utilizzando i glob.",
"install": "Installa",
"install_update": "Installa Aggiornamento",
"installed": "Installato",
"item_size": "Dimensione dell'elemento",
"item_with_count_one": "{{count}} elemento",
"item_with_count_other": "{{count}} elementi",
"job_has_been_canceled": "Il lavoro è stato annullato",
"job_has_been_paused": "Il lavoro è stato messo in pausa.",
"job_has_been_removed": "Il lavoro è stato rimosso.",
"job_has_been_resumed": "Il lavoro è stato ripreso.",
"join": "Entra",
"join_discord": "Entra su Discord",
"join_library": "Entra in una Libreria",
"join_library_description": "Le librerie sono un database sicuro sul dispositivo. I tuoi file rimangono dove sono, la Libreria li cataloga e memorizza tutti i dati relativi a Spacedrive.",
"key": "Chiave",
"key_manager": "Gestore di chiavi",
"key_manager_description": "Crea chiavi crittografiche, monta e smonta le tue chiavi per vedere i file decrittografati al volo.",
"keybinds": "Keybinds",
"keybinds_description": "Visualizza e gestisci le combinazioni di tasti del client",
"keys": "Chiavi",
"kilometers": "Kilometri",
"labels": "Etichette",
"language": "Lingua",
"language_description": "Cambia la lingua dell'interfaccia di Spacedrive",
"learn_more_about_telemetry": "Ulteriori informazioni sulla telemetria",
"libraries": "Librerie",
"libraries_description": "Il database contiene tutti i dati della libreria e i metadati dei file.",
"library": "Libreria",
"library_name": "Nome Libreria",
"library_overview": "Panoramica della Libreria",
"library_settings": "Impostazioni della Libreria",
"library_settings_description": "Impostazioni generali relative alla libreria attualmente attiva.",
"list_view": "Visualizzazione a Elenco",
"list_view_notice_description": "Naviga facilmente tra file e cartelle con la Visualizzazione a Elenco. Questa visualizzazione mostra i tuoi file in un formato a elenco semplice e organizzato, consentendoti di individuare e accedere rapidamente ai file necessari.",
"loading": "Caricamento",
"local": "Locale",
"local_locations": "Posizioni Locali",
"local_node": "Nodo Locale",
"location_connected_tooltip": "La posizione è monitorata per i cambiamenti",
"location_disconnected_tooltip": "La posizione non è monitorata per i cambiamenti",
"location_display_name_info": "Il nome di questa Posizione, questo è ciò che verrà visualizzato nella barra laterale. Non rinominerà la cartella effettiva sul disco.",
"location_is_already_linked": "La Posizione è già collegata",
"location_path_info": "Il percorso di questa Posizione, è qui che i file verranno archiviati sul disco.",
"location_type": "Tipo Posizione",
"location_type_managed": "Spacedrive ordinerà i file per te. Se la posizione non è vuota verrà creata una cartella \"spacedrive\".",
"location_type_normal": "I contenuti verranno indicizzati così come sono, i nuovi file non verranno ordinati automaticamente.",
"location_type_replica": "Questa Posizione è una replica di un'altra, i loro contenuti verranno sincronizzati in automatico.",
"locations": "Posizioni",
"locations_description": "Gestisci le tue posizioni",
"lock": "Blocca",
"log_in_with_browser": "Accedi con il browser",
"log_out": "Disconnettiti",
"logged_in_as": "Accesso effettuato come {{email}}",
"logout": "Esci",
"manage_library": "Gestisci la Libreria",
"managed": "Gestito",
"media": "Media",
"media_view_context": "contesto Media View",
"media_view_notice_description": "Scopri facilmente foto e video, Media View mostrerà i risultati a partire dalla posizione corrente, comprese le sottocartelle.",
"meet_contributors_behind_spacedrive": "Incontra i contributori dietro a Spacedrive",
"meet_title": "Incontra {{title}}",
"miles": "Miglia",
"mode": "Modalità",
"modified": "Modificati",
"more": "Di più",
"more_actions": "Più azioni...",
"more_info": "Più informazioni",
"move_back_within_quick_preview": "Torna indietro nella visualizzazione rapida",
"move_files": "Muovi i Files",
"move_forward_within_quick_preview": "Avanza nella visualizzazione rapida",
"name": "Nome",
"navigate_back": "Naviga indietro",
"navigate_backwards": "Naviga indietro",
"navigate_files_downwards": "Naviga file verso il basso",
"navigate_files_leftwards": "Naviga file verso sinistra",
"navigate_files_rightwards": "Naviga file verso destra",
"navigate_files_upwards": "Naviga file verso l'alto",
"navigate_forward": "Naviga avanti",
"navigate_forwards": "Naviga in avanti",
"navigate_to_settings_page": "Vai alla pagina Impostazioni",
"network": "Rete",
"network_page_description": "Gli altri nodi Spacedrive sulla tua LAN appariranno qui, insieme ai tuoi punti di montaggio di rete predefiniti del sistema operativo.",
"networking": "Rete",
"networking_port": "Porta di Rete",
"networking_port_description": "La porta su cui comunicare con la rete peer-to-peer di Spacedrive. Dovresti lasciarlo disabilitato a meno che tu non abbia un firewall restrittivo. Non esporre la tua connessione privata a Internet!",
"new_folder": "Nuova cartella",
"new_library": "Nuova libreria",
"new_location": "Nuova location",
"new_location_web_description": "Poiché stai utilizzando la versione browser di Spacedrive, per ora dovrai specificare un URL assoluto di una directory locale sul nodo remoto.",
"new_tab": "Nuova Scheda",
"new_tag": "Nuovo tag",
"no_files_found_here": "Nessun file trovato qui",
"no_jobs": "Nessun lavoro.",
"no_tag_selected": "Nessun tag selezionato",
"no_tags": "Nessun tag",
"node_name": "Nome del nodo",
"no_nodes_found": "Nessun nodo Spacedrive trovato.",
"nodes": "Nodi",
"nodes_description": "Gestisci i nodi collegati a questa libreria. Un nodo è un'istanza del backend di Spacedrive, in esecuzione su un dispositivo o server. Ogni nodo trasporta una copia del database e si sincronizza tramite connessioni peer-to-peer in tempo reale.",
"none": "Nessuno",
"normal": "Normale",
"not_you": "Non sei tu?",
"number_of_passes": "# di passaggi",
"object_id": "ID oggetto",
"offline": "Offline",
"online": "Online",
"open": "Apri",
"open_file": "Apri File",
"open_new_location_once_added": "Apri la nuova location una volta aggiunta",
"open_new_tab": "Apri nuova scheda",
"open_object": "Apri oggetto",
"open_object_from_quick_preview_in_native_file_manager": "Apri oggetto dalla visualizzazione rapida nel gestore di file nativo",
"open_settings": "Apri le impostazioni",
"open_with": "Apri con",
"or": "oppure",
"overview": "Panoramica",
"page": "Pagina",
"page_shortcut_description": "Diverse pagine nell'app",
"pair": "Accoppia",
"pairing_with_node": "Sto accoppiando con {{node}}",
"paste": "Incolla",
"paste_object": "Incolla oggetto",
"path": "Percorso",
"path_copied_to_clipboard_description": "Percorso per la location {{location}} copiato nella clipboard.",
"path_copied_to_clipboard_title": "Percorso copiato nella clipboard",
"pause": "Pausa",
"peers": "Peers",
"people": "Persone",
"privacy": "Privacy",
"privacy_description": "Spacedrive è progettato per garantire la privacy, ecco perché siamo innanzitutto open source e manteniamo i file in locale. Quindi renderemo molto chiaro quali dati vengono condivisi con noi.",
"quick_preview": "Anteprima rapida",
"quick_view": "Visualizzazione rapida",
"recent_jobs": "Jobs recenti",
"recents": "Recenti",
"regen_labels": "Rigenera le Labels",
"regen_thumbnails": "Rigenera le anteprime",
"regenerate_thumbs": "Rigenera le anteprime",
"reindex": "Re-indicizza",
"reject": "Rifiuta",
"reload": "Ricarica",
"remove": "Rimuovi",
"remove_from_recents": "Rimuovi dai recenti",
"rename": "Rinomina",
"rename_object": "Rinomina oggetto",
"replica": "Replica",
"rescan_directory": "Scansiona di nuovo la Cartella",
"rescan_location": "Scansiona di nuovo la Posizione",
"reset": "Reset",
"resources": "Risorse",
"restore": "Ripristina",
"resume": "Riprendi",
"retry": "Riprova",
"reveal_in_native_file_manager": "Mostra nel gestore di file nativo",
"revel_in_browser": "Mostra in {{browser}}",
"running": "In esecuzione",
"save": "Salva",
"save_changes": "Salva le modifiche",
"saved_searches": "Ricerche salvate",
"search_extensions": "Cerca estensioni",
"secure_delete": "Eliminazione sicura",
"security": "Sicurezza",
"security_description": "Tieni al sicuro il tuo client.",
"send": "Invia",
"settings": "Impostazioni",
"setup": "Imposta",
"share": "Condividi",
"share_anonymous_usage": "Condividi l'utilizzo in modo anonimo",
"share_anonymous_usage_description": "Condividi dati di telemetria in maniera completamente anonima per aiutare gli sviluppatori a migliorare l'app",
"share_bare_minimum": "Condividi il minimo necessario",
"share_bare_minimum_description": "Condividi solo che sono un utente attivo di Spacedrive e altri dettagli tecnici",
"sharing": "Condivisione",
"sharing_description": "Gestisci chi ha accesso alle tue librerie.",
"show_details": "Mostra dettagli",
"show_hidden_files": "Mostra file nascosti",
"show_object_size": "Mostra la dimensione dell'oggetto",
"show_path_bar": "Mostra barra del percorso",
"show_slider": "Mostra slider",
"size": "Dimensione",
"skip_login": "Salta l'accesso",
"sort_by": "Ordina per",
"spacedrive_account": "Account Spacedrive",
"spacedrive_cloud": "Cloud Spacedrive",
"spacedrive_cloud_description": "Spacedrive è sempre locale in primo luogo, ma offriremo i nostri servizi cloud opzionali in futuro. Per ora, l'autenticazione viene utilizzata solo per la funzione di Feedback, altrimenti non è richiesta.",
"spacedrop_a_file": "Spacedroppa un file",
"spacedrop_description": "Condividi istantaneamente con dispositivi che eseguono Spacedrive sulla tua rete.",
"spacedrop_already_progress": "Spacedrop già in corso",
"spacedrop_rejected": "Spacedrop rifiutato",
"square_thumbnails": "Miniature quadrate",
"star_on_github": "Aggiungi ai preferiti su GitHub",
"stop": "Stop",
"success": "Successo",
"support": "Supporto",
"switch_to_grid_view": "Passa alla visualizzazione a griglia",
"switch_to_list_view": "Passa alla visualizzazione a lista",
"switch_to_media_view": "Passa alla visualizzazione multimediale",
"switch_to_next_tab": "Passa alla scheda successiva",
"switch_to_previous_tab": "Passa alla scheda precedente",
"sync": "Sincronizza",
"syncPreviewMedia_label": "Sincronizza l'anteprima multimediale per questa posizione con i tuoi dispositivi",
"sync_description": "Gestisci la modalità di sincronizzazione di Spacedrive.",
"sync_with_library": "Sincronizza con la Libreria",
"sync_with_library_description": "Se abilitato, le combinazioni di tasti verranno sincronizzate con la libreria, altrimenti verranno applicate solo a questo client.",
"tags": "Tags",
"tags_description": "Gestisci i tuoi tags.",
"telemetry_description": "Attiva per fornire agli sviluppatori dati dettagliati sull'utilizzo e sulla telemetria per migliorare l'app. Disattiva per inviare solo i dati di base: stato della tua attività, versione dell'app, versione principale e piattaforma (ad esempio mobile, web o desktop).",
"telemetry_title": "Condividi ulteriori dati di telemetria e utilizzo",
"temperature": "Temperatura",
"thank_you_for_your_feedback": "Grazie per il tuo feedback!",
"thumbnailer_cpu_usage": "Utilizzo della CPU per le miniature",
"thumbnailer_cpu_usage_description": "Limita la quantità di CPU che può essere usata per l'elaborazione delle anteprime in background.",
"toggle_all": "Attiva/Disattiva tutto",
"toggle_hidden_files": "Mostra/nascondi file nascosti",
"toggle_image_slider_within_quick_preview": "Mostra/nascondi slider immagini nell'anteprima rapida",
"toggle_inspector": "Mostra/nascondi ispettore",
"toggle_job_manager": "Mostra/nascondi gestore dei lavori",
"toggle_metadata": "Mostra/nascondi metadati",
"toggle_path_bar": "Mostra/nascondi barra del percorso",
"toggle_quick_preview": "Mostra/nascondi anteprima rapida",
"type": "Tipo",
"ui_animations": "Animazioni dell'interfaccia utente",
"ui_animations_description": "Le finestre di dialogo e altri elementi dell'interfaccia utente si animeranno durante l'apertura e la chiusura.",
"unnamed_location": "Posizione senza nome",
"usage": "Utilizzo",
"usage_description": "Informazioni sull'utilizzo della libreria e sull'hardware",
"value": "Valore",
"video_preview_not_supported": "L'anteprima video non è supportata.",
"want_to_do_this_later": "Vuoi farlo più tardi?",
"website": "Sito web",
"your_account": "Il tuo account",
"your_account_description": "Account di Spacedrive e informazioni.",
"your_local_network": "La tua rete locale",
"your_privacy": "La tua Privacy",
"ask_spacedrive": "Chiedi a Spacedrive",
"close_command_palette": "Chiudi la tavolozza dei comandi",
"copy_success": "Elementi copiati",
"cut_success": "Articoli tagliati",
"downloading_update": "Download dell'aggiornamento",
"duplicate_success": "Elementi duplicati",
"failed_to_download_update": "Impossibile scaricare l'aggiornamento",
"go_to_labels": "Vai alle etichette",
"go_to_location": "Vai alla posizione",
"go_to_overview": "Vai alla panoramica",
"go_to_recents": "Vai ai recenti",
"go_to_settings": "Vai alle impostazioni",
"go_to_tag": "Vai al tag",
"new_update_available": "Nuovo aggiornamento disponibile!",
"no_labels": "Nessuna etichetta",
"paste_success": "Elementi incollati",
"search_for_files_and_actions": "Cerca file e azioni...",
"toggle_command_palette": "Attiva/disattiva la tavolozza dei comandi",
"update": "Aggiornamento",
"update_downloaded": "Aggiornamento scaricato. Riavvia Spacedrive per eseguire l'installazione",
"updated_successfully": "Aggiornato con successo, sei sulla versione {{version}}",
"version": "Versione {{versione}}",
"view_changes": "Visualizza modifiche"
"about": "Su di noi",
"about_vision_text": "Molti di noi hanno più account cloud, dischi di cui non è stato eseguito il backup e dati a rischio di essere persi. Dipendiamo da servizi cloud come Google Photos e iCloud, che sono limitati dalla loro capacità e scarsissima interoperabilità tra servizi e sistemi operativi. Gli album fotografici non dovrebbero essere bloccati in un ecosistema di dispositivi, o essere usati per raccogliere dati. Dovrebbero essere agnostici dal sistema operativo, e detenuti permanentemente e personalmente. I dati che creiamo sono la nostra eredità, che sopravviverà molto più a lungo di noi. La tecnologia open source è l'unico modo per assicurarci di conservare il controllo assoluto sui dati che definisce le nostre vite, a scala illimitata.",
"about_vision_title": "Visione",
"accept": "Accetta",
"accessed": "Aperto",
"account": "Account",
"actions": "Azioni",
"add": "Aggiungi",
"add_device": "Aggiungi dispositivo",
"add_library": "Aggiungi libreria",
"add_location": "Aggiungi Posizione",
"add_location_description": "Migliora la tua esperienza con Spacedrive aggiungendo le tue posizioni preferite alla tua libreria personale, per una gestione dei file semplice ed efficiente.",
"add_location_tooltip": "Aggiungi percorso come posizione indicizzata",
"add_locations": "Aggiungi Percorso",
"add_tag": "Aggiungi Tag",
"advanced_settings": "Impostazioni avanzate",
"all_jobs_have_been_cleared": "Tutti i lavori sono stati cancellati.",
"alpha_release_description": "Siamo molto lieti che stiate provando Spacedrive, ora in versione Alpha, che presenta nuove entusiasmanti funzionalità. Come ogni rilascio iniziale, questa versione potrebbe contenere alcuni bug. Vi chiediamo gentilmente aiuto nel segnalare qualsiasi problema che incontrerete nel nostro canale Discord. Il vostro prezioso feedback contribuirà notevolmente a migliorare l'esperienza utente.",
"alpha_release_title": "Versione Alpha",
"appearance": "Aspetto",
"appearance_description": "Cambia l'aspetto del tuo client.",
"archive": "Archivio",
"archive_coming_soon": "L'archiviazione delle posizioni arriverà in futuro...",
"archive_info": "Estrai dati dalla Libreria come archivio, utile per preservare la struttura della cartella Posizioni.",
"are_you_sure": "Sei sicuro?",
"assign_tag": "Assegna tag",
"audio_preview_not_supported": "L'anteprima audio non è disponibile.",
"back": "Indietro",
"backups": "Backups",
"backups_description": "Gestisci i tuoi backup del database di Spacedrive.",
"blur_effects": "Effetti di sfocatura",
"blur_effects_description": "Alcuni componenti avranno un effetto di sfocatura applicato ad essi.",
"cancel": "Annulla",
"cancel_selection": "Annulla selezione",
"celcius": "Celsius",
"change": "Cambia",
"changelog": "Changelog",
"changelog_page_description": "Scopri quali nuove fantastiche funzionalità stiamo realizzando",
"changelog_page_title": "Changelog",
"checksum": "Checksum",
"clear_finished_jobs": "Cancella i lavori completati",
"client": "Client",
"close": "Chiudi",
"close_current_tab": "Chiudi scheda corrente",
"clouds": "Clouds",
"color": "Colore",
"coming_soon": "In arrivo prossimamente",
"compress": "Comprimi",
"configure_location": "Configura posizione",
"connected": "Connesso",
"contacts": "Contatti",
"contacts_description": "Gestisci i tuoi contatti su Spacedrive.",
"content_id": "ID Contenuto",
"continue": "Continua",
"convert_to": "Converti in",
"coordinates": "Coordinate",
"copied": "Copiato",
"copy": "Copia",
"copy_as_path": "Copia come percorso",
"copy_object": "Copia oggetto",
"copy_path_to_clipboard": "Copia percorso nella clipboard",
"create": "Crea",
"create_library": "Crea una libreria",
"create_library_description": "Le librerie sono un database sicuro sul dispositivo. I tuoi file rimangono dove sono, la Libreria li cataloga e memorizza tutti i dati relativi a Spacedrive",
"create_new_library": "Crea una nuova Libreria",
"create_new_library_description": "Le librerie sono un database sicuro sul dispositivo. I tuoi file rimangono dove sono, la Libreria li cataloga e memorizza tutti i dati relativi a Spacedrive",
"create_new_tag": "Crea un nuovo Tag",
"create_new_tag_description": "Scegli un nome e un colore.",
"create_tag": "Crea il Tag",
"created": "Creato",
"creating_library": "Creando la libreria...",
"creating_your_library": "Creando la tua libreria",
"current": "Attuale",
"current_directory": "Cartella attuale",
"current_directory_with_descendants": "Cartella attuale con discendenti",
"custom": "Personalizzato",
"cut": "Taglia",
"cut_object": "Taglia oggetto",
"data_folder": "Cartella dati",
"debug_mode": "Modalità debug",
"debug_mode_description": "Abilita funzionalità di debug aggiuntive all'interno dell'app.",
"default": "Predefinito",
"delete": "Elimina",
"delete_dialog_title": "Elimina {{prefix}} {{type}}",
"delete_info": "Non eliminerà la cartella dal tuo disco, solo le anteprime saranno eliminate.",
"delete_library": "Elimina Libreria",
"delete_library_description": "Questa azione è permanente, i tuoi file non saranno eliminati, solo la libreria di Spacedrive.",
"delete_location": "Elimina Posizione",
"delete_location_description": "Eliminare una posizione eliminerà anche tutti i file associati ad essa dal database di Spacedrive, i file stessi non saranno eliminati.",
"delete_object": "Elimina oggetto",
"delete_rule": "Elimina regola",
"delete_tag": "Elimina Tag",
"delete_tag_description": "Sei sicuro di voler cancellare questa etichetta? Questa operazione non può essere annullata e i file etichettati verranno scollegati.",
"delete_warning": "Attenzione: stai per eliminare il tuo {{type}} per sempre, non abbiamo ancora un cestino...",
"description": "Descrizione",
"deselect": "Deseleziona",
"details": "Dettagli",
"devices": "Dispositivi",
"devices_coming_soon_tooltip": "In arrivo prossimamente! Questa alpha non include la sincronizzazione delle librerie, è in arrivo molto presto.",
"dialog": "Finestra di dialogo",
"dialog_shortcut_description": "Per eseguire azioni e operazioni",
"direction": "Direzione",
"disabled": "Disabilitato",
"disconnected": "Disconnected",
"display_formats": "Formati di visualizzazione",
"display_name": "Nome da visualizzare",
"distance": "Distanza",
"done": "Completato",
"dont_show_again": "Non mostrare di nuovo",
"double_click_action": "Azione doppio click",
"download": "Scaricati",
"duplicate": "Duplicato",
"duplicate_object": "Duplica oggetto",
"edit": "Modifica",
"edit_library": "Modifica Libreria",
"edit_location": "Modifica Posizione",
"enable_networking": "Abilita Rete",
"encrypt": "Crittografa",
"encrypt_library": "Crittografa la Libreria",
"encrypt_library_coming_soon": "La crittografia della libreria arriverà prossimamente",
"encrypt_library_description": "Abilita la crittografia per questa libreria, questo cifrerà solo il database di Spacedrive, non i file stessi.",
"ephemeral_notice_browse": "Sfoglia i tuoi file e cartelle direttamente dal tuo dispositivo.",
"ephemeral_notice_consider_indexing": "Prendi in considerazione l'indicizzazione delle tue posizioni locali per un'esplorazione più rapida ed efficiente.",
"erase": "Elimina",
"erase_a_file": "Elimina un file",
"erase_a_file_description": "Configura le impostazioni di eliminazione.",
"error": "Errore",
"error_loading_original_file": "Errore durante il caricamento del file originale",
"expand": "Espandi",
"explorer": "Explorer",
"explorer_shortcut_description": "Per navigare e interagire con il sistema di file",
"export": "Esporta",
"export_library": "Esporta la Libreria",
"export_library_coming_soon": "L'esportazione della libreria arriverà prossimamente",
"export_library_description": "Esporta questa libreria in un file.",
"extensions": "Estensioni",
"extensions_description": "Installa estensioni per estendere le funzionalità di questo client.",
"fahrenheit": "Fahrenheit",
"failed_to_cancel_job": "Impossibile annullare il lavoro.",
"failed_to_clear_all_jobs": "Impossibile cancellare tutti i lavori.",
"failed_to_copy_file": "Impossibile copiare il file",
"failed_to_copy_file_path": "Impossibile copiare il percorso del file",
"failed_to_cut_file": "Impossibile tagliare il file",
"failed_to_duplicate_file": "Impossibile duplicare il file",
"failed_to_generate_checksum": "Impossibile generare il checksum",
"failed_to_generate_labels": "Impossibile generare etichette",
"failed_to_generate_thumbnails": "Impossibile generare le anteprime",
"failed_to_load_tags": "Impossibile caricare i tag",
"failed_to_pause_job": "Impossibile mettere in pausa il lavoro.",
"failed_to_reindex_location": "Impossibile reindicizzare la posizione",
"failed_to_remove_file_from_recents": "Impossibile rimuovere il file dai recenti",
"failed_to_remove_job": "Impossibile rimuovere il lavoro.",
"failed_to_rescan_location": "Impossibile eseguire nuovamente la scansione della posizione",
"failed_to_resume_job": "Impossibile riprendere il lavoro.",
"failed_to_update_location_settings": "Impossibile aggiornare le impostazioni del percorso",
"favorite": "Preferito",
"favorites": "Preferiti",
"feedback": "Feedback",
"feedback_is_required": "Il feedback è obbligatorio",
"feedback_login_description": "Effettuando l'accesso possiamo rispondere al tuo feedback",
"feedback_placeholder": "Il tuo feedback...",
"feedback_toast_error_message": "Si è verificato un errore durante l'invio del tuo feedback. Riprova.",
"file_already_exist_in_this_location": "Il file esiste già in questa posizione",
"file_indexing_rules": "Regole di indicizzazione dei file",
"filters": "Filtri",
"forward": "Avanti",
"full_disk_access": "Accesso completo al disco",
"full_disk_access_description": "Per fornire l'esperienza migliore, abbiamo bisogno di accedere al tuo disco per indicizzare i tuoi file. I tuoi file rimangono accessibili solo da te.",
"full_reindex": "Reindicizzazione Completa",
"full_reindex_info": "Esegui una nuova scansione completa di questa posizione.",
"general": "Generale",
"general_settings": "Impostazioni Generali",
"general_settings_description": "Impostazioni generali relative a questo client.",
"general_shortcut_description": "Scorciatoie d'uso generale",
"generatePreviewMedia_label": "Genera anteprime per questa posizione",
"generate_checksums": "Genera i checksum",
"go_back": "Indietro",
"got_it": "Capito",
"grid_gap": "Spaziatura",
"grid_view": "Vista a griglia",
"grid_view_notice_description": "Ottieni una panoramica visiva dei tuoi file con la Visualizzazione a griglia. Questa visualizzazione mostra i file e le cartelle come anteprime, facilitando l'identificazione rapida del file che stai cercando.",
"hidden_label": "Impedisce che la posizione e i suoi contenuti vengano visualizzati nelle categorie di riepilogo, nella ricerca e nei tag a meno che non sia abilitato \"Mostra elementi nascosti\".",
"hide_in_library_search": "Nascondi nella ricerca della libreria",
"hide_in_library_search_description": "Nascondi i file con questo tag dai risultati nella ricerca della libreria.",
"hide_in_sidebar": "Nascondi nella barra laterale",
"hide_in_sidebar_description": "Impedisci che questo tag venga visualizzato nella barra laterale dell'app.",
"hide_location_from_view": "Nascondi posizione e contenuti",
"home": "Home",
"image_labeler_ai_model": "Modello AI per il riconoscimento delle etichette delle immagini",
"image_labeler_ai_model_description": "Il modello utilizzato per riconoscere oggetti nelle immagini. I modelli più grandi sono più precisi ma anche più lenti.",
"import": "Importa",
"indexed": "Indicizzato",
"indexer_rule_reject_allow_label": "Per impostazione predefinita, una regola dell'indicizzatore funziona come una lista di esclusione, comportando l'esclusione di tutti i file che soddisfano i suoi criteri. Abilitando questa opzione, la trasformerà in una lista di inclusione, consentendo alla posizione di indicizzare esclusivamente i file che soddisfano le sue regole specificate.",
"indexer_rules": "Regole dell'indicizzatore",
"indexer_rules_info": "Le regole dell'indicizzatore consentono di specificare percorsi da ignorare utilizzando i glob.",
"install": "Installa",
"install_update": "Installa Aggiornamento",
"installed": "Installato",
"item_size": "Dimensione dell'elemento",
"item_with_count_one": "{{count}} elemento",
"item_with_count_other": "{{count}} elementi",
"job_has_been_canceled": "Il lavoro è stato annullato",
"job_has_been_paused": "Il lavoro è stato messo in pausa.",
"job_has_been_removed": "Il lavoro è stato rimosso.",
"job_has_been_resumed": "Il lavoro è stato ripreso.",
"join": "Entra",
"join_discord": "Entra su Discord",
"join_library": "Entra in una Libreria",
"join_library_description": "Le librerie sono un database sicuro sul dispositivo. I tuoi file rimangono dove sono, la Libreria li cataloga e memorizza tutti i dati relativi a Spacedrive.",
"key": "Chiave",
"key_manager": "Gestore di chiavi",
"key_manager_description": "Crea chiavi crittografiche, monta e smonta le tue chiavi per vedere i file decrittografati al volo.",
"keybinds": "Keybinds",
"keybinds_description": "Visualizza e gestisci le combinazioni di tasti del client",
"keys": "Chiavi",
"kilometers": "Kilometri",
"labels": "Etichette",
"language": "Lingua",
"language_description": "Cambia la lingua dell'interfaccia di Spacedrive",
"learn_more_about_telemetry": "Ulteriori informazioni sulla telemetria",
"libraries": "Librerie",
"libraries_description": "Il database contiene tutti i dati della libreria e i metadati dei file.",
"library": "Libreria",
"library_name": "Nome Libreria",
"library_overview": "Panoramica della Libreria",
"library_settings": "Impostazioni della Libreria",
"library_settings_description": "Impostazioni generali relative alla libreria attualmente attiva.",
"list_view": "Visualizzazione a Elenco",
"list_view_notice_description": "Naviga facilmente tra file e cartelle con la Visualizzazione a Elenco. Questa visualizzazione mostra i tuoi file in un formato a elenco semplice e organizzato, consentendoti di individuare e accedere rapidamente ai file necessari.",
"loading": "Caricamento",
"local": "Locale",
"local_locations": "Posizioni Locali",
"local_node": "Nodo Locale",
"location_connected_tooltip": "La posizione è monitorata per i cambiamenti",
"location_disconnected_tooltip": "La posizione non è monitorata per i cambiamenti",
"location_display_name_info": "Il nome di questa Posizione, questo è ciò che verrà visualizzato nella barra laterale. Non rinominerà la cartella effettiva sul disco.",
"location_is_already_linked": "La Posizione è già collegata",
"location_path_info": "Il percorso di questa Posizione, è qui che i file verranno archiviati sul disco.",
"location_type": "Tipo Posizione",
"location_type_managed": "Spacedrive ordinerà i file per te. Se la posizione non è vuota verrà creata una cartella \"spacedrive\".",
"location_type_normal": "I contenuti verranno indicizzati così come sono, i nuovi file non verranno ordinati automaticamente.",
"location_type_replica": "Questa Posizione è una replica di un'altra, i loro contenuti verranno sincronizzati in automatico.",
"locations": "Posizioni",
"locations_description": "Gestisci le tue posizioni",
"lock": "Blocca",
"log_in_with_browser": "Accedi con il browser",
"log_out": "Disconnettiti",
"logged_in_as": "Accesso effettuato come {{email}}",
"logout": "Esci",
"manage_library": "Gestisci la Libreria",
"managed": "Gestito",
"media": "Media",
"media_view_context": "contesto Media View",
"media_view_notice_description": "Scopri facilmente foto e video, Media View mostrerà i risultati a partire dalla posizione corrente, comprese le sottocartelle.",
"meet_contributors_behind_spacedrive": "Incontra i contributori dietro a Spacedrive",
"meet_title": "Incontra {{title}}",
"miles": "Miglia",
"mode": "Modalità",
"modified": "Modificati",
"more": "Di più",
"more_actions": "Più azioni...",
"more_info": "Più informazioni",
"move_back_within_quick_preview": "Torna indietro nella visualizzazione rapida",
"move_files": "Muovi i Files",
"move_forward_within_quick_preview": "Avanza nella visualizzazione rapida",
"name": "Nome",
"navigate_back": "Naviga indietro",
"navigate_backwards": "Naviga indietro",
"navigate_files_downwards": "Naviga file verso il basso",
"navigate_files_leftwards": "Naviga file verso sinistra",
"navigate_files_rightwards": "Naviga file verso destra",
"navigate_files_upwards": "Naviga file verso l'alto",
"navigate_forward": "Naviga avanti",
"navigate_forwards": "Naviga in avanti",
"navigate_to_settings_page": "Vai alla pagina Impostazioni",
"network": "Rete",
"network_page_description": "Gli altri nodi Spacedrive sulla tua LAN appariranno qui, insieme ai tuoi punti di montaggio di rete predefiniti del sistema operativo.",
"networking": "Rete",
"networking_port": "Porta di Rete",
"networking_port_description": "La porta su cui comunicare con la rete peer-to-peer di Spacedrive. Dovresti lasciarlo disabilitato a meno che tu non abbia un firewall restrittivo. Non esporre la tua connessione privata a Internet!",
"new_folder": "Nuova cartella",
"new_library": "Nuova libreria",
"new_location": "Nuova location",
"new_location_web_description": "Poiché stai utilizzando la versione browser di Spacedrive, per ora dovrai specificare un URL assoluto di una directory locale sul nodo remoto.",
"new_tab": "Nuova Scheda",
"new_tag": "Nuovo tag",
"no_files_found_here": "Nessun file trovato qui",
"no_jobs": "Nessun lavoro.",
"no_tag_selected": "Nessun tag selezionato",
"no_tags": "Nessun tag",
"node_name": "Nome del nodo",
"no_nodes_found": "Nessun nodo Spacedrive trovato.",
"nodes": "Nodi",
"nodes_description": "Gestisci i nodi collegati a questa libreria. Un nodo è un'istanza del backend di Spacedrive, in esecuzione su un dispositivo o server. Ogni nodo trasporta una copia del database e si sincronizza tramite connessioni peer-to-peer in tempo reale.",
"none": "Nessuno",
"normal": "Normale",
"not_you": "Non sei tu?",
"number_of_passes": "# di passaggi",
"object_id": "ID oggetto",
"offline": "Offline",
"online": "Online",
"open": "Apri",
"open_file": "Apri File",
"open_new_location_once_added": "Apri la nuova location una volta aggiunta",
"open_new_tab": "Apri nuova scheda",
"open_object": "Apri oggetto",
"open_object_from_quick_preview_in_native_file_manager": "Apri oggetto dalla visualizzazione rapida nel gestore di file nativo",
"open_settings": "Apri le impostazioni",
"open_with": "Apri con",
"or": "oppure",
"overview": "Panoramica",
"page": "Pagina",
"page_shortcut_description": "Diverse pagine nell'app",
"pair": "Accoppia",
"pairing_with_node": "Sto accoppiando con {{node}}",
"paste": "Incolla",
"paste_object": "Incolla oggetto",
"path": "Percorso",
"path_copied_to_clipboard_description": "Percorso per la location {{location}} copiato nella clipboard.",
"path_copied_to_clipboard_title": "Percorso copiato nella clipboard",
"pause": "Pausa",
"peers": "Peers",
"people": "Persone",
"privacy": "Privacy",
"privacy_description": "Spacedrive è progettato per garantire la privacy, ecco perché siamo innanzitutto open source e manteniamo i file in locale. Quindi renderemo molto chiaro quali dati vengono condivisi con noi.",
"quick_preview": "Anteprima rapida",
"quick_view": "Visualizzazione rapida",
"recent_jobs": "Jobs recenti",
"recents": "Recenti",
"regen_labels": "Rigenera le Labels",
"regen_thumbnails": "Rigenera le anteprime",
"regenerate_thumbs": "Rigenera le anteprime",
"reindex": "Re-indicizza",
"reject": "Rifiuta",
"reload": "Ricarica",
"remove": "Rimuovi",
"remove_from_recents": "Rimuovi dai recenti",
"rename": "Rinomina",
"rename_object": "Rinomina oggetto",
"replica": "Replica",
"rescan_directory": "Scansiona di nuovo la Cartella",
"rescan_location": "Scansiona di nuovo la Posizione",
"reset": "Reset",
"resources": "Risorse",
"restore": "Ripristina",
"resume": "Riprendi",
"retry": "Riprova",
"reveal_in_native_file_manager": "Mostra nel gestore di file nativo",
"revel_in_browser": "Mostra in {{browser}}",
"running": "In esecuzione",
"save": "Salva",
"save_changes": "Salva le modifiche",
"saved_searches": "Ricerche salvate",
"search_extensions": "Cerca estensioni",
"secure_delete": "Eliminazione sicura",
"security": "Sicurezza",
"security_description": "Tieni al sicuro il tuo client.",
"send": "Invia",
"settings": "Impostazioni",
"setup": "Imposta",
"share": "Condividi",
"share_anonymous_usage": "Condividi l'utilizzo in modo anonimo",
"share_anonymous_usage_description": "Condividi dati di telemetria in maniera completamente anonima per aiutare gli sviluppatori a migliorare l'app",
"share_bare_minimum": "Condividi il minimo necessario",
"share_bare_minimum_description": "Condividi solo che sono un utente attivo di Spacedrive e altri dettagli tecnici",
"sharing": "Condivisione",
"sharing_description": "Gestisci chi ha accesso alle tue librerie.",
"show_details": "Mostra dettagli",
"show_hidden_files": "Mostra file nascosti",
"show_object_size": "Mostra la dimensione dell'oggetto",
"show_path_bar": "Mostra barra del percorso",
"show_slider": "Mostra slider",
"size": "Dimensione",
"skip_login": "Salta l'accesso",
"sort_by": "Ordina per",
"spacedrive_account": "Account Spacedrive",
"spacedrive_cloud": "Cloud Spacedrive",
"spacedrive_cloud_description": "Spacedrive è sempre locale in primo luogo, ma offriremo i nostri servizi cloud opzionali in futuro. Per ora, l'autenticazione viene utilizzata solo per la funzione di Feedback, altrimenti non è richiesta.",
"spacedrop_a_file": "Spacedroppa un file",
"spacedrop_description": "Condividi istantaneamente con dispositivi che eseguono Spacedrive sulla tua rete.",
"spacedrop_already_progress": "Spacedrop già in corso",
"spacedrop_rejected": "Spacedrop rifiutato",
"square_thumbnails": "Miniature quadrate",
"star_on_github": "Aggiungi ai preferiti su GitHub",
"stop": "Stop",
"success": "Successo",
"support": "Supporto",
"switch_to_grid_view": "Passa alla visualizzazione a griglia",
"switch_to_list_view": "Passa alla visualizzazione a lista",
"switch_to_media_view": "Passa alla visualizzazione multimediale",
"switch_to_next_tab": "Passa alla scheda successiva",
"switch_to_previous_tab": "Passa alla scheda precedente",
"sync": "Sincronizza",
"syncPreviewMedia_label": "Sincronizza l'anteprima multimediale per questa posizione con i tuoi dispositivi",
"sync_description": "Gestisci la modalità di sincronizzazione di Spacedrive.",
"sync_with_library": "Sincronizza con la Libreria",
"sync_with_library_description": "Se abilitato, le combinazioni di tasti verranno sincronizzate con la libreria, altrimenti verranno applicate solo a questo client.",
"tags": "Tags",
"tags_description": "Gestisci i tuoi tags.",
"telemetry_description": "Attiva per fornire agli sviluppatori dati dettagliati sull'utilizzo e sulla telemetria per migliorare l'app. Disattiva per inviare solo i dati di base: stato della tua attività, versione dell'app, versione principale e piattaforma (ad esempio mobile, web o desktop).",
"telemetry_title": "Condividi ulteriori dati di telemetria e utilizzo",
"temperature": "Temperatura",
"thank_you_for_your_feedback": "Grazie per il tuo feedback!",
"thumbnailer_cpu_usage": "Utilizzo della CPU per le miniature",
"thumbnailer_cpu_usage_description": "Limita la quantità di CPU che può essere usata per l'elaborazione delle anteprime in background.",
"toggle_all": "Attiva/Disattiva tutto",
"toggle_hidden_files": "Mostra/nascondi file nascosti",
"toggle_image_slider_within_quick_preview": "Mostra/nascondi slider immagini nell'anteprima rapida",
"toggle_inspector": "Mostra/nascondi ispettore",
"toggle_job_manager": "Mostra/nascondi gestore dei lavori",
"toggle_metadata": "Mostra/nascondi metadati",
"toggle_path_bar": "Mostra/nascondi barra del percorso",
"toggle_quick_preview": "Mostra/nascondi anteprima rapida",
"type": "Tipo",
"ui_animations": "Animazioni dell'interfaccia utente",
"ui_animations_description": "Le finestre di dialogo e altri elementi dell'interfaccia utente si animeranno durante l'apertura e la chiusura.",
"unnamed_location": "Posizione senza nome",
"usage": "Utilizzo",
"usage_description": "Informazioni sull'utilizzo della libreria e sull'hardware",
"value": "Valore",
"video_preview_not_supported": "L'anteprima video non è supportata.",
"want_to_do_this_later": "Vuoi farlo più tardi?",
"website": "Sito web",
"your_account": "Il tuo account",
"your_account_description": "Account di Spacedrive e informazioni.",
"your_local_network": "La tua rete locale",
"your_privacy": "La tua Privacy",
"ask_spacedrive": "Chiedi a Spacedrive",
"close_command_palette": "Chiudi la tavolozza dei comandi",
"copy_success": "Elementi copiati",
"cut_success": "Articoli tagliati",
"downloading_update": "Download dell'aggiornamento",
"duplicate_success": "Elementi duplicati",
"failed_to_download_update": "Impossibile scaricare l'aggiornamento",
"go_to_labels": "Vai alle etichette",
"go_to_location": "Vai alla posizione",
"go_to_overview": "Vai alla panoramica",
"go_to_recents": "Vai ai recenti",
"go_to_settings": "Vai alle impostazioni",
"go_to_tag": "Vai al tag",
"new_update_available": "Nuovo aggiornamento disponibile!",
"no_labels": "Nessuna etichetta",
"paste_success": "Elementi incollati",
"search_for_files_and_actions": "Cerca file e azioni...",
"toggle_command_palette": "Attiva/disattiva la tavolozza dei comandi",
"update": "Aggiornamento",
"update_downloaded": "Aggiornamento scaricato. Riavvia Spacedrive per eseguire l'installazione",
"updated_successfully": "Aggiornato con successo, sei sulla versione {{version}}",
"version": "Versione {{versione}}",
"view_changes": "Visualizza modifiche"
}

View file

@ -1,452 +1,452 @@
{
"about": "概要",
"about_vision_text": "私達は通常、複数のクラウドのアカウントを持ち、バックアップのないドライブを利用し、データを失う危険にさらされています。またGoogle PhotosやiCloudのようなクラウドサービスに依存していますが、それらは容量に制限があり、サービスやOS間に互換性はほとんどありません。フォトアルバムは、デバイスのエコシステムに縛られたり広告データとして利用されたりすべきではなく、OSにとらわれず、永続的で、個人所有のものであるべきです。私達が作成したデータは私達の遺産であり、私達よりもずっと長生きします。オープンソース・テクロジーは、無制限のスケールで、私達の生活を定義するデータの絶対的なコントロールを確実に保持する唯一の方法なのです。",
"about_vision_title": "ビジョン",
"accept": "Accept",
"accessed": "最終アクセス",
"account": "アカウント",
"actions": "操作",
"add": "追加",
"add_device": "デバイスを追加",
"add_library": "ライブラリを追加",
"add_location": "ロケーションを追加",
"add_location_description": "シームレスで効率的なファイル管理のために、好きなフォルダをパーソナルライブラリに追加して、Spacedriveでの体験をさらに充実させることができます。",
"add_location_tooltip": "このパスをインデックス化されたロケーションに追加する",
"add_locations": "ロケーションを追加",
"add_tag": "タグを追加",
"advanced_settings": "高度な設定",
"all_jobs_have_been_cleared": "全てのジョブを削除しました。",
"alpha_release_description": "Spacedriveは現在、エキサイティングな新機能を紹介するためのアルファ版となっております。初期リリース版であるため、いくつかのバグが含まれている可能性があります。問題が発生した場合は、Discordチャンネルにてご報告ください。あなたの貴重なフィードバックは、ユーザーエクスペリエンスの向上に大きく貢献します。",
"alpha_release_title": "アルファ版",
"appearance": "外観",
"appearance_description": "クライアントの見た目を変更します。",
"archive": "アーカイブ",
"archive_coming_soon": "ロケーションのアーカイブ機能は今後実装予定です。",
"archive_info": "ライブラリから、ロケーションのフォルダ構造を保存するために、アーカイブとしてデータを抽出します。",
"are_you_sure": "実行しますか?",
"assign_tag": "タグを追加",
"audio_preview_not_supported": "オーディオのプレビューには対応していません。",
"back": "戻る",
"backups": "バックアップ",
"backups_description": "Spacedriveデータベースのバックアップの設定を行います。",
"blur_effects": "ぼかし効果",
"blur_effects_description": "いくつかのUI要素にぼかし効果を適用します。",
"cancel": "キャンセル",
"cancel_selection": "選択を解除",
"celcius": "摂氏",
"change": "Change",
"changelog": "変更履歴",
"changelog_page_description": "Spacedriveの魅力ある新機能をご確認ください。",
"changelog_page_title": "変更履歴",
"checksum": "チェックサム",
"clear_finished_jobs": "完了ジョブを削除",
"client": "クライアント",
"close": "閉じる",
"close_current_tab": "タブを閉じる",
"clouds": "クラウド",
"color": "色",
"coming_soon": "Coming soon",
"compress": "圧縮",
"configure_location": "ロケーション設定を編集",
"connected": "接続中",
"contacts": "Contacts",
"contacts_description": "Manage your contacts in Spacedrive.",
"content_id": "Content ID",
"continue": "Continue",
"convert_to": "ファイルを変換",
"coordinates": "座標",
"copied": "Copied",
"copy": "コピー",
"copy_as_path": "パスをコピー",
"copy_object": "オブジェクトをコピー",
"copy_path_to_clipboard": "パスをクリップボードにコピー",
"copy_success": "アイテムをコピーしました",
"create": "作成",
"create_library": "ライブラリを作成",
"create_library_description": "ライブラリは、安全の保証された、デバイス上のデータベースです。ライブラリはファイルをカタログ化し、すべてのSpacedriveの関連データを保存します。",
"create_new_library": "新しいライブラリを作成",
"create_new_library_description": "ライブラリは、安全の保証された、デバイス上のデータベースです。ライブラリはファイルをカタログ化し、すべてのSpacedriveの関連データを保存します。",
"create_new_tag": "新しいタグを作成",
"create_new_tag_description": "名前と色を設定してください。",
"create_tag": "タグを作成",
"created": "作成",
"creating_library": "ライブラリを作成中...",
"creating_your_library": "ライブラリを作成",
"current": "Current",
"current_directory": "Current Directory",
"current_directory_with_descendants": "Current Directory With Descendants",
"custom": "カスタム",
"cut": "切り取り",
"cut_object": "オブジェクトを切り取り",
"cut_success": "アイテムを切り取りました",
"data_folder": "データフォルダー",
"debug_mode": "デバッグモード",
"debug_mode_description": "アプリ内で追加のデバッグ機能を有効にします。",
"default": "デフォルト",
"delete": "削除",
"delete_dialog_title": "{{prefix}} {{type}} を削除",
"delete_info": "ディスク上の実際のフォルダは削除されません。プレビューメディアは削除されます。",
"delete_library": "ライブラリを削除",
"delete_library_description": "ライブラリを永久的に削除します。これはSpacedriveライブラリのみが削除され、あなたのファイルが削除されることはありません。",
"delete_location": "ロケーションを削除",
"delete_location_description": "ロケーションを削除すると、Spacedriveデータベースから関連するファイルが全て削除されます。ファイル自体は削除されません。",
"delete_object": "オブジェクトを削除",
"delete_rule": "ルールを削除",
"delete_tag": "タグを削除",
"delete_tag_description": "本当にこのタグを削除しますか?これを元に戻すことはできず、タグ付けされたファイル間の結びつきは失われます。",
"delete_warning": "【警告】これはあなたの {{type}} を完全に削除します。",
"description": "説明",
"deselect": "クリップボードを空にする",
"details": "詳細",
"devices": "デバイス",
"devices_coming_soon_tooltip": "このアルファ版にはライブラリ間の同期機能は含まれていません。実装をお待ち下さい。",
"dialog": "ダイアログ",
"dialog_shortcut_description": "特定の操作を設定します。",
"direction": "順番",
"disabled": "無効",
"disconnected": "切断中",
"display_formats": "表示フォーマット",
"display_name": "表示名",
"distance": "距離",
"done": "Done",
"dont_show_again": "今後表示しない",
"double_click_action": "ダブルクリック時の動作",
"download": "ダウンロード",
"duplicate": "複製",
"duplicate_object": "オブジェクトを複製",
"duplicate_success": "アイテムを複製しました",
"edit": "編集",
"edit_library": "ライブラリを編集",
"edit_location": "ロケーションを編集",
"enable_networking": "ネットワークを有効にする",
"encrypt": "暗号化",
"encrypt_library": "ライブラリを暗号化する",
"encrypt_library_coming_soon": "ライブラリの暗号化機能は今後実装予定です",
"encrypt_library_description": "このライブラリの暗号化を有効にします。これはSpacedriveデータベースのみを暗号化し、ファイル自体は暗号化されません。",
"ephemeral_notice_browse": "デバイスから直接ファイルやフォルダを閲覧できます。",
"ephemeral_notice_consider_indexing": "より迅速で効率的な探索のために、ローカルロケーションのインデックス化をご検討ください。",
"erase": "Erase",
"erase_a_file": "Erase a file",
"erase_a_file_description": "Configure your erasure settings.",
"error": "エラー",
"error_loading_original_file": "オリジナルファイルの読み込みエラー",
"expand": "詳細の表示",
"explorer": "エクスプローラー",
"explorer_shortcut_description": "ファイルシステムの移動・操作を設定します。",
"export": "エクスポート",
"export_library": "ライブラリのエクスポート",
"export_library_coming_soon": "ライブラリのエクスポート機能は今後実装予定です",
"export_library_description": "このライブラリをファイルにエクスポートします。",
"extensions": "拡張機能",
"extensions_description": "このクライアントの機能を拡張するための拡張機能をインストールします。",
"fahrenheit": "華氏",
"failed_to_cancel_job": "ジョブの中止に失敗",
"failed_to_clear_all_jobs": "全てのジョブの削除に失敗",
"failed_to_copy_file": "ファイルのコピーに失敗",
"failed_to_copy_file_path": "ファイルパスのコピーに失敗",
"failed_to_cut_file": "ファイルの切り取りに失敗",
"failed_to_duplicate_file": "ファイルの複製に失敗",
"failed_to_generate_checksum": "チェックサムの作成に失敗",
"failed_to_generate_labels": "ラベルの作成に失敗",
"failed_to_generate_thumbnails": "サムネイルの作成に失敗",
"failed_to_load_tags": "タグの読み込みに失敗",
"failed_to_pause_job": "ジョブの一時停止に失敗",
"failed_to_reindex_location": "ロケーションの再インデックス化に失敗",
"failed_to_remove_file_from_recents": "最近のアクセスの削除に失敗",
"failed_to_remove_job": "ジョブの削除に失敗",
"failed_to_rescan_location": "ロケーションの再スキャンに失敗",
"failed_to_resume_job": "ジョブの再開に失敗",
"failed_to_update_location_settings": "ロケーションの設定の更新に失敗",
"favorite": "お気に入り",
"favorites": "お気に入り",
"feedback": "フィードバック",
"feedback_is_required": "フィードバックを募集しています",
"feedback_login_description": "ログインすることで、フィードバックを送ることができます。",
"feedback_placeholder": "フィードバックを入力...",
"feedback_toast_error_message": "フィードバックの送信中にエラーが発生しました。もう一度お試しください。",
"file_already_exist_in_this_location": "このファイルは既にこのロケーションに存在します",
"file_indexing_rules": "ファイルのインデックス化ルール",
"filters": "フィルター",
"forward": "Forward",
"full_disk_access": "Full disk access",
"full_disk_access_description": "To provide the best experience, we need access to your disk in order to index your files. Your files are only available to you.",
"full_reindex": "再インデックス",
"full_reindex_info": "このロケーションの完全な再スキャンを実行します。",
"general": "一般",
"general_settings": "一般設定",
"general_settings_description": "このクライアントに関する一般的な設定を行います。",
"general_shortcut_description": "一般に使用されるショートカットキー。",
"generatePreviewMedia_label": "このロケーションのプレビューメディアを作成する",
"generate_checksums": "チェックサムを作成",
"go_back": "Go Back",
"got_it": "了解",
"grid_gap": "表示間隔",
"grid_view": "グリッド ビュー",
"grid_view_notice_description": "グリッド ビューではファイルの内容を視覚的に判断できます。このビューでは、ファイルやフォルダがサムネイル画像で表示されるので、探しているファイルをすばやく見つけることができます。",
"hidden_label": "「隠しファイルを表示」を有効にしない限り、概要、検索、タグにロケーションとそのコンテンツが表示されないようになります。",
"hide_in_library_search": "ライブラリの検索で非表示にする",
"hide_in_library_search_description": "ライブラリ全体を検索する際に、このタグを持つファイルを検索結果から非表示にします。",
"hide_in_sidebar": "サイドバーで非表示にする",
"hide_in_sidebar_description": "このタグがアプリのサイドバーに表示されないようにします。",
"hide_location_from_view": "ロケーションとそのコンテンツを非表示にする",
"home": "ホーム",
"image_labeler_ai_model": "画像ラベル認識AIモデル",
"image_labeler_ai_model_description": "画像中の物体を認識するためのモデルを設定します。大きいモデルほど正確だが、処理速度は遅くなります。",
"import": "インポート",
"indexed": "インデックス化",
"indexer_rule_reject_allow_label": "デフォルトでは、インデックス化ルールはブラックリストとして機能し、その基準に一致する全てのファイルを除外します。このオプションを有効にすると、ホワイトリストに変換され、指定されたルールに一致するファイルのみをインデックス化するようになります。",
"indexer_rules": "インデックス化のルール",
"indexer_rules_info": "globを使用して無視するパスを指定できます。",
"install": "インストール",
"install_update": "アップデートをインストールする",
"installed": "インストール完了",
"item_size": "アイテムの表示サイズ",
"item_with_count_one": "{{count}} item",
"item_with_count_other": "{{count}} items",
"job_has_been_canceled": "ジョブが中止されました。",
"job_has_been_paused": "ジョブが一時停止されました。",
"job_has_been_removed": "ジョブが削除されました。",
"job_has_been_resumed": "ジョブが再開されました。",
"join": "Join",
"join_discord": "Join Discord",
"join_library": "Join a Library",
"join_library_description": "ライブラリは、安全の保証された、デバイス上のデータベースです。ライブラリはファイルをカタログ化し、すべてのSpacedriveの関連データを保存します。",
"key": "キー",
"key_manager": "Key Manager",
"key_manager_description": "暗号化キーの作成、キーのマウントとアンマウントを行い、その場で暗号化解除されたファイルを確認できます。",
"keybinds": "キーボード",
"keybinds_description": "キーボードショートカットを設定します。",
"keys": "暗号化キー",
"kilometers": "Kilometers",
"labels": "ラベル",
"language": "言語",
"language_description": "Spacedriveのインターフェイス言語を変更します。",
"learn_more_about_telemetry": "テレメトリについての詳細",
"libraries": "ライブラリ",
"libraries_description": "データベースには、すべてのライブラリデータとファイルのメタデータが含まれています。",
"library": "ライブラリ",
"library_name": "ライブラリの名前",
"library_overview": "ライブラリの概要",
"library_settings": "ライブラリの設定",
"library_settings_description": "現在アクティブなライブラリに関する一般的な設定を行います。",
"list_view": "リスト ビュー",
"list_view_notice_description": "リスト ビューではファイルやフォルダを簡単に閲覧できます。ファイルがシンプルに整理されたリスト形式で表示されるため、必要なファイルをすばやく見つけることができます。",
"loading": "Loading",
"local": "ローカル",
"local_locations": "ローカルロケーション",
"local_node": "ローカルノード",
"location_connected_tooltip": "Location is being watched for changes",
"location_disconnected_tooltip": "Location is not being watched for changes",
"location_display_name_info": "サイドバーに表示されるロケーションの名前を設定します。ディスク上の実際のフォルダの名前は変更されません。",
"location_is_already_linked": "Location is already linked",
"location_path_info": "このロケーションへのパスで、ファイルが保存されるディスク上の場所です。",
"location_type": "ロケーションのタイプ",
"location_type_managed": "Spacedriveがあなたのためにファイルをソートします。ロケーションが空でなければ、「spacedrive」フォルダが作成されます。",
"location_type_normal": "コンテンツはそのままインデックス化されます。新しいファイルは自動的にソートされません。",
"location_type_replica": "このロケーションは別のロケーションのレプリカであり、コンテンツは自動的に同期されます。",
"locations": "ロケーション",
"locations_description": "ローケーションを管理します。",
"lock": "ロック",
"log_in_with_browser": "ブラウザでログイン",
"log_out": "ログアウト",
"logged_in_as": "{{email}} でログイン",
"logout": "ログアウト",
"manage_library": "ライブラリの設定",
"managed": "Managed",
"media": "Media",
"media_view_context": "メディア ビュー",
"media_view_notice_description": "メディア ビューでは、ロケーションに含まれるファイルをサブディレクトリを含めて全て表示します。写真やビデオを簡単に見つけることができます。",
"meet_contributors_behind_spacedrive": "Spacedriveは以下の人々に支えられています",
"meet_title": "Meet {{title}}",
"miles": "Miles",
"mode": "モード",
"modified": "更新",
"more": "その他の操作",
"more_actions": "その他の操作...",
"more_info": "情報",
"move_back_within_quick_preview": "クイック プレビューで前に戻る",
"move_files": "ファイルを移動",
"move_forward_within_quick_preview": "クイック プレビューで次に進む",
"name": "名前",
"navigate_back": "前へ",
"navigate_backwards": "前のページに戻る",
"navigate_files_downwards": "下のファイルへ",
"navigate_files_leftwards": "左のファイルへ",
"navigate_files_rightwards": "右のファイルへ",
"navigate_files_upwards": "上のファイルへ",
"navigate_forward": "次へ",
"navigate_forwards": "次のページに進む",
"navigate_to_settings_page": "設定画面へ移動",
"network": "ネットワーク",
"network_page_description": "LAN上の他のSpacedriveードは、デフォルトのOSネットワークマウントとともにここに表示されます。",
"networking": "ネットワーク",
"networking_port": "ネットワークポート",
"networking_port_description": "SpacedriveのP2Pネットワークが使用するポートを設定します。ファイアウォールによる制限がない限り、無効のままにしておくことを推奨します。インターネット上に公開しないでください",
"new_folder": "新しいフォルダー",
"new_library": "新しいライブラリ",
"new_location": "新しいロケーション",
"new_location_web_description": "ブラウザ版のSpacedriveを使用している場合、現時点ではリモートードのローカルディレクトリの絶対URLを指定する必要があります。",
"new_tab": "新しいタブ",
"new_tag": "新しいタグ",
"no_files_found_here": "ファイルが見つかりません",
"no_jobs": "ジョブがありません。",
"no_tag_selected": "タグが選択されていません。",
"no_tags": "タグがありません。",
"node_name": "ノード名",
"no_nodes_found": "Spacedriveードが見つかりませんでした。",
"nodes": "ノード",
"nodes_description": "このライブラリに接続されているードを管理します。ードとは、デバイスまたはサーバー上で動作するSpacedriveのバックエンドのインスタンスです。各ードはデータベースのコピーを持ち、P2P接続を介してリアルタイムで同期を行います。",
"none": "None",
"normal": "Normal",
"not_you": "Not you?",
"number_of_passes": "# of passes",
"object_id": "Object ID",
"offline": "オフライン",
"online": "オンライン",
"open": "開く",
"open_file": "ファイルを開く",
"open_new_location_once_added": "追加した後このロケーションを開く",
"open_new_tab": "新しいタブ",
"open_object": "オブジェクトを開く",
"open_object_from_quick_preview_in_native_file_manager": "クイック プレビューのオブジェクトをデフォルトのアプリで開く",
"open_settings": "設定を開く",
"open_with": "プログラムから開く",
"or": "OR",
"overview": "概要",
"page": "ページ",
"page_shortcut_description": "Different pages in the app",
"pair": "ペアリング",
"pairing_with_node": "{{node}} とのペアリングを行います",
"paste": "貼り付け",
"paste_object": "オブジェクトを貼り付け",
"paste_success": "アイテムを貼り付けました",
"path": "パス",
"path_copied_to_clipboard_description": "ロケーション {{location}} のパスをコピーしました。",
"path_copied_to_clipboard_title": "パスをコピーしました",
"pause": "一時停止",
"peers": "ピア",
"people": "People",
"privacy": "プライバシー",
"privacy_description": "Spacedriveはプライバシーを遵守します。だからこそ、私達はオープンソースであり、ローカルでの利用を優先しています。プライバシーのために、どのようなデータが私達と共有されるのかを明示しています。",
"quick_preview": "クイック プレビュー",
"quick_view": "クイック プレビュー",
"recent_jobs": "最近のジョブ",
"recents": "最近のアクセス",
"regen_labels": "ラベルを再作成",
"regen_thumbnails": "サムネイルを再作成",
"regenerate_thumbs": "サムネイルを再作成",
"reindex": "再インデックス化",
"reject": "Reject",
"reload": "更新",
"remove": "削除",
"remove_from_recents": "最近のアクセスから削除",
"rename": "名前の変更",
"rename_object": "オブジェクトの名前を変更",
"replica": "Replica",
"rescan_directory": "ディレクトリを再スキャン",
"rescan_location": "ロケーションを再スキャン",
"reset": "リセット",
"resources": "リソース",
"restore": "元に戻す",
"resume": "再開",
"retry": "再試行",
"reveal_in_native_file_manager": "デフォルトのファイルマネージャーで開く",
"revel_in_browser": "{{browser}} で表示する",
"running": "実行中",
"save": "保存",
"save_changes": "変更を保存",
"saved_searches": "保存した検索条件",
"search_extensions": "Search extensions",
"secure_delete": "安全に削除",
"security": "セキュリティ",
"security_description": "クライアントの安全性を保ちます。",
"send": "送信",
"settings": "設定",
"setup": "セットアップ",
"share": "共有",
"share_anonymous_usage": "利用状況を送信する",
"share_anonymous_usage_description": "アプリの改善のために、完全に匿名のテレメトリデータを送信します",
"share_bare_minimum": "最小限のデータのみを送信する",
"share_bare_minimum_description": "自分がSpacedriveのアクティブユーザーであることと、多少の技術的データのみを送信します",
"sharing": "Sharing",
"sharing_description": "ライブラリへのアクセス権を管理できます。",
"show_details": "詳細を表示",
"show_hidden_files": "隠しファイルを表示",
"show_object_size": "ファイルサイズを表示",
"show_path_bar": "パスバーを表示",
"show_slider": "スライダーを表示",
"size": "サイズ",
"skip_login": "ログインをスキップ",
"sort_by": "並べ替え",
"spacedrive_account": "Spacedriveアカウント",
"spacedrive_cloud": "Spacedriveクラウド",
"spacedrive_cloud_description": "Spacedriveは常にローカルでの利用を優先しますが、将来的には独自オプションのクラウドサービスを提供する予定です。現在、アカウント認証はフィードバック機能のみに使用されており、それ以外では必要ありません。",
"spacedrop_a_file": "ファイルをSpacedropへ",
"spacedrop_description": "ネットワーク上のSpacedriveを実行しているデバイスと速やかに共有できます。",
"spacedrop_already_progress": "Spacedropは既に実行中です",
"spacedrop_rejected": "Spacedrop rejected",
"square_thumbnails": "Square Thumbnails",
"star_on_github": "Star on GitHub",
"stop": "中止",
"success": "成功",
"support": "サポート",
"switch_to_grid_view": "グリッド ビューに切り替え",
"switch_to_list_view": "リスト ビューに切り替え",
"switch_to_media_view": "メディア ビューに切り替え",
"switch_to_next_tab": "次のタブへ",
"switch_to_previous_tab": "前のタブへ",
"sync": "同期",
"syncPreviewMedia_label": "このロケーションのプレビューメディアを他のデバイスと同期する",
"sync_description": "Spacedriveの同期方法を管理します。",
"sync_with_library": "ライブラリと同期する",
"sync_with_library_description": "有効にすると、キーバインドがライブラリと同期されます。無効にすると、このクライアントにのみ適用されます。",
"tags": "タグ",
"tags_description": "タグを管理します。",
"telemetry_description": "有効にすると、アプリを改善するための詳細なテレメトリ・利用状況データが開発者に提供されます。無効にすると、基本的なデータ(実行状況、アプリバージョン、コアバージョン、プラットフォーム[モバイル/ウェブ/デスクトップなど])のみが送信されます。",
"telemetry_title": "テレメトリ・利用状況データを送信する",
"temperature": "温度",
"thank_you_for_your_feedback": "フィードバックありがとうございます!",
"thumbnailer_cpu_usage": "サムネイル作成のCPU使用量",
"thumbnailer_cpu_usage_description": "バックグラウンド処理におけるサムネイル作成のCPU使用量を制限します。",
"toggle_all": "Toggle All",
"toggle_hidden_files": "隠しファイル表示を切り替え",
"toggle_image_slider_within_quick_preview": "クイック プレビュー画面でスライダーを表示",
"toggle_inspector": "詳細パネルを開閉",
"toggle_job_manager": "ジョブマネージャーを開閉",
"toggle_metadata": "詳細パネルを開閉",
"toggle_path_bar": "パスバーの表示切り替え",
"toggle_quick_preview": "クイック プレビューを表示",
"type": "種類",
"ui_animations": "UIアニメーション",
"ui_animations_description": "ダイアログやその他のUI要素を開いたり閉じたりするときにアニメーションを有効にします。",
"unnamed_location": "名前の無いロケーション",
"usage": "利用状況",
"usage_description": "ライブラリの利用状況とハードウェア情報",
"value": "Value",
"video_preview_not_supported": "ビデオのプレビューには対応していません。",
"want_to_do_this_later": "Want to do this later?",
"website": "ウェブサイト",
"your_account": "あなたのアカウント",
"your_account_description": "Spacedriveアカウントの情報",
"your_local_network": "ローカルネットワーク",
"your_privacy": "あなたのプライバシー",
"new_update_available": "アップデートが利用可能です!",
"version": "バージョン {{version}}",
"downloading_update": "アップデートをダウンロード中",
"update_downloaded": "アップデートがダウンロードされました。インストールするためにSpacedriveを再起動します。",
"failed_to_download_update": "アップデートのダウンロードに失敗",
"updated_successfully": "バージョン {{version}} へのアップデートが完了しました。",
"view_changes": "変更履歴を見る",
"update": "アップデート",
"ask_spacedrive": "スペースドライブに聞いてください",
"close_command_palette": "コマンドパレットを閉じる",
"go_to_labels": "ラベルに移動",
"go_to_location": "場所に行く",
"go_to_overview": "概要に移動",
"go_to_recents": "最近の履歴に移動",
"go_to_settings": "設定に移動",
"go_to_tag": "タグに移動",
"no_labels": "ラベルなし",
"search_for_files_and_actions": "ファイルとアクションを検索します...",
"toggle_command_palette": "コマンドパレットの切り替え"
"about": "概要",
"about_vision_text": "私達は通常、複数のクラウドのアカウントを持ち、バックアップのないドライブを利用し、データを失う危険にさらされています。またGoogle PhotosやiCloudのようなクラウドサービスに依存していますが、それらは容量に制限があり、サービスやOS間に互換性はほとんどありません。フォトアルバムは、デバイスのエコシステムに縛られたり広告データとして利用されたりすべきではなく、OSにとらわれず、永続的で、個人所有のものであるべきです。私達が作成したデータは私達の遺産であり、私達よりもずっと長生きします。オープンソース・テクロジーは、無制限のスケールで、私達の生活を定義するデータの絶対的なコントロールを確実に保持する唯一の方法なのです。",
"about_vision_title": "ビジョン",
"accept": "Accept",
"accessed": "最終アクセス",
"account": "アカウント",
"actions": "操作",
"add": "追加",
"add_device": "デバイスを追加",
"add_library": "ライブラリを追加",
"add_location": "ロケーションを追加",
"add_location_description": "シームレスで効率的なファイル管理のために、好きなフォルダをパーソナルライブラリに追加して、Spacedriveでの体験をさらに充実させることができます。",
"add_location_tooltip": "このパスをインデックス化されたロケーションに追加する",
"add_locations": "ロケーションを追加",
"add_tag": "タグを追加",
"advanced_settings": "高度な設定",
"all_jobs_have_been_cleared": "全てのジョブを削除しました。",
"alpha_release_description": "Spacedriveは現在、エキサイティングな新機能を紹介するためのアルファ版となっております。初期リリース版であるため、いくつかのバグが含まれている可能性があります。問題が発生した場合は、Discordチャンネルにてご報告ください。あなたの貴重なフィードバックは、ユーザーエクスペリエンスの向上に大きく貢献します。",
"alpha_release_title": "アルファ版",
"appearance": "外観",
"appearance_description": "クライアントの見た目を変更します。",
"archive": "アーカイブ",
"archive_coming_soon": "ロケーションのアーカイブ機能は今後実装予定です。",
"archive_info": "ライブラリから、ロケーションのフォルダ構造を保存するために、アーカイブとしてデータを抽出します。",
"are_you_sure": "実行しますか?",
"assign_tag": "タグを追加",
"audio_preview_not_supported": "オーディオのプレビューには対応していません。",
"back": "戻る",
"backups": "バックアップ",
"backups_description": "Spacedriveデータベースのバックアップの設定を行います。",
"blur_effects": "ぼかし効果",
"blur_effects_description": "いくつかのUI要素にぼかし効果を適用します。",
"cancel": "キャンセル",
"cancel_selection": "選択を解除",
"celcius": "摂氏",
"change": "Change",
"changelog": "変更履歴",
"changelog_page_description": "Spacedriveの魅力ある新機能をご確認ください。",
"changelog_page_title": "変更履歴",
"checksum": "チェックサム",
"clear_finished_jobs": "完了ジョブを削除",
"client": "クライアント",
"close": "閉じる",
"close_current_tab": "タブを閉じる",
"clouds": "クラウド",
"color": "色",
"coming_soon": "Coming soon",
"compress": "圧縮",
"configure_location": "ロケーション設定を編集",
"connected": "接続中",
"contacts": "Contacts",
"contacts_description": "Manage your contacts in Spacedrive.",
"content_id": "Content ID",
"continue": "Continue",
"convert_to": "ファイルを変換",
"coordinates": "座標",
"copied": "Copied",
"copy": "コピー",
"copy_as_path": "パスをコピー",
"copy_object": "オブジェクトをコピー",
"copy_path_to_clipboard": "パスをクリップボードにコピー",
"copy_success": "アイテムをコピーしました",
"create": "作成",
"create_library": "ライブラリを作成",
"create_library_description": "ライブラリは、安全の保証された、デバイス上のデータベースです。ライブラリはファイルをカタログ化し、すべてのSpacedriveの関連データを保存します。",
"create_new_library": "新しいライブラリを作成",
"create_new_library_description": "ライブラリは、安全の保証された、デバイス上のデータベースです。ライブラリはファイルをカタログ化し、すべてのSpacedriveの関連データを保存します。",
"create_new_tag": "新しいタグを作成",
"create_new_tag_description": "名前と色を設定してください。",
"create_tag": "タグを作成",
"created": "作成",
"creating_library": "ライブラリを作成中...",
"creating_your_library": "ライブラリを作成",
"current": "Current",
"current_directory": "Current Directory",
"current_directory_with_descendants": "Current Directory With Descendants",
"custom": "カスタム",
"cut": "切り取り",
"cut_object": "オブジェクトを切り取り",
"cut_success": "アイテムを切り取りました",
"data_folder": "データフォルダー",
"debug_mode": "デバッグモード",
"debug_mode_description": "アプリ内で追加のデバッグ機能を有効にします。",
"default": "デフォルト",
"delete": "削除",
"delete_dialog_title": "{{prefix}} {{type}} を削除",
"delete_info": "ディスク上の実際のフォルダは削除されません。プレビューメディアは削除されます。",
"delete_library": "ライブラリを削除",
"delete_library_description": "ライブラリを永久的に削除します。これはSpacedriveライブラリのみが削除され、あなたのファイルが削除されることはありません。",
"delete_location": "ロケーションを削除",
"delete_location_description": "ロケーションを削除すると、Spacedriveデータベースから関連するファイルが全て削除されます。ファイル自体は削除されません。",
"delete_object": "オブジェクトを削除",
"delete_rule": "ルールを削除",
"delete_tag": "タグを削除",
"delete_tag_description": "本当にこのタグを削除しますか?これを元に戻すことはできず、タグ付けされたファイル間の結びつきは失われます。",
"delete_warning": "【警告】これはあなたの {{type}} を完全に削除します。",
"description": "説明",
"deselect": "クリップボードを空にする",
"details": "詳細",
"devices": "デバイス",
"devices_coming_soon_tooltip": "このアルファ版にはライブラリ間の同期機能は含まれていません。実装をお待ち下さい。",
"dialog": "ダイアログ",
"dialog_shortcut_description": "特定の操作を設定します。",
"direction": "順番",
"disabled": "無効",
"disconnected": "切断中",
"display_formats": "表示フォーマット",
"display_name": "表示名",
"distance": "距離",
"done": "Done",
"dont_show_again": "今後表示しない",
"double_click_action": "ダブルクリック時の動作",
"download": "ダウンロード",
"duplicate": "複製",
"duplicate_object": "オブジェクトを複製",
"duplicate_success": "アイテムを複製しました",
"edit": "編集",
"edit_library": "ライブラリを編集",
"edit_location": "ロケーションを編集",
"enable_networking": "ネットワークを有効にする",
"encrypt": "暗号化",
"encrypt_library": "ライブラリを暗号化する",
"encrypt_library_coming_soon": "ライブラリの暗号化機能は今後実装予定です",
"encrypt_library_description": "このライブラリの暗号化を有効にします。これはSpacedriveデータベースのみを暗号化し、ファイル自体は暗号化されません。",
"ephemeral_notice_browse": "デバイスから直接ファイルやフォルダを閲覧できます。",
"ephemeral_notice_consider_indexing": "より迅速で効率的な探索のために、ローカルロケーションのインデックス化をご検討ください。",
"erase": "Erase",
"erase_a_file": "Erase a file",
"erase_a_file_description": "Configure your erasure settings.",
"error": "エラー",
"error_loading_original_file": "オリジナルファイルの読み込みエラー",
"expand": "詳細の表示",
"explorer": "エクスプローラー",
"explorer_shortcut_description": "ファイルシステムの移動・操作を設定します。",
"export": "エクスポート",
"export_library": "ライブラリのエクスポート",
"export_library_coming_soon": "ライブラリのエクスポート機能は今後実装予定です",
"export_library_description": "このライブラリをファイルにエクスポートします。",
"extensions": "拡張機能",
"extensions_description": "このクライアントの機能を拡張するための拡張機能をインストールします。",
"fahrenheit": "華氏",
"failed_to_cancel_job": "ジョブの中止に失敗",
"failed_to_clear_all_jobs": "全てのジョブの削除に失敗",
"failed_to_copy_file": "ファイルのコピーに失敗",
"failed_to_copy_file_path": "ファイルパスのコピーに失敗",
"failed_to_cut_file": "ファイルの切り取りに失敗",
"failed_to_duplicate_file": "ファイルの複製に失敗",
"failed_to_generate_checksum": "チェックサムの作成に失敗",
"failed_to_generate_labels": "ラベルの作成に失敗",
"failed_to_generate_thumbnails": "サムネイルの作成に失敗",
"failed_to_load_tags": "タグの読み込みに失敗",
"failed_to_pause_job": "ジョブの一時停止に失敗",
"failed_to_reindex_location": "ロケーションの再インデックス化に失敗",
"failed_to_remove_file_from_recents": "最近のアクセスの削除に失敗",
"failed_to_remove_job": "ジョブの削除に失敗",
"failed_to_rescan_location": "ロケーションの再スキャンに失敗",
"failed_to_resume_job": "ジョブの再開に失敗",
"failed_to_update_location_settings": "ロケーションの設定の更新に失敗",
"favorite": "お気に入り",
"favorites": "お気に入り",
"feedback": "フィードバック",
"feedback_is_required": "フィードバックを募集しています",
"feedback_login_description": "ログインすることで、フィードバックを送ることができます。",
"feedback_placeholder": "フィードバックを入力...",
"feedback_toast_error_message": "フィードバックの送信中にエラーが発生しました。もう一度お試しください。",
"file_already_exist_in_this_location": "このファイルは既にこのロケーションに存在します",
"file_indexing_rules": "ファイルのインデックス化ルール",
"filters": "フィルター",
"forward": "Forward",
"full_disk_access": "Full disk access",
"full_disk_access_description": "To provide the best experience, we need access to your disk in order to index your files. Your files are only available to you.",
"full_reindex": "再インデックス",
"full_reindex_info": "このロケーションの完全な再スキャンを実行します。",
"general": "一般",
"general_settings": "一般設定",
"general_settings_description": "このクライアントに関する一般的な設定を行います。",
"general_shortcut_description": "一般に使用されるショートカットキー。",
"generatePreviewMedia_label": "このロケーションのプレビューメディアを作成する",
"generate_checksums": "チェックサムを作成",
"go_back": "Go Back",
"got_it": "了解",
"grid_gap": "表示間隔",
"grid_view": "グリッド ビュー",
"grid_view_notice_description": "グリッド ビューではファイルの内容を視覚的に判断できます。このビューでは、ファイルやフォルダがサムネイル画像で表示されるので、探しているファイルをすばやく見つけることができます。",
"hidden_label": "「隠しファイルを表示」を有効にしない限り、概要、検索、タグにロケーションとそのコンテンツが表示されないようになります。",
"hide_in_library_search": "ライブラリの検索で非表示にする",
"hide_in_library_search_description": "ライブラリ全体を検索する際に、このタグを持つファイルを検索結果から非表示にします。",
"hide_in_sidebar": "サイドバーで非表示にする",
"hide_in_sidebar_description": "このタグがアプリのサイドバーに表示されないようにします。",
"hide_location_from_view": "ロケーションとそのコンテンツを非表示にする",
"home": "ホーム",
"image_labeler_ai_model": "画像ラベル認識AIモデル",
"image_labeler_ai_model_description": "画像中の物体を認識するためのモデルを設定します。大きいモデルほど正確だが、処理速度は遅くなります。",
"import": "インポート",
"indexed": "インデックス化",
"indexer_rule_reject_allow_label": "デフォルトでは、インデックス化ルールはブラックリストとして機能し、その基準に一致する全てのファイルを除外します。このオプションを有効にすると、ホワイトリストに変換され、指定されたルールに一致するファイルのみをインデックス化するようになります。",
"indexer_rules": "インデックス化のルール",
"indexer_rules_info": "globを使用して無視するパスを指定できます。",
"install": "インストール",
"install_update": "アップデートをインストールする",
"installed": "インストール完了",
"item_size": "アイテムの表示サイズ",
"item_with_count_one": "{{count}} item",
"item_with_count_other": "{{count}} items",
"job_has_been_canceled": "ジョブが中止されました。",
"job_has_been_paused": "ジョブが一時停止されました。",
"job_has_been_removed": "ジョブが削除されました。",
"job_has_been_resumed": "ジョブが再開されました。",
"join": "Join",
"join_discord": "Join Discord",
"join_library": "Join a Library",
"join_library_description": "ライブラリは、安全の保証された、デバイス上のデータベースです。ライブラリはファイルをカタログ化し、すべてのSpacedriveの関連データを保存します。",
"key": "キー",
"key_manager": "Key Manager",
"key_manager_description": "暗号化キーの作成、キーのマウントとアンマウントを行い、その場で暗号化解除されたファイルを確認できます。",
"keybinds": "キーボード",
"keybinds_description": "キーボードショートカットを設定します。",
"keys": "暗号化キー",
"kilometers": "Kilometers",
"labels": "ラベル",
"language": "言語",
"language_description": "Spacedriveのインターフェイス言語を変更します。",
"learn_more_about_telemetry": "テレメトリについての詳細",
"libraries": "ライブラリ",
"libraries_description": "データベースには、すべてのライブラリデータとファイルのメタデータが含まれています。",
"library": "ライブラリ",
"library_name": "ライブラリの名前",
"library_overview": "ライブラリの概要",
"library_settings": "ライブラリの設定",
"library_settings_description": "現在アクティブなライブラリに関する一般的な設定を行います。",
"list_view": "リスト ビュー",
"list_view_notice_description": "リスト ビューではファイルやフォルダを簡単に閲覧できます。ファイルがシンプルに整理されたリスト形式で表示されるため、必要なファイルをすばやく見つけることができます。",
"loading": "Loading",
"local": "ローカル",
"local_locations": "ローカルロケーション",
"local_node": "ローカルノード",
"location_connected_tooltip": "Location is being watched for changes",
"location_disconnected_tooltip": "Location is not being watched for changes",
"location_display_name_info": "サイドバーに表示されるロケーションの名前を設定します。ディスク上の実際のフォルダの名前は変更されません。",
"location_is_already_linked": "Location is already linked",
"location_path_info": "このロケーションへのパスで、ファイルが保存されるディスク上の場所です。",
"location_type": "ロケーションのタイプ",
"location_type_managed": "Spacedriveがあなたのためにファイルをソートします。ロケーションが空でなければ、「spacedrive」フォルダが作成されます。",
"location_type_normal": "コンテンツはそのままインデックス化されます。新しいファイルは自動的にソートされません。",
"location_type_replica": "このロケーションは別のロケーションのレプリカであり、コンテンツは自動的に同期されます。",
"locations": "ロケーション",
"locations_description": "ローケーションを管理します。",
"lock": "ロック",
"log_in_with_browser": "ブラウザでログイン",
"log_out": "ログアウト",
"logged_in_as": "{{email}} でログイン",
"logout": "ログアウト",
"manage_library": "ライブラリの設定",
"managed": "Managed",
"media": "Media",
"media_view_context": "メディア ビュー",
"media_view_notice_description": "メディア ビューでは、ロケーションに含まれるファイルをサブディレクトリを含めて全て表示します。写真やビデオを簡単に見つけることができます。",
"meet_contributors_behind_spacedrive": "Spacedriveは以下の人々に支えられています",
"meet_title": "Meet {{title}}",
"miles": "Miles",
"mode": "モード",
"modified": "更新",
"more": "その他の操作",
"more_actions": "その他の操作...",
"more_info": "情報",
"move_back_within_quick_preview": "クイック プレビューで前に戻る",
"move_files": "ファイルを移動",
"move_forward_within_quick_preview": "クイック プレビューで次に進む",
"name": "名前",
"navigate_back": "前へ",
"navigate_backwards": "前のページに戻る",
"navigate_files_downwards": "下のファイルへ",
"navigate_files_leftwards": "左のファイルへ",
"navigate_files_rightwards": "右のファイルへ",
"navigate_files_upwards": "上のファイルへ",
"navigate_forward": "次へ",
"navigate_forwards": "次のページに進む",
"navigate_to_settings_page": "設定画面へ移動",
"network": "ネットワーク",
"network_page_description": "LAN上の他のSpacedriveードは、デフォルトのOSネットワークマウントとともにここに表示されます。",
"networking": "ネットワーク",
"networking_port": "ネットワークポート",
"networking_port_description": "SpacedriveのP2Pネットワークが使用するポートを設定します。ファイアウォールによる制限がない限り、無効のままにしておくことを推奨します。インターネット上に公開しないでください",
"new_folder": "新しいフォルダー",
"new_library": "新しいライブラリ",
"new_location": "新しいロケーション",
"new_location_web_description": "ブラウザ版のSpacedriveを使用している場合、現時点ではリモートードのローカルディレクトリの絶対URLを指定する必要があります。",
"new_tab": "新しいタブ",
"new_tag": "新しいタグ",
"no_files_found_here": "ファイルが見つかりません",
"no_jobs": "ジョブがありません。",
"no_tag_selected": "タグが選択されていません。",
"no_tags": "タグがありません。",
"node_name": "ノード名",
"no_nodes_found": "Spacedriveードが見つかりませんでした。",
"nodes": "ノード",
"nodes_description": "このライブラリに接続されているードを管理します。ードとは、デバイスまたはサーバー上で動作するSpacedriveのバックエンドのインスタンスです。各ードはデータベースのコピーを持ち、P2P接続を介してリアルタイムで同期を行います。",
"none": "None",
"normal": "Normal",
"not_you": "Not you?",
"number_of_passes": "# of passes",
"object_id": "Object ID",
"offline": "オフライン",
"online": "オンライン",
"open": "開く",
"open_file": "ファイルを開く",
"open_new_location_once_added": "追加した後このロケーションを開く",
"open_new_tab": "新しいタブ",
"open_object": "オブジェクトを開く",
"open_object_from_quick_preview_in_native_file_manager": "クイック プレビューのオブジェクトをデフォルトのアプリで開く",
"open_settings": "設定を開く",
"open_with": "プログラムから開く",
"or": "OR",
"overview": "概要",
"page": "ページ",
"page_shortcut_description": "Different pages in the app",
"pair": "ペアリング",
"pairing_with_node": "{{node}} とのペアリングを行います",
"paste": "貼り付け",
"paste_object": "オブジェクトを貼り付け",
"paste_success": "アイテムを貼り付けました",
"path": "パス",
"path_copied_to_clipboard_description": "ロケーション {{location}} のパスをコピーしました。",
"path_copied_to_clipboard_title": "パスをコピーしました",
"pause": "一時停止",
"peers": "ピア",
"people": "People",
"privacy": "プライバシー",
"privacy_description": "Spacedriveはプライバシーを遵守します。だからこそ、私達はオープンソースであり、ローカルでの利用を優先しています。プライバシーのために、どのようなデータが私達と共有されるのかを明示しています。",
"quick_preview": "クイック プレビュー",
"quick_view": "クイック プレビュー",
"recent_jobs": "最近のジョブ",
"recents": "最近のアクセス",
"regen_labels": "ラベルを再作成",
"regen_thumbnails": "サムネイルを再作成",
"regenerate_thumbs": "サムネイルを再作成",
"reindex": "再インデックス化",
"reject": "Reject",
"reload": "更新",
"remove": "削除",
"remove_from_recents": "最近のアクセスから削除",
"rename": "名前の変更",
"rename_object": "オブジェクトの名前を変更",
"replica": "Replica",
"rescan_directory": "ディレクトリを再スキャン",
"rescan_location": "ロケーションを再スキャン",
"reset": "リセット",
"resources": "リソース",
"restore": "元に戻す",
"resume": "再開",
"retry": "再試行",
"reveal_in_native_file_manager": "デフォルトのファイルマネージャーで開く",
"revel_in_browser": "{{browser}} で表示する",
"running": "実行中",
"save": "保存",
"save_changes": "変更を保存",
"saved_searches": "保存した検索条件",
"search_extensions": "Search extensions",
"secure_delete": "安全に削除",
"security": "セキュリティ",
"security_description": "クライアントの安全性を保ちます。",
"send": "送信",
"settings": "設定",
"setup": "セットアップ",
"share": "共有",
"share_anonymous_usage": "利用状況を送信する",
"share_anonymous_usage_description": "アプリの改善のために、完全に匿名のテレメトリデータを送信します",
"share_bare_minimum": "最小限のデータのみを送信する",
"share_bare_minimum_description": "自分がSpacedriveのアクティブユーザーであることと、多少の技術的データのみを送信します",
"sharing": "Sharing",
"sharing_description": "ライブラリへのアクセス権を管理できます。",
"show_details": "詳細を表示",
"show_hidden_files": "隠しファイルを表示",
"show_object_size": "ファイルサイズを表示",
"show_path_bar": "パスバーを表示",
"show_slider": "スライダーを表示",
"size": "サイズ",
"skip_login": "ログインをスキップ",
"sort_by": "並べ替え",
"spacedrive_account": "Spacedriveアカウント",
"spacedrive_cloud": "Spacedriveクラウド",
"spacedrive_cloud_description": "Spacedriveは常にローカルでの利用を優先しますが、将来的には独自オプションのクラウドサービスを提供する予定です。現在、アカウント認証はフィードバック機能のみに使用されており、それ以外では必要ありません。",
"spacedrop_a_file": "ファイルをSpacedropへ",
"spacedrop_description": "ネットワーク上のSpacedriveを実行しているデバイスと速やかに共有できます。",
"spacedrop_already_progress": "Spacedropは既に実行中です",
"spacedrop_rejected": "Spacedrop rejected",
"square_thumbnails": "Square Thumbnails",
"star_on_github": "Star on GitHub",
"stop": "中止",
"success": "成功",
"support": "サポート",
"switch_to_grid_view": "グリッド ビューに切り替え",
"switch_to_list_view": "リスト ビューに切り替え",
"switch_to_media_view": "メディア ビューに切り替え",
"switch_to_next_tab": "次のタブへ",
"switch_to_previous_tab": "前のタブへ",
"sync": "同期",
"syncPreviewMedia_label": "このロケーションのプレビューメディアを他のデバイスと同期する",
"sync_description": "Spacedriveの同期方法を管理します。",
"sync_with_library": "ライブラリと同期する",
"sync_with_library_description": "有効にすると、キーバインドがライブラリと同期されます。無効にすると、このクライアントにのみ適用されます。",
"tags": "タグ",
"tags_description": "タグを管理します。",
"telemetry_description": "有効にすると、アプリを改善するための詳細なテレメトリ・利用状況データが開発者に提供されます。無効にすると、基本的なデータ(実行状況、アプリバージョン、コアバージョン、プラットフォーム[モバイル/ウェブ/デスクトップなど])のみが送信されます。",
"telemetry_title": "テレメトリ・利用状況データを送信する",
"temperature": "温度",
"thank_you_for_your_feedback": "フィードバックありがとうございます!",
"thumbnailer_cpu_usage": "サムネイル作成のCPU使用量",
"thumbnailer_cpu_usage_description": "バックグラウンド処理におけるサムネイル作成のCPU使用量を制限します。",
"toggle_all": "Toggle All",
"toggle_hidden_files": "隠しファイル表示を切り替え",
"toggle_image_slider_within_quick_preview": "クイック プレビュー画面でスライダーを表示",
"toggle_inspector": "詳細パネルを開閉",
"toggle_job_manager": "ジョブマネージャーを開閉",
"toggle_metadata": "詳細パネルを開閉",
"toggle_path_bar": "パスバーの表示切り替え",
"toggle_quick_preview": "クイック プレビューを表示",
"type": "種類",
"ui_animations": "UIアニメーション",
"ui_animations_description": "ダイアログやその他のUI要素を開いたり閉じたりするときにアニメーションを有効にします。",
"unnamed_location": "名前の無いロケーション",
"usage": "利用状況",
"usage_description": "ライブラリの利用状況とハードウェア情報",
"value": "Value",
"video_preview_not_supported": "ビデオのプレビューには対応していません。",
"want_to_do_this_later": "Want to do this later?",
"website": "ウェブサイト",
"your_account": "あなたのアカウント",
"your_account_description": "Spacedriveアカウントの情報",
"your_local_network": "ローカルネットワーク",
"your_privacy": "あなたのプライバシー",
"new_update_available": "アップデートが利用可能です!",
"version": "バージョン {{version}}",
"downloading_update": "アップデートをダウンロード中",
"update_downloaded": "アップデートがダウンロードされました。インストールするためにSpacedriveを再起動します。",
"failed_to_download_update": "アップデートのダウンロードに失敗",
"updated_successfully": "バージョン {{version}} へのアップデートが完了しました。",
"view_changes": "変更履歴を見る",
"update": "アップデート",
"ask_spacedrive": "スペースドライブに聞いてください",
"close_command_palette": "コマンドパレットを閉じる",
"go_to_labels": "ラベルに移動",
"go_to_location": "場所に行く",
"go_to_overview": "概要に移動",
"go_to_recents": "最近の履歴に移動",
"go_to_settings": "設定に移動",
"go_to_tag": "タグに移動",
"no_labels": "ラベルなし",
"search_for_files_and_actions": "ファイルとアクションを検索します...",
"toggle_command_palette": "コマンドパレットの切り替え"
}

View file

@ -1,452 +1,452 @@
{
"about": "Over",
"about_vision_text": "Veel van ons hebben meerdere cloud accounts, schijven waarvan geen back-ups worden gemaakt en gegevens die het risico lopen verloren te gaan. We zijn afhankelijk van clouddiensten als Google Photos en iCloud, maar zitten vast met een beperkte capaciteit en vrijwel geen interoperabiliteit tussen diensten en besturingssystemen. Fotoalbums mogen niet vastzitten in het ecosysteem van een apparaat, of worden gebruikt voor advertentiegegevens. Ze moeten OS-agnostisch, permanent en persoonlijk eigendom zijn. De gegevens die we creëren zijn onze erfenis, die ons nog lang zal overleven. Open source-technologie is de enige manier om ervoor te zorgen dat we de absolute controle behouden over de gegevens die ons leven bepalen, op onbeperkte schaal.",
"about_vision_title": "Visie",
"accept": "Accepteren",
"accessed": "Geopend",
"account": "Account",
"actions": "Acties",
"add": "Toevoegen",
"add_device": "Apparaat Toevoegen",
"add_library": "Bibliotheek Toevoegen",
"add_location": "Locatie Toevoegen",
"add_location_description": "Verbeter je Spacedrive ervaring door al je favoriete locaties toe te voegen aan je persoonlijke bibliotheek, voor een naadloze en efficiënte bestandsbeheer.",
"add_location_tooltip": "Voeg pad toe als een geïndexeerde locatie",
"add_locations": "Locaties Toevoegen",
"add_tag": "Tag Toevoegen",
"advanced_settings": "Geavanceerde Instellingen",
"all_jobs_have_been_cleared": "Alle taken zijn opgeruimd.",
"alpha_release_description": "We zijn blij dat je de Alpha-versie van Spacedrive nu kunt uitproberen, met spannende nieuwe functies. Zoals met elke eerste release kan deze versie enkele bugs bevatten. Je kan ons helpen bij het melden van eventuele problemen die u tegenkomt op ons Discord kanaal. Je waardevolle feedback draagt in grote mate bij aan het verbeteren van de gebruikerservaring.",
"alpha_release_title": "Alpha Release",
"appearance": "Uiterlijk",
"appearance_description": "Verander het uiterlijk van de client.",
"archive": "Archiveer",
"archive_coming_soon": "Archiveren van locaties komt binnenkort...",
"archive_info": "Exporteer gegevens van de bibliotheek als een archief, handig om de mapstructuur van de locatie te behouden.",
"are_you_sure": "Weet je het zeker?",
"assign_tag": "Tag toewijzen",
"audio_preview_not_supported": "Audio voorvertoning wordt niet ondersteund.",
"back": "Terug",
"backups": "Backups",
"backups_description": "Beheer je Spacedrive database backups.",
"blur_effects": "Blur Effecten",
"blur_effects_description": "Op sommige onderdelen wordt een blur effect toegepast.",
"cancel": "Annuleren",
"cancel_selection": "Selectie annuleren",
"celcius": "Celsius",
"change": "Wijzigen",
"changelog": "Wijzigingslogboek",
"changelog_page_description": "Zie welke coole nieuwe functies we aan het maken zijn",
"changelog_page_title": "Wijzigingslogboek",
"checksum": "Controlegetal",
"clear_finished_jobs": "Ruim voltooide taken op",
"client": "Client",
"close": "Sluit",
"close_current_tab": "Huidig tabblad sluiten",
"clouds": "Clouds",
"color": "Kleur",
"coming_soon": "Komt binnenkort",
"compress": "Comprimeer",
"configure_location": "Locatie Configureren",
"connected": "Verbonden",
"contacts": "Contacten",
"contacts_description": "Beheer je contacten in Spacedrive.",
"content_id": "Inhouds-ID",
"continue": "Verdergaan",
"convert_to": "Omzetten naar",
"coordinates": "Coördinaten",
"copied": "Gekopieerd",
"copy": "Kopieer",
"copy_as_path": "Kopieer als pad",
"copy_object": "Object kopiëren",
"copy_path_to_clipboard": "Kopieer pad naar klembord",
"copy_success": "Items gekopieerd",
"create": "Creëer",
"create_library": "Creëer Bibliotheek",
"create_library_description": "Bibliotheken zijn een veilige lokale database. Je bestanden blijven waar ze zijn, de Bibliotheek catalogiseert ze een slaat alle Spacedrive gerelateerde gegevens op.",
"create_new_library": "Creëer nieuwe bibliotheek",
"create_new_library_description": "Bibliotheken zijn een veilige lokale database. Je bestanden blijven waar ze zijn, de Bibliotheek catalogiseert ze een slaat alle Spacedrive gerelateerde gegevens op.",
"create_new_tag": "Creëer Nieuwe Tag",
"create_new_tag_description": "Kies een naam en kleur.",
"create_tag": "Creëer Tag",
"created": "Gecreëerd",
"creating_library": "Bibliotheek creëren...",
"creating_your_library": "Je bibliotheek creëren",
"current": "Huidig",
"current_directory": "Huidige Map",
"current_directory_with_descendants": "Huidige Map Met Afstammelingen",
"custom": "Aangepast",
"cut": "Knip",
"cut_object": "Object knippen",
"cut_success": "Items knippen",
"data_folder": "Gegevens Map",
"debug_mode": "Debug modus",
"debug_mode_description": "Schakel extra debugging functies in de app in.",
"default": "Standaard",
"delete": "Verwijder",
"delete_dialog_title": "Verwijder {{prefix}} {{type}}",
"delete_info": "Hiermee wordt de daadwerkelijke map op de schijf niet verwijderd. Voorvertoning media wordt verwijderd.",
"delete_library": "Verwijder Bibliotheek",
"delete_library_description": "Dit is permanent, je bestanden worden niet verwijderd, alleen de Spacedrive bibliotheek.",
"delete_location": "Verwijder Locatie",
"delete_location_description": "Als je een locatie verwijdert, worden ook alle bijbehorende bestanden uit de Spacedrive database verwijderd, de bestanden zelf worden niet verwijderd.",
"delete_object": "Object verwijderen",
"delete_rule": "Verwijder regel",
"delete_tag": "Verwijder Tag",
"delete_tag_description": "Weet je zeker dat je deze tag wilt verwijderen? Dit kan niet ongedaan worden gemaakt en ge-tagde bestanden worden ontkoppeld.",
"delete_warning": "Waarschuwing: hiermee wordt je {{type}} permanent verwijderd, we hebben nog geen prullenbak...",
"description": "Omschrijving",
"deselect": "Deselecteer",
"details": "Details",
"devices": "Apparaten",
"devices_coming_soon_tooltip": "Binnenkort beschikbaar! Deze alpha release bevat geen bibliotheeksynchronisatie, dit zal binnenkort beschikbaar zijn.",
"dialog": "Dialoog",
"dialog_shortcut_description": "Om acties en bewerkingen uit te voeren",
"direction": "Richting",
"disabled": "Uitgeschakeld",
"display_formats": "Weergave Eenheden",
"display_name": "Weergave Naam",
"distance": "Afstand",
"done": "Klaar",
"dont_show_again": "Niet meer laten zien",
"double_click_action": "Dubbele klikactie",
"download": "Download",
"duplicate": "Dupliceer",
"duplicate_object": "Object dupliceren",
"duplicate_success": "Items gedupliceerd",
"edit": "Bewerk",
"edit_library": "Bewerk Bibliotheek",
"edit_location": "Bewerk Locatie",
"enable_networking": "Netwerk Inschakelen",
"encrypt": "Versleutel",
"encrypt_library": "Versleutel Bibliotheek",
"encrypt_library_coming_soon": "Bibliotheek versleuteling komt binnenkort",
"encrypt_library_description": "Schakel versleuteling in voor deze bibliotheek. dit versleuteld alleen de Spacedrive database, niet de bestanden zelf.",
"ephemeral_notice_browse": "Blader door je bestand en mappen rechtstreeks vanaf je apparaat.",
"ephemeral_notice_consider_indexing": "Overweeg om je lokale locaties te indexeren voor een snellere en efficiënte verkenning.",
"erase": "Wis",
"erase_a_file": "Wis een bestand",
"erase_a_file_description": "Configureer je wis instellingen.",
"error": "Fout",
"error_loading_original_file": "Fout bij het laden van het originele bestand",
"expand": "Uitbreiden",
"explorer": "Verkenner",
"explorer_shortcut_description": "Om te navigeren en te interageren met het bestandssysteem",
"export": "Exporteer",
"export_library": "Exporteer Bibliotheek",
"export_library_coming_soon": "Bibliotheek Exporteren komt binnenkort",
"export_library_description": "Exporteer deze bibliotheek naar een bestand.",
"extensions": "Extensies",
"extensions_description": "Installeer extensies om de functionaliteit van deze client uit te breiden.",
"fahrenheit": "Fahrenheit",
"failed_to_cancel_job": "Kan taak niet annuleren.",
"failed_to_clear_all_jobs": "Kan niet alle taken wissen.",
"failed_to_copy_file": "Kopiëren van bestand is mislukt",
"failed_to_copy_file_path": "Kan bestandspad niet kopiëren",
"failed_to_cut_file": "Knippen van bestand is mislukt",
"failed_to_duplicate_file": "Kan bestand niet dupliceren",
"failed_to_generate_checksum": "Kan controlegetal niet genereren",
"failed_to_generate_labels": "Kan labels niet genereren",
"failed_to_generate_thumbnails": "Kan voorvertoningen niet genereren",
"failed_to_load_tags": "Kan tags niet laden",
"failed_to_pause_job": "Kan taak niet pauzeren.",
"failed_to_reindex_location": "Kan locatie niet herindexeren",
"failed_to_remove_file_from_recents": "Kan bestand niet verwijderen uit recente bestanden",
"failed_to_remove_job": "Kan taak niet verwijderen.",
"failed_to_rescan_location": "Kan locatie niet opnieuw scannen",
"failed_to_resume_job": "Kan taak niet hervatten.",
"failed_to_update_location_settings": "Kan locatie instellingen niet updaten",
"favorite": "Favoriet",
"favorites": "Favorieten",
"feedback": "Feedback",
"feedback_is_required": "Feedback is verplicht",
"feedback_login_description": "Inloggen stelt ons in staat om te reageren op jouw feedback",
"feedback_placeholder": "Jouw feedback...",
"feedback_toast_error_message": "Er is een fout opgetreden bij het verzenden van je feedback. Probeer het opnieuw.",
"file_already_exist_in_this_location": "Bestand bestaat al op deze locatie",
"file_indexing_rules": "Bestand indexeringsregels",
"filters": "Filters",
"forward": "Vooruit",
"full_disk_access": "Volledige schijftoegang",
"full_disk_access_description": "Om de beste ervaring te bieden, hebben we toegang tot je schijf nodig om uw bestanden te indexeren. Je bestanden zijn alleen voor je beschikbaar.",
"full_reindex": "Volledig Herindexeren",
"full_reindex_info": "Voer een volledige nieuwe scan uit van deze locatie.",
"general": "Algemeen",
"general_settings": "Algemene Instellingen",
"general_settings_description": "Algemene instellingen gerelateerd aan deze client.",
"general_shortcut_description": "Algemene sneltoetsen",
"generatePreviewMedia_label": "Genereer voorvertoning media voor deze Locatie",
"generate_checksums": "Genereer Controlegetal",
"go_back": "Ga Terug",
"got_it": "Begrepen",
"grid_gap": "Tussenruimte",
"grid_view": "Rasterweergave",
"grid_view_notice_description": "Krijg een visueel overzicht van je bestanden met Rasterweergave. In deze weergave worden je bestanden en mappen weergegeven als miniaturen, zodat je snel het bestand kan identificeren dat je zoekt.",
"hidden_label": "Voorkomt dat de locatie en de inhoud ervan verschijnen in overzichtscategorieën, zoekacties en tags, tenzij \"Verborgen items weergeven\" is ingeschakeld.",
"hide_in_library_search": "Verberg in zoeken in Bibliotheek",
"hide_in_library_search_description": "Verberg bestanden met deze tag voor de zoekresultaten wanneer u de hele bibliotheek doorzoekt.",
"hide_in_sidebar": "Verbergen in zijbalk",
"hide_in_sidebar_description": "Voorkom dat deze tag wordt weergegeven in de zijbalk van de app.",
"hide_location_from_view": "Verberg locatie en inhoud uit het zicht",
"home": "Thuismap",
"image_labeler_ai_model": "AI model voor beeldlabelherkenning",
"image_labeler_ai_model_description": "Het model dat wordt gebruikt om objecten in afbeeldingen te herkennen. Grotere modellen zijn nauwkeuriger, maar langzamer.",
"import": "Importeer",
"indexed": "Geïndexeerd",
"indexer_rule_reject_allow_label": "Standaard functioneert een indexeringsregel als een Afwijzingslijst, wat resulteert in de uitsluiting van alle bestanden die aan de criteria voldoen. Als u deze optie inschakelt, wordt deze omgezet in een lijst met toegestane bestanden, waardoor de locatie alleen bestanden kan indexeren die aan de opgegeven regels voldoen.",
"indexer_rules": "Indexeringsregels",
"indexer_rules_info": "Met Indexeringsregels kan je paden opgeven die je wilt negeren met behulp van globs.",
"install": "Installeer",
"install_update": "Installeer Update",
"installed": "Geïnstalleerd",
"item_size": "Item grootte",
"item_with_count_one": "{{count}} item",
"item_with_count_other": "{{count}} items",
"job_has_been_canceled": "Taak is geannuleerd.",
"job_has_been_paused": "Taak is gepauzeerd.",
"job_has_been_removed": "Taak is verwijderd.",
"job_has_been_resumed": "Taak is hervat.",
"join": "Meedoen",
"join_discord": "Meedoen op Discord",
"join_library": "Neem deel aan een Bibliotheek",
"join_library_description": "Bibliotheken zijn een veilige lokale database op het apparaat. Je bestanden blijven waar ze zijn, de bibliotheek catalogiseert ze en slaat alle Spacedrive gerelateerde gegevens op.",
"key": "Sleutel",
"key_manager": "Sleutel Beheerder",
"key_manager_description": "Creëer encryptiesleutels, koppel en ontkoppel je sleutels om te zien dat bestanden direct worden versleuteld.",
"keybinds": "Toetscombinaties",
"keybinds_description": "Bekijk en beheer client toetscombinaties",
"keys": "Sleutels",
"kilometers": "Kilometers",
"labels": "Labels",
"language": "Taal",
"language_description": "Wijzig de taal van de Spacedrive interface",
"learn_more_about_telemetry": "Meer informatie over telemetrie",
"libraries": "Bibliotheken",
"libraries_description": "De database bevat all bibliotheek gegevens en metagegevens van bestanden.",
"library": "Bibliotheek",
"library_name": "Bibliotheek naam",
"library_overview": "Bibliotheek Overzicht",
"library_settings": "Bibliotheek Instellingen",
"library_settings_description": "Algemene Instellingen met betrekking to de momenteel actieve bibliotheek.",
"list_view": "Lijstweergave",
"list_view_notice_description": "Navigeer eenvoudig door je bestanden en mappen met Lijstweergave. In deze weergave worden je bestanden weergegeven in een eenvoudige, georganiseerde lijstindeling, zodat je snel de bestanden kunt vinden en openen die je nodig hebt.",
"loading": "Laden",
"local": "Lokaal",
"local_locations": "Lokale Locaties",
"local_node": "Lokale Node",
"location_connected_tooltip": "De locatie wordt in de gaten gehouden voor wijzigingen",
"location_disconnected_tooltip": "De locatie wordt niet in de gaten gehouden voor wijzigingen",
"location_display_name_info": "De naam van deze Locatie, deze wordt weergegeven in de zijbalk. Zal de daadwerkelijke map op schijf niet hernoemen.",
"location_is_already_linked": "Locatie is al gekoppeld",
"location_path_info": "Het pad naar deze locatie, dit is waar bestanden op de schijf worden opgeslagen.",
"location_type": "Locatie Type",
"location_type_managed": "Spacedrive sorteert bestanden voor je. Als de Locatie niet leeg is, wordt er een map \"Spacedrive\" gecreëerd.",
"location_type_normal": "De inhoud wordt ongewijzigd geïndexeerd, nieuwe bestanden worden niet automatisch gesorteerd.",
"location_type_replica": "Deze locatie is een replica van een andere locatie, de inhoud ervan wordt automatisch gesynchroniseerd.",
"locations": "Locaties",
"locations_description": "Beheer je opslaglocaties.",
"lock": "Vergrendel",
"log_in_with_browser": "Inloggen met browser",
"log_out": "Uitloggen",
"logged_in_as": "Ingelogd als {{email}}",
"logout": "Uitloggen",
"manage_library": "Beheer Bibliotheek",
"managed": "Beheerd",
"media": "Media",
"media_view_context": "Media Weergave Context",
"media_view_notice_description": "Ontdek eenvoudig foto's en video's, Mediaweergave toont resultaten vanaf de huidige locatie, inclusief submappen.",
"meet_contributors_behind_spacedrive": "Maak kennis met de bijdragers achter Spacedrive=",
"meet_title": "Maak kennis met {{title}}",
"miles": "Mijlen",
"mode": "Modus",
"modified": "Gewijzigd",
"more": "Meer",
"more_actions": "Meer acties...",
"more_info": "Meer info",
"move_back_within_quick_preview": "Terug bewegen binnen snelle voorvertoning",
"move_files": "Verplaats Bestanden",
"move_forward_within_quick_preview": "Vooruit bewegen binnen snelle voorvertoning",
"name": "Naam",
"navigate_back": "Navigeer terug",
"navigate_backwards": "Terug navigeren",
"navigate_files_downwards": "Bestanden naar beneden navigeren",
"navigate_files_leftwards": "Bestanden naar links navigeren",
"navigate_files_rightwards": "Bestanden naar rechts navigeren",
"navigate_files_upwards": "Bestanden omhoog navigeren",
"navigate_forward": "Navigeer vooruit",
"navigate_forwards": "Vooruit navigeren",
"navigate_to_settings_page": "Navigeer naar Instellingen pagina",
"network": "Netwerk",
"network_page_description": "Andere Spacedrive nodes op je LAN verschijnen hier, samen met je standaard OS netwerkkoppelingen.",
"networking": "Netwerk",
"networking_port": "Netwerk Poort",
"networking_port_description": "De poort waarop het Peer-to-peer netwerk van Spacedrive kan communiceren. Je moet dit uitgeschakeld laten, tenzij je een beperkende firewall hebt. Deze poort niet openstellen aan het internet!",
"new_folder": "Nieuwe map",
"new_library": "Nieuwe bibliotheek",
"new_location": "Nieuwe locatie",
"new_location_web_description": "Omdat je de browserversie van Spacedrive gebruikt, moet je (voorlopig) een absolute URL opgeven van een lokale map op de externe node.",
"new_tab": "Nieuw Tabblad",
"new_tag": "Nieuwe tag",
"no_files_found_here": "Er zijn hier geen bestanden gevonden",
"no_jobs": "Geen taken.",
"no_tag_selected": "Geen Tag Geselecteerd",
"no_tags": "Geen tags",
"node_name": "Node Naam",
"no_nodes_found": "Er zijn geen Spacedrive-nodes gevonden.",
"nodes": "Nodes",
"nodes_description": "Beheer de nodes die met deze bibliotheek zijn verbonden. Een node is een instantie van de Spacedrive backend, die op een apparaat of server draait. Elke node houdt een kopie van de database bij en synchroniseert deze in realtime via peer-to-peer verbindingen.",
"none": "Geen",
"normal": "Normaal",
"not_you": "Ben je dit niet?",
"number_of_passes": "# runs",
"object_id": "Object-ID",
"offline": "Offline",
"online": "Online",
"open": "Open",
"open_file": "Open Bestand",
"open_new_location_once_added": "Open nieuwe locatie zodra deze is toegevoegd",
"open_new_tab": "Nieuw tabblad openen",
"open_object": "Object openen",
"open_object_from_quick_preview_in_native_file_manager": "Object van snelle voorvertoning openen in de native bestandsbeheerder",
"open_settings": "Open Instellingen",
"open_with": "Open met",
"or": "OF",
"overview": "Overzicht",
"page": "Pagina",
"page_shortcut_description": "Verschillende pagina's in de app",
"pair": "Koppel",
"pairing_with_node": "Koppelen met {{node}}",
"paste": "Plak",
"paste_object": "Object plakken",
"paste_success": "Items geplakt",
"path": "Pad",
"path_copied_to_clipboard_description": "Pad van locatie {{location}} gekopieerd naar klembord.",
"path_copied_to_clipboard_title": "Pad gekopieerd naar klembord",
"pause": "Pauzeer",
"peers": "Peers",
"people": "Personen",
"privacy": "Privacy",
"privacy_description": "Spacedrive is gebouwd met het oog op privacy, daarom zijn we open source en \"local first\". Daarom maken we heel duidelijk welke gegevens met ons worden gedeeld.",
"quick_preview": "Snelle Voorvertoning",
"quick_view": "Geef snel weer",
"recent_jobs": "Recente Taken",
"recents": "Recent",
"regen_labels": "Regenereer Labels",
"regen_thumbnails": "Regenereer Miniaturen",
"regenerate_thumbs": "Regenereer Miniaturen",
"reindex": "Herindexeren",
"reject": "Afwijzen",
"reload": "Herlaad",
"remove": "Verwijder",
"remove_from_recents": "Verwijder van Recent",
"rename": "Naam wijzigen",
"rename_object": "Object hernoemen",
"replica": "Replica",
"rescan_directory": "Bibliotheek Opnieuw Scannen",
"rescan_location": "Locatie Opnieuw Scannen",
"reset": "Reset",
"resources": "Bronnen",
"restore": "Herstel",
"resume": "Hervat",
"retry": "Probeer Opnieuw",
"reveal_in_native_file_manager": "Onthullen in de native bestandsbeheerder",
"revel_in_browser": "Toon in {{browser}}",
"running": "Actief",
"save": "Opslaan",
"save_changes": "Wijzigingen Opslaan",
"saved_searches": "Opgeslagen Zoekopdrachten",
"search_extensions": "Zoek extensies",
"secure_delete": "Veilig verwijderen",
"security": "Veiligheid",
"security_description": "Houd je client veilig.",
"send": "Verstuur",
"settings": "Instellingen",
"setup": "Instellen",
"share": "Delen",
"share_anonymous_usage": "Deel anonieme gebruiksgegevens",
"share_anonymous_usage_description": "Deel volledig anonieme telemetrie gegevens om de ontwikkelaars te helpen de app te verbeteren",
"share_bare_minimum": "Deel het absolute minimale",
"share_bare_minimum_description": "Deel alleen dat ik een actieve gebruiker ben van Spacedrive en een paar technische details",
"sharing": "Delen",
"sharing_description": "Beheer wie toegang heeft tot je bibliotheken.",
"show_details": "Toon details",
"show_hidden_files": "Toon Verborgen Bestanden",
"show_object_size": "Toon Object grootte",
"show_path_bar": "Padbalk Tonen",
"show_slider": "Toon schuifregelaar",
"size": "Grootte",
"skip_login": "Inloggen overslaan",
"sort_by": "Sorteer op",
"spacedrive_account": "Spacedrive Account",
"spacedrive_cloud": "Spacedrive Cloud",
"spacedrive_cloud_description": "Spacedrive is altijd lokaal eerst, maar we zullen in de toekomst optionele cloudservices aanbieden. Voor nu wordt authenticatie alleen gebruikt voor de Feedback-functie, anders is het niet vereist.",
"spacedrop_a_file": "Spacedrop een Bestand",
"spacedrop_description": "Deel direct met apparaten die Spacedrive uitvoeren op uw netwerk.",
"spacedrop_already_progress": "Spacedrop is al bezig",
"spacedrop_rejected": "Spacedrop geweigerd",
"square_thumbnails": "Vierkante Miniaturen",
"star_on_github": "Ster op GitHub",
"stop": "Stop",
"success": "Succes",
"support": "Ondersteuning",
"switch_to_grid_view": "Overschakelen naar rasterweergave",
"switch_to_list_view": "Overschakelen naar lijstweergave",
"switch_to_media_view": "Overschakelen naar mediaweergave",
"switch_to_next_tab": "Naar volgend tabblad schakelen",
"switch_to_previous_tab": "Naar vorig tabblad schakelen",
"sync": "Synchronisatie",
"syncPreviewMedia_label": "Synchroniseer voorvertoningsmedia van deze locatie met je apparaten",
"sync_description": "Beheer hoe Spacedrive synchroniseert.",
"sync_with_library": "Synchroniseer met Bibliotheek",
"sync_with_library_description": "Indien ingeschakeld, worden je toetscombinaties gesynchroniseerd met de bibliotheek, anders zijn ze alleen van toepassing op deze client.",
"tags": "Tags",
"tags_description": "Beheer je tags.",
"telemetry_description": "Schakel in om de ontwikkelaars te voorzien van gedetailleerde gebruik en telemetrie gegevens om de app te verbeteren. Schakel uit om alleen basisgegevens te verzenden: je status, app-versie, core versie en platform (bijvoorbeeld, mobiel, browser, of desktop).",
"telemetry_title": "Deel Aanvullende Telemetrie en Gebruiksgegevens",
"temperature": "Temperatuur",
"thank_you_for_your_feedback": "Bedankt voor je feedback!",
"thumbnailer_cpu_usage": "CPU-gebruik van thumbnailer",
"thumbnailer_cpu_usage_description": "Beperk hoeveel CPU de thumbnailer kan gebruiken voor achtergrondverwerking.",
"toggle_all": "Selecteer Alles",
"toggle_hidden_files": "Verborgen bestanden in-/uitschakelen",
"toggle_image_slider_within_quick_preview": "Afbeeldingsschuifregelaar in snelle voorvertoning in-/uitschakelen",
"toggle_inspector": "Inspector in-/uitschakelen",
"toggle_job_manager": "Jobmanager in-/uitschakelen",
"toggle_metadata": "Metadata in-/uitschakelen",
"toggle_path_bar": "Padbalk in-/uitschakelen",
"toggle_quick_preview": "Snelle voorvertoning in-/uitschakelen",
"type": "Type",
"ui_animations": "UI Animaties",
"ui_animations_description": "Dialogen en andere UI elementen zullen animeren bij het openen en sluiten.",
"unnamed_location": "Naamloze Locatie",
"usage": "Gebruik",
"usage_description": "Je bibliotheek gebruik en hardware informatie",
"value": "Waarde",
"video_preview_not_supported": "Video voorvertoning wordt niet ondersteund.",
"want_to_do_this_later": "Wil je dit later doen?",
"website": "Website",
"your_account": "Je account",
"your_account_description": "Spacedrive account en informatie.",
"your_local_network": "Je Lokale Netwerk",
"your_privacy": "Jouw Privacy",
"new_update_available": "Nieuwe update beschikbaar!",
"version": "Versie {{version}}",
"downloading_update": "Update wordt gedownload",
"update_downloaded": "Update gedownload. Herstart Spacedrive om te installeren",
"failed_to_download_update": "Update kon niet worden gedownload",
"updated_successfully": "Succesvol bijgewerkt, je gebruikt nu versie {{version}}",
"view_changes": "Bekijk wijzigingen",
"update": "Bijwerken",
"ask_spacedrive": "Vraag het aan Space Drive",
"close_command_palette": "Sluit het opdrachtpalet",
"disconnected": "Losgekoppeld",
"go_to_labels": "Ga naar etiketten",
"go_to_location": "Ga naar locatie",
"go_to_overview": "Ga naar overzicht",
"go_to_recents": "Ga naar recent",
"go_to_settings": "Ga naar Instellingen",
"go_to_tag": "Ga naar taggen",
"no_labels": "Geen etiketten",
"search_for_files_and_actions": "Zoeken naar bestanden en acties...",
"toggle_command_palette": "Schakel het opdrachtpalet in of uit"
"about": "Over",
"about_vision_text": "Veel van ons hebben meerdere cloud accounts, schijven waarvan geen back-ups worden gemaakt en gegevens die het risico lopen verloren te gaan. We zijn afhankelijk van clouddiensten als Google Photos en iCloud, maar zitten vast met een beperkte capaciteit en vrijwel geen interoperabiliteit tussen diensten en besturingssystemen. Fotoalbums mogen niet vastzitten in het ecosysteem van een apparaat, of worden gebruikt voor advertentiegegevens. Ze moeten OS-agnostisch, permanent en persoonlijk eigendom zijn. De gegevens die we creëren zijn onze erfenis, die ons nog lang zal overleven. Open source-technologie is de enige manier om ervoor te zorgen dat we de absolute controle behouden over de gegevens die ons leven bepalen, op onbeperkte schaal.",
"about_vision_title": "Visie",
"accept": "Accepteren",
"accessed": "Geopend",
"account": "Account",
"actions": "Acties",
"add": "Toevoegen",
"add_device": "Apparaat Toevoegen",
"add_library": "Bibliotheek Toevoegen",
"add_location": "Locatie Toevoegen",
"add_location_description": "Verbeter je Spacedrive ervaring door al je favoriete locaties toe te voegen aan je persoonlijke bibliotheek, voor een naadloze en efficiënte bestandsbeheer.",
"add_location_tooltip": "Voeg pad toe als een geïndexeerde locatie",
"add_locations": "Locaties Toevoegen",
"add_tag": "Tag Toevoegen",
"advanced_settings": "Geavanceerde Instellingen",
"all_jobs_have_been_cleared": "Alle taken zijn opgeruimd.",
"alpha_release_description": "We zijn blij dat je de Alpha-versie van Spacedrive nu kunt uitproberen, met spannende nieuwe functies. Zoals met elke eerste release kan deze versie enkele bugs bevatten. Je kan ons helpen bij het melden van eventuele problemen die u tegenkomt op ons Discord kanaal. Je waardevolle feedback draagt in grote mate bij aan het verbeteren van de gebruikerservaring.",
"alpha_release_title": "Alpha Release",
"appearance": "Uiterlijk",
"appearance_description": "Verander het uiterlijk van de client.",
"archive": "Archiveer",
"archive_coming_soon": "Archiveren van locaties komt binnenkort...",
"archive_info": "Exporteer gegevens van de bibliotheek als een archief, handig om de mapstructuur van de locatie te behouden.",
"are_you_sure": "Weet je het zeker?",
"assign_tag": "Tag toewijzen",
"audio_preview_not_supported": "Audio voorvertoning wordt niet ondersteund.",
"back": "Terug",
"backups": "Backups",
"backups_description": "Beheer je Spacedrive database backups.",
"blur_effects": "Blur Effecten",
"blur_effects_description": "Op sommige onderdelen wordt een blur effect toegepast.",
"cancel": "Annuleren",
"cancel_selection": "Selectie annuleren",
"celcius": "Celsius",
"change": "Wijzigen",
"changelog": "Wijzigingslogboek",
"changelog_page_description": "Zie welke coole nieuwe functies we aan het maken zijn",
"changelog_page_title": "Wijzigingslogboek",
"checksum": "Controlegetal",
"clear_finished_jobs": "Ruim voltooide taken op",
"client": "Client",
"close": "Sluit",
"close_current_tab": "Huidig tabblad sluiten",
"clouds": "Clouds",
"color": "Kleur",
"coming_soon": "Komt binnenkort",
"compress": "Comprimeer",
"configure_location": "Locatie Configureren",
"connected": "Verbonden",
"contacts": "Contacten",
"contacts_description": "Beheer je contacten in Spacedrive.",
"content_id": "Inhouds-ID",
"continue": "Verdergaan",
"convert_to": "Omzetten naar",
"coordinates": "Coördinaten",
"copied": "Gekopieerd",
"copy": "Kopieer",
"copy_as_path": "Kopieer als pad",
"copy_object": "Object kopiëren",
"copy_path_to_clipboard": "Kopieer pad naar klembord",
"copy_success": "Items gekopieerd",
"create": "Creëer",
"create_library": "Creëer Bibliotheek",
"create_library_description": "Bibliotheken zijn een veilige lokale database. Je bestanden blijven waar ze zijn, de Bibliotheek catalogiseert ze een slaat alle Spacedrive gerelateerde gegevens op.",
"create_new_library": "Creëer nieuwe bibliotheek",
"create_new_library_description": "Bibliotheken zijn een veilige lokale database. Je bestanden blijven waar ze zijn, de Bibliotheek catalogiseert ze een slaat alle Spacedrive gerelateerde gegevens op.",
"create_new_tag": "Creëer Nieuwe Tag",
"create_new_tag_description": "Kies een naam en kleur.",
"create_tag": "Creëer Tag",
"created": "Gecreëerd",
"creating_library": "Bibliotheek creëren...",
"creating_your_library": "Je bibliotheek creëren",
"current": "Huidig",
"current_directory": "Huidige Map",
"current_directory_with_descendants": "Huidige Map Met Afstammelingen",
"custom": "Aangepast",
"cut": "Knip",
"cut_object": "Object knippen",
"cut_success": "Items knippen",
"data_folder": "Gegevens Map",
"debug_mode": "Debug modus",
"debug_mode_description": "Schakel extra debugging functies in de app in.",
"default": "Standaard",
"delete": "Verwijder",
"delete_dialog_title": "Verwijder {{prefix}} {{type}}",
"delete_info": "Hiermee wordt de daadwerkelijke map op de schijf niet verwijderd. Voorvertoning media wordt verwijderd.",
"delete_library": "Verwijder Bibliotheek",
"delete_library_description": "Dit is permanent, je bestanden worden niet verwijderd, alleen de Spacedrive bibliotheek.",
"delete_location": "Verwijder Locatie",
"delete_location_description": "Als je een locatie verwijdert, worden ook alle bijbehorende bestanden uit de Spacedrive database verwijderd, de bestanden zelf worden niet verwijderd.",
"delete_object": "Object verwijderen",
"delete_rule": "Verwijder regel",
"delete_tag": "Verwijder Tag",
"delete_tag_description": "Weet je zeker dat je deze tag wilt verwijderen? Dit kan niet ongedaan worden gemaakt en ge-tagde bestanden worden ontkoppeld.",
"delete_warning": "Waarschuwing: hiermee wordt je {{type}} permanent verwijderd, we hebben nog geen prullenbak...",
"description": "Omschrijving",
"deselect": "Deselecteer",
"details": "Details",
"devices": "Apparaten",
"devices_coming_soon_tooltip": "Binnenkort beschikbaar! Deze alpha release bevat geen bibliotheeksynchronisatie, dit zal binnenkort beschikbaar zijn.",
"dialog": "Dialoog",
"dialog_shortcut_description": "Om acties en bewerkingen uit te voeren",
"direction": "Richting",
"disabled": "Uitgeschakeld",
"display_formats": "Weergave Eenheden",
"display_name": "Weergave Naam",
"distance": "Afstand",
"done": "Klaar",
"dont_show_again": "Niet meer laten zien",
"double_click_action": "Dubbele klikactie",
"download": "Download",
"duplicate": "Dupliceer",
"duplicate_object": "Object dupliceren",
"duplicate_success": "Items gedupliceerd",
"edit": "Bewerk",
"edit_library": "Bewerk Bibliotheek",
"edit_location": "Bewerk Locatie",
"enable_networking": "Netwerk Inschakelen",
"encrypt": "Versleutel",
"encrypt_library": "Versleutel Bibliotheek",
"encrypt_library_coming_soon": "Bibliotheek versleuteling komt binnenkort",
"encrypt_library_description": "Schakel versleuteling in voor deze bibliotheek. dit versleuteld alleen de Spacedrive database, niet de bestanden zelf.",
"ephemeral_notice_browse": "Blader door je bestand en mappen rechtstreeks vanaf je apparaat.",
"ephemeral_notice_consider_indexing": "Overweeg om je lokale locaties te indexeren voor een snellere en efficiënte verkenning.",
"erase": "Wis",
"erase_a_file": "Wis een bestand",
"erase_a_file_description": "Configureer je wis instellingen.",
"error": "Fout",
"error_loading_original_file": "Fout bij het laden van het originele bestand",
"expand": "Uitbreiden",
"explorer": "Verkenner",
"explorer_shortcut_description": "Om te navigeren en te interageren met het bestandssysteem",
"export": "Exporteer",
"export_library": "Exporteer Bibliotheek",
"export_library_coming_soon": "Bibliotheek Exporteren komt binnenkort",
"export_library_description": "Exporteer deze bibliotheek naar een bestand.",
"extensions": "Extensies",
"extensions_description": "Installeer extensies om de functionaliteit van deze client uit te breiden.",
"fahrenheit": "Fahrenheit",
"failed_to_cancel_job": "Kan taak niet annuleren.",
"failed_to_clear_all_jobs": "Kan niet alle taken wissen.",
"failed_to_copy_file": "Kopiëren van bestand is mislukt",
"failed_to_copy_file_path": "Kan bestandspad niet kopiëren",
"failed_to_cut_file": "Knippen van bestand is mislukt",
"failed_to_duplicate_file": "Kan bestand niet dupliceren",
"failed_to_generate_checksum": "Kan controlegetal niet genereren",
"failed_to_generate_labels": "Kan labels niet genereren",
"failed_to_generate_thumbnails": "Kan voorvertoningen niet genereren",
"failed_to_load_tags": "Kan tags niet laden",
"failed_to_pause_job": "Kan taak niet pauzeren.",
"failed_to_reindex_location": "Kan locatie niet herindexeren",
"failed_to_remove_file_from_recents": "Kan bestand niet verwijderen uit recente bestanden",
"failed_to_remove_job": "Kan taak niet verwijderen.",
"failed_to_rescan_location": "Kan locatie niet opnieuw scannen",
"failed_to_resume_job": "Kan taak niet hervatten.",
"failed_to_update_location_settings": "Kan locatie instellingen niet updaten",
"favorite": "Favoriet",
"favorites": "Favorieten",
"feedback": "Feedback",
"feedback_is_required": "Feedback is verplicht",
"feedback_login_description": "Inloggen stelt ons in staat om te reageren op jouw feedback",
"feedback_placeholder": "Jouw feedback...",
"feedback_toast_error_message": "Er is een fout opgetreden bij het verzenden van je feedback. Probeer het opnieuw.",
"file_already_exist_in_this_location": "Bestand bestaat al op deze locatie",
"file_indexing_rules": "Bestand indexeringsregels",
"filters": "Filters",
"forward": "Vooruit",
"full_disk_access": "Volledige schijftoegang",
"full_disk_access_description": "Om de beste ervaring te bieden, hebben we toegang tot je schijf nodig om uw bestanden te indexeren. Je bestanden zijn alleen voor je beschikbaar.",
"full_reindex": "Volledig Herindexeren",
"full_reindex_info": "Voer een volledige nieuwe scan uit van deze locatie.",
"general": "Algemeen",
"general_settings": "Algemene Instellingen",
"general_settings_description": "Algemene instellingen gerelateerd aan deze client.",
"general_shortcut_description": "Algemene sneltoetsen",
"generatePreviewMedia_label": "Genereer voorvertoning media voor deze Locatie",
"generate_checksums": "Genereer Controlegetal",
"go_back": "Ga Terug",
"got_it": "Begrepen",
"grid_gap": "Tussenruimte",
"grid_view": "Rasterweergave",
"grid_view_notice_description": "Krijg een visueel overzicht van je bestanden met Rasterweergave. In deze weergave worden je bestanden en mappen weergegeven als miniaturen, zodat je snel het bestand kan identificeren dat je zoekt.",
"hidden_label": "Voorkomt dat de locatie en de inhoud ervan verschijnen in overzichtscategorieën, zoekacties en tags, tenzij \"Verborgen items weergeven\" is ingeschakeld.",
"hide_in_library_search": "Verberg in zoeken in Bibliotheek",
"hide_in_library_search_description": "Verberg bestanden met deze tag voor de zoekresultaten wanneer u de hele bibliotheek doorzoekt.",
"hide_in_sidebar": "Verbergen in zijbalk",
"hide_in_sidebar_description": "Voorkom dat deze tag wordt weergegeven in de zijbalk van de app.",
"hide_location_from_view": "Verberg locatie en inhoud uit het zicht",
"home": "Thuismap",
"image_labeler_ai_model": "AI model voor beeldlabelherkenning",
"image_labeler_ai_model_description": "Het model dat wordt gebruikt om objecten in afbeeldingen te herkennen. Grotere modellen zijn nauwkeuriger, maar langzamer.",
"import": "Importeer",
"indexed": "Geïndexeerd",
"indexer_rule_reject_allow_label": "Standaard functioneert een indexeringsregel als een Afwijzingslijst, wat resulteert in de uitsluiting van alle bestanden die aan de criteria voldoen. Als u deze optie inschakelt, wordt deze omgezet in een lijst met toegestane bestanden, waardoor de locatie alleen bestanden kan indexeren die aan de opgegeven regels voldoen.",
"indexer_rules": "Indexeringsregels",
"indexer_rules_info": "Met Indexeringsregels kan je paden opgeven die je wilt negeren met behulp van globs.",
"install": "Installeer",
"install_update": "Installeer Update",
"installed": "Geïnstalleerd",
"item_size": "Item grootte",
"item_with_count_one": "{{count}} item",
"item_with_count_other": "{{count}} items",
"job_has_been_canceled": "Taak is geannuleerd.",
"job_has_been_paused": "Taak is gepauzeerd.",
"job_has_been_removed": "Taak is verwijderd.",
"job_has_been_resumed": "Taak is hervat.",
"join": "Meedoen",
"join_discord": "Meedoen op Discord",
"join_library": "Neem deel aan een Bibliotheek",
"join_library_description": "Bibliotheken zijn een veilige lokale database op het apparaat. Je bestanden blijven waar ze zijn, de bibliotheek catalogiseert ze en slaat alle Spacedrive gerelateerde gegevens op.",
"key": "Sleutel",
"key_manager": "Sleutel Beheerder",
"key_manager_description": "Creëer encryptiesleutels, koppel en ontkoppel je sleutels om te zien dat bestanden direct worden versleuteld.",
"keybinds": "Toetscombinaties",
"keybinds_description": "Bekijk en beheer client toetscombinaties",
"keys": "Sleutels",
"kilometers": "Kilometers",
"labels": "Labels",
"language": "Taal",
"language_description": "Wijzig de taal van de Spacedrive interface",
"learn_more_about_telemetry": "Meer informatie over telemetrie",
"libraries": "Bibliotheken",
"libraries_description": "De database bevat all bibliotheek gegevens en metagegevens van bestanden.",
"library": "Bibliotheek",
"library_name": "Bibliotheek naam",
"library_overview": "Bibliotheek Overzicht",
"library_settings": "Bibliotheek Instellingen",
"library_settings_description": "Algemene Instellingen met betrekking to de momenteel actieve bibliotheek.",
"list_view": "Lijstweergave",
"list_view_notice_description": "Navigeer eenvoudig door je bestanden en mappen met Lijstweergave. In deze weergave worden je bestanden weergegeven in een eenvoudige, georganiseerde lijstindeling, zodat je snel de bestanden kunt vinden en openen die je nodig hebt.",
"loading": "Laden",
"local": "Lokaal",
"local_locations": "Lokale Locaties",
"local_node": "Lokale Node",
"location_connected_tooltip": "De locatie wordt in de gaten gehouden voor wijzigingen",
"location_disconnected_tooltip": "De locatie wordt niet in de gaten gehouden voor wijzigingen",
"location_display_name_info": "De naam van deze Locatie, deze wordt weergegeven in de zijbalk. Zal de daadwerkelijke map op schijf niet hernoemen.",
"location_is_already_linked": "Locatie is al gekoppeld",
"location_path_info": "Het pad naar deze locatie, dit is waar bestanden op de schijf worden opgeslagen.",
"location_type": "Locatie Type",
"location_type_managed": "Spacedrive sorteert bestanden voor je. Als de Locatie niet leeg is, wordt er een map \"Spacedrive\" gecreëerd.",
"location_type_normal": "De inhoud wordt ongewijzigd geïndexeerd, nieuwe bestanden worden niet automatisch gesorteerd.",
"location_type_replica": "Deze locatie is een replica van een andere locatie, de inhoud ervan wordt automatisch gesynchroniseerd.",
"locations": "Locaties",
"locations_description": "Beheer je opslaglocaties.",
"lock": "Vergrendel",
"log_in_with_browser": "Inloggen met browser",
"log_out": "Uitloggen",
"logged_in_as": "Ingelogd als {{email}}",
"logout": "Uitloggen",
"manage_library": "Beheer Bibliotheek",
"managed": "Beheerd",
"media": "Media",
"media_view_context": "Media Weergave Context",
"media_view_notice_description": "Ontdek eenvoudig foto's en video's, Mediaweergave toont resultaten vanaf de huidige locatie, inclusief submappen.",
"meet_contributors_behind_spacedrive": "Maak kennis met de bijdragers achter Spacedrive=",
"meet_title": "Maak kennis met {{title}}",
"miles": "Mijlen",
"mode": "Modus",
"modified": "Gewijzigd",
"more": "Meer",
"more_actions": "Meer acties...",
"more_info": "Meer info",
"move_back_within_quick_preview": "Terug bewegen binnen snelle voorvertoning",
"move_files": "Verplaats Bestanden",
"move_forward_within_quick_preview": "Vooruit bewegen binnen snelle voorvertoning",
"name": "Naam",
"navigate_back": "Navigeer terug",
"navigate_backwards": "Terug navigeren",
"navigate_files_downwards": "Bestanden naar beneden navigeren",
"navigate_files_leftwards": "Bestanden naar links navigeren",
"navigate_files_rightwards": "Bestanden naar rechts navigeren",
"navigate_files_upwards": "Bestanden omhoog navigeren",
"navigate_forward": "Navigeer vooruit",
"navigate_forwards": "Vooruit navigeren",
"navigate_to_settings_page": "Navigeer naar Instellingen pagina",
"network": "Netwerk",
"network_page_description": "Andere Spacedrive nodes op je LAN verschijnen hier, samen met je standaard OS netwerkkoppelingen.",
"networking": "Netwerk",
"networking_port": "Netwerk Poort",
"networking_port_description": "De poort waarop het Peer-to-peer netwerk van Spacedrive kan communiceren. Je moet dit uitgeschakeld laten, tenzij je een beperkende firewall hebt. Deze poort niet openstellen aan het internet!",
"new_folder": "Nieuwe map",
"new_library": "Nieuwe bibliotheek",
"new_location": "Nieuwe locatie",
"new_location_web_description": "Omdat je de browserversie van Spacedrive gebruikt, moet je (voorlopig) een absolute URL opgeven van een lokale map op de externe node.",
"new_tab": "Nieuw Tabblad",
"new_tag": "Nieuwe tag",
"no_files_found_here": "Er zijn hier geen bestanden gevonden",
"no_jobs": "Geen taken.",
"no_tag_selected": "Geen Tag Geselecteerd",
"no_tags": "Geen tags",
"node_name": "Node Naam",
"no_nodes_found": "Er zijn geen Spacedrive-nodes gevonden.",
"nodes": "Nodes",
"nodes_description": "Beheer de nodes die met deze bibliotheek zijn verbonden. Een node is een instantie van de Spacedrive backend, die op een apparaat of server draait. Elke node houdt een kopie van de database bij en synchroniseert deze in realtime via peer-to-peer verbindingen.",
"none": "Geen",
"normal": "Normaal",
"not_you": "Ben je dit niet?",
"number_of_passes": "# runs",
"object_id": "Object-ID",
"offline": "Offline",
"online": "Online",
"open": "Open",
"open_file": "Open Bestand",
"open_new_location_once_added": "Open nieuwe locatie zodra deze is toegevoegd",
"open_new_tab": "Nieuw tabblad openen",
"open_object": "Object openen",
"open_object_from_quick_preview_in_native_file_manager": "Object van snelle voorvertoning openen in de native bestandsbeheerder",
"open_settings": "Open Instellingen",
"open_with": "Open met",
"or": "OF",
"overview": "Overzicht",
"page": "Pagina",
"page_shortcut_description": "Verschillende pagina's in de app",
"pair": "Koppel",
"pairing_with_node": "Koppelen met {{node}}",
"paste": "Plak",
"paste_object": "Object plakken",
"paste_success": "Items geplakt",
"path": "Pad",
"path_copied_to_clipboard_description": "Pad van locatie {{location}} gekopieerd naar klembord.",
"path_copied_to_clipboard_title": "Pad gekopieerd naar klembord",
"pause": "Pauzeer",
"peers": "Peers",
"people": "Personen",
"privacy": "Privacy",
"privacy_description": "Spacedrive is gebouwd met het oog op privacy, daarom zijn we open source en \"local first\". Daarom maken we heel duidelijk welke gegevens met ons worden gedeeld.",
"quick_preview": "Snelle Voorvertoning",
"quick_view": "Geef snel weer",
"recent_jobs": "Recente Taken",
"recents": "Recent",
"regen_labels": "Regenereer Labels",
"regen_thumbnails": "Regenereer Miniaturen",
"regenerate_thumbs": "Regenereer Miniaturen",
"reindex": "Herindexeren",
"reject": "Afwijzen",
"reload": "Herlaad",
"remove": "Verwijder",
"remove_from_recents": "Verwijder van Recent",
"rename": "Naam wijzigen",
"rename_object": "Object hernoemen",
"replica": "Replica",
"rescan_directory": "Bibliotheek Opnieuw Scannen",
"rescan_location": "Locatie Opnieuw Scannen",
"reset": "Reset",
"resources": "Bronnen",
"restore": "Herstel",
"resume": "Hervat",
"retry": "Probeer Opnieuw",
"reveal_in_native_file_manager": "Onthullen in de native bestandsbeheerder",
"revel_in_browser": "Toon in {{browser}}",
"running": "Actief",
"save": "Opslaan",
"save_changes": "Wijzigingen Opslaan",
"saved_searches": "Opgeslagen Zoekopdrachten",
"search_extensions": "Zoek extensies",
"secure_delete": "Veilig verwijderen",
"security": "Veiligheid",
"security_description": "Houd je client veilig.",
"send": "Verstuur",
"settings": "Instellingen",
"setup": "Instellen",
"share": "Delen",
"share_anonymous_usage": "Deel anonieme gebruiksgegevens",
"share_anonymous_usage_description": "Deel volledig anonieme telemetrie gegevens om de ontwikkelaars te helpen de app te verbeteren",
"share_bare_minimum": "Deel het absolute minimale",
"share_bare_minimum_description": "Deel alleen dat ik een actieve gebruiker ben van Spacedrive en een paar technische details",
"sharing": "Delen",
"sharing_description": "Beheer wie toegang heeft tot je bibliotheken.",
"show_details": "Toon details",
"show_hidden_files": "Toon Verborgen Bestanden",
"show_object_size": "Toon Object grootte",
"show_path_bar": "Padbalk Tonen",
"show_slider": "Toon schuifregelaar",
"size": "Grootte",
"skip_login": "Inloggen overslaan",
"sort_by": "Sorteer op",
"spacedrive_account": "Spacedrive Account",
"spacedrive_cloud": "Spacedrive Cloud",
"spacedrive_cloud_description": "Spacedrive is altijd lokaal eerst, maar we zullen in de toekomst optionele cloudservices aanbieden. Voor nu wordt authenticatie alleen gebruikt voor de Feedback-functie, anders is het niet vereist.",
"spacedrop_a_file": "Spacedrop een Bestand",
"spacedrop_description": "Deel direct met apparaten die Spacedrive uitvoeren op uw netwerk.",
"spacedrop_already_progress": "Spacedrop is al bezig",
"spacedrop_rejected": "Spacedrop geweigerd",
"square_thumbnails": "Vierkante Miniaturen",
"star_on_github": "Ster op GitHub",
"stop": "Stop",
"success": "Succes",
"support": "Ondersteuning",
"switch_to_grid_view": "Overschakelen naar rasterweergave",
"switch_to_list_view": "Overschakelen naar lijstweergave",
"switch_to_media_view": "Overschakelen naar mediaweergave",
"switch_to_next_tab": "Naar volgend tabblad schakelen",
"switch_to_previous_tab": "Naar vorig tabblad schakelen",
"sync": "Synchronisatie",
"syncPreviewMedia_label": "Synchroniseer voorvertoningsmedia van deze locatie met je apparaten",
"sync_description": "Beheer hoe Spacedrive synchroniseert.",
"sync_with_library": "Synchroniseer met Bibliotheek",
"sync_with_library_description": "Indien ingeschakeld, worden je toetscombinaties gesynchroniseerd met de bibliotheek, anders zijn ze alleen van toepassing op deze client.",
"tags": "Tags",
"tags_description": "Beheer je tags.",
"telemetry_description": "Schakel in om de ontwikkelaars te voorzien van gedetailleerde gebruik en telemetrie gegevens om de app te verbeteren. Schakel uit om alleen basisgegevens te verzenden: je status, app-versie, core versie en platform (bijvoorbeeld, mobiel, browser, of desktop).",
"telemetry_title": "Deel Aanvullende Telemetrie en Gebruiksgegevens",
"temperature": "Temperatuur",
"thank_you_for_your_feedback": "Bedankt voor je feedback!",
"thumbnailer_cpu_usage": "CPU-gebruik van thumbnailer",
"thumbnailer_cpu_usage_description": "Beperk hoeveel CPU de thumbnailer kan gebruiken voor achtergrondverwerking.",
"toggle_all": "Selecteer Alles",
"toggle_hidden_files": "Verborgen bestanden in-/uitschakelen",
"toggle_image_slider_within_quick_preview": "Afbeeldingsschuifregelaar in snelle voorvertoning in-/uitschakelen",
"toggle_inspector": "Inspector in-/uitschakelen",
"toggle_job_manager": "Jobmanager in-/uitschakelen",
"toggle_metadata": "Metadata in-/uitschakelen",
"toggle_path_bar": "Padbalk in-/uitschakelen",
"toggle_quick_preview": "Snelle voorvertoning in-/uitschakelen",
"type": "Type",
"ui_animations": "UI Animaties",
"ui_animations_description": "Dialogen en andere UI elementen zullen animeren bij het openen en sluiten.",
"unnamed_location": "Naamloze Locatie",
"usage": "Gebruik",
"usage_description": "Je bibliotheek gebruik en hardware informatie",
"value": "Waarde",
"video_preview_not_supported": "Video voorvertoning wordt niet ondersteund.",
"want_to_do_this_later": "Wil je dit later doen?",
"website": "Website",
"your_account": "Je account",
"your_account_description": "Spacedrive account en informatie.",
"your_local_network": "Je Lokale Netwerk",
"your_privacy": "Jouw Privacy",
"new_update_available": "Nieuwe update beschikbaar!",
"version": "Versie {{version}}",
"downloading_update": "Update wordt gedownload",
"update_downloaded": "Update gedownload. Herstart Spacedrive om te installeren",
"failed_to_download_update": "Update kon niet worden gedownload",
"updated_successfully": "Succesvol bijgewerkt, je gebruikt nu versie {{version}}",
"view_changes": "Bekijk wijzigingen",
"update": "Bijwerken",
"ask_spacedrive": "Vraag het aan Space Drive",
"close_command_palette": "Sluit het opdrachtpalet",
"disconnected": "Losgekoppeld",
"go_to_labels": "Ga naar etiketten",
"go_to_location": "Ga naar locatie",
"go_to_overview": "Ga naar overzicht",
"go_to_recents": "Ga naar recent",
"go_to_settings": "Ga naar Instellingen",
"go_to_tag": "Ga naar taggen",
"no_labels": "Geen etiketten",
"search_for_files_and_actions": "Zoeken naar bestanden en acties...",
"toggle_command_palette": "Schakel het opdrachtpalet in of uit"
}

View file

@ -1,452 +1,452 @@
{
"about": "О Spacedrive",
"about_vision_text": "У многих из нас есть несколько учетных записей в облаке, диски без резервной копии и данные, которые могут быть утеряны. Мы зависим от облачных сервисов, таких как Google Photos и iCloud, но их возможности ограничены, а совместимость между сервисами и операционными системами практически отсутствует. Фотогалерея не должна быть привязана к экосистеме устройства или использоваться для сбора рекламных данных. Она должна быть независима от операционной системы, постоянна и принадлежать лично Вам. Данные, которые мы создаем, - это наше наследие, которое надолго переживет нас. Технология с открытым исходным кодом - единственный способ обеспечить абсолютный контроль над данными, определяющими нашу жизнь, в неограниченном масштабе.",
"about_vision_title": "Видение",
"accept": "Принять",
"accessed": "Доступно",
"account": "Аккаунт",
"actions": "Действия",
"add": "Добавить",
"add_device": "Добавить устройство",
"add_library": "Добавить библиотеку",
"add_location": "Добавить локацию",
"add_location_description": "Расширьте возможности Spacedrive, добавив любимые локации в свою личную библиотеку, для удобного и эффективного управления файлами.",
"add_location_tooltip": "Добавьте данный путь в качестве индексированной локации",
"add_locations": "Добавить локации",
"add_tag": "Добавить тег",
"advanced_settings": "Дополнительные настройки",
"all_jobs_have_been_cleared": "Все задачи выполнены.",
"alpha_release_description": "Мы рады, что вы можете попробовать Spacedrive, который сейчас находится в стадии альфа-тестирования и демонстрирует новые захватывающие функции. Как и любой другой первый релиз, эта версия может содержать некоторые ошибки. Мы просим вас сообщать о любых проблемах в нашем канале Discord. Ваши ценные отзывы будут способствовать улучшению пользовательского опыта.",
"alpha_release_title": "Альфа версия",
"appearance": "Внешний вид",
"appearance_description": "Измените внешний вид вашего клиента.",
"archive": "Архив",
"archive_coming_soon": "Архивация локаций скоро появится...",
"archive_info": "Извлечение данных из библиотеки в виде архива, полезно для сохранения структуры локаций.",
"are_you_sure": "Вы уверены?",
"assign_tag": "Присвоить тег",
"audio_preview_not_supported": "Предварительный просмотр аудио не поддерживается.",
"back": "Назад",
"backups": "Резервные копии",
"backups_description": "Управляйте Вашими копиями базы данных Spacedrive",
"blur_effects": "Эффекты размытия",
"blur_effects_description": "К некоторым компонентам будет применен эффект размытия.",
"cancel": "Отменить",
"cancel_selection": "Отменить выбор",
"celcius": "Цельсий",
"change": "Изменить",
"changelog": "Что нового",
"changelog_page_description": "Узнайте, какие новые возможности мы добавили",
"changelog_page_title": "Список изменений",
"checksum": "Контрольная сумма",
"clear_finished_jobs": "Очистить законченные задачи",
"client": "Клиент",
"close": "Закрыть",
"close_current_tab": "Закрыть текущую вкладку",
"clouds": "Облачные хр.",
"color": "Цвет",
"coming_soon": "Скоро появится",
"compress": "Сжать",
"configure_location": "Настроить локацию",
"connected": "Подключено",
"contacts": "Контакты",
"contacts_description": "Управляйте контактами в Spacedrive.",
"content_id": "ID содержимого",
"continue": "Продолжить",
"convert_to": "Преобразовать в",
"coordinates": "Координаты",
"copied": "Скопировано",
"copy": "Копировать",
"copy_as_path": "Копировать как путь",
"copy_object": "Копировать объект",
"copy_path_to_clipboard": "Копировать путь в буфер обмена",
"copy_success": "Элементы скопированы",
"create": "Создать",
"create_library": "Создать библиотеку",
"create_library_description": "Библиотека - это защищенная база данных на устройстве. Ваши файлы остаются на своих местах, библиотека упорядочивает их и хранит все данные, связанные со Spacedrive.",
"create_new_library": "Создайте новую библиотеку",
"create_new_library_description": "Библиотека - это защищенная база данных на устройстве. Ваши файлы остаются на своих местах, библиотека упорядочивает их и хранит все данные, связанные со Spacedrive.",
"create_new_tag": "Создать новый тег",
"create_new_tag_description": "Выберите название и цвет.",
"create_tag": "Создать тег",
"created": "Создано",
"creating_library": "Создание библиотеки...",
"creating_your_library": "Создание Вашей библиотеки",
"current": "Текущая",
"current_directory": "Текущая директория",
"current_directory_with_descendants": "Текущая директория с наследниками",
"custom": "Пользовательский",
"cut": "Вырезать",
"cut_object": "Вырезать объект",
"cut_success": "Элементы вырезаны",
"data_folder": "Папка с данными",
"debug_mode": "Режим отладки",
"debug_mode_description": "Включите дополнительные функции отладки в приложении.",
"default": "Стандартный",
"delete": "Удалить",
"delete_dialog_title": "Удалить {{prefix}} {{type}}",
"delete_info": "Это не удалит саму папку на диске. Будет удалено медиа-превью.",
"delete_library": "Удалить библиотеку",
"delete_library_description": "Это необратимое действие, ваши файлы не будут удалены, только библиотека Spacedrive.",
"delete_location": "Удалить локацию",
"delete_location_description": "При удалении локации все связанные с ним файлы будут удалены из базы данных Spacedrive, сами файлы при этом не будут удалены с устройства.",
"delete_object": "Удалить объект",
"delete_rule": "Удалить правило",
"delete_tag": "Удалить тег",
"delete_tag_description": "Вы уверены, что хотите удалить этот тег? Это действие нельзя отменить, и тегнутые файлы будут отсоединены.",
"delete_warning": "Предупреждение: это удалит ваш {{type}} навсегда, у нас пока нет мусорной корзины.",
"description": "Описание",
"deselect": "Отменить выбор",
"details": "Подробности",
"devices": "Устройства",
"devices_coming_soon_tooltip": "Скоро будет! Эта альфа-версия не включает синхронизацию библиотек, она будет готова очень скоро.",
"dialog": "Диалоговое окно",
"dialog_shortcut_description": "Выполнение действий и операций",
"direction": "Направление",
"disabled": "Отключено",
"disconnected": "Отключен",
"display_formats": "Форматы отображения",
"display_name": "Отображаемое имя",
"distance": "Расстояние",
"done": "Готово",
"dont_show_again": "Не показывать снова",
"double_click_action": "Действие двойного нажатия",
"download": "Скачать",
"duplicate": "Дублировать",
"duplicate_object": "Дублировать объект",
"duplicate_success": "Элементы дублированы",
"edit": "Редактировать",
"edit_library": "Редактировать библиотеку",
"edit_location": "Редактировать локацию",
"enable_networking": "Включить сетевое взаимодействие",
"encrypt": "Зашифровать",
"encrypt_library": "Зашифровать библиотеку",
"encrypt_library_coming_soon": "Шифрование библиотеки скоро появится",
"encrypt_library_description": "Включить шифрование этой библиотеки, при этом будет зашифрована только база данных Spacedrive, но не сами файлы.",
"ephemeral_notice_browse": "Просматривайте файлы и папки прямо с устройства.",
"ephemeral_notice_consider_indexing": "Рассмотрите возможность индексирования ваших локаций для более быстрого и эффективного поиска.",
"erase": "Удалить",
"erase_a_file": "Удалить файл",
"erase_a_file_description": "Настройте параметры удаления.",
"error": "Ошибка",
"error_loading_original_file": "Ошибка при загрузке исходного файла",
"expand": "Развернуть",
"explorer": "Проводник",
"explorer_shortcut_description": "Навигация и взаимодействие с файловой системой",
"export": "Экспорт",
"export_library": "Экспорт библиотеки",
"export_library_coming_soon": "Экспорт библиотеки скоро станет возможным",
"export_library_description": "Экспортируйте эту библиотеку в файл.",
"extensions": "Расширения",
"extensions_description": "Установите расширения, чтобы расширить функциональность этого клиента.",
"fahrenheit": "Фаренгейт",
"failed_to_cancel_job": "Не удалось отменить задачу.",
"failed_to_clear_all_jobs": "Не удалось выполнить все задачи.",
"failed_to_copy_file": "Не удалось скопировать файл",
"failed_to_copy_file_path": "Не удалось скопировать путь к файлу",
"failed_to_cut_file": "Не удалось вырезать файл",
"failed_to_duplicate_file": "Не удалось создать дубликат файла",
"failed_to_generate_checksum": "Не удалось сгенерировать контрольную сумму",
"failed_to_generate_labels": "Не удалось сгенерировать ярлык",
"failed_to_generate_thumbnails": "Не удалось сгенерировать миниатюры",
"failed_to_load_tags": "Не удалось загрузить теги",
"failed_to_pause_job": "Не удалось приостановить задачу.",
"failed_to_reindex_location": "Не удалось переиндексировать локацию",
"failed_to_remove_file_from_recents": "Не удалось удалить файл из недавних",
"failed_to_remove_job": "Не удалось удалить задачу.",
"failed_to_rescan_location": "Не удалось выполнить повторное сканирование локации",
"failed_to_resume_job": "Не удалось возобновить задачу.",
"failed_to_update_location_settings": "Не удалось обновить настройки локации",
"favorite": "Избранное",
"favorites": "Избранное",
"feedback": "Фидбек",
"feedback_is_required": "Необходим фидбек",
"feedback_login_description": "Вход в систему позволяет нам отвечать на Ваш фидбек",
"feedback_placeholder": "Ваш фидбек...",
"feedback_toast_error_message": "При отправке вашего фидбека произошла ошибка. Пожалуйста, попробуйте еще раз.",
"file_already_exist_in_this_location": "Файл уже существует в этой локации",
"file_indexing_rules": "Правила индексации файлов",
"filters": "Фильтры",
"forward": "Вперед",
"full_disk_access": "Полный доступ к диску",
"full_disk_access_description": "Для обеспечения наилучшего качества работы нам необходим доступ к вашему диску, чтобы индексировать ваши файлы. Ваши файлы доступны только вам.",
"full_reindex": "Полная переиндексация",
"full_reindex_info": "Выполните полное повторное сканирование этой локации.",
"general": "Главное",
"general_settings": "Основные настройки",
"general_settings_description": "Общие настройки, относящиеся к данному клиенту.",
"general_shortcut_description": "Общие сочетания клавиш",
"generatePreviewMedia_label": "Создайте предварительный просмотр медиафайлов для этой локации",
"generate_checksums": "Генерация контрольных сумм",
"go_back": "Назад",
"got_it": "Получилось",
"grid_gap": "Пробел",
"grid_view": "Вид сеткой",
"grid_view_notice_description": "Получите визуальный обзор файлов с помощью просмотра сеткой. В этом представлении файлы и папки отображаются в виде уменьшенных изображений, что позволяет быстро найти нужный файл.",
"hidden_label": "Не позволяет локации и её содержимому отображаться в итоговых категориях, поиске и тегах, если не включена функция \"Показывать скрытые элементы\".",
"hide_in_library_search": "Скрыть в поиске по библиотеке",
"hide_in_library_search_description": "Скрыть файлы с этим тегом из результатов при поиске по всей библиотеке.",
"hide_in_sidebar": "Скрыть в боковой панели",
"hide_in_sidebar_description": "Запретите отображение этого тега в боковой панели.",
"hide_location_from_view": "Скрыть локацию и содержимое из вида",
"home": "Главная",
"image_labeler_ai_model": "Модель ИИ для генерации ярлыков изображений",
"image_labeler_ai_model_description": "Модель, используемая для распознавания объектов на изображениях. Большие модели более точны, но работают медленнее.",
"import": "Импорт",
"indexed": "Индексированный",
"indexer_rule_reject_allow_label": "По умолчанию правило индексатора работает как список отклоненных, в результате чего исключаются любые файлы, соответствующие его критериям. Включение этого параметра преобразует его в список разрешенных, позволяя локации индексировать только файлы, соответствующие заданным правилам.",
"indexer_rules": "Правила индексатора",
"indexer_rules_info": "Правила индексатора позволяют указывать пути для игнорирования с помощью шаблонов.",
"install": "Установить",
"install_update": "Установить обновление",
"installed": "Установлено",
"item_size": "Размер элемента",
"item_with_count_one": "{{count}} элемент",
"item_with_count_other": "{{count}} элементов",
"job_has_been_canceled": "Задача отменена.",
"job_has_been_paused": "Задача была приостановлена.",
"job_has_been_removed": "Задача была удалена",
"job_has_been_resumed": "Задача была возобновлена",
"join": "Присоединяйтесь",
"join_discord": "Присоединяйтесь в Discord",
"join_library": "Присоединить библиотеку",
"join_library_description": "Библиотека - это защищенная база данных на устройстве. Ваши файлы остаются на своих местах, библиотека упорядочивает их и хранит все данные, связанные со Spacedrive.",
"key": "Ключ",
"key_manager": "Управление ключами",
"key_manager_description": "Создавайте ключи шифрования, монтируйте и размонтируйте ключи, чтобы видеть расшифровку файлов на лету.",
"keybinds": "Клавиши",
"keybinds_description": "Просмотр и управление привязанными клавишами клиента",
"keys": "Ключи",
"kilometers": "Километры",
"labels": "Ярлыки",
"language": "Язык",
"language_description": "Изменить язык интерфейса Spacedrive",
"learn_more_about_telemetry": "Подробнее о телеметрии",
"libraries": "Библиотеки",
"libraries_description": "База данных содержит все данные библиотек и метаданные файлов.",
"library": "Библиотека",
"library_name": "Название библиотеки",
"library_overview": "Обзор библиотеки",
"library_settings": "Настройки библиотеки",
"library_settings_description": "Главные настройки, относящиеся к текущей активной библиотеке.",
"list_view": "Вид списком",
"list_view_notice_description": "Удобная навигация по файлам и папкам с помощью функции просмотра списком. Этот вид отображает файлы в виде простого, упорядоченного списка, позволяя быстро находить и получать доступ к нужным файлам.",
"loading": "Загрузка",
"local": "Локально",
"local_locations": "Локальные локации",
"local_node": "Локальный узел",
"location_connected_tooltip": "Локация проверяется на изменения",
"location_disconnected_tooltip": "Локация не проверяется на изменения",
"location_display_name_info": "Имя этого месторасположения, которое будет отображаться на боковой панели. Это действие не переименует фактическую папку на диске.",
"location_is_already_linked": "Локация уже привязана",
"location_path_info": "Путь к этой локации, где файлы будут храниться на диске.",
"location_type": "Тип локации",
"location_type_managed": "Spacedrive отсортирует файлы для вас. Если локация не пуста, будет создана папка \"spacedrive\".",
"location_type_normal": "Содержимое будет индексироваться как есть, новые файлы не будут автоматически сортироваться.",
"location_type_replica": "Эта локация является копией другой, ее содержимое будет автоматически синхронизировано.",
"locations": "Локации",
"locations_description": "Управляйте Вашими локациями.",
"lock": "Заблокировать",
"log_in_with_browser": "Войдите в систему с помощью браузера",
"log_out": "Выйти из системы",
"logged_in_as": "Вошли в систему как {{email}}",
"logout": "Выход из системы",
"manage_library": "Управление библиотекой",
"managed": "Управляемый",
"media": "Медиа",
"media_view_context": "Контекст медиа-вида",
"media_view_notice_description": "Легко находите фотографии и видео, просмотр медиа показывает результаты, начиная с текущей локации, включая вложенные каталоги.",
"meet_contributors_behind_spacedrive": "Познакомьтесь с участниками проекта Spacedrive",
"meet_title": "Познакомьтесь с {{title}}",
"miles": "Мили",
"mode": "Режим",
"modified": "Измененный",
"more": "Подробнее",
"more_actions": "Дополнительные действия...",
"more_info": "Подробнее",
"move_back_within_quick_preview": "Перемещение назад в рамках быстрого предпросмотра",
"move_files": "Переместить файлы",
"move_forward_within_quick_preview": "Перемещение вперед в рамках быстрого предпросмотра",
"name": "Имя",
"navigate_back": "Переход назад",
"navigate_backwards": "Переход назад",
"navigate_files_downwards": "Перемещение по файлам вниз",
"navigate_files_leftwards": "Перемещение по файлам влево",
"navigate_files_rightwards": "Перемещение по файлам вправо",
"navigate_files_upwards": "Перемещение по файлам вверх",
"navigate_forward": "Переход вперед",
"navigate_forwards": "Переход вперед",
"navigate_to_settings_page": "Перемещение на страницу настроек",
"network": "Сеть",
"network_page_description": "Здесь появятся другие узлы Spacedrive в вашей локальной сети, вместе с включенной вашей ОС по умолчанию.",
"networking": "Работа в сети",
"networking_port": "Сетевой порт",
"networking_port_description": "Порт для одноранговой сети Spacedrive. Если у вас не установлен ограничительный брандмауэр, этот параметр следует оставить отключенным. Не открывайте доступ в Интернет!",
"new_folder": "Новая папка",
"new_library": "Новая библиотека",
"new_location": "Новая локация",
"new_location_web_description": "Поскольку вы используете браузерную версию Spacedrive, вам (пока что) нужно указать абсолютный URL-адрес каталога, локального для удаленного узла.",
"new_tab": "Новая вкладка",
"new_tag": "Новый тег",
"no_files_found_here": "Файлы не найдены",
"no_jobs": "Нет задач.",
"no_tag_selected": "Тег не выбран",
"no_tags": "Нет тегов",
"node_name": "Имя узла",
"no_nodes_found": "Не найдено узлов Spacedrive.",
"nodes": "Узлы",
"nodes_description": "Управление узлами, подключенными к этой библиотеке. Узел - это экземпляр бэкэнда Spacedrive, работающий на устройстве или сервере. Каждый узел имеет свою копию базы данных и синхронизируется через одноранговые соединения в режиме реального времени.",
"none": "Нет",
"normal": "Нормальный",
"not_you": "Не вы?",
"number_of_passes": "# пропусков",
"object_id": "ID объекта",
"offline": "Оффлайн",
"online": "Онлайн",
"open": "Открыть",
"open_file": "Открыть файл",
"open_new_location_once_added": "Открыть новую локацию после добавления",
"open_new_tab": "Открыть новую вкладку",
"open_object": "Открыть объект",
"open_object_from_quick_preview_in_native_file_manager": "Открытие объекта из предпросмотра в родном файловом менеджере",
"open_settings": "Открыть настройки",
"open_with": "Открыть при помощи",
"or": "Или",
"overview": "Обзор",
"page": "Страница",
"page_shortcut_description": "Разные страницы в приложении",
"pair": "Соединить",
"pairing_with_node": "Соединить с {{node}}",
"paste": "Вставить",
"paste_object": "Вставить объект",
"paste_success": "Элементы вставлены",
"path": "Путь",
"path_copied_to_clipboard_description": "Путь к локации {{location}} скопирован в буфер обмена.",
"path_copied_to_clipboard_title": "Путь скопирован в буфер обмена",
"pause": "Пауза",
"peers": "Участники",
"people": "Люди",
"privacy": "Приватность",
"privacy_description": "Spacedrive создан для обеспечения конфиденциальности, поэтому у нас открытый исходный код и локальный подход. Поэтому мы четко указываем, какие данные передаются нам.",
"quick_preview": "Быстрый предпросмотр",
"quick_view": "Быстрый просмотр",
"recent_jobs": "Недавние задачи",
"recents": "Недавнее",
"regen_labels": "Регенирировать ярлыки",
"regen_thumbnails": "Регенирировать миниатюры",
"regenerate_thumbs": "Регенирировать миниатюры",
"reindex": "Переиндексировать",
"reject": "Отклонить",
"reload": "Перезагрузить",
"remove": "Удалить",
"remove_from_recents": "Удалить из недавних",
"rename": "Переименовать",
"rename_object": "Переименовать объект",
"replica": "Реплика",
"rescan_directory": "Повторное сканирование директории",
"rescan_location": "Повторное сканирование локации",
"reset": "Сбросить",
"resources": "Ресурсы",
"restore": "Восстановить",
"resume": "Возобновить",
"retry": "Повторить",
"reveal_in_native_file_manager": "Открыть в системном проводнике",
"revel_in_browser": "Открыть в {{browser}}",
"running": "Выполняется",
"save": "Сохранить",
"save_changes": "Сохранить изменения",
"saved_searches": "Сохраненные поисковые запросы",
"search_extensions": "Расширения для поиска",
"secure_delete": "Безопасное удаление",
"security": "Безопасность",
"security_description": "Обеспечьте безопасность вашего клиента.",
"send": "Отправить",
"settings": "Настройки",
"setup": "Настроить",
"share": "Поделиться",
"share_anonymous_usage": "Делиться анонимными данными об использовании",
"share_anonymous_usage_description": "Делитесь полностью анонимными телеметрическими данными, чтобы помочь разработчикам улучшить приложение",
"share_bare_minimum": "Делиться лишь необходимым",
"share_bare_minimum_description": "Делиться лишь тем, что являетесь активным пользователем Spacedrive и несколькими техническими моментами.",
"sharing": "Совместное использование",
"sharing_description": "Управляйте тем, кто имеет доступ к вашим библиотекам.",
"show_details": "Показать подробно",
"show_hidden_files": "Показать скрытые файлы",
"show_object_size": "Показать размер объекта",
"show_path_bar": "Показать адресную строку",
"show_slider": "Показать ползунок",
"size": "Размер",
"skip_login": "Пропустить вход",
"sort_by": "Сортировать по",
"spacedrive_account": "Spacedrive аккаунт",
"spacedrive_cloud": "Spacedrive Cloud",
"spacedrive_cloud_description": "Spacedrive в первую очередь предназначен для локального использования, но в будущем мы предложим собственные дополнительные облачные сервисы. На данный момент аутентификация используется только для функции 'Фидбек', в остальном она не требуется.",
"spacedrop_a_file": "Отправить файл с помощью Spacedrop",
"spacedrop_description": "Мгновенно делитесь с устройствами, работающими с Spacedrive в вашей сети.",
"spacedrop_already_progress": "Spacedrop уже в процессе",
"spacedrop_rejected": "Spacedrop отклонен",
"square_thumbnails": "Квадратные эскизы",
"star_on_github": "Поставить звезду на GitHub",
"stop": "Остановить",
"success": "Успех",
"support": "Поддержка",
"switch_to_grid_view": "Переключение в режим просмотра сеткой",
"switch_to_list_view": "Переключение в режим просмотра списком",
"switch_to_media_view": "Переключение в режим просмотра мультимедиа",
"switch_to_next_tab": "Переключение на следующую вкладку",
"switch_to_previous_tab": "Переключение на предыдущую вкладку",
"sync": "Синхронизировать",
"syncPreviewMedia_label": "Синхронизируйте медиафайлы предварительного просмотра для этой локации с вашими устройствами",
"sync_description": "Управляйте синхронизацией Spacedrive.",
"sync_with_library": "Синхронизация с библиотекой",
"sync_with_library_description": "Если эта опция включена, ваши привязанные клавиши будут синхронизированы с библиотекой, в противном случае они будут применяться только к этому клиенту.",
"tags": "Теги",
"tags_description": "Управляйте своими тегами.",
"telemetry_description": "Включите, чтобы предоставить разработчикам подробные данные об использовании и телеметрии для улучшения приложения. Выключите, чтобы отправлять только основные данные: статус активности, версию приложения, версию ядра и платформу (например, мобильную, веб- или настольную).",
"telemetry_title": "Предоставление дополнительной телеметриии и данных об использовании",
"temperature": "Температура",
"thank_you_for_your_feedback": "Спасибо за Ваш фидбек!",
"thumbnailer_cpu_usage": "Использование процессора при создании миниатюр",
"thumbnailer_cpu_usage_description": "Ограничьте нагрузку на процессор, которую может использовать программа для создания миниатюр в фоновом режиме.",
"toggle_all": "Включить все",
"toggle_hidden_files": "Включить видимость скрытых файлов",
"toggle_image_slider_within_quick_preview": "Открыть слайдер изображений в режиме предпросмотра",
"toggle_inspector": "Открыть инспектор",
"toggle_job_manager": "Открыть менеджер задач",
"toggle_metadata": "Показать метаданные",
"toggle_path_bar": "Открыть адресную строку",
"toggle_quick_preview": "Открыть предпросмотр",
"type": "Тип",
"ui_animations": "UI Анимации",
"ui_animations_description": "Диалоговые окна и другие элементы пользовательского интерфейса будут анимироваться при открытии и закрытии.",
"unnamed_location": "Безымянная локация",
"usage": "Использование",
"usage_description": "Информация об использовании библиотеки и информация об вашем аппаратном обеспечении",
"value": "Значение",
"video_preview_not_supported": "Предварительный просмотр видео не поддерживается.",
"want_to_do_this_later": "Хотите сделать это позже?",
"website": "Веб-сайт",
"your_account": "Ваш аккаунт",
"your_account_description": "Учетная запись Spacedrive и информация.",
"your_local_network": "Ваша локальная сеть",
"your_privacy": "Ваша конфиденциальность",
"new_update_available": "Доступно новое обновление!",
"version": "Версия {{version}}",
"downloading_update": "Загрузка обновления",
"update_downloaded": "Обновление загружено. Перезапустите Spacedrive для установки",
"failed_to_download_update": "Не удалось загрузить обновление",
"updated_successfully": "Успешно обновлено, вы используете версию {{version}}",
"view_changes": "Просмотреть изменения",
"update": "Обновить",
"ask_spacedrive": "Спросите Спейсдрайв",
"close_command_palette": "Закрыть палитру команд",
"go_to_labels": "Перейти к ярлыкам",
"go_to_location": "Перейти к месту",
"go_to_overview": "Перейти к обзору",
"go_to_recents": "Перейти к недавним",
"go_to_settings": "Перейдите в настройки",
"go_to_tag": "Перейти к тегу",
"no_labels": "Нет ярлыков",
"search_for_files_and_actions": "Поиск файлов и действий...",
"toggle_command_palette": "Переключить палитру команд"
"about": "О Spacedrive",
"about_vision_text": "У многих из нас есть несколько учетных записей в облаке, диски без резервной копии и данные, которые могут быть утеряны. Мы зависим от облачных сервисов, таких как Google Photos и iCloud, но их возможности ограничены, а совместимость между сервисами и операционными системами практически отсутствует. Фотогалерея не должна быть привязана к экосистеме устройства или использоваться для сбора рекламных данных. Она должна быть независима от операционной системы, постоянна и принадлежать лично Вам. Данные, которые мы создаем, - это наше наследие, которое надолго переживет нас. Технология с открытым исходным кодом - единственный способ обеспечить абсолютный контроль над данными, определяющими нашу жизнь, в неограниченном масштабе.",
"about_vision_title": "Видение",
"accept": "Принять",
"accessed": "Доступно",
"account": "Аккаунт",
"actions": "Действия",
"add": "Добавить",
"add_device": "Добавить устройство",
"add_library": "Добавить библиотеку",
"add_location": "Добавить локацию",
"add_location_description": "Расширьте возможности Spacedrive, добавив любимые локации в свою личную библиотеку, для удобного и эффективного управления файлами.",
"add_location_tooltip": "Добавьте данный путь в качестве индексированной локации",
"add_locations": "Добавить локации",
"add_tag": "Добавить тег",
"advanced_settings": "Дополнительные настройки",
"all_jobs_have_been_cleared": "Все задачи выполнены.",
"alpha_release_description": "Мы рады, что вы можете попробовать Spacedrive, который сейчас находится в стадии альфа-тестирования и демонстрирует новые захватывающие функции. Как и любой другой первый релиз, эта версия может содержать некоторые ошибки. Мы просим вас сообщать о любых проблемах в нашем канале Discord. Ваши ценные отзывы будут способствовать улучшению пользовательского опыта.",
"alpha_release_title": "Альфа версия",
"appearance": "Внешний вид",
"appearance_description": "Измените внешний вид вашего клиента.",
"archive": "Архив",
"archive_coming_soon": "Архивация локаций скоро появится...",
"archive_info": "Извлечение данных из библиотеки в виде архива, полезно для сохранения структуры локаций.",
"are_you_sure": "Вы уверены?",
"assign_tag": "Присвоить тег",
"audio_preview_not_supported": "Предварительный просмотр аудио не поддерживается.",
"back": "Назад",
"backups": "Резервные копии",
"backups_description": "Управляйте Вашими копиями базы данных Spacedrive",
"blur_effects": "Эффекты размытия",
"blur_effects_description": "К некоторым компонентам будет применен эффект размытия.",
"cancel": "Отменить",
"cancel_selection": "Отменить выбор",
"celcius": "Цельсий",
"change": "Изменить",
"changelog": "Что нового",
"changelog_page_description": "Узнайте, какие новые возможности мы добавили",
"changelog_page_title": "Список изменений",
"checksum": "Контрольная сумма",
"clear_finished_jobs": "Очистить законченные задачи",
"client": "Клиент",
"close": "Закрыть",
"close_current_tab": "Закрыть текущую вкладку",
"clouds": "Облачные хр.",
"color": "Цвет",
"coming_soon": "Скоро появится",
"compress": "Сжать",
"configure_location": "Настроить локацию",
"connected": "Подключено",
"contacts": "Контакты",
"contacts_description": "Управляйте контактами в Spacedrive.",
"content_id": "ID содержимого",
"continue": "Продолжить",
"convert_to": "Преобразовать в",
"coordinates": "Координаты",
"copied": "Скопировано",
"copy": "Копировать",
"copy_as_path": "Копировать как путь",
"copy_object": "Копировать объект",
"copy_path_to_clipboard": "Копировать путь в буфер обмена",
"copy_success": "Элементы скопированы",
"create": "Создать",
"create_library": "Создать библиотеку",
"create_library_description": "Библиотека - это защищенная база данных на устройстве. Ваши файлы остаются на своих местах, библиотека упорядочивает их и хранит все данные, связанные со Spacedrive.",
"create_new_library": "Создайте новую библиотеку",
"create_new_library_description": "Библиотека - это защищенная база данных на устройстве. Ваши файлы остаются на своих местах, библиотека упорядочивает их и хранит все данные, связанные со Spacedrive.",
"create_new_tag": "Создать новый тег",
"create_new_tag_description": "Выберите название и цвет.",
"create_tag": "Создать тег",
"created": "Создано",
"creating_library": "Создание библиотеки...",
"creating_your_library": "Создание Вашей библиотеки",
"current": "Текущая",
"current_directory": "Текущая директория",
"current_directory_with_descendants": "Текущая директория с наследниками",
"custom": "Пользовательский",
"cut": "Вырезать",
"cut_object": "Вырезать объект",
"cut_success": "Элементы вырезаны",
"data_folder": "Папка с данными",
"debug_mode": "Режим отладки",
"debug_mode_description": "Включите дополнительные функции отладки в приложении.",
"default": "Стандартный",
"delete": "Удалить",
"delete_dialog_title": "Удалить {{prefix}} {{type}}",
"delete_info": "Это не удалит саму папку на диске. Будет удалено медиа-превью.",
"delete_library": "Удалить библиотеку",
"delete_library_description": "Это необратимое действие, ваши файлы не будут удалены, только библиотека Spacedrive.",
"delete_location": "Удалить локацию",
"delete_location_description": "При удалении локации все связанные с ним файлы будут удалены из базы данных Spacedrive, сами файлы при этом не будут удалены с устройства.",
"delete_object": "Удалить объект",
"delete_rule": "Удалить правило",
"delete_tag": "Удалить тег",
"delete_tag_description": "Вы уверены, что хотите удалить этот тег? Это действие нельзя отменить, и тегнутые файлы будут отсоединены.",
"delete_warning": "Предупреждение: это удалит ваш {{type}} навсегда, у нас пока нет мусорной корзины.",
"description": "Описание",
"deselect": "Отменить выбор",
"details": "Подробности",
"devices": "Устройства",
"devices_coming_soon_tooltip": "Скоро будет! Эта альфа-версия не включает синхронизацию библиотек, она будет готова очень скоро.",
"dialog": "Диалоговое окно",
"dialog_shortcut_description": "Выполнение действий и операций",
"direction": "Направление",
"disabled": "Отключено",
"disconnected": "Отключен",
"display_formats": "Форматы отображения",
"display_name": "Отображаемое имя",
"distance": "Расстояние",
"done": "Готово",
"dont_show_again": "Не показывать снова",
"double_click_action": "Действие двойного нажатия",
"download": "Скачать",
"duplicate": "Дублировать",
"duplicate_object": "Дублировать объект",
"duplicate_success": "Элементы дублированы",
"edit": "Редактировать",
"edit_library": "Редактировать библиотеку",
"edit_location": "Редактировать локацию",
"enable_networking": "Включить сетевое взаимодействие",
"encrypt": "Зашифровать",
"encrypt_library": "Зашифровать библиотеку",
"encrypt_library_coming_soon": "Шифрование библиотеки скоро появится",
"encrypt_library_description": "Включить шифрование этой библиотеки, при этом будет зашифрована только база данных Spacedrive, но не сами файлы.",
"ephemeral_notice_browse": "Просматривайте файлы и папки прямо с устройства.",
"ephemeral_notice_consider_indexing": "Рассмотрите возможность индексирования ваших локаций для более быстрого и эффективного поиска.",
"erase": "Удалить",
"erase_a_file": "Удалить файл",
"erase_a_file_description": "Настройте параметры удаления.",
"error": "Ошибка",
"error_loading_original_file": "Ошибка при загрузке исходного файла",
"expand": "Развернуть",
"explorer": "Проводник",
"explorer_shortcut_description": "Навигация и взаимодействие с файловой системой",
"export": "Экспорт",
"export_library": "Экспорт библиотеки",
"export_library_coming_soon": "Экспорт библиотеки скоро станет возможным",
"export_library_description": "Экспортируйте эту библиотеку в файл.",
"extensions": "Расширения",
"extensions_description": "Установите расширения, чтобы расширить функциональность этого клиента.",
"fahrenheit": "Фаренгейт",
"failed_to_cancel_job": "Не удалось отменить задачу.",
"failed_to_clear_all_jobs": "Не удалось выполнить все задачи.",
"failed_to_copy_file": "Не удалось скопировать файл",
"failed_to_copy_file_path": "Не удалось скопировать путь к файлу",
"failed_to_cut_file": "Не удалось вырезать файл",
"failed_to_duplicate_file": "Не удалось создать дубликат файла",
"failed_to_generate_checksum": "Не удалось сгенерировать контрольную сумму",
"failed_to_generate_labels": "Не удалось сгенерировать ярлык",
"failed_to_generate_thumbnails": "Не удалось сгенерировать миниатюры",
"failed_to_load_tags": "Не удалось загрузить теги",
"failed_to_pause_job": "Не удалось приостановить задачу.",
"failed_to_reindex_location": "Не удалось переиндексировать локацию",
"failed_to_remove_file_from_recents": "Не удалось удалить файл из недавних",
"failed_to_remove_job": "Не удалось удалить задачу.",
"failed_to_rescan_location": "Не удалось выполнить повторное сканирование локации",
"failed_to_resume_job": "Не удалось возобновить задачу.",
"failed_to_update_location_settings": "Не удалось обновить настройки локации",
"favorite": "Избранное",
"favorites": "Избранное",
"feedback": "Фидбек",
"feedback_is_required": "Необходим фидбек",
"feedback_login_description": "Вход в систему позволяет нам отвечать на Ваш фидбек",
"feedback_placeholder": "Ваш фидбек...",
"feedback_toast_error_message": "При отправке вашего фидбека произошла ошибка. Пожалуйста, попробуйте еще раз.",
"file_already_exist_in_this_location": "Файл уже существует в этой локации",
"file_indexing_rules": "Правила индексации файлов",
"filters": "Фильтры",
"forward": "Вперед",
"full_disk_access": "Полный доступ к диску",
"full_disk_access_description": "Для обеспечения наилучшего качества работы нам необходим доступ к вашему диску, чтобы индексировать ваши файлы. Ваши файлы доступны только вам.",
"full_reindex": "Полная переиндексация",
"full_reindex_info": "Выполните полное повторное сканирование этой локации.",
"general": "Главное",
"general_settings": "Основные настройки",
"general_settings_description": "Общие настройки, относящиеся к данному клиенту.",
"general_shortcut_description": "Общие сочетания клавиш",
"generatePreviewMedia_label": "Создайте предварительный просмотр медиафайлов для этой локации",
"generate_checksums": "Генерация контрольных сумм",
"go_back": "Назад",
"got_it": "Получилось",
"grid_gap": "Пробел",
"grid_view": "Вид сеткой",
"grid_view_notice_description": "Получите визуальный обзор файлов с помощью просмотра сеткой. В этом представлении файлы и папки отображаются в виде уменьшенных изображений, что позволяет быстро найти нужный файл.",
"hidden_label": "Не позволяет локации и её содержимому отображаться в итоговых категориях, поиске и тегах, если не включена функция \"Показывать скрытые элементы\".",
"hide_in_library_search": "Скрыть в поиске по библиотеке",
"hide_in_library_search_description": "Скрыть файлы с этим тегом из результатов при поиске по всей библиотеке.",
"hide_in_sidebar": "Скрыть в боковой панели",
"hide_in_sidebar_description": "Запретите отображение этого тега в боковой панели.",
"hide_location_from_view": "Скрыть локацию и содержимое из вида",
"home": "Главная",
"image_labeler_ai_model": "Модель ИИ для генерации ярлыков изображений",
"image_labeler_ai_model_description": "Модель, используемая для распознавания объектов на изображениях. Большие модели более точны, но работают медленнее.",
"import": "Импорт",
"indexed": "Индексированный",
"indexer_rule_reject_allow_label": "По умолчанию правило индексатора работает как список отклоненных, в результате чего исключаются любые файлы, соответствующие его критериям. Включение этого параметра преобразует его в список разрешенных, позволяя локации индексировать только файлы, соответствующие заданным правилам.",
"indexer_rules": "Правила индексатора",
"indexer_rules_info": "Правила индексатора позволяют указывать пути для игнорирования с помощью шаблонов.",
"install": "Установить",
"install_update": "Установить обновление",
"installed": "Установлено",
"item_size": "Размер элемента",
"item_with_count_one": "{{count}} элемент",
"item_with_count_other": "{{count}} элементов",
"job_has_been_canceled": "Задача отменена.",
"job_has_been_paused": "Задача была приостановлена.",
"job_has_been_removed": "Задача была удалена",
"job_has_been_resumed": "Задача была возобновлена",
"join": "Присоединяйтесь",
"join_discord": "Присоединяйтесь в Discord",
"join_library": "Присоединить библиотеку",
"join_library_description": "Библиотека - это защищенная база данных на устройстве. Ваши файлы остаются на своих местах, библиотека упорядочивает их и хранит все данные, связанные со Spacedrive.",
"key": "Ключ",
"key_manager": "Управление ключами",
"key_manager_description": "Создавайте ключи шифрования, монтируйте и размонтируйте ключи, чтобы видеть расшифровку файлов на лету.",
"keybinds": "Клавиши",
"keybinds_description": "Просмотр и управление привязанными клавишами клиента",
"keys": "Ключи",
"kilometers": "Километры",
"labels": "Ярлыки",
"language": "Язык",
"language_description": "Изменить язык интерфейса Spacedrive",
"learn_more_about_telemetry": "Подробнее о телеметрии",
"libraries": "Библиотеки",
"libraries_description": "База данных содержит все данные библиотек и метаданные файлов.",
"library": "Библиотека",
"library_name": "Название библиотеки",
"library_overview": "Обзор библиотеки",
"library_settings": "Настройки библиотеки",
"library_settings_description": "Главные настройки, относящиеся к текущей активной библиотеке.",
"list_view": "Вид списком",
"list_view_notice_description": "Удобная навигация по файлам и папкам с помощью функции просмотра списком. Этот вид отображает файлы в виде простого, упорядоченного списка, позволяя быстро находить и получать доступ к нужным файлам.",
"loading": "Загрузка",
"local": "Локально",
"local_locations": "Локальные локации",
"local_node": "Локальный узел",
"location_connected_tooltip": "Локация проверяется на изменения",
"location_disconnected_tooltip": "Локация не проверяется на изменения",
"location_display_name_info": "Имя этого месторасположения, которое будет отображаться на боковой панели. Это действие не переименует фактическую папку на диске.",
"location_is_already_linked": "Локация уже привязана",
"location_path_info": "Путь к этой локации, где файлы будут храниться на диске.",
"location_type": "Тип локации",
"location_type_managed": "Spacedrive отсортирует файлы для вас. Если локация не пуста, будет создана папка \"spacedrive\".",
"location_type_normal": "Содержимое будет индексироваться как есть, новые файлы не будут автоматически сортироваться.",
"location_type_replica": "Эта локация является копией другой, ее содержимое будет автоматически синхронизировано.",
"locations": "Локации",
"locations_description": "Управляйте Вашими локациями.",
"lock": "Заблокировать",
"log_in_with_browser": "Войдите в систему с помощью браузера",
"log_out": "Выйти из системы",
"logged_in_as": "Вошли в систему как {{email}}",
"logout": "Выход из системы",
"manage_library": "Управление библиотекой",
"managed": "Управляемый",
"media": "Медиа",
"media_view_context": "Контекст медиа-вида",
"media_view_notice_description": "Легко находите фотографии и видео, просмотр медиа показывает результаты, начиная с текущей локации, включая вложенные каталоги.",
"meet_contributors_behind_spacedrive": "Познакомьтесь с участниками проекта Spacedrive",
"meet_title": "Познакомьтесь с {{title}}",
"miles": "Мили",
"mode": "Режим",
"modified": "Измененный",
"more": "Подробнее",
"more_actions": "Дополнительные действия...",
"more_info": "Подробнее",
"move_back_within_quick_preview": "Перемещение назад в рамках быстрого предпросмотра",
"move_files": "Переместить файлы",
"move_forward_within_quick_preview": "Перемещение вперед в рамках быстрого предпросмотра",
"name": "Имя",
"navigate_back": "Переход назад",
"navigate_backwards": "Переход назад",
"navigate_files_downwards": "Перемещение по файлам вниз",
"navigate_files_leftwards": "Перемещение по файлам влево",
"navigate_files_rightwards": "Перемещение по файлам вправо",
"navigate_files_upwards": "Перемещение по файлам вверх",
"navigate_forward": "Переход вперед",
"navigate_forwards": "Переход вперед",
"navigate_to_settings_page": "Перемещение на страницу настроек",
"network": "Сеть",
"network_page_description": "Здесь появятся другие узлы Spacedrive в вашей локальной сети, вместе с включенной вашей ОС по умолчанию.",
"networking": "Работа в сети",
"networking_port": "Сетевой порт",
"networking_port_description": "Порт для одноранговой сети Spacedrive. Если у вас не установлен ограничительный брандмауэр, этот параметр следует оставить отключенным. Не открывайте доступ в Интернет!",
"new_folder": "Новая папка",
"new_library": "Новая библиотека",
"new_location": "Новая локация",
"new_location_web_description": "Поскольку вы используете браузерную версию Spacedrive, вам (пока что) нужно указать абсолютный URL-адрес каталога, локального для удаленного узла.",
"new_tab": "Новая вкладка",
"new_tag": "Новый тег",
"no_files_found_here": "Файлы не найдены",
"no_jobs": "Нет задач.",
"no_tag_selected": "Тег не выбран",
"no_tags": "Нет тегов",
"node_name": "Имя узла",
"no_nodes_found": "Не найдено узлов Spacedrive.",
"nodes": "Узлы",
"nodes_description": "Управление узлами, подключенными к этой библиотеке. Узел - это экземпляр бэкэнда Spacedrive, работающий на устройстве или сервере. Каждый узел имеет свою копию базы данных и синхронизируется через одноранговые соединения в режиме реального времени.",
"none": "Нет",
"normal": "Нормальный",
"not_you": "Не вы?",
"number_of_passes": "# пропусков",
"object_id": "ID объекта",
"offline": "Оффлайн",
"online": "Онлайн",
"open": "Открыть",
"open_file": "Открыть файл",
"open_new_location_once_added": "Открыть новую локацию после добавления",
"open_new_tab": "Открыть новую вкладку",
"open_object": "Открыть объект",
"open_object_from_quick_preview_in_native_file_manager": "Открытие объекта из предпросмотра в родном файловом менеджере",
"open_settings": "Открыть настройки",
"open_with": "Открыть при помощи",
"or": "Или",
"overview": "Обзор",
"page": "Страница",
"page_shortcut_description": "Разные страницы в приложении",
"pair": "Соединить",
"pairing_with_node": "Соединить с {{node}}",
"paste": "Вставить",
"paste_object": "Вставить объект",
"paste_success": "Элементы вставлены",
"path": "Путь",
"path_copied_to_clipboard_description": "Путь к локации {{location}} скопирован в буфер обмена.",
"path_copied_to_clipboard_title": "Путь скопирован в буфер обмена",
"pause": "Пауза",
"peers": "Участники",
"people": "Люди",
"privacy": "Приватность",
"privacy_description": "Spacedrive создан для обеспечения конфиденциальности, поэтому у нас открытый исходный код и локальный подход. Поэтому мы четко указываем, какие данные передаются нам.",
"quick_preview": "Быстрый предпросмотр",
"quick_view": "Быстрый просмотр",
"recent_jobs": "Недавние задачи",
"recents": "Недавнее",
"regen_labels": "Регенирировать ярлыки",
"regen_thumbnails": "Регенирировать миниатюры",
"regenerate_thumbs": "Регенирировать миниатюры",
"reindex": "Переиндексировать",
"reject": "Отклонить",
"reload": "Перезагрузить",
"remove": "Удалить",
"remove_from_recents": "Удалить из недавних",
"rename": "Переименовать",
"rename_object": "Переименовать объект",
"replica": "Реплика",
"rescan_directory": "Повторное сканирование директории",
"rescan_location": "Повторное сканирование локации",
"reset": "Сбросить",
"resources": "Ресурсы",
"restore": "Восстановить",
"resume": "Возобновить",
"retry": "Повторить",
"reveal_in_native_file_manager": "Открыть в системном проводнике",
"revel_in_browser": "Открыть в {{browser}}",
"running": "Выполняется",
"save": "Сохранить",
"save_changes": "Сохранить изменения",
"saved_searches": "Сохраненные поисковые запросы",
"search_extensions": "Расширения для поиска",
"secure_delete": "Безопасное удаление",
"security": "Безопасность",
"security_description": "Обеспечьте безопасность вашего клиента.",
"send": "Отправить",
"settings": "Настройки",
"setup": "Настроить",
"share": "Поделиться",
"share_anonymous_usage": "Делиться анонимными данными об использовании",
"share_anonymous_usage_description": "Делитесь полностью анонимными телеметрическими данными, чтобы помочь разработчикам улучшить приложение",
"share_bare_minimum": "Делиться лишь необходимым",
"share_bare_minimum_description": "Делиться лишь тем, что являетесь активным пользователем Spacedrive и несколькими техническими моментами.",
"sharing": "Совместное использование",
"sharing_description": "Управляйте тем, кто имеет доступ к вашим библиотекам.",
"show_details": "Показать подробно",
"show_hidden_files": "Показать скрытые файлы",
"show_object_size": "Показать размер объекта",
"show_path_bar": "Показать адресную строку",
"show_slider": "Показать ползунок",
"size": "Размер",
"skip_login": "Пропустить вход",
"sort_by": "Сортировать по",
"spacedrive_account": "Spacedrive аккаунт",
"spacedrive_cloud": "Spacedrive Cloud",
"spacedrive_cloud_description": "Spacedrive в первую очередь предназначен для локального использования, но в будущем мы предложим собственные дополнительные облачные сервисы. На данный момент аутентификация используется только для функции 'Фидбек', в остальном она не требуется.",
"spacedrop_a_file": "Отправить файл с помощью Spacedrop",
"spacedrop_description": "Мгновенно делитесь с устройствами, работающими с Spacedrive в вашей сети.",
"spacedrop_already_progress": "Spacedrop уже в процессе",
"spacedrop_rejected": "Spacedrop отклонен",
"square_thumbnails": "Квадратные эскизы",
"star_on_github": "Поставить звезду на GitHub",
"stop": "Остановить",
"success": "Успех",
"support": "Поддержка",
"switch_to_grid_view": "Переключение в режим просмотра сеткой",
"switch_to_list_view": "Переключение в режим просмотра списком",
"switch_to_media_view": "Переключение в режим просмотра мультимедиа",
"switch_to_next_tab": "Переключение на следующую вкладку",
"switch_to_previous_tab": "Переключение на предыдущую вкладку",
"sync": "Синхронизировать",
"syncPreviewMedia_label": "Синхронизируйте медиафайлы предварительного просмотра для этой локации с вашими устройствами",
"sync_description": "Управляйте синхронизацией Spacedrive.",
"sync_with_library": "Синхронизация с библиотекой",
"sync_with_library_description": "Если эта опция включена, ваши привязанные клавиши будут синхронизированы с библиотекой, в противном случае они будут применяться только к этому клиенту.",
"tags": "Теги",
"tags_description": "Управляйте своими тегами.",
"telemetry_description": "Включите, чтобы предоставить разработчикам подробные данные об использовании и телеметрии для улучшения приложения. Выключите, чтобы отправлять только основные данные: статус активности, версию приложения, версию ядра и платформу (например, мобильную, веб- или настольную).",
"telemetry_title": "Предоставление дополнительной телеметриии и данных об использовании",
"temperature": "Температура",
"thank_you_for_your_feedback": "Спасибо за Ваш фидбек!",
"thumbnailer_cpu_usage": "Использование процессора при создании миниатюр",
"thumbnailer_cpu_usage_description": "Ограничьте нагрузку на процессор, которую может использовать программа для создания миниатюр в фоновом режиме.",
"toggle_all": "Включить все",
"toggle_hidden_files": "Включить видимость скрытых файлов",
"toggle_image_slider_within_quick_preview": "Открыть слайдер изображений в режиме предпросмотра",
"toggle_inspector": "Открыть инспектор",
"toggle_job_manager": "Открыть менеджер задач",
"toggle_metadata": "Показать метаданные",
"toggle_path_bar": "Открыть адресную строку",
"toggle_quick_preview": "Открыть предпросмотр",
"type": "Тип",
"ui_animations": "UI Анимации",
"ui_animations_description": "Диалоговые окна и другие элементы пользовательского интерфейса будут анимироваться при открытии и закрытии.",
"unnamed_location": "Безымянная локация",
"usage": "Использование",
"usage_description": "Информация об использовании библиотеки и информация об вашем аппаратном обеспечении",
"value": "Значение",
"video_preview_not_supported": "Предварительный просмотр видео не поддерживается.",
"want_to_do_this_later": "Хотите сделать это позже?",
"website": "Веб-сайт",
"your_account": "Ваш аккаунт",
"your_account_description": "Учетная запись Spacedrive и информация.",
"your_local_network": "Ваша локальная сеть",
"your_privacy": "Ваша конфиденциальность",
"new_update_available": "Доступно новое обновление!",
"version": "Версия {{version}}",
"downloading_update": "Загрузка обновления",
"update_downloaded": "Обновление загружено. Перезапустите Spacedrive для установки",
"failed_to_download_update": "Не удалось загрузить обновление",
"updated_successfully": "Успешно обновлено, вы используете версию {{version}}",
"view_changes": "Просмотреть изменения",
"update": "Обновить",
"ask_spacedrive": "Спросите Спейсдрайв",
"close_command_palette": "Закрыть палитру команд",
"go_to_labels": "Перейти к ярлыкам",
"go_to_location": "Перейти к месту",
"go_to_overview": "Перейти к обзору",
"go_to_recents": "Перейти к недавним",
"go_to_settings": "Перейдите в настройки",
"go_to_tag": "Перейти к тегу",
"no_labels": "Нет ярлыков",
"search_for_files_and_actions": "Поиск файлов и действий...",
"toggle_command_palette": "Переключить палитру команд"
}

View file

@ -1,452 +1,452 @@
{
"about": "Hakkında",
"about_vision_text": "Birçoğumuzun birden fazla bulut hesabı, yedeklenmemiş sürücüleri ve kaybolma riski taşıyan verileri var. Google Fotoğraflar ve iCloud gibi bulut hizmetlerine bağımlıyız, ancak sınırlı kapasiteyle ve hizmetler ile işletim sistemleri arasında neredeyse sıfır geçiş yapabilirlikle kısıtlanmış durumdayız. Fotoğraf albümleri bir cihaz ekosisteminde sıkışıp kalmamalı veya reklam verileri için kullanılmamalıdır. OS bağımsız, kalıcı ve kişisel olarak sahip olunmalıdır. Oluşturduğumuz veriler, bizden uzun süre yaşayacak mirasımızdır - verilerimiz üzerinde mutlak kontrol sağlamak için açık kaynak teknolojisi tek yoludur, sınırsız ölçekte.",
"about_vision_title": "Vizyon",
"accept": "Kabul Et",
"accessed": "Erişildi",
"account": "Hesap",
"actions": "Eylemler",
"add": "Ekle",
"add_device": "Cihaz Ekle",
"add_library": "Kütüphane Ekle",
"add_location": "Konum Ekle",
"add_location_description": "Favori konumlarınızı kişisel kütüphanenize ekleyerek Spacedrive deneyiminizi geliştirin, sorunsuz ve verimli dosya yönetimi için.",
"add_location_tooltip": "Dizin olarak ekleyin",
"add_locations": "Konumlar Ekle",
"add_tag": "Etiket Ekle",
"advanced_settings": "Gelişmiş Ayarlar",
"all_jobs_have_been_cleared": "Tüm işler temizlendi.",
"alpha_release_description": "Spacedrive'ı Alpha sürümünde denemeniz için heyecanlıyız, heyecan verici yeni özellikleri sergiliyoruz. Her ilk sürümde olduğu gibi, bu sürümde bazı hatalar içerebilir. Karşılaştığınız sorunları Discord kanalımızda bildirerek yardımcı olmanızı rica ediyoruz. Değerli geri bildirimleriniz, kullanıcı deneyimini geliştirmeye büyük katkıda bulunacak.",
"alpha_release_title": "Alfa Sürümü",
"appearance": "Görünüm",
"appearance_description": "İstemcinizin görünümünü değiştirin.",
"archive": "Arşiv",
"archive_coming_soon": "Arşivleme konumları yakında geliyor...",
"archive_info": "Verileri Kütüphane'den arşiv olarak çıkarın, Konum klasör yapısını korumak için kullanışlıdır.",
"are_you_sure": "Emin misiniz?",
"assign_tag": "Etiket Ata",
"audio_preview_not_supported": "Ses önizlemesi desteklenmiyor.",
"back": "Geri",
"backups": "Yedeklemeler",
"backups_description": "Spacedrive veritabanı yedeklerinizi yönetin.",
"blur_effects": "Bulanıklaştırma Efektleri",
"blur_effects_description": "Bazı bileşenlere bulanıklaştırma efekti uygulanacak.",
"cancel": "İptal",
"cancel_selection": "Seçimi iptal et",
"celcius": "Santigrat",
"change": "Değiştir",
"changelog": "Değişiklikler",
"changelog_page_description": "Yaptığımız havalı yeni özellikleri görün",
"changelog_page_title": "Değişiklikler",
"checksum": "Kontrol Toplamı",
"clear_finished_jobs": "Biten işleri temizle",
"client": "İstemci",
"close": "Kapat",
"close_current_tab": "Geçerli sekmeyi kapat",
"clouds": "Bulutlar",
"color": "Renk",
"coming_soon": "Yakında",
"compress": "Sıkıştır",
"configure_location": "Konumu Yapılandır",
"connected": "Bağlı",
"contacts": "Kişiler",
"contacts_description": "Kişilerinizi Spacedrive'da yönetin.",
"content_id": "İçerik ID",
"continue": "Devam Et",
"convert_to": "Dönüştür",
"coordinates": "Koordinatlar",
"copied": "Kopyalandı",
"copy": "Kopyala",
"copy_as_path": "Yolu kopyala",
"copy_object": "Nesneyi kopyala",
"copy_path_to_clipboard": "Yolu panoya kopyala",
"copy_success": "Öğeler kopyalandı",
"create": "Oluştur",
"create_library": "Kütüphane Oluştur",
"create_library_description": "Kütüphaneler güvenli, cihaz içi bir veritabanıdır. Dosyalarınız olduğu yerde kalır, Kütüphane onları kataloglar ve tüm Spacedrive ile ilgili verileri depolar.",
"create_new_library": "Yeni kütüphane oluştur",
"create_new_library_description": "Kütüphaneler güvenli, cihaz içi bir veritabanıdır. Dosyalarınız olduğu yerde kalır, Kütüphane onları kataloglar ve tüm Spacedrive ile ilgili verileri depolar.",
"create_new_tag": "Yeni Etiket Oluştur",
"create_new_tag_description": "Bir ad ve renk seçin.",
"create_tag": "Etiket Oluştur",
"created": "Oluşturuldu",
"creating_library": "Kütüphane oluşturuluyor...",
"creating_your_library": "Kütüphaneniz oluşturuluyor",
"current": "Mevcut",
"current_directory": "Mevcut Dizin",
"current_directory_with_descendants": "Alt Dizinler Dahil Mevcut Dizin",
"custom": "Özel",
"cut": "Kes",
"cut_object": "Nesneyi kes",
"cut_success": "Öğeleri kes",
"data_folder": "Veri Klasörü",
"debug_mode": "Hata Ayıklama Modu",
"debug_mode_description": "Uygulama içinde ek hata ayıklama özelliklerini etkinleştir.",
"default": "Varsayılan",
"delete": "Sil",
"delete_dialog_title": "{{prefix}} {{type}} Sil",
"delete_info": "Bu, diskteki gerçek klasörü silmeyecek. Önizleme medyası silinecek.",
"delete_library": "Kütüphaneyi Sil",
"delete_library_description": "Bu kalıcıdır, dosyalarınız silinmeyecek, sadece Spacedrive kütüphanesi silinecek.",
"delete_location": "Konumu Sil",
"delete_location_description": "Bir konumu silmek, Spacedrive veritabanından ilişkili tüm dosyaları da kaldıracaktır, dosyalar kendileri silinmez.",
"delete_object": "Nesneyi sil",
"delete_rule": "Kuralı Sil",
"delete_tag": "Etiketi Sil",
"delete_tag_description": "Bu etiketi silmek istediğinizden emin misiniz? Bu geri alınamaz ve etiketli dosyalar bağlantısız kalacak.",
"delete_warning": "Uyarı: Bu, {{type}}'ınızı sonsuza dek silecek, henüz çöp kutumuz yok...",
"description": "Açıklama",
"deselect": "Seçimi Kaldır",
"details": "Detaylar",
"devices": "Cihazlar",
"devices_coming_soon_tooltip": "Yakında geliyor! Bu alfa sürümü kütüphane senkronizasyonunu içermiyor, çok yakında hazır olacak.",
"dialog": "İletişim kutusu",
"dialog_shortcut_description": "Eylemler ve işlemler gerçekleştirmek için",
"direction": "Yön",
"disabled": "Devre Dışı",
"display_formats": "Görüntüleme Formatları",
"display_name": "Görünen İsim",
"distance": "Mesafe",
"done": "Tamam",
"dont_show_again": "Tekrar gösterme",
"double_click_action": "Çift tıklama eylemi",
"download": "İndir",
"duplicate": "Kopyala",
"duplicate_object": "Nesneyi çoğalt",
"duplicate_success": "Öğeler kopyalandı",
"edit": "Düzenle",
"edit_library": "Kütüphaneyi Düzenle",
"edit_location": "Konumu Düzenle",
"enable_networking": "Ağı Etkinleştir",
"encrypt": "Şifrele",
"encrypt_library": "Kütüphaneyi Şifrele",
"encrypt_library_coming_soon": "Kütüphane şifreleme yakında geliyor",
"encrypt_library_description": "Bu kütüphane için şifrelemeyi etkinleştirin, bu sadece Spacedrive veritabanını şifreler, dosyaların kendisini değil.",
"ephemeral_notice_browse": "Dosyalarınızı ve klasörlerinizi doğrudan cihazınızdan göz atın.",
"ephemeral_notice_consider_indexing": "Daha hızlı ve daha verimli bir keşif için yerel konumlarınızı indekslemeyi düşünün.",
"erase": "Sil",
"erase_a_file": "Bir dosyayı sil",
"erase_a_file_description": "Silme ayarlarınızı yapılandırın.",
"error": "Hata",
"error_loading_original_file": "Orijinal dosya yüklenirken hata",
"expand": "Genişlet",
"explorer": "Gezgin",
"explorer_shortcut_description": "Dosya sistemiyle gezinmek ve etkileşimde bulunmak için",
"export": "Dışa Aktar",
"export_library": "Kütüphaneyi Dışa Aktar",
"export_library_coming_soon": "Kütüphaneyi dışa aktarma yakında geliyor",
"export_library_description": "Bu kütüphaneyi bir dosya olarak dışa aktar.",
"extensions": "Uzantılar",
"extensions_description": "Bu istemcinin işlevselliğini genişletmek için uzantıları yükleyin.",
"fahrenheit": "Fahrenheit",
"failed_to_cancel_job": "İş iptal edilemedi.",
"failed_to_clear_all_jobs": "Tüm işler temizlenemedi.",
"failed_to_copy_file": "Dosya kopyalanamadı",
"failed_to_copy_file_path": "Dosya yolu kopyalanamadı",
"failed_to_cut_file": "Dosya kesilemedi",
"failed_to_duplicate_file": "Dosya kopyalanamadı",
"failed_to_generate_checksum": "Kontrol toplamı oluşturulamadı",
"failed_to_generate_labels": "Etiketler oluşturulamadı",
"failed_to_generate_thumbnails": "Küçük resimler oluşturulamadı",
"failed_to_load_tags": "Etiketler yüklenemedi",
"failed_to_pause_job": "İş duraklatılamadı.",
"failed_to_reindex_location": "Konum yeniden indekslenemedi",
"failed_to_remove_file_from_recents": "Dosya son kullanılanlardan kaldırılamadı",
"failed_to_remove_job": "İş kaldırılamadı.",
"failed_to_rescan_location": "Konum tekrar taranamadı",
"failed_to_resume_job": "İş devam ettirilemedi.",
"failed_to_update_location_settings": "Konum ayarları güncellenemedi",
"favorite": "Favori",
"favorites": "Favoriler",
"feedback": "Geribildirim",
"feedback_is_required": "Geribildirim gereklidir",
"feedback_login_description": "Giriş yapmak, geribildiriminize yanıt vermemizi sağlar",
"feedback_placeholder": "Geribildiriminiz...",
"feedback_toast_error_message": "Geribildiriminizi gönderirken bir hata oluştu. Lütfen tekrar deneyin.",
"file_already_exist_in_this_location": "Dosya bu konumda zaten mevcut",
"file_indexing_rules": "Dosya İndeksleme Kuralları",
"filters": "Filtreler",
"forward": "İleri",
"full_disk_access": "Tam Disk Erişimi",
"full_disk_access_description": "En iyi deneyimi sağlamak için dosyalarınızı indekslemek üzere diskinize erişmemiz gerekiyor. Dosyalarınız yalnızca size açık.",
"full_reindex": "Tam Yeniden İndeksleme",
"full_reindex_info": "Bu Konumun tam taramasını gerçekleştirin.",
"general": "Genel",
"general_settings": "Genel Ayarlar",
"general_settings_description": "Bu müşteriye ilişkin genel ayarlar.",
"general_shortcut_description": "Genel kullanım kısayolları",
"generatePreviewMedia_label": "Bu Konum için önizleme medyası oluştur",
"generate_checksums": "Kontrol Toplamları Oluştur",
"go_back": "Geri Dön",
"got_it": "Anladım",
"grid_gap": "Boşluk",
"grid_view": "Izgara Görünümü",
"grid_view_notice_description": "Dosyalarınıza Izgara Görünümü ile görsel bir genel bakış alın. Bu görünüm dosya ve klasörlerinizi küçük resim görüntüleri olarak gösterir, aradığınız dosyayı hızlıca tanımlamanızı sağlar.",
"hidden_label": "Konumun ve içeriğinin özet kategorilerde, aramalarda ve etiketlerde görünmesini engeller, 'Gizli öğeleri göster' etkinleştirilmedikçe.",
"hide_in_library_search": "Kütüphane aramasında gizle",
"hide_in_library_search_description": "Bu etiketle olan dosyaları kütüphanenin tamamında yapılan aramalarda sonuçlardan gizle.",
"hide_in_sidebar": "Kenar çubuğunda gizle",
"hide_in_sidebar_description": "Bu etiketin uygulamanın kenar çubuğunda gösterilmesini engelle.",
"hide_location_from_view": "Konumu ve içeriğini görünümden gizle",
"home": "Ev",
"image_labeler_ai_model": "Resim etiket tanıma AI modeli",
"image_labeler_ai_model_description": "Resimlerdeki nesneleri tanımak için kullanılan model. Daha büyük modeller daha doğru ancak daha yavaştır.",
"import": "İçe Aktar",
"indexed": "İndekslenmiş",
"indexer_rule_reject_allow_label": "Varsayılan olarak, bir indeksleyici kuralı Red listesi olarak işlev görür ve kriterlerine uyan tüm dosyaları hariç tutar. Bu seçeneği etkinleştirerek onu bir İzin listesine dönüştürebilirsiniz, böylece yalnızca belirli kurallarını karşılayan dosyaları indeksler.",
"indexer_rules": "İndeksleyici Kuralları",
"indexer_rules_info": "Globları kullanarak göz ardı edilecek yolları belirtmenize olanak tanır.",
"install": "Yükle",
"install_update": "Güncellemeyi Yükle",
"installed": "Yüklendi",
"item_size": "Öğe Boyutu",
"item_with_count_one": "{{count}} madde",
"item_with_count_other": "{{count}} maddeler",
"job_has_been_canceled": "İş iptal edildi.",
"job_has_been_paused": "İş duraklatıldı.",
"job_has_been_removed": "İş kaldırıldı.",
"job_has_been_resumed": "İş devam ettirildi.",
"join": "Katıl",
"join_discord": "Discord'a Katıl",
"join_library": "Kütüphaneye Katıl",
"join_library_description": "Kütüphaneler güvenli, cihaz içi bir veritabanıdır. Dosyalarınız yerinde kalır, Kütüphane onları kataloglar ve tüm Spacedrive ile ilgili verileri saklar.",
"key": "Anahtar",
"key_manager": "Anahtar Yöneticisi",
"key_manager_description": "Şifreleme anahtarları oluştur, anahtarlarınızı tak ve çıkararak dosyalarınızın uçuşta şifresini çözün.",
"keybinds": "Tuş Bağlamaları",
"keybinds_description": "İstemci tuş bağlamalarını görüntüleyin ve yönetin",
"keys": "Anahtarlar",
"kilometers": "Kilometreler",
"labels": "Etiketler",
"language": "Dil",
"language_description": "Spacedrive arayüzünün dilini değiştirin",
"learn_more_about_telemetry": "Telemetri hakkında daha fazla bilgi edinin",
"libraries": "Kütüphaneler",
"libraries_description": "Veritabanı tüm kütüphane verilerini ve dosya metaverilerini içerir.",
"library": "Kütüphane",
"library_name": "Kütüphane adı",
"library_overview": "Kütüphane Genel Bakışı",
"library_settings": "Kütüphane Ayarları",
"library_settings_description": "Şu anda aktif olan kütüphane ile ilgili genel ayarlar.",
"list_view": "Liste Görünümü",
"list_view_notice_description": "Dosyalarınızın ve klasörlerinizin arasında kolayca gezinmek için Liste Görünümünü kullanın. Bu görünüm dosyalarınızı basit, düzenli bir liste formatında gösterir, ihtiyacınız olan dosyalara hızla ulaşıp onlara erişmenizi sağlar.",
"loading": "Yükleniyor",
"local": "Yerel",
"local_locations": "Yerel Konumlar",
"local_node": "Yerel Düğüm",
"location_connected_tooltip": "Konum değişiklikler için izleniyor",
"location_disconnected_tooltip": "Konum değişiklikler için izlenmiyor",
"location_display_name_info": "Bu Konumun adı, kenar çubuğunda gösterilecek olan budur. Diskteki gerçek klasörü yeniden adlandırmaz.",
"location_is_already_linked": "Konum zaten bağlantılı",
"location_path_info": "Bu Konumun yolu, dosyaların disk üzerinde saklandığı yerdir.",
"location_type": "Konum Türü",
"location_type_managed": "Spacedrive sizin için dosyaları sıralar. Eğer Konum boş değilse, bir \"spacedrive\" klasörü oluşturulacak.",
"location_type_normal": "İçerik olduğu gibi indekslenecek, yeni dosyalar otomatik olarak sıralanmayacak.",
"location_type_replica": "Bu Konum başka birinin kopyasıdır, içeriği otomatik olarak senkronize edilecektir.",
"locations": "Konumlar",
"locations_description": "Depolama konumlarınızı yönetin.",
"lock": "Kilitle",
"log_in_with_browser": "Tarayıcı ile Giriş Yap",
"log_out": ıkış Yap",
"logged_in_as": "{{email}} olarak giriş yapıldı",
"logout": ıkış Yap",
"manage_library": "Kütüphaneyi Yönet",
"managed": "Yönetilen",
"media": "Medya",
"media_view_context": "Medya Görünümü Bağlamı",
"media_view_notice_description": "Fotoğrafları ve videoları kolayca keşfedin, Medya Görünümü alt dizinler dahil olmak üzere mevcut konumdan itibaren sonuçları gösterecektir.",
"meet_contributors_behind_spacedrive": "Spacedrive'ın arkasındaki katkıda bulunanlarla tanışın",
"meet_title": "{{title}} ile Tanışın",
"miles": "Mil",
"mode": "Mod",
"modified": "Değiştirildi",
"more": "Daha fazla",
"more_actions": "Daha fazla eylem...",
"more_info": "Daha fazla bilgi",
"move_back_within_quick_preview": "Hızlı önizleme içinde geri git",
"move_files": "Dosyaları Taşı",
"move_forward_within_quick_preview": "Hızlı önizleme içinde ileri git",
"name": "Ad",
"navigate_back": "Geri git",
"navigate_backwards": "Geri git",
"navigate_files_downwards": "Dosyalara aşağı doğru gezin",
"navigate_files_leftwards": "Dosyalara sola doğru gezin",
"navigate_files_rightwards": "Dosyalara sağa doğru gezin",
"navigate_files_upwards": "Dosyalara yukarı doğru gezin",
"navigate_forward": "İleri git",
"navigate_forwards": "İleri git",
"navigate_to_settings_page": "Ayarlar sayfasına git",
"network": "Ağ",
"network_page_description": "Yerel Ağınızda diğer Spacedrive düğümleri burada görünecek, varsayılan işletim sistemi ağ bağlantıları ile birlikte.",
"networking": "Ağ",
"networking_port": "Ağ Portu",
"networking_port_description": "Spacedrive'in Eşler Arası ağ iletişimi için kullanılacak port. Restriktif bir güvenlik duvarınız yoksa bunu devre dışı bırakmalısınız. İnternete açmayın!",
"new_folder": "Yeni Klasör",
"new_library": "Yeni kütüphane",
"new_location": "Yeni konum",
"new_location_web_description": "Spacedrive'ın tarayıcı versiyonunu kullanıyorsanız, şimdilik uzak düğüme yerel bir dizinin mutlak URL'sini belirtmeniz gerekecek.",
"new_tab": "Yeni Sekme",
"new_tag": "Yeni etiket",
"no_files_found_here": "Burada dosya bulunamadı",
"no_jobs": "İş yok.",
"no_tag_selected": "Etiket Seçilmedi",
"no_tags": "Etiket yok",
"node_name": "Düğüm Adı",
"no_nodes_found": "Spacedrive düğümleri bulunamadı.",
"nodes": "Düğümler",
"nodes_description": "Bu kütüphaneye bağlı düğümleri yönetin. Bir düğüm, bir cihazda veya sunucuda çalışan Spacedrive'ın arka ucunun bir örneğidir. Her düğüm bir veritabanı kopyası taşır ve eşler arası bağlantılar üzerinden gerçek zamanlı olarak senkronize olur.",
"none": "Hiçbiri",
"normal": "Normal",
"not_you": "Siz değil misiniz?",
"number_of_passes": "Geçiş sayısı",
"object_id": "Nesne ID",
"offline": "Çevrimdışı",
"online": "Çevrimiçi",
"open": "Aç",
"open_file": "Dosyayı Aç",
"open_new_location_once_added": "Yeni konum eklendikten sonra aç",
"open_new_tab": "Yeni sekme aç",
"open_object": "Nesneyi aç",
"open_object_from_quick_preview_in_native_file_manager": "Hızlı önizlemedeki nesneyi yerel dosya yöneticisinde aç",
"open_settings": "Ayarları Aç",
"open_with": "İle aç",
"or": "VEYA",
"overview": "Genel Bakış",
"page": "Sayfa",
"page_shortcut_description": "Uygulamadaki farklı sayfalar",
"pair": "Eşle",
"pairing_with_node": "{{node}} ile eşleşiyor",
"paste": "Yapıştır",
"paste_object": "Nesneyi yapıştır",
"paste_success": "Öğeler yapıştırıldı",
"path": "Yol",
"path_copied_to_clipboard_description": "{{location}} konumu için yol panoya kopyalandı.",
"path_copied_to_clipboard_title": "Yol panoya kopyalandı",
"pause": "Durdur",
"peers": "Eşler",
"people": "İnsanlar",
"privacy": "Gizlilik",
"privacy_description": "Spacedrive gizlilik için tasarlandı, bu yüzden açık kaynaklı ve yerel ilkeliyiz. Bu yüzden hangi verilerin bizimle paylaşıldığı konusunda çok açık olacağız.",
"quick_preview": "Hızlı Önizleme",
"quick_view": "Hızlı bakış",
"recent_jobs": "Son İşler",
"recents": "Son Kullanılanlar",
"regen_labels": "Etiketleri Yeniden Oluştur",
"regen_thumbnails": "Küçük Resimleri Yeniden Oluştur",
"regenerate_thumbs": "Küçük Resimleri Yeniden Oluştur",
"reindex": "Yeniden İndeksle",
"reject": "Reddet",
"reload": "Yeniden Yükle",
"remove": "Kaldır",
"remove_from_recents": "Son Kullanılanlardan Kaldır",
"rename": "Yeniden Adlandır",
"rename_object": "Nesneyi yeniden adlandır",
"replica": "Replika",
"rescan_directory": "Dizini Yeniden Tara",
"rescan_location": "Konumu Yeniden Tara",
"reset": "Sıfırla",
"resources": "Kaynaklar",
"restore": "Geri Yükle",
"resume": "Devam Ettir",
"retry": "Yeniden Dene",
"reveal_in_native_file_manager": "Yerel dosya yöneticisinde göster",
"revel_in_browser": "{{browser}}'da Göster",
"running": "Çalışıyor",
"save": "Kaydet",
"save_changes": "Değişiklikleri Kaydet",
"saved_searches": "Kaydedilen Aramalar",
"search_extensions": "Arama uzantıları",
"secure_delete": "Güvenli sil",
"security": "Güvenlik",
"security_description": "İstemcinizi güvende tutun.",
"send": "Gönder",
"settings": "Ayarlar",
"setup": "Kurulum",
"share": "Paylaş",
"share_anonymous_usage": "Anonim kullanımı paylaş",
"share_anonymous_usage_description": "Geliştiricilere uygulamayı iyileştirmelerine yardımcı olmak için tamamen anonim telemetri verilerini paylaşın",
"share_bare_minimum": "Sadece en azını paylaş",
"share_bare_minimum_description": "Yalnızca Spacedrive'ın aktif bir kullanıcısı olduğumu ve birkaç teknik ayrıntıyı paylaşın",
"sharing": "Paylaşım",
"sharing_description": "Kütüphanelerinize kimlerin erişim sağlayabileceğini yönetin.",
"show_details": "Detayları Göster",
"show_hidden_files": "Gizli Dosyaları Göster",
"show_object_size": "Nesne Boyutunu Göster",
"show_path_bar": "Yol Çubuğunu Göster",
"show_slider": "Kaydırıcıyı Göster",
"size": "Boyut",
"skip_login": "Girişi Atla",
"sort_by": "Sırala",
"spacedrive_account": "Spacedrive Hesabı",
"spacedrive_cloud": "Spacedrive Bulutu",
"spacedrive_cloud_description": "Spacedrive her zaman yerel odaklıdır, ancak gelecekte kendi isteğe bağlı bulut hizmetlerimizi sunacağız. Şu anda kimlik doğrulama yalnızca Geri Bildirim özelliği için kullanılır, aksi takdirde gerekli değildir.",
"spacedrop_a_file": "Bir Dosya Spacedropa",
"spacedrop_description": "Ağınızda Spacedrive çalıştıran cihazlarla anında paylaşın.",
"spacedrop_already_progress": "Spacedrop zaten devam ediyor",
"spacedrop_rejected": "Spacedrop reddedildi",
"square_thumbnails": "Kare Küçük Resimler",
"star_on_github": "GitHub'da Yıldızla",
"stop": "Durdur",
"success": "Başarılı",
"support": "Destek",
"switch_to_grid_view": "Kılavuz görünümüne geç",
"switch_to_list_view": "Liste görünümüne geç",
"switch_to_media_view": "Medya görünümüne geç",
"switch_to_next_tab": "Sonraki sekmeye geç",
"switch_to_previous_tab": "Önceki sekmeye geç",
"sync": "Senkronize Et",
"syncPreviewMedia_label": "Bu Konum için ön izleme medyasını cihazlarınızla senkronize et",
"sync_description": "Spacedrive'ın nasıl senkronize edileceğini yönetin.",
"sync_with_library": "Kütüphane ile Senkronize Et",
"sync_with_library_description": "Etkinleştirilirse tuş bağlamalarınız kütüphane ile senkronize edilecek, aksi takdirde yalnızca bu istemciye uygulanacak.",
"tags": "Etiketler",
"tags_description": "Etiketlerinizi yönetin.",
"telemetry_description": "Uygulamayı iyileştirmek için geliştiricilere detaylı kullanım ve telemetri verisi sağlamak için AÇIK konumuna getirin. Yalnızca temel verileri göndermek için KAPALI konumuna getirin: faaliyet durumunuz, uygulama sürümü, çekirdek sürümü ve platform (örn., mobil, web veya masaüstü).",
"telemetry_title": "Ek Telemetri ve Kullanım Verisi Paylaş",
"temperature": "Sıcaklık",
"thank_you_for_your_feedback": "Geribildiriminiz için teşekkür ederiz!",
"thumbnailer_cpu_usage": "Küçükresim Oluşturucunun CPU kullanımı",
"thumbnailer_cpu_usage_description": "Küçükresim oluşturucunun arka planda işleme için ne kadar CPU kullanacağını sınırlayın.",
"toggle_all": "Hepsini Değiştir",
"toggle_hidden_files": "Gizli dosyaları aç/kapat",
"toggle_image_slider_within_quick_preview": "Hızlı önizleme içinde resim kaydırıcısını aç/kapat",
"toggle_inspector": "Denetleyiciyi aç/kapat",
"toggle_job_manager": "İş yöneticisini aç/kapat",
"toggle_metadata": "Meta verileri aç/kapat",
"toggle_path_bar": "Yol çubuğunu aç/kapat",
"toggle_quick_preview": "Hızlı önizlemeyi aç/kapat",
"type": "Tip",
"ui_animations": "UI Animasyonları",
"ui_animations_description": "Diyaloglar ve diğer UI elementleri açılırken ve kapanırken animasyon gösterecek.",
"unnamed_location": "İsimsiz Konum",
"usage": "Kullanım",
"usage_description": "Kütüphanenizi kullanımı ve donanım bilgileri",
"value": "Değer",
"video_preview_not_supported": "Video ön izlemesi desteklenmiyor.",
"want_to_do_this_later": "Bunu daha sonra yapmak ister misiniz?",
"website": "Web Sitesi",
"your_account": "Hesabınız",
"your_account_description": "Spacedrive hesabınız ve bilgileri.",
"your_local_network": "Yerel Ağınız",
"your_privacy": "Gizliliğiniz",
"new_update_available": "Yeni Güncelleme Mevcut!",
"version": "Sürüm {{version}}",
"downloading_update": "Güncelleme İndiriliyor",
"update_downloaded": "Güncelleme İndirildi. Yüklemek için Spacedrive'ı yeniden başlatın",
"failed_to_download_update": "Güncelleme indirme başarısız",
"updated_successfully": "Başarıyla güncellendi, şu anda {{version}} sürümündesiniz",
"view_changes": "Değişiklikleri Görüntüle",
"update": "Güncelleme",
"ask_spacedrive": "Spacedrive'a sor",
"close_command_palette": "Komut paletini kapat",
"disconnected": "Bağlantı kesildi",
"go_to_labels": "Etiketlere git",
"go_to_location": "Konuma git",
"go_to_overview": "Genel bakışa git",
"go_to_recents": "Son aramalara git",
"go_to_settings": "Ayarlara git",
"go_to_tag": "Etikete git",
"no_labels": "Etiket yok",
"search_for_files_and_actions": "Dosyaları ve eylemleri arayın...",
"toggle_command_palette": "Komut paletini değiştir"
"about": "Hakkında",
"about_vision_text": "Birçoğumuzun birden fazla bulut hesabı, yedeklenmemiş sürücüleri ve kaybolma riski taşıyan verileri var. Google Fotoğraflar ve iCloud gibi bulut hizmetlerine bağımlıyız, ancak sınırlı kapasiteyle ve hizmetler ile işletim sistemleri arasında neredeyse sıfır geçiş yapabilirlikle kısıtlanmış durumdayız. Fotoğraf albümleri bir cihaz ekosisteminde sıkışıp kalmamalı veya reklam verileri için kullanılmamalıdır. OS bağımsız, kalıcı ve kişisel olarak sahip olunmalıdır. Oluşturduğumuz veriler, bizden uzun süre yaşayacak mirasımızdır - verilerimiz üzerinde mutlak kontrol sağlamak için açık kaynak teknolojisi tek yoludur, sınırsız ölçekte.",
"about_vision_title": "Vizyon",
"accept": "Kabul Et",
"accessed": "Erişildi",
"account": "Hesap",
"actions": "Eylemler",
"add": "Ekle",
"add_device": "Cihaz Ekle",
"add_library": "Kütüphane Ekle",
"add_location": "Konum Ekle",
"add_location_description": "Favori konumlarınızı kişisel kütüphanenize ekleyerek Spacedrive deneyiminizi geliştirin, sorunsuz ve verimli dosya yönetimi için.",
"add_location_tooltip": "Dizin olarak ekleyin",
"add_locations": "Konumlar Ekle",
"add_tag": "Etiket Ekle",
"advanced_settings": "Gelişmiş Ayarlar",
"all_jobs_have_been_cleared": "Tüm işler temizlendi.",
"alpha_release_description": "Spacedrive'ı Alpha sürümünde denemeniz için heyecanlıyız, heyecan verici yeni özellikleri sergiliyoruz. Her ilk sürümde olduğu gibi, bu sürümde bazı hatalar içerebilir. Karşılaştığınız sorunları Discord kanalımızda bildirerek yardımcı olmanızı rica ediyoruz. Değerli geri bildirimleriniz, kullanıcı deneyimini geliştirmeye büyük katkıda bulunacak.",
"alpha_release_title": "Alfa Sürümü",
"appearance": "Görünüm",
"appearance_description": "İstemcinizin görünümünü değiştirin.",
"archive": "Arşiv",
"archive_coming_soon": "Arşivleme konumları yakında geliyor...",
"archive_info": "Verileri Kütüphane'den arşiv olarak çıkarın, Konum klasör yapısını korumak için kullanışlıdır.",
"are_you_sure": "Emin misiniz?",
"assign_tag": "Etiket Ata",
"audio_preview_not_supported": "Ses önizlemesi desteklenmiyor.",
"back": "Geri",
"backups": "Yedeklemeler",
"backups_description": "Spacedrive veritabanı yedeklerinizi yönetin.",
"blur_effects": "Bulanıklaştırma Efektleri",
"blur_effects_description": "Bazı bileşenlere bulanıklaştırma efekti uygulanacak.",
"cancel": "İptal",
"cancel_selection": "Seçimi iptal et",
"celcius": "Santigrat",
"change": "Değiştir",
"changelog": "Değişiklikler",
"changelog_page_description": "Yaptığımız havalı yeni özellikleri görün",
"changelog_page_title": "Değişiklikler",
"checksum": "Kontrol Toplamı",
"clear_finished_jobs": "Biten işleri temizle",
"client": "İstemci",
"close": "Kapat",
"close_current_tab": "Geçerli sekmeyi kapat",
"clouds": "Bulutlar",
"color": "Renk",
"coming_soon": "Yakında",
"compress": "Sıkıştır",
"configure_location": "Konumu Yapılandır",
"connected": "Bağlı",
"contacts": "Kişiler",
"contacts_description": "Kişilerinizi Spacedrive'da yönetin.",
"content_id": "İçerik ID",
"continue": "Devam Et",
"convert_to": "Dönüştür",
"coordinates": "Koordinatlar",
"copied": "Kopyalandı",
"copy": "Kopyala",
"copy_as_path": "Yolu kopyala",
"copy_object": "Nesneyi kopyala",
"copy_path_to_clipboard": "Yolu panoya kopyala",
"copy_success": "Öğeler kopyalandı",
"create": "Oluştur",
"create_library": "Kütüphane Oluştur",
"create_library_description": "Kütüphaneler güvenli, cihaz içi bir veritabanıdır. Dosyalarınız olduğu yerde kalır, Kütüphane onları kataloglar ve tüm Spacedrive ile ilgili verileri depolar.",
"create_new_library": "Yeni kütüphane oluştur",
"create_new_library_description": "Kütüphaneler güvenli, cihaz içi bir veritabanıdır. Dosyalarınız olduğu yerde kalır, Kütüphane onları kataloglar ve tüm Spacedrive ile ilgili verileri depolar.",
"create_new_tag": "Yeni Etiket Oluştur",
"create_new_tag_description": "Bir ad ve renk seçin.",
"create_tag": "Etiket Oluştur",
"created": "Oluşturuldu",
"creating_library": "Kütüphane oluşturuluyor...",
"creating_your_library": "Kütüphaneniz oluşturuluyor",
"current": "Mevcut",
"current_directory": "Mevcut Dizin",
"current_directory_with_descendants": "Alt Dizinler Dahil Mevcut Dizin",
"custom": "Özel",
"cut": "Kes",
"cut_object": "Nesneyi kes",
"cut_success": "Öğeleri kes",
"data_folder": "Veri Klasörü",
"debug_mode": "Hata Ayıklama Modu",
"debug_mode_description": "Uygulama içinde ek hata ayıklama özelliklerini etkinleştir.",
"default": "Varsayılan",
"delete": "Sil",
"delete_dialog_title": "{{prefix}} {{type}} Sil",
"delete_info": "Bu, diskteki gerçek klasörü silmeyecek. Önizleme medyası silinecek.",
"delete_library": "Kütüphaneyi Sil",
"delete_library_description": "Bu kalıcıdır, dosyalarınız silinmeyecek, sadece Spacedrive kütüphanesi silinecek.",
"delete_location": "Konumu Sil",
"delete_location_description": "Bir konumu silmek, Spacedrive veritabanından ilişkili tüm dosyaları da kaldıracaktır, dosyalar kendileri silinmez.",
"delete_object": "Nesneyi sil",
"delete_rule": "Kuralı Sil",
"delete_tag": "Etiketi Sil",
"delete_tag_description": "Bu etiketi silmek istediğinizden emin misiniz? Bu geri alınamaz ve etiketli dosyalar bağlantısız kalacak.",
"delete_warning": "Uyarı: Bu, {{type}}'ınızı sonsuza dek silecek, henüz çöp kutumuz yok...",
"description": "Açıklama",
"deselect": "Seçimi Kaldır",
"details": "Detaylar",
"devices": "Cihazlar",
"devices_coming_soon_tooltip": "Yakında geliyor! Bu alfa sürümü kütüphane senkronizasyonunu içermiyor, çok yakında hazır olacak.",
"dialog": "İletişim kutusu",
"dialog_shortcut_description": "Eylemler ve işlemler gerçekleştirmek için",
"direction": "Yön",
"disabled": "Devre Dışı",
"display_formats": "Görüntüleme Formatları",
"display_name": "Görünen İsim",
"distance": "Mesafe",
"done": "Tamam",
"dont_show_again": "Tekrar gösterme",
"double_click_action": "Çift tıklama eylemi",
"download": "İndir",
"duplicate": "Kopyala",
"duplicate_object": "Nesneyi çoğalt",
"duplicate_success": "Öğeler kopyalandı",
"edit": "Düzenle",
"edit_library": "Kütüphaneyi Düzenle",
"edit_location": "Konumu Düzenle",
"enable_networking": "Ağı Etkinleştir",
"encrypt": "Şifrele",
"encrypt_library": "Kütüphaneyi Şifrele",
"encrypt_library_coming_soon": "Kütüphane şifreleme yakında geliyor",
"encrypt_library_description": "Bu kütüphane için şifrelemeyi etkinleştirin, bu sadece Spacedrive veritabanını şifreler, dosyaların kendisini değil.",
"ephemeral_notice_browse": "Dosyalarınızı ve klasörlerinizi doğrudan cihazınızdan göz atın.",
"ephemeral_notice_consider_indexing": "Daha hızlı ve daha verimli bir keşif için yerel konumlarınızı indekslemeyi düşünün.",
"erase": "Sil",
"erase_a_file": "Bir dosyayı sil",
"erase_a_file_description": "Silme ayarlarınızı yapılandırın.",
"error": "Hata",
"error_loading_original_file": "Orijinal dosya yüklenirken hata",
"expand": "Genişlet",
"explorer": "Gezgin",
"explorer_shortcut_description": "Dosya sistemiyle gezinmek ve etkileşimde bulunmak için",
"export": "Dışa Aktar",
"export_library": "Kütüphaneyi Dışa Aktar",
"export_library_coming_soon": "Kütüphaneyi dışa aktarma yakında geliyor",
"export_library_description": "Bu kütüphaneyi bir dosya olarak dışa aktar.",
"extensions": "Uzantılar",
"extensions_description": "Bu istemcinin işlevselliğini genişletmek için uzantıları yükleyin.",
"fahrenheit": "Fahrenheit",
"failed_to_cancel_job": "İş iptal edilemedi.",
"failed_to_clear_all_jobs": "Tüm işler temizlenemedi.",
"failed_to_copy_file": "Dosya kopyalanamadı",
"failed_to_copy_file_path": "Dosya yolu kopyalanamadı",
"failed_to_cut_file": "Dosya kesilemedi",
"failed_to_duplicate_file": "Dosya kopyalanamadı",
"failed_to_generate_checksum": "Kontrol toplamı oluşturulamadı",
"failed_to_generate_labels": "Etiketler oluşturulamadı",
"failed_to_generate_thumbnails": "Küçük resimler oluşturulamadı",
"failed_to_load_tags": "Etiketler yüklenemedi",
"failed_to_pause_job": "İş duraklatılamadı.",
"failed_to_reindex_location": "Konum yeniden indekslenemedi",
"failed_to_remove_file_from_recents": "Dosya son kullanılanlardan kaldırılamadı",
"failed_to_remove_job": "İş kaldırılamadı.",
"failed_to_rescan_location": "Konum tekrar taranamadı",
"failed_to_resume_job": "İş devam ettirilemedi.",
"failed_to_update_location_settings": "Konum ayarları güncellenemedi",
"favorite": "Favori",
"favorites": "Favoriler",
"feedback": "Geribildirim",
"feedback_is_required": "Geribildirim gereklidir",
"feedback_login_description": "Giriş yapmak, geribildiriminize yanıt vermemizi sağlar",
"feedback_placeholder": "Geribildiriminiz...",
"feedback_toast_error_message": "Geribildiriminizi gönderirken bir hata oluştu. Lütfen tekrar deneyin.",
"file_already_exist_in_this_location": "Dosya bu konumda zaten mevcut",
"file_indexing_rules": "Dosya İndeksleme Kuralları",
"filters": "Filtreler",
"forward": "İleri",
"full_disk_access": "Tam Disk Erişimi",
"full_disk_access_description": "En iyi deneyimi sağlamak için dosyalarınızı indekslemek üzere diskinize erişmemiz gerekiyor. Dosyalarınız yalnızca size açık.",
"full_reindex": "Tam Yeniden İndeksleme",
"full_reindex_info": "Bu Konumun tam taramasını gerçekleştirin.",
"general": "Genel",
"general_settings": "Genel Ayarlar",
"general_settings_description": "Bu müşteriye ilişkin genel ayarlar.",
"general_shortcut_description": "Genel kullanım kısayolları",
"generatePreviewMedia_label": "Bu Konum için önizleme medyası oluştur",
"generate_checksums": "Kontrol Toplamları Oluştur",
"go_back": "Geri Dön",
"got_it": "Anladım",
"grid_gap": "Boşluk",
"grid_view": "Izgara Görünümü",
"grid_view_notice_description": "Dosyalarınıza Izgara Görünümü ile görsel bir genel bakış alın. Bu görünüm dosya ve klasörlerinizi küçük resim görüntüleri olarak gösterir, aradığınız dosyayı hızlıca tanımlamanızı sağlar.",
"hidden_label": "Konumun ve içeriğinin özet kategorilerde, aramalarda ve etiketlerde görünmesini engeller, 'Gizli öğeleri göster' etkinleştirilmedikçe.",
"hide_in_library_search": "Kütüphane aramasında gizle",
"hide_in_library_search_description": "Bu etiketle olan dosyaları kütüphanenin tamamında yapılan aramalarda sonuçlardan gizle.",
"hide_in_sidebar": "Kenar çubuğunda gizle",
"hide_in_sidebar_description": "Bu etiketin uygulamanın kenar çubuğunda gösterilmesini engelle.",
"hide_location_from_view": "Konumu ve içeriğini görünümden gizle",
"home": "Ev",
"image_labeler_ai_model": "Resim etiket tanıma AI modeli",
"image_labeler_ai_model_description": "Resimlerdeki nesneleri tanımak için kullanılan model. Daha büyük modeller daha doğru ancak daha yavaştır.",
"import": "İçe Aktar",
"indexed": "İndekslenmiş",
"indexer_rule_reject_allow_label": "Varsayılan olarak, bir indeksleyici kuralı Red listesi olarak işlev görür ve kriterlerine uyan tüm dosyaları hariç tutar. Bu seçeneği etkinleştirerek onu bir İzin listesine dönüştürebilirsiniz, böylece yalnızca belirli kurallarını karşılayan dosyaları indeksler.",
"indexer_rules": "İndeksleyici Kuralları",
"indexer_rules_info": "Globları kullanarak göz ardı edilecek yolları belirtmenize olanak tanır.",
"install": "Yükle",
"install_update": "Güncellemeyi Yükle",
"installed": "Yüklendi",
"item_size": "Öğe Boyutu",
"item_with_count_one": "{{count}} madde",
"item_with_count_other": "{{count}} maddeler",
"job_has_been_canceled": "İş iptal edildi.",
"job_has_been_paused": "İş duraklatıldı.",
"job_has_been_removed": "İş kaldırıldı.",
"job_has_been_resumed": "İş devam ettirildi.",
"join": "Katıl",
"join_discord": "Discord'a Katıl",
"join_library": "Kütüphaneye Katıl",
"join_library_description": "Kütüphaneler güvenli, cihaz içi bir veritabanıdır. Dosyalarınız yerinde kalır, Kütüphane onları kataloglar ve tüm Spacedrive ile ilgili verileri saklar.",
"key": "Anahtar",
"key_manager": "Anahtar Yöneticisi",
"key_manager_description": "Şifreleme anahtarları oluştur, anahtarlarınızı tak ve çıkararak dosyalarınızın uçuşta şifresini çözün.",
"keybinds": "Tuş Bağlamaları",
"keybinds_description": "İstemci tuş bağlamalarını görüntüleyin ve yönetin",
"keys": "Anahtarlar",
"kilometers": "Kilometreler",
"labels": "Etiketler",
"language": "Dil",
"language_description": "Spacedrive arayüzünün dilini değiştirin",
"learn_more_about_telemetry": "Telemetri hakkında daha fazla bilgi edinin",
"libraries": "Kütüphaneler",
"libraries_description": "Veritabanı tüm kütüphane verilerini ve dosya metaverilerini içerir.",
"library": "Kütüphane",
"library_name": "Kütüphane adı",
"library_overview": "Kütüphane Genel Bakışı",
"library_settings": "Kütüphane Ayarları",
"library_settings_description": "Şu anda aktif olan kütüphane ile ilgili genel ayarlar.",
"list_view": "Liste Görünümü",
"list_view_notice_description": "Dosyalarınızın ve klasörlerinizin arasında kolayca gezinmek için Liste Görünümünü kullanın. Bu görünüm dosyalarınızı basit, düzenli bir liste formatında gösterir, ihtiyacınız olan dosyalara hızla ulaşıp onlara erişmenizi sağlar.",
"loading": "Yükleniyor",
"local": "Yerel",
"local_locations": "Yerel Konumlar",
"local_node": "Yerel Düğüm",
"location_connected_tooltip": "Konum değişiklikler için izleniyor",
"location_disconnected_tooltip": "Konum değişiklikler için izlenmiyor",
"location_display_name_info": "Bu Konumun adı, kenar çubuğunda gösterilecek olan budur. Diskteki gerçek klasörü yeniden adlandırmaz.",
"location_is_already_linked": "Konum zaten bağlantılı",
"location_path_info": "Bu Konumun yolu, dosyaların disk üzerinde saklandığı yerdir.",
"location_type": "Konum Türü",
"location_type_managed": "Spacedrive sizin için dosyaları sıralar. Eğer Konum boş değilse, bir \"spacedrive\" klasörü oluşturulacak.",
"location_type_normal": "İçerik olduğu gibi indekslenecek, yeni dosyalar otomatik olarak sıralanmayacak.",
"location_type_replica": "Bu Konum başka birinin kopyasıdır, içeriği otomatik olarak senkronize edilecektir.",
"locations": "Konumlar",
"locations_description": "Depolama konumlarınızı yönetin.",
"lock": "Kilitle",
"log_in_with_browser": "Tarayıcı ile Giriş Yap",
"log_out": ıkış Yap",
"logged_in_as": "{{email}} olarak giriş yapıldı",
"logout": ıkış Yap",
"manage_library": "Kütüphaneyi Yönet",
"managed": "Yönetilen",
"media": "Medya",
"media_view_context": "Medya Görünümü Bağlamı",
"media_view_notice_description": "Fotoğrafları ve videoları kolayca keşfedin, Medya Görünümü alt dizinler dahil olmak üzere mevcut konumdan itibaren sonuçları gösterecektir.",
"meet_contributors_behind_spacedrive": "Spacedrive'ın arkasındaki katkıda bulunanlarla tanışın",
"meet_title": "{{title}} ile Tanışın",
"miles": "Mil",
"mode": "Mod",
"modified": "Değiştirildi",
"more": "Daha fazla",
"more_actions": "Daha fazla eylem...",
"more_info": "Daha fazla bilgi",
"move_back_within_quick_preview": "Hızlı önizleme içinde geri git",
"move_files": "Dosyaları Taşı",
"move_forward_within_quick_preview": "Hızlı önizleme içinde ileri git",
"name": "Ad",
"navigate_back": "Geri git",
"navigate_backwards": "Geri git",
"navigate_files_downwards": "Dosyalara aşağı doğru gezin",
"navigate_files_leftwards": "Dosyalara sola doğru gezin",
"navigate_files_rightwards": "Dosyalara sağa doğru gezin",
"navigate_files_upwards": "Dosyalara yukarı doğru gezin",
"navigate_forward": "İleri git",
"navigate_forwards": "İleri git",
"navigate_to_settings_page": "Ayarlar sayfasına git",
"network": "Ağ",
"network_page_description": "Yerel Ağınızda diğer Spacedrive düğümleri burada görünecek, varsayılan işletim sistemi ağ bağlantıları ile birlikte.",
"networking": "Ağ",
"networking_port": "Ağ Portu",
"networking_port_description": "Spacedrive'in Eşler Arası ağ iletişimi için kullanılacak port. Restriktif bir güvenlik duvarınız yoksa bunu devre dışı bırakmalısınız. İnternete açmayın!",
"new_folder": "Yeni Klasör",
"new_library": "Yeni kütüphane",
"new_location": "Yeni konum",
"new_location_web_description": "Spacedrive'ın tarayıcı versiyonunu kullanıyorsanız, şimdilik uzak düğüme yerel bir dizinin mutlak URL'sini belirtmeniz gerekecek.",
"new_tab": "Yeni Sekme",
"new_tag": "Yeni etiket",
"no_files_found_here": "Burada dosya bulunamadı",
"no_jobs": "İş yok.",
"no_tag_selected": "Etiket Seçilmedi",
"no_tags": "Etiket yok",
"node_name": "Düğüm Adı",
"no_nodes_found": "Spacedrive düğümleri bulunamadı.",
"nodes": "Düğümler",
"nodes_description": "Bu kütüphaneye bağlı düğümleri yönetin. Bir düğüm, bir cihazda veya sunucuda çalışan Spacedrive'ın arka ucunun bir örneğidir. Her düğüm bir veritabanı kopyası taşır ve eşler arası bağlantılar üzerinden gerçek zamanlı olarak senkronize olur.",
"none": "Hiçbiri",
"normal": "Normal",
"not_you": "Siz değil misiniz?",
"number_of_passes": "Geçiş sayısı",
"object_id": "Nesne ID",
"offline": "Çevrimdışı",
"online": "Çevrimiçi",
"open": "Aç",
"open_file": "Dosyayı Aç",
"open_new_location_once_added": "Yeni konum eklendikten sonra aç",
"open_new_tab": "Yeni sekme aç",
"open_object": "Nesneyi aç",
"open_object_from_quick_preview_in_native_file_manager": "Hızlı önizlemedeki nesneyi yerel dosya yöneticisinde aç",
"open_settings": "Ayarları Aç",
"open_with": "İle aç",
"or": "VEYA",
"overview": "Genel Bakış",
"page": "Sayfa",
"page_shortcut_description": "Uygulamadaki farklı sayfalar",
"pair": "Eşle",
"pairing_with_node": "{{node}} ile eşleşiyor",
"paste": "Yapıştır",
"paste_object": "Nesneyi yapıştır",
"paste_success": "Öğeler yapıştırıldı",
"path": "Yol",
"path_copied_to_clipboard_description": "{{location}} konumu için yol panoya kopyalandı.",
"path_copied_to_clipboard_title": "Yol panoya kopyalandı",
"pause": "Durdur",
"peers": "Eşler",
"people": "İnsanlar",
"privacy": "Gizlilik",
"privacy_description": "Spacedrive gizlilik için tasarlandı, bu yüzden açık kaynaklı ve yerel ilkeliyiz. Bu yüzden hangi verilerin bizimle paylaşıldığı konusunda çok açık olacağız.",
"quick_preview": "Hızlı Önizleme",
"quick_view": "Hızlı bakış",
"recent_jobs": "Son İşler",
"recents": "Son Kullanılanlar",
"regen_labels": "Etiketleri Yeniden Oluştur",
"regen_thumbnails": "Küçük Resimleri Yeniden Oluştur",
"regenerate_thumbs": "Küçük Resimleri Yeniden Oluştur",
"reindex": "Yeniden İndeksle",
"reject": "Reddet",
"reload": "Yeniden Yükle",
"remove": "Kaldır",
"remove_from_recents": "Son Kullanılanlardan Kaldır",
"rename": "Yeniden Adlandır",
"rename_object": "Nesneyi yeniden adlandır",
"replica": "Replika",
"rescan_directory": "Dizini Yeniden Tara",
"rescan_location": "Konumu Yeniden Tara",
"reset": "Sıfırla",
"resources": "Kaynaklar",
"restore": "Geri Yükle",
"resume": "Devam Ettir",
"retry": "Yeniden Dene",
"reveal_in_native_file_manager": "Yerel dosya yöneticisinde göster",
"revel_in_browser": "{{browser}}'da Göster",
"running": "Çalışıyor",
"save": "Kaydet",
"save_changes": "Değişiklikleri Kaydet",
"saved_searches": "Kaydedilen Aramalar",
"search_extensions": "Arama uzantıları",
"secure_delete": "Güvenli sil",
"security": "Güvenlik",
"security_description": "İstemcinizi güvende tutun.",
"send": "Gönder",
"settings": "Ayarlar",
"setup": "Kurulum",
"share": "Paylaş",
"share_anonymous_usage": "Anonim kullanımı paylaş",
"share_anonymous_usage_description": "Geliştiricilere uygulamayı iyileştirmelerine yardımcı olmak için tamamen anonim telemetri verilerini paylaşın",
"share_bare_minimum": "Sadece en azını paylaş",
"share_bare_minimum_description": "Yalnızca Spacedrive'ın aktif bir kullanıcısı olduğumu ve birkaç teknik ayrıntıyı paylaşın",
"sharing": "Paylaşım",
"sharing_description": "Kütüphanelerinize kimlerin erişim sağlayabileceğini yönetin.",
"show_details": "Detayları Göster",
"show_hidden_files": "Gizli Dosyaları Göster",
"show_object_size": "Nesne Boyutunu Göster",
"show_path_bar": "Yol Çubuğunu Göster",
"show_slider": "Kaydırıcıyı Göster",
"size": "Boyut",
"skip_login": "Girişi Atla",
"sort_by": "Sırala",
"spacedrive_account": "Spacedrive Hesabı",
"spacedrive_cloud": "Spacedrive Bulutu",
"spacedrive_cloud_description": "Spacedrive her zaman yerel odaklıdır, ancak gelecekte kendi isteğe bağlı bulut hizmetlerimizi sunacağız. Şu anda kimlik doğrulama yalnızca Geri Bildirim özelliği için kullanılır, aksi takdirde gerekli değildir.",
"spacedrop_a_file": "Bir Dosya Spacedropa",
"spacedrop_description": "Ağınızda Spacedrive çalıştıran cihazlarla anında paylaşın.",
"spacedrop_already_progress": "Spacedrop zaten devam ediyor",
"spacedrop_rejected": "Spacedrop reddedildi",
"square_thumbnails": "Kare Küçük Resimler",
"star_on_github": "GitHub'da Yıldızla",
"stop": "Durdur",
"success": "Başarılı",
"support": "Destek",
"switch_to_grid_view": "Kılavuz görünümüne geç",
"switch_to_list_view": "Liste görünümüne geç",
"switch_to_media_view": "Medya görünümüne geç",
"switch_to_next_tab": "Sonraki sekmeye geç",
"switch_to_previous_tab": "Önceki sekmeye geç",
"sync": "Senkronize Et",
"syncPreviewMedia_label": "Bu Konum için ön izleme medyasını cihazlarınızla senkronize et",
"sync_description": "Spacedrive'ın nasıl senkronize edileceğini yönetin.",
"sync_with_library": "Kütüphane ile Senkronize Et",
"sync_with_library_description": "Etkinleştirilirse tuş bağlamalarınız kütüphane ile senkronize edilecek, aksi takdirde yalnızca bu istemciye uygulanacak.",
"tags": "Etiketler",
"tags_description": "Etiketlerinizi yönetin.",
"telemetry_description": "Uygulamayı iyileştirmek için geliştiricilere detaylı kullanım ve telemetri verisi sağlamak için AÇIK konumuna getirin. Yalnızca temel verileri göndermek için KAPALI konumuna getirin: faaliyet durumunuz, uygulama sürümü, çekirdek sürümü ve platform (örn., mobil, web veya masaüstü).",
"telemetry_title": "Ek Telemetri ve Kullanım Verisi Paylaş",
"temperature": "Sıcaklık",
"thank_you_for_your_feedback": "Geribildiriminiz için teşekkür ederiz!",
"thumbnailer_cpu_usage": "Küçükresim Oluşturucunun CPU kullanımı",
"thumbnailer_cpu_usage_description": "Küçükresim oluşturucunun arka planda işleme için ne kadar CPU kullanacağını sınırlayın.",
"toggle_all": "Hepsini Değiştir",
"toggle_hidden_files": "Gizli dosyaları aç/kapat",
"toggle_image_slider_within_quick_preview": "Hızlı önizleme içinde resim kaydırıcısını aç/kapat",
"toggle_inspector": "Denetleyiciyi aç/kapat",
"toggle_job_manager": "İş yöneticisini aç/kapat",
"toggle_metadata": "Meta verileri aç/kapat",
"toggle_path_bar": "Yol çubuğunu aç/kapat",
"toggle_quick_preview": "Hızlı önizlemeyi aç/kapat",
"type": "Tip",
"ui_animations": "UI Animasyonları",
"ui_animations_description": "Diyaloglar ve diğer UI elementleri açılırken ve kapanırken animasyon gösterecek.",
"unnamed_location": "İsimsiz Konum",
"usage": "Kullanım",
"usage_description": "Kütüphanenizi kullanımı ve donanım bilgileri",
"value": "Değer",
"video_preview_not_supported": "Video ön izlemesi desteklenmiyor.",
"want_to_do_this_later": "Bunu daha sonra yapmak ister misiniz?",
"website": "Web Sitesi",
"your_account": "Hesabınız",
"your_account_description": "Spacedrive hesabınız ve bilgileri.",
"your_local_network": "Yerel Ağınız",
"your_privacy": "Gizliliğiniz",
"new_update_available": "Yeni Güncelleme Mevcut!",
"version": "Sürüm {{version}}",
"downloading_update": "Güncelleme İndiriliyor",
"update_downloaded": "Güncelleme İndirildi. Yüklemek için Spacedrive'ı yeniden başlatın",
"failed_to_download_update": "Güncelleme indirme başarısız",
"updated_successfully": "Başarıyla güncellendi, şu anda {{version}} sürümündesiniz",
"view_changes": "Değişiklikleri Görüntüle",
"update": "Güncelleme",
"ask_spacedrive": "Spacedrive'a sor",
"close_command_palette": "Komut paletini kapat",
"disconnected": "Bağlantı kesildi",
"go_to_labels": "Etiketlere git",
"go_to_location": "Konuma git",
"go_to_overview": "Genel bakışa git",
"go_to_recents": "Son aramalara git",
"go_to_settings": "Ayarlara git",
"go_to_tag": "Etikete git",
"no_labels": "Etiket yok",
"search_for_files_and_actions": "Dosyaları ve eylemleri arayın...",
"toggle_command_palette": "Komut paletini değiştir"
}

View file

@ -1,452 +1,452 @@
{
"about": "关于",
"about_vision_text": "我们很多人拥有好几个云账户,磁盘没有备份,数据也有丢失的风险。我们依赖像 Google 照片、iCloud 这样的云服务,但是它们容量有限,互操作性几乎为零,云服务和操作系统之间也无法协作。相册不应该困在一种生态系统中,也不应该当广告数据来收割。它们应该与操作系统无关,永久保存,由我们自己所有。我们创造的数据是我们的遗产,它们将比我们活得更久——开源技术是确保我们对定义我们生活的数据拥有绝对控制权的唯一方式,它没有限制。",
"about_vision_title": "愿景",
"accept": "接受",
"accessed": "已访问",
"account": "账户",
"actions": "操作",
"add": "添加",
"add_device": "添加设备",
"add_library": "添加库",
"add_location": "添加位置",
"add_location_description": "通过将您喜爱的位置添加到个人库中,增强您的 Spacedrive 体验,以实现无缝高效的文件管理。",
"add_location_tooltip": "将路径作为索引位置添加",
"add_locations": "添加位置",
"add_tag": "添加标签",
"advanced_settings": "高级设置",
"all_jobs_have_been_cleared": "所有任务已被清除。",
"alpha_release_description": "我们很高兴您能尝试 Spacedrive现在处于 Alpha 发布阶段展示了激动人心的新功能。与任何初始版本一样这个版本可能包含一些错误。我们恳请您在我们的Discord频道上报告您遇到的任何问题。您宝贵的反馈将极大地有助于增强用户体验。",
"alpha_release_title": "Alpha 版本",
"appearance": "外观",
"appearance_description": "改变客户端的外观。",
"archive": "存档",
"archive_coming_soon": "存档位置功能即将推出……",
"archive_info": "将库中的数据作为存档提取,有利于保留位置文件夹结构。",
"are_you_sure": "您确定吗?",
"assign_tag": "分配标签",
"audio_preview_not_supported": "不支持音频预览。",
"back": "返回",
"backups": "备份",
"backups_description": "管理您的 Spacedrive 数据库备份。",
"blur_effects": "模糊效果",
"blur_effects_description": "某些组件将应用模糊效果。",
"cancel": "取消",
"cancel_selection": "取消选择",
"celcius": "摄氏度",
"change": "更改",
"changelog": "更新日志",
"changelog_page_description": "查看我们正在开发的酷炫新功能",
"changelog_page_title": "更新日志",
"checksum": "校验和",
"clear_finished_jobs": "清除已完成的任务",
"client": "客户端",
"close": "关闭",
"close_current_tab": "关闭当前标签页",
"clouds": "云",
"color": "颜色",
"coming_soon": "即将推出",
"compress": "压缩",
"configure_location": "配置位置",
"connected": "已连接",
"contacts": "联系人",
"contacts_description": "在Spacedrive中管理您的联系人。",
"content_id": "内容ID",
"continue": "继续",
"convert_to": "转换为",
"coordinates": "坐标",
"copied": "已复制",
"copy": "复制",
"copy_as_path": "复制为路径",
"copy_object": "复制对象",
"copy_path_to_clipboard": "复制路径到剪贴板",
"copy_success": "项目已复制",
"create": "创建",
"create_library": "创建库",
"create_library_description": "库是一个安全的设备上的数据库。您的文件保持原位库对其进行目录编制并存储所有Spacedrive相关数据。",
"create_new_library": "创建新库",
"create_new_library_description": "库是一个安全的设备上的数据库。您的文件保持原位库对其进行目录编制并存储所有Spacedrive相关数据。",
"create_new_tag": "创建新标签",
"create_new_tag_description": "选择一个名称和颜色。",
"create_tag": "创建标签",
"created": "已创建",
"creating_library": "正在创建库…",
"creating_your_library": "正在创建您的库",
"current": "当前使用",
"current_directory": "当前目录",
"current_directory_with_descendants": "当前目录及其子目录",
"custom": "自定义",
"cut": "剪切",
"cut_object": "剪切对象",
"cut_success": "剪切项目",
"data_folder": "数据目录",
"debug_mode": "调试模式",
"debug_mode_description": "在应用内启用额外的调试功能。",
"default": "默认",
"delete": "删除",
"delete_dialog_title": "删除 {{prefix}} {{type}}",
"delete_info": "这不会删除磁盘上的实际文件夹。预览媒体将被删除。",
"delete_library": "删除库",
"delete_library_description": "这是永久性的您的文件不会被删除只有Spacedrive库会被删除。",
"delete_location": "删除位置",
"delete_location_description": "删除一个位置也将删除所有与之关联的文件从Spacedrive数据库中文件本身不会被删除。",
"delete_object": "删除对象",
"delete_rule": "删除规则",
"delete_tag": "删除标签",
"delete_tag_description": "您确定要删除这个标签吗?这不能被撤销,打过标签的文件将会被取消链接。",
"delete_warning": "警告:这将永久删除您的{{type}},我们目前还没有回收站…",
"description": "描述",
"deselect": "取消选择",
"details": "详情",
"devices": "设备",
"devices_coming_soon_tooltip": "即将推出这个Alpha版本不包括库同步很快就会准备好。",
"dialog": "对话框",
"dialog_shortcut_description": "执行操作",
"direction": "方向",
"disabled": "已禁用",
"display_formats": "显示格式",
"display_name": "显示名称",
"distance": "距离",
"done": "完成",
"dont_show_again": "不再显示",
"double_click_action": "双击操作",
"download": "下载",
"duplicate": "复制",
"duplicate_object": "复制对象",
"duplicate_success": "项目已复制",
"edit": "编辑",
"edit_library": "编辑库",
"edit_location": "编辑位置",
"enable_networking": "启用网络",
"encrypt": "加密",
"encrypt_library": "加密库",
"encrypt_library_coming_soon": "库加密即将推出",
"encrypt_library_description": "为这个库启用加密这只会加密Spacedrive数据库不会加密文件本身。",
"ephemeral_notice_browse": "直接从您的设备浏览您的文件和文件夹。",
"ephemeral_notice_consider_indexing": "考虑索引您本地的位置,以获得更快和更高效的浏览。",
"erase": "擦除",
"erase_a_file": "擦除一个文件",
"erase_a_file_description": "配置您的擦除设置。",
"error": "错误",
"error_loading_original_file": "加载原始文件出错",
"expand": "展开",
"explorer": "资源管理器",
"explorer_shortcut_description": "导航、与文件系统交互",
"export": "导出",
"export_library": "导出库",
"export_library_coming_soon": "导出库功能即将推出",
"export_library_description": "将这个库导出到一个文件。",
"extensions": "扩展",
"extensions_description": "安装扩展来扩展这个客户端的功能。",
"fahrenheit": "华氏度",
"failed_to_cancel_job": "取消任务失败。",
"failed_to_clear_all_jobs": "清除所有任务失败。",
"failed_to_copy_file": "复制文件失败",
"failed_to_copy_file_path": "复制文件路径失败",
"failed_to_cut_file": "剪切文件失败",
"failed_to_duplicate_file": "复制文件失败",
"failed_to_generate_checksum": "生成校验和失败",
"failed_to_generate_labels": "生成标签失败",
"failed_to_generate_thumbnails": "生成缩略图失败",
"failed_to_load_tags": "加载标签失败",
"failed_to_pause_job": "暂停任务失败。",
"failed_to_reindex_location": "重索引位置失败",
"failed_to_remove_file_from_recents": "从最近文档中删除文件失败",
"failed_to_remove_job": "删除任务失败。",
"failed_to_rescan_location": "重新扫描位置失败",
"failed_to_resume_job": "恢复任务失败。",
"failed_to_update_location_settings": "更新位置设置失败",
"favorite": "收藏",
"favorites": "收藏夹",
"feedback": "反馈",
"feedback_is_required": "反馈是必填项",
"feedback_login_description": "登录使我们能够回复您的反馈",
"feedback_placeholder": "您的反馈...",
"feedback_toast_error_message": "提交反馈时出错,请重试。",
"file_already_exist_in_this_location": "文件已存在于此位置",
"file_indexing_rules": "文件索引规则",
"filters": "过滤器",
"forward": "前进",
"full_disk_access": "完全磁盘访问",
"full_disk_access_description": "为了提供最佳体验,我们需要访问您的磁盘以索引您的文件。您的文件只有您自己可以访问。",
"full_reindex": "完全重新索引",
"full_reindex_info": "执行对此位置的完全重新扫描。",
"general": "通用",
"general_settings": "通用设置",
"general_settings_description": "与本客户端相关的一般设置。",
"general_shortcut_description": "通用快捷键",
"generatePreviewMedia_label": "为这个位置生成预览媒体",
"generate_checksums": "生成校验和",
"go_back": "返回",
"got_it": "明白了",
"grid_gap": "间隙",
"grid_view": "网格视图",
"grid_view_notice_description": "通过网格视图直观地了解您的文件。这种视图以缩略图形式显示您的文件和文件夹,方便您快速识别所寻找的文件。",
"hidden_label": "阻止位置及其内容出现在汇总分类、搜索和标签中,除非启用了“显示隐藏项目”。",
"hide_in_library_search": "在库搜索中隐藏",
"hide_in_library_search_description": "在搜索整个库时从结果中隐藏带有此标签的文件。",
"hide_in_sidebar": "在侧边栏中隐藏",
"hide_in_sidebar_description": "阻止此标签在应用的侧边栏中显示。",
"hide_location_from_view": "隐藏位置和内容的视图",
"home": "主页",
"image_labeler_ai_model": "图像标签识别 AI 模型",
"image_labeler_ai_model_description": "用于识别图像中对象的模型。较大的模型更准确但速度较慢。",
"import": "导入",
"indexed": "已索引",
"indexer_rule_reject_allow_label": "默认情况下,索引器规则作为拒绝列表,排除与其匹配的任何文件。启用此选项将其变成允许列表,仅索引符合其规定规则的位置的文件。",
"indexer_rules": "索引器规则",
"indexer_rules_info": "索引器规则允许您使用通配符指定要忽略的路径。",
"install": "安装",
"install_update": "安装更新",
"installed": "已安装",
"item_size": "项目大小",
"item_with_count_one": "{{count}} 项目",
"item_with_count_other": "{{count}} 项目",
"job_has_been_canceled": "作业已取消。",
"job_has_been_paused": "作业已暂停。",
"job_has_been_removed": "作业已移除。",
"job_has_been_resumed": "作业已恢复。",
"join": "加入",
"join_discord": "加入Discord",
"join_library": "加入一个库",
"join_library_description": "库是一个安全的设备上的数据库。您的文件保持原位库对其进行目录编制并存储所有Spacedrive相关数据。",
"key": "键位",
"key_manager": "密钥管理器",
"key_manager_description": "创建加密密钥,挂载和卸载密钥以即时查看解密文件。",
"keybinds": "快捷键",
"keybinds_description": "查看和管理客户端键绑定",
"keys": "密钥",
"kilometers": "千米",
"labels": "标签",
"language": "语言",
"language_description": "更改 Spacedrive 界面的语言",
"learn_more_about_telemetry": "了解更多有关遥测的信息",
"libraries": "库",
"libraries_description": "数据库包含所有库的数据和文件的元数据。",
"library": "库",
"library_name": "库名称",
"library_overview": "库概览",
"library_settings": "库设置",
"library_settings_description": "与当前活动库相关的一般设置。",
"list_view": "列表视图",
"list_view_notice_description": "通过列表视图轻松导航您的文件和文件夹。这种视图以简单、有组织的列表形式显示文件,让您能够快速定位和访问所需文件。",
"loading": "正在加载",
"local": "本地",
"local_locations": "本地位置",
"local_node": "本地节点",
"location_connected_tooltip": "位置正在监视变化",
"location_disconnected_tooltip": "位置未被监视以检查更改",
"location_display_name_info": "此位置的名称,这是将显示在侧边栏的名称。不会重命名磁盘上的实际文件夹。",
"location_is_already_linked": "位置已经链接",
"location_path_info": "此位置的路径,这是文件在磁盘上的存储位置。",
"location_type": "位置类型",
"location_type_managed": "Spacedrive将为您排序文件。如果位置不为空将创建一个“spacedrive”文件夹。",
"location_type_normal": "内容将按原样索引,新文件不会自动排序。",
"location_type_replica": "此位置是另一个位置的副本,其内容将自动同步。",
"locations": "位置",
"locations_description": "管理您的存储位置。",
"lock": "锁定",
"log_in_with_browser": "用浏览器登录",
"log_out": "退出登录",
"logged_in_as": "已登录为{{email}}",
"logout": "退出登录",
"manage_library": "管理库",
"managed": "已管理",
"media": "媒体",
"media_view_context": "媒体视图上下文",
"media_view_notice_description": "轻松发现照片和视频,媒体视图将从当前位置开始显示结果,包括子目录。",
"meet_contributors_behind_spacedrive": "结识 Spacedrive 背后的贡献者",
"meet_title": "了解{{title}}",
"miles": "英里",
"mode": "模式",
"modified": "已修改",
"more": "更多",
"more_actions": "更多操作…",
"more_info": "更多信息",
"move_back_within_quick_preview": "在快速预览中后退",
"move_files": "移动文件",
"move_forward_within_quick_preview": "在快速预览中前进",
"name": "名称",
"navigate_back": "回退",
"navigate_backwards": "向后导航",
"navigate_files_downwards": "向下导航文件",
"navigate_files_leftwards": "向左导航文件",
"navigate_files_rightwards": "向右导航文件",
"navigate_files_upwards": "向上导航文件",
"navigate_forward": "前进",
"navigate_forwards": "向前导航",
"navigate_to_settings_page": "导航到设置页面",
"network": "网络",
"network_page_description": "您的局域网上的其他Spacedrive节点将显示在这里以及您的默认操作系统网络挂载。",
"networking": "网络",
"networking_port": "网络端口",
"networking_port_description": "Spacedrive 点对点网络通信使用的端口。除非您有防火墙来限制,否则应保持此项禁用。不要在互联网上暴露自己!",
"new_folder": "新文件夹",
"new_library": "新库",
"new_location": "新位置",
"new_location_web_description": "由于您正在使用Spacedrive的浏览器版本您将目前需要指定远程节点本地目录的绝对URL。",
"new_tab": "新标签",
"new_tag": "新标签",
"no_files_found_here": "这个地方空空如也",
"no_jobs": "没有作业。",
"no_tag_selected": "没有选中的标签",
"no_tags": "没有标签",
"node_name": "节点名称",
"no_nodes_found": "找不到 Spacedrive 节点.",
"nodes": "节点",
"nodes_description": "管理连接到此库的节点。节点是在设备或服务器上运行的Spacedrive后端的实例。每个节点都携带数据库副本并通过点对点连接实时同步。",
"none": "无",
"normal": "普通",
"not_you": "不是您?",
"number_of_passes": "通过次数",
"object_id": "对象ID",
"offline": "离线",
"online": "在线",
"open": "打开",
"open_file": "打开文件",
"open_new_location_once_added": "添加新位置后立即打开",
"open_new_tab": "打开新标签页",
"open_object": "打开对象",
"open_object_from_quick_preview_in_native_file_manager": "在本机文件管理器中从快速预览中打开对象",
"open_settings": "打开设置",
"open_with": "打开方式",
"or": "或",
"overview": "概览",
"page": "页面",
"page_shortcut_description": "应用程序中的不同页面",
"pair": "配对",
"pairing_with_node": "正在与{{node}}配对",
"paste": "粘贴",
"paste_object": "粘贴对象",
"paste_success": "已粘贴项目",
"path": "路径",
"path_copied_to_clipboard_description": "位置{{location}}的路径已复制到剪贴板。",
"path_copied_to_clipboard_title": "路径已复制到剪贴板",
"pause": "暂停",
"peers": "个端点",
"people": "人们",
"privacy": "隐私",
"privacy_description": "Spacedrive是为隐私而构建的这就是为什么我们是开源的以本地优先。因此我们会非常明确地告诉您与我们分享了什么数据。",
"quick_preview": "快速预览",
"quick_view": "快速查看",
"recent_jobs": "最近的作业",
"recents": "最近使用",
"regen_labels": "重新生成标签",
"regen_thumbnails": "重新生成缩略图",
"regenerate_thumbs": "重新生成缩略图",
"reindex": "重新索引",
"reject": "拒绝",
"reload": "重新加载",
"remove": "移除",
"remove_from_recents": "从最近使用中移除",
"rename": "重命名",
"rename_object": "重命名对象",
"replica": "副本",
"rescan_directory": "重新扫描目录",
"rescan_location": "重新扫描位置",
"reset": "重置",
"resources": "资源",
"restore": "恢复",
"resume": "恢复",
"retry": "重试",
"reveal_in_native_file_manager": "在本机文件管理器中显示",
"revel_in_browser": "在{{browser}}中显示",
"running": "运行中",
"save": "保存",
"save_changes": "保存更改",
"saved_searches": "保存的搜索",
"search_extensions": "搜索扩展",
"secure_delete": "安全删除",
"security": "安全",
"security_description": "确保您的客户端安全。",
"send": "发送",
"settings": "设置",
"setup": "设置",
"share": "分享",
"share_anonymous_usage": "分享匿名使用情况",
"share_anonymous_usage_description": "分享完全匿名的遥测数据,帮助开发者改进应用程序",
"share_bare_minimum": "分享最基本信息",
"share_bare_minimum_description": "只分享我是Spacedrive的活跃用户和一些技术细节",
"sharing": "共享",
"sharing_description": "管理有权访问您的库的人。",
"show_details": "显示详情",
"show_hidden_files": "显示隐藏文件",
"show_object_size": "显示对象大小",
"show_path_bar": "显示路径栏",
"show_slider": "显示滑块",
"size": "大小",
"skip_login": "跳过登录",
"sort_by": "排序依据",
"spacedrive_account": "Spacedrive 账户",
"spacedrive_cloud": "Spacedrive 云",
"spacedrive_cloud_description": "Spacedrive 始终优先重视本地资源,但我们未来会提供可选的自有云服务。目前,身份验证仅用于反馈功能。",
"spacedrop_a_file": "使用 Spacedrop 传输文件",
"spacedrop_description": "与在您的网络上运行 Spacedrive 的设备即时共享。",
"spacedrop_already_progress": "Spacedrop 已在进行中",
"spacedrop_rejected": "Spacedrop 被拒绝",
"square_thumbnails": "方形缩略图",
"star_on_github": "在 GitHub 上送一个 star",
"stop": "停止",
"success": "成功",
"support": "支持",
"switch_to_grid_view": "切换到网格视图",
"switch_to_list_view": "切换到列表视图",
"switch_to_media_view": "切换到媒体视图",
"switch_to_next_tab": "切换到下一个标签页",
"switch_to_previous_tab": "切换到上一个标签页",
"sync": "同步",
"syncPreviewMedia_label": "将此位置的预览媒体与您的设备同步",
"sync_description": "管理Spacedrive的同步方式。",
"sync_with_library": "与库同步",
"sync_with_library_description": "如果启用,您的键绑定将与库同步,否则它们只适用于此客户端。",
"tags": "标签",
"tags_description": "管理您的标签。",
"telemetry_description": "启用以向开发者提供详细的使用情况和遥测数据来改善应用程序。禁用则将只发送基本数据您的活动状态、应用版本、应用内核版本以及平台例如移动端、web 端或桌面端)。",
"telemetry_title": "共享额外的遥测和使用数据",
"temperature": "温度",
"thank_you_for_your_feedback": "感谢您的反馈!",
"thumbnailer_cpu_usage": "缩略图生成器 CPU 使用",
"thumbnailer_cpu_usage_description": "限制缩略图生成器在后台处理时可以使用 CPU 的量。",
"toggle_all": "切换全部",
"toggle_hidden_files": "显示/隐藏文件",
"toggle_image_slider_within_quick_preview": "在快速预览中切换图像滑块",
"toggle_inspector": "切换检查器",
"toggle_job_manager": "切换任务管理器",
"toggle_metadata": "切换元数据",
"toggle_path_bar": "切换显示路径栏",
"toggle_quick_preview": "切换快速预览",
"type": "类型",
"ui_animations": "用户界面动画",
"ui_animations_description": "打开和关闭时对话框和其他用户界面元素将产生动画效果。",
"unnamed_location": "未命名位置",
"usage": "使用情况",
"usage_description": "您的库使用情况和硬件信息",
"value": "值",
"video_preview_not_supported": "不支持视频预览。",
"want_to_do_this_later": "想稍后再做吗?",
"website": "网站",
"your_account": "您的账户",
"your_account_description": "Spacedrive账号和信息。",
"your_local_network": "您的本地网络",
"your_privacy": "您的隐私",
"new_update_available": "新版本可用!",
"version": "版本 {{version}}",
"downloading_update": "下载更新",
"update_downloaded": "更新已下载。重新启动 Spacedrive 以安装",
"failed_to_download_update": "无法下载更新",
"updated_successfully": "成功更新,您当前使用的是版本 {{version}}",
"view_changes": "查看更改",
"update": "更新",
"ask_spacedrive": "询问 Spacedrive",
"close_command_palette": "关闭命令面板",
"disconnected": "已断开连接",
"go_to_labels": "转到标签",
"go_to_location": "前往地点",
"go_to_overview": "前往概览",
"go_to_recents": "转到最近的内容",
"go_to_settings": "前往设置",
"go_to_tag": "转到标签",
"no_labels": "无标签",
"search_for_files_and_actions": "搜索文件和操作...",
"toggle_command_palette": "切换命令面板"
"about": "关于",
"about_vision_text": "我们很多人拥有好几个云账户,磁盘没有备份,数据也有丢失的风险。我们依赖像 Google 照片、iCloud 这样的云服务,但是它们容量有限,互操作性几乎为零,云服务和操作系统之间也无法协作。相册不应该困在一种生态系统中,也不应该当广告数据来收割。它们应该与操作系统无关,永久保存,由我们自己所有。我们创造的数据是我们的遗产,它们将比我们活得更久——开源技术是确保我们对定义我们生活的数据拥有绝对控制权的唯一方式,它没有限制。",
"about_vision_title": "愿景",
"accept": "接受",
"accessed": "已访问",
"account": "账户",
"actions": "操作",
"add": "添加",
"add_device": "添加设备",
"add_library": "添加库",
"add_location": "添加位置",
"add_location_description": "通过将您喜爱的位置添加到个人库中,增强您的 Spacedrive 体验,以实现无缝高效的文件管理。",
"add_location_tooltip": "将路径作为索引位置添加",
"add_locations": "添加位置",
"add_tag": "添加标签",
"advanced_settings": "高级设置",
"all_jobs_have_been_cleared": "所有任务已被清除。",
"alpha_release_description": "我们很高兴您能尝试 Spacedrive现在处于 Alpha 发布阶段展示了激动人心的新功能。与任何初始版本一样这个版本可能包含一些错误。我们恳请您在我们的Discord频道上报告您遇到的任何问题。您宝贵的反馈将极大地有助于增强用户体验。",
"alpha_release_title": "Alpha 版本",
"appearance": "外观",
"appearance_description": "改变客户端的外观。",
"archive": "存档",
"archive_coming_soon": "存档位置功能即将推出……",
"archive_info": "将库中的数据作为存档提取,有利于保留位置文件夹结构。",
"are_you_sure": "您确定吗?",
"assign_tag": "分配标签",
"audio_preview_not_supported": "不支持音频预览。",
"back": "返回",
"backups": "备份",
"backups_description": "管理您的 Spacedrive 数据库备份。",
"blur_effects": "模糊效果",
"blur_effects_description": "某些组件将应用模糊效果。",
"cancel": "取消",
"cancel_selection": "取消选择",
"celcius": "摄氏度",
"change": "更改",
"changelog": "更新日志",
"changelog_page_description": "查看我们正在开发的酷炫新功能",
"changelog_page_title": "更新日志",
"checksum": "校验和",
"clear_finished_jobs": "清除已完成的任务",
"client": "客户端",
"close": "关闭",
"close_current_tab": "关闭当前标签页",
"clouds": "云",
"color": "颜色",
"coming_soon": "即将推出",
"compress": "压缩",
"configure_location": "配置位置",
"connected": "已连接",
"contacts": "联系人",
"contacts_description": "在Spacedrive中管理您的联系人。",
"content_id": "内容ID",
"continue": "继续",
"convert_to": "转换为",
"coordinates": "坐标",
"copied": "已复制",
"copy": "复制",
"copy_as_path": "复制为路径",
"copy_object": "复制对象",
"copy_path_to_clipboard": "复制路径到剪贴板",
"copy_success": "项目已复制",
"create": "创建",
"create_library": "创建库",
"create_library_description": "库是一个安全的设备上的数据库。您的文件保持原位库对其进行目录编制并存储所有Spacedrive相关数据。",
"create_new_library": "创建新库",
"create_new_library_description": "库是一个安全的设备上的数据库。您的文件保持原位库对其进行目录编制并存储所有Spacedrive相关数据。",
"create_new_tag": "创建新标签",
"create_new_tag_description": "选择一个名称和颜色。",
"create_tag": "创建标签",
"created": "已创建",
"creating_library": "正在创建库…",
"creating_your_library": "正在创建您的库",
"current": "当前使用",
"current_directory": "当前目录",
"current_directory_with_descendants": "当前目录及其子目录",
"custom": "自定义",
"cut": "剪切",
"cut_object": "剪切对象",
"cut_success": "剪切项目",
"data_folder": "数据目录",
"debug_mode": "调试模式",
"debug_mode_description": "在应用内启用额外的调试功能。",
"default": "默认",
"delete": "删除",
"delete_dialog_title": "删除 {{prefix}} {{type}}",
"delete_info": "这不会删除磁盘上的实际文件夹。预览媒体将被删除。",
"delete_library": "删除库",
"delete_library_description": "这是永久性的您的文件不会被删除只有Spacedrive库会被删除。",
"delete_location": "删除位置",
"delete_location_description": "删除一个位置也将删除所有与之关联的文件从Spacedrive数据库中文件本身不会被删除。",
"delete_object": "删除对象",
"delete_rule": "删除规则",
"delete_tag": "删除标签",
"delete_tag_description": "您确定要删除这个标签吗?这不能被撤销,打过标签的文件将会被取消链接。",
"delete_warning": "警告:这将永久删除您的{{type}},我们目前还没有回收站…",
"description": "描述",
"deselect": "取消选择",
"details": "详情",
"devices": "设备",
"devices_coming_soon_tooltip": "即将推出这个Alpha版本不包括库同步很快就会准备好。",
"dialog": "对话框",
"dialog_shortcut_description": "执行操作",
"direction": "方向",
"disabled": "已禁用",
"display_formats": "显示格式",
"display_name": "显示名称",
"distance": "距离",
"done": "完成",
"dont_show_again": "不再显示",
"double_click_action": "双击操作",
"download": "下载",
"duplicate": "复制",
"duplicate_object": "复制对象",
"duplicate_success": "项目已复制",
"edit": "编辑",
"edit_library": "编辑库",
"edit_location": "编辑位置",
"enable_networking": "启用网络",
"encrypt": "加密",
"encrypt_library": "加密库",
"encrypt_library_coming_soon": "库加密即将推出",
"encrypt_library_description": "为这个库启用加密这只会加密Spacedrive数据库不会加密文件本身。",
"ephemeral_notice_browse": "直接从您的设备浏览您的文件和文件夹。",
"ephemeral_notice_consider_indexing": "考虑索引您本地的位置,以获得更快和更高效的浏览。",
"erase": "擦除",
"erase_a_file": "擦除一个文件",
"erase_a_file_description": "配置您的擦除设置。",
"error": "错误",
"error_loading_original_file": "加载原始文件出错",
"expand": "展开",
"explorer": "资源管理器",
"explorer_shortcut_description": "导航、与文件系统交互",
"export": "导出",
"export_library": "导出库",
"export_library_coming_soon": "导出库功能即将推出",
"export_library_description": "将这个库导出到一个文件。",
"extensions": "扩展",
"extensions_description": "安装扩展来扩展这个客户端的功能。",
"fahrenheit": "华氏度",
"failed_to_cancel_job": "取消任务失败。",
"failed_to_clear_all_jobs": "清除所有任务失败。",
"failed_to_copy_file": "复制文件失败",
"failed_to_copy_file_path": "复制文件路径失败",
"failed_to_cut_file": "剪切文件失败",
"failed_to_duplicate_file": "复制文件失败",
"failed_to_generate_checksum": "生成校验和失败",
"failed_to_generate_labels": "生成标签失败",
"failed_to_generate_thumbnails": "生成缩略图失败",
"failed_to_load_tags": "加载标签失败",
"failed_to_pause_job": "暂停任务失败。",
"failed_to_reindex_location": "重索引位置失败",
"failed_to_remove_file_from_recents": "从最近文档中删除文件失败",
"failed_to_remove_job": "删除任务失败。",
"failed_to_rescan_location": "重新扫描位置失败",
"failed_to_resume_job": "恢复任务失败。",
"failed_to_update_location_settings": "更新位置设置失败",
"favorite": "收藏",
"favorites": "收藏夹",
"feedback": "反馈",
"feedback_is_required": "反馈是必填项",
"feedback_login_description": "登录使我们能够回复您的反馈",
"feedback_placeholder": "您的反馈...",
"feedback_toast_error_message": "提交反馈时出错,请重试。",
"file_already_exist_in_this_location": "文件已存在于此位置",
"file_indexing_rules": "文件索引规则",
"filters": "过滤器",
"forward": "前进",
"full_disk_access": "完全磁盘访问",
"full_disk_access_description": "为了提供最佳体验,我们需要访问您的磁盘以索引您的文件。您的文件只有您自己可以访问。",
"full_reindex": "完全重新索引",
"full_reindex_info": "执行对此位置的完全重新扫描。",
"general": "通用",
"general_settings": "通用设置",
"general_settings_description": "与本客户端相关的一般设置。",
"general_shortcut_description": "通用快捷键",
"generatePreviewMedia_label": "为这个位置生成预览媒体",
"generate_checksums": "生成校验和",
"go_back": "返回",
"got_it": "明白了",
"grid_gap": "间隙",
"grid_view": "网格视图",
"grid_view_notice_description": "通过网格视图直观地了解您的文件。这种视图以缩略图形式显示您的文件和文件夹,方便您快速识别所寻找的文件。",
"hidden_label": "阻止位置及其内容出现在汇总分类、搜索和标签中,除非启用了“显示隐藏项目”。",
"hide_in_library_search": "在库搜索中隐藏",
"hide_in_library_search_description": "在搜索整个库时从结果中隐藏带有此标签的文件。",
"hide_in_sidebar": "在侧边栏中隐藏",
"hide_in_sidebar_description": "阻止此标签在应用的侧边栏中显示。",
"hide_location_from_view": "隐藏位置和内容的视图",
"home": "主页",
"image_labeler_ai_model": "图像标签识别 AI 模型",
"image_labeler_ai_model_description": "用于识别图像中对象的模型。较大的模型更准确但速度较慢。",
"import": "导入",
"indexed": "已索引",
"indexer_rule_reject_allow_label": "默认情况下,索引器规则作为拒绝列表,排除与其匹配的任何文件。启用此选项将其变成允许列表,仅索引符合其规定规则的位置的文件。",
"indexer_rules": "索引器规则",
"indexer_rules_info": "索引器规则允许您使用通配符指定要忽略的路径。",
"install": "安装",
"install_update": "安装更新",
"installed": "已安装",
"item_size": "项目大小",
"item_with_count_one": "{{count}} 项目",
"item_with_count_other": "{{count}} 项目",
"job_has_been_canceled": "作业已取消。",
"job_has_been_paused": "作业已暂停。",
"job_has_been_removed": "作业已移除。",
"job_has_been_resumed": "作业已恢复。",
"join": "加入",
"join_discord": "加入Discord",
"join_library": "加入一个库",
"join_library_description": "库是一个安全的设备上的数据库。您的文件保持原位库对其进行目录编制并存储所有Spacedrive相关数据。",
"key": "键位",
"key_manager": "密钥管理器",
"key_manager_description": "创建加密密钥,挂载和卸载密钥以即时查看解密文件。",
"keybinds": "快捷键",
"keybinds_description": "查看和管理客户端键绑定",
"keys": "密钥",
"kilometers": "千米",
"labels": "标签",
"language": "语言",
"language_description": "更改 Spacedrive 界面的语言",
"learn_more_about_telemetry": "了解更多有关遥测的信息",
"libraries": "库",
"libraries_description": "数据库包含所有库的数据和文件的元数据。",
"library": "库",
"library_name": "库名称",
"library_overview": "库概览",
"library_settings": "库设置",
"library_settings_description": "与当前活动库相关的一般设置。",
"list_view": "列表视图",
"list_view_notice_description": "通过列表视图轻松导航您的文件和文件夹。这种视图以简单、有组织的列表形式显示文件,让您能够快速定位和访问所需文件。",
"loading": "正在加载",
"local": "本地",
"local_locations": "本地位置",
"local_node": "本地节点",
"location_connected_tooltip": "位置正在监视变化",
"location_disconnected_tooltip": "位置未被监视以检查更改",
"location_display_name_info": "此位置的名称,这是将显示在侧边栏的名称。不会重命名磁盘上的实际文件夹。",
"location_is_already_linked": "位置已经链接",
"location_path_info": "此位置的路径,这是文件在磁盘上的存储位置。",
"location_type": "位置类型",
"location_type_managed": "Spacedrive将为您排序文件。如果位置不为空将创建一个“spacedrive”文件夹。",
"location_type_normal": "内容将按原样索引,新文件不会自动排序。",
"location_type_replica": "此位置是另一个位置的副本,其内容将自动同步。",
"locations": "位置",
"locations_description": "管理您的存储位置。",
"lock": "锁定",
"log_in_with_browser": "用浏览器登录",
"log_out": "退出登录",
"logged_in_as": "已登录为{{email}}",
"logout": "退出登录",
"manage_library": "管理库",
"managed": "已管理",
"media": "媒体",
"media_view_context": "媒体视图上下文",
"media_view_notice_description": "轻松发现照片和视频,媒体视图将从当前位置开始显示结果,包括子目录。",
"meet_contributors_behind_spacedrive": "结识 Spacedrive 背后的贡献者",
"meet_title": "了解{{title}}",
"miles": "英里",
"mode": "模式",
"modified": "已修改",
"more": "更多",
"more_actions": "更多操作…",
"more_info": "更多信息",
"move_back_within_quick_preview": "在快速预览中后退",
"move_files": "移动文件",
"move_forward_within_quick_preview": "在快速预览中前进",
"name": "名称",
"navigate_back": "回退",
"navigate_backwards": "向后导航",
"navigate_files_downwards": "向下导航文件",
"navigate_files_leftwards": "向左导航文件",
"navigate_files_rightwards": "向右导航文件",
"navigate_files_upwards": "向上导航文件",
"navigate_forward": "前进",
"navigate_forwards": "向前导航",
"navigate_to_settings_page": "导航到设置页面",
"network": "网络",
"network_page_description": "您的局域网上的其他Spacedrive节点将显示在这里以及您的默认操作系统网络挂载。",
"networking": "网络",
"networking_port": "网络端口",
"networking_port_description": "Spacedrive 点对点网络通信使用的端口。除非您有防火墙来限制,否则应保持此项禁用。不要在互联网上暴露自己!",
"new_folder": "新文件夹",
"new_library": "新库",
"new_location": "新位置",
"new_location_web_description": "由于您正在使用Spacedrive的浏览器版本您将目前需要指定远程节点本地目录的绝对URL。",
"new_tab": "新标签",
"new_tag": "新标签",
"no_files_found_here": "这个地方空空如也",
"no_jobs": "没有作业。",
"no_tag_selected": "没有选中的标签",
"no_tags": "没有标签",
"node_name": "节点名称",
"no_nodes_found": "找不到 Spacedrive 节点.",
"nodes": "节点",
"nodes_description": "管理连接到此库的节点。节点是在设备或服务器上运行的Spacedrive后端的实例。每个节点都携带数据库副本并通过点对点连接实时同步。",
"none": "无",
"normal": "普通",
"not_you": "不是您?",
"number_of_passes": "通过次数",
"object_id": "对象ID",
"offline": "离线",
"online": "在线",
"open": "打开",
"open_file": "打开文件",
"open_new_location_once_added": "添加新位置后立即打开",
"open_new_tab": "打开新标签页",
"open_object": "打开对象",
"open_object_from_quick_preview_in_native_file_manager": "在本机文件管理器中从快速预览中打开对象",
"open_settings": "打开设置",
"open_with": "打开方式",
"or": "或",
"overview": "概览",
"page": "页面",
"page_shortcut_description": "应用程序中的不同页面",
"pair": "配对",
"pairing_with_node": "正在与{{node}}配对",
"paste": "粘贴",
"paste_object": "粘贴对象",
"paste_success": "已粘贴项目",
"path": "路径",
"path_copied_to_clipboard_description": "位置{{location}}的路径已复制到剪贴板。",
"path_copied_to_clipboard_title": "路径已复制到剪贴板",
"pause": "暂停",
"peers": "个端点",
"people": "人们",
"privacy": "隐私",
"privacy_description": "Spacedrive是为隐私而构建的这就是为什么我们是开源的以本地优先。因此我们会非常明确地告诉您与我们分享了什么数据。",
"quick_preview": "快速预览",
"quick_view": "快速查看",
"recent_jobs": "最近的作业",
"recents": "最近使用",
"regen_labels": "重新生成标签",
"regen_thumbnails": "重新生成缩略图",
"regenerate_thumbs": "重新生成缩略图",
"reindex": "重新索引",
"reject": "拒绝",
"reload": "重新加载",
"remove": "移除",
"remove_from_recents": "从最近使用中移除",
"rename": "重命名",
"rename_object": "重命名对象",
"replica": "副本",
"rescan_directory": "重新扫描目录",
"rescan_location": "重新扫描位置",
"reset": "重置",
"resources": "资源",
"restore": "恢复",
"resume": "恢复",
"retry": "重试",
"reveal_in_native_file_manager": "在本机文件管理器中显示",
"revel_in_browser": "在{{browser}}中显示",
"running": "运行中",
"save": "保存",
"save_changes": "保存更改",
"saved_searches": "保存的搜索",
"search_extensions": "搜索扩展",
"secure_delete": "安全删除",
"security": "安全",
"security_description": "确保您的客户端安全。",
"send": "发送",
"settings": "设置",
"setup": "设置",
"share": "分享",
"share_anonymous_usage": "分享匿名使用情况",
"share_anonymous_usage_description": "分享完全匿名的遥测数据,帮助开发者改进应用程序",
"share_bare_minimum": "分享最基本信息",
"share_bare_minimum_description": "只分享我是Spacedrive的活跃用户和一些技术细节",
"sharing": "共享",
"sharing_description": "管理有权访问您的库的人。",
"show_details": "显示详情",
"show_hidden_files": "显示隐藏文件",
"show_object_size": "显示对象大小",
"show_path_bar": "显示路径栏",
"show_slider": "显示滑块",
"size": "大小",
"skip_login": "跳过登录",
"sort_by": "排序依据",
"spacedrive_account": "Spacedrive 账户",
"spacedrive_cloud": "Spacedrive 云",
"spacedrive_cloud_description": "Spacedrive 始终优先重视本地资源,但我们未来会提供可选的自有云服务。目前,身份验证仅用于反馈功能。",
"spacedrop_a_file": "使用 Spacedrop 传输文件",
"spacedrop_description": "与在您的网络上运行 Spacedrive 的设备即时共享。",
"spacedrop_already_progress": "Spacedrop 已在进行中",
"spacedrop_rejected": "Spacedrop 被拒绝",
"square_thumbnails": "方形缩略图",
"star_on_github": "在 GitHub 上送一个 star",
"stop": "停止",
"success": "成功",
"support": "支持",
"switch_to_grid_view": "切换到网格视图",
"switch_to_list_view": "切换到列表视图",
"switch_to_media_view": "切换到媒体视图",
"switch_to_next_tab": "切换到下一个标签页",
"switch_to_previous_tab": "切换到上一个标签页",
"sync": "同步",
"syncPreviewMedia_label": "将此位置的预览媒体与您的设备同步",
"sync_description": "管理Spacedrive的同步方式。",
"sync_with_library": "与库同步",
"sync_with_library_description": "如果启用,您的键绑定将与库同步,否则它们只适用于此客户端。",
"tags": "标签",
"tags_description": "管理您的标签。",
"telemetry_description": "启用以向开发者提供详细的使用情况和遥测数据来改善应用程序。禁用则将只发送基本数据您的活动状态、应用版本、应用内核版本以及平台例如移动端、web 端或桌面端)。",
"telemetry_title": "共享额外的遥测和使用数据",
"temperature": "温度",
"thank_you_for_your_feedback": "感谢您的反馈!",
"thumbnailer_cpu_usage": "缩略图生成器 CPU 使用",
"thumbnailer_cpu_usage_description": "限制缩略图生成器在后台处理时可以使用 CPU 的量。",
"toggle_all": "切换全部",
"toggle_hidden_files": "显示/隐藏文件",
"toggle_image_slider_within_quick_preview": "在快速预览中切换图像滑块",
"toggle_inspector": "切换检查器",
"toggle_job_manager": "切换任务管理器",
"toggle_metadata": "切换元数据",
"toggle_path_bar": "切换显示路径栏",
"toggle_quick_preview": "切换快速预览",
"type": "类型",
"ui_animations": "用户界面动画",
"ui_animations_description": "打开和关闭时对话框和其他用户界面元素将产生动画效果。",
"unnamed_location": "未命名位置",
"usage": "使用情况",
"usage_description": "您的库使用情况和硬件信息",
"value": "值",
"video_preview_not_supported": "不支持视频预览。",
"want_to_do_this_later": "想稍后再做吗?",
"website": "网站",
"your_account": "您的账户",
"your_account_description": "Spacedrive账号和信息。",
"your_local_network": "您的本地网络",
"your_privacy": "您的隐私",
"new_update_available": "新版本可用!",
"version": "版本 {{version}}",
"downloading_update": "下载更新",
"update_downloaded": "更新已下载。重新启动 Spacedrive 以安装",
"failed_to_download_update": "无法下载更新",
"updated_successfully": "成功更新,您当前使用的是版本 {{version}}",
"view_changes": "查看更改",
"update": "更新",
"ask_spacedrive": "询问 Spacedrive",
"close_command_palette": "关闭命令面板",
"disconnected": "已断开连接",
"go_to_labels": "转到标签",
"go_to_location": "前往地点",
"go_to_overview": "前往概览",
"go_to_recents": "转到最近的内容",
"go_to_settings": "前往设置",
"go_to_tag": "转到标签",
"no_labels": "无标签",
"search_for_files_and_actions": "搜索文件和操作...",
"toggle_command_palette": "切换命令面板"
}

View file

@ -1,452 +1,452 @@
{
"about": "關於",
"about_vision_text": "我們中的許多人都擁有數個雲帳戶這些雲帳戶中的硬碟未備份且資料面臨丟失的風險。我們依賴諸如Google照片和iCloud之類的雲服務但這些服務容量有限且幾乎不能在不同的服務及作業系統間進行互通。相簿不應僅限於某個裝置生態系統內或被用於收集廣告數據。它們應該是與作業系統無關永久且屬於個人所有的。我們創建的數據是我們的遺產它們將比我們存活得更久——開源技術是確保我們對定義我們生活的數據擁有絕對控制權的唯一方式並且無限規模地延伸。",
"about_vision_title": "遠景",
"accept": "接受",
"accessed": "訪問的",
"account": "帳號",
"actions": "行動",
"add": "新增",
"add_device": "新增裝置",
"add_library": "新增圖書館",
"add_location": "新增位置",
"add_location_description": "通過將您喜歡的位置添加到您的個人圖書館可增強您的Spacedrive體驗實現無縫高效的文件管理。",
"add_location_tooltip": "添加路徑作為索引位置",
"add_locations": "添加位置",
"add_tag": "添加標籤",
"advanced_settings": "高級設置",
"all_jobs_have_been_cleared": "所有工作已被清除。",
"alpha_release_description": "我們很高興您嘗試Spacedrive現在以Alpha版發布展示激動人心的新功能。與任何初始版本一樣這個版本可能包含一些錯誤。我們誠懇請求您協助我們在Discord頻道報告您遇到的任何問題。您寶貴的反饋將極大地促進用戶體驗的提升。",
"alpha_release_title": "Alpha版本",
"appearance": "外觀",
"appearance_description": "改變您的客戶端外觀。",
"archive": "存檔",
"archive_coming_soon": "存檔位置功能即將開通...",
"archive_info": "將數據從圖書館中提取出來作為存檔,用途是保存位置文件夾結構。",
"are_you_sure": "您確定嗎?",
"assign_tag": "指定標籤",
"audio_preview_not_supported": "不支援音頻預覽。",
"back": "返回",
"backups": "備份",
"backups_description": "管理您的Spacedrive數據庫備份。",
"blur_effects": "模糊效果",
"blur_effects_description": "某些組件將應用模糊效果。",
"cancel": "取消",
"cancel_selection": "取消選擇",
"celcius": "攝氏",
"change": "更改",
"changelog": "變更日誌",
"changelog_page_description": "了解我們正在創建的酷炫新功能",
"changelog_page_title": "變更日誌",
"checksum": "校驗和",
"clear_finished_jobs": "清除已完成的工作",
"client": "客戶端",
"close": "關閉",
"close_current_tab": "關閉目前分頁",
"clouds": "雲",
"color": "顏色",
"coming_soon": "即將推出",
"compress": "壓縮",
"configure_location": "配置位置",
"connected": "已連接",
"contacts": "聯繫人",
"contacts_description": "在Spacedrive中管理您的聯繫人。",
"content_id": "內容 ID",
"continue": "繼續",
"convert_to": "轉換為",
"coordinates": "坐標",
"copied": "已複製",
"copy": "複製",
"copy_as_path": "作為路徑複製",
"copy_object": "複製物件",
"copy_path_to_clipboard": "複製路徑到剪貼簿",
"copy_success": "項目已複製",
"create": "創建",
"create_library": "創建圖書館",
"create_library_description": "圖書館是一個安全的、設備上的數據庫。您的文件保留在原地圖書館對其進行目錄整理並存儲所有Spacedrive相關數據。",
"create_new_library": "創建新圖書館",
"create_new_library_description": "圖書館是一個安全的、設備上的數據庫。您的文件保留在原地圖書館對其進行目錄整理並存儲所有Spacedrive相關數據。",
"create_new_tag": "創建新標籤",
"create_new_tag_description": "選擇一個名稱和顏色。",
"create_tag": "創建標籤",
"created": "已創建",
"creating_library": "正在創建圖書館...",
"creating_your_library": "正在創建您的圖書館",
"current": "當前",
"current_directory": "當前目錄",
"current_directory_with_descendants": "當前目錄及其子目錄",
"custom": "自定義",
"cut": "剪切",
"cut_object": "剪下物件",
"cut_success": "剪下項目",
"data_folder": "數據文件夾",
"debug_mode": "除錯模式",
"debug_mode_description": "在應用程序中啟用額外的除錯功能。",
"default": "默認",
"delete": "刪除",
"delete_dialog_title": "刪除 {{prefix}} {{type}}",
"delete_info": "這不會刪除磁盤上的實際文件夾。預覽媒體將被刪除。",
"delete_library": "刪除圖書館",
"delete_library_description": "這是永久性的您的文件不會被刪除只有Spacedrive圖書館會被刪除。",
"delete_location": "刪除位置",
"delete_location_description": "刪除一個位置還將從Spacedrive數據庫中移除與其相關的所有文件文件本身不會被刪除。",
"delete_object": "刪除物件",
"delete_rule": "刪除規則",
"delete_tag": "刪除標籤",
"delete_tag_description": "您確定要刪除這個標籤嗎?這不能撤銷,並且帶有標籤的文件將被取消鏈接。",
"delete_warning": "警告:這將永遠刪除您的{{type}},我們還沒有垃圾箱...",
"description": "描述",
"deselect": "取消選擇",
"details": "詳情",
"devices": "設備",
"devices_coming_soon_tooltip": "即將推出這個alpha版本不包括圖書館同步它將很快準備好。",
"dialog": "對話框",
"dialog_shortcut_description": "執行操作和操作",
"direction": "方向",
"disabled": "已禁用",
"display_formats": "顯示格式",
"display_name": "顯示名稱",
"distance": "距離",
"done": "完成",
"dont_show_again": "不再顯示",
"double_click_action": "雙擊操作",
"download": "下載",
"duplicate": "複製",
"duplicate_object": "複製物件",
"duplicate_success": "項目已複製",
"edit": "編輯",
"edit_library": "編輯圖書館",
"edit_location": "編輯位置",
"enable_networking": "啟用網絡",
"encrypt": "加密",
"encrypt_library": "加密圖書館",
"encrypt_library_coming_soon": "圖書館加密即將推出",
"encrypt_library_description": "為這個圖書館啟用加密這將僅加密Spacedrive數據庫而不是文件本身。",
"ephemeral_notice_browse": "直接從您的設備瀏覽您的文件和文件夾。",
"ephemeral_notice_consider_indexing": "考慮索引您的本地位置,以實現更快更高效的探索。",
"erase": "擦除",
"erase_a_file": "擦除文件",
"erase_a_file_description": "配置您的擦除設置。",
"error": "錯誤",
"error_loading_original_file": "加載原始文件出錯",
"expand": "展開",
"explorer": "資源管理器",
"explorer_shortcut_description": "導覽和與檔案系統互動",
"export": "導出",
"export_library": "導出圖書館",
"export_library_coming_soon": "導出圖書館即將推出",
"export_library_description": "將此圖書館導出到文件。",
"extensions": "擴展",
"extensions_description": "安裝擴展以擴展此客戶端的功能。",
"fahrenheit": "華氏",
"failed_to_cancel_job": "取消工作失敗。",
"failed_to_clear_all_jobs": "清除所有工作失敗。",
"failed_to_copy_file": "複製檔案失敗",
"failed_to_copy_file_path": "複製文件路徑失敗",
"failed_to_cut_file": "剪下檔案失敗",
"failed_to_duplicate_file": "複製文件失敗",
"failed_to_generate_checksum": "生成校驗和失敗",
"failed_to_generate_labels": "生成標籤失敗",
"failed_to_generate_thumbnails": "生成縮略圖失敗",
"failed_to_load_tags": "加載標籤失敗",
"failed_to_pause_job": "暫停工作失敗。",
"failed_to_reindex_location": "重新索引位置失敗",
"failed_to_remove_file_from_recents": "從最近文件中移除文件失敗",
"failed_to_remove_job": "移除工作失敗。",
"failed_to_resume_job": "恢復工作失敗。",
"failed_to_update_location_settings": "更新位置設置失敗",
"favorite": "最愛",
"favorites": "收藏夾",
"feedback": "回饋",
"feedback_is_required": "需要回饋",
"feedback_login_description": "登入可讓我們回應您的回饋",
"feedback_placeholder": "您的回饋...",
"feedback_toast_error_message": "提交回饋時發生錯誤。請重試。",
"file_already_exist_in_this_location": "該位置已存在該檔案",
"file_indexing_rules": "文件索引規則",
"filters": "篩選器",
"forward": "前進",
"full_disk_access": "完全磁碟訪問",
"full_disk_access_description": "為了提供最佳體驗,我們需要訪問您的磁碟以索引您的文件。您的文件僅供您使用。",
"full_reindex": "完全重新索引",
"full_reindex_info": "對此位置進行完整重新掃描。",
"general": "通用",
"general_settings": "通用設置",
"general_settings_description": "與此客戶端相關的一般設置。",
"general_shortcut_description": "一般使用快捷鍵",
"generatePreviewMedia_label": "為這個位置生成預覽媒體",
"generate_checksums": "生成校驗和",
"go_back": "返回",
"got_it": "知道了",
"grid_gap": "間隙",
"grid_view": "網格視圖",
"grid_view_notice_description": "使用網格視圖來視覺化你的文件概覽。這個視圖以縮略圖形式顯示你的文件和文件夾,讓你快速辨認你正在尋找的文件。",
"hidden_label": "隱藏位置和其內容從概要分類、搜索和標籤中顯示,除非啟用了“顯示隱藏項目”。",
"hide_in_library_search": "在圖書館搜索中隱藏",
"hide_in_library_search_description": "在搜索整個圖書館時從結果中隱藏帶有此標籤的文件。",
"hide_in_sidebar": "在側邊欄中隱藏",
"hide_in_sidebar_description": "防止此標籤在應用的側欄中顯示。",
"hide_location_from_view": "從視圖中隱藏位置和內容",
"home": "主頁",
"image_labeler_ai_model": "圖像標籤識別AI模型",
"image_labeler_ai_model_description": "用於識別圖像中對象的模型。模型越大,準確性越高,但速度越慢。",
"import": "導入",
"indexed": "已索引",
"indexer_rule_reject_allow_label": "默認情況下,索引器規則作為拒絕列表,導致與其匹配的任何文件被排除在外。啟用此選項將其變為允許列表,使位置僅索引符合其規定規則的文件。",
"indexer_rules": "索引器規則",
"indexer_rules_info": "索引器規則允許您使用通配符指定要忽略的路徑。",
"install": "安裝",
"install_update": "安裝更新",
"installed": "已安裝",
"item_size": "項目大小",
"item_with_count_one": "{{count}} 项目",
"item_with_count_other": "{{count}} 项目",
"job_has_been_canceled": "工作已取消。",
"job_has_been_paused": "工作已暫停。",
"job_has_been_removed": "工作已移除。",
"job_has_been_resumed": "工作已恢復。",
"join": "加入",
"join_discord": "加入Discord",
"join_library": "加入圖書館",
"join_library_description": "圖書館是一個安全的、設備上的數據庫。您的文件保留在原地圖書館對其進行目錄整理並存儲所有Spacedrive相關數據。",
"key": "鍵",
"key_manager": "密鑰管理器",
"key_manager_description": "創建加密密鑰,掛載和卸載您的密鑰,即時查看解密後的文件。",
"keybinds": "鍵綁定",
"keybinds_description": "查看和管理客戶端鍵綁定",
"keys": "鍵",
"kilometers": "公里",
"labels": "標籤",
"language": "語言",
"language_description": "更改Spacedrive界面的語言",
"learn_more_about_telemetry": "了解更多關於遙測的信息",
"libraries": "圖書館",
"libraries_description": "數據庫包含所有圖書館數據和文件元數據。",
"library": "圖書館",
"library_name": "圖書館名稱",
"library_overview": "圖書館概覽",
"library_settings": "圖書館設置",
"library_settings_description": "與當前活躍圖書館相關的通用設置。",
"list_view": "列表視圖",
"list_view_notice_description": "使用列表視圖輕鬆導航您的文件和文件夾。這個視圖以簡單、有組織的列表格式顯示您的文件,幫助您快速定位和訪問所需文件。",
"loading": "加載中",
"local": "本地",
"local_locations": "本地位置",
"local_node": "本地節點",
"location_connected_tooltip": "正在監視位置是否有變化",
"location_disconnected_tooltip": "正在監視位置是否有變化",
"location_display_name_info": "這個位置的名稱,這是在側邊欄中顯示的內容。不會重命名磁碟上的實際文件夾。",
"location_is_already_linked": "位置已經被連接",
"location_path_info": "這是位置的路徑,這是在磁碟上存儲文件的位置。",
"location_type": "位置類型",
"location_type_managed": "Spacedrive將為你分類文件。如果位置不是空的將創建一個“spacedrive”文件夾。",
"location_type_normal": "內容將按原樣被索引,新文件不會自動排序。",
"location_type_replica": "這個位置是另一個位置的副本,其內容將自動同步。",
"locations": "位置",
"locations_description": "管理您的存儲位置。",
"lock": "鎖定",
"log_in_with_browser": "使用瀏覽器登入",
"log_out": "登出",
"logged_in_as": "已登入為{{email}}",
"logout": "登出",
"manage_library": "管理圖書館",
"managed": "已管理",
"media": "媒體",
"media_view_context": "媒體視圖上下文",
"media_view_notice_description": "輕鬆發現照片和視頻,媒體視圖會從當前位置(包括子目錄)顯示結果。",
"meet_contributors_behind_spacedrive": "認識Spacedrive背後的貢獻者",
"meet_title": "會見 {{title}}",
"miles": "英里",
"mode": "模式",
"modified": "已修改",
"more": "更多",
"more_actions": "更多操作...",
"more_info": "更多信息",
"move_back_within_quick_preview": "在快速預覽中向後移動",
"move_files": "移動文件",
"move_forward_within_quick_preview": "在快速預覽中向前移動",
"name": "名稱",
"navigate_back": "後退",
"navigate_backwards": "向後導覽",
"navigate_files_downwards": "向下導覽檔案",
"navigate_files_leftwards": "向左導覽檔案",
"navigate_files_rightwards": "向右導覽檔案",
"navigate_files_upwards": "向上導覽檔案",
"navigate_forward": "前進",
"navigate_forwards": "向前導覽",
"navigate_to_settings_page": "導覽至設定頁面",
"network": "網絡",
"network_page_description": "您局域網上的其他Spacedrive節點將顯示在這裡以及您預設的OS網絡掛載。",
"networking": "網絡",
"networking_port": "網絡端口",
"networking_port_description": "Spacedrive的點對點網絡通信使用的端口。除非您有嚴格的防火牆否則應該禁用此功能。不要暴露於互聯網",
"new_folder": "新文件夾",
"new_library": "新圖書館",
"new_location": "新位置",
"new_location_web_description": "由於您正在使用Spacedrive的瀏覽器版本您將目前需要指定一個位於遠端節點本地的目錄的絕對URL。",
"new_tab": "新標籤",
"new_tag": "新標籤",
"no_files_found_here": "這裡未找到文件",
"no_jobs": "沒有工作。",
"no_tag_selected": "沒有選擇標籤",
"no_tags": "沒有標籤",
"node_name": "節點名稱",
"no_nodes_found": "找不到 Spacedrive 節點.",
"nodes": "節點",
"nodes_description": "管理連接到此圖書館的節點。一個節點是在設備或服務器上運行的Spacedrive後端實例。每個節點帶有數據庫副本通過點對點連接實時同步。",
"none": "無",
"normal": "常規",
"not_you": "不是您?",
"number_of_passes": "通過次數",
"object_id": "對象ID",
"offline": "離線",
"online": "在線",
"open": "打開",
"open_file": "打開文件",
"open_new_location_once_added": "添加後打開新位置",
"open_new_tab": "開啟新分頁",
"open_object": "開啟物件",
"open_object_from_quick_preview_in_native_file_manager": "在快速預覽中以本機檔案管理器開啟物件",
"open_settings": "打開設置",
"open_with": "打開方式",
"or": "或者",
"overview": "概覽",
"page": "頁面",
"page_shortcut_description": "應用程式中的不同頁面",
"pair": "配對",
"pairing_with_node": "正在與{{node}}配對",
"paste": "貼上",
"paste_object": "貼上物件",
"paste_success": "已貼上項目",
"path": "路徑",
"path_copied_to_clipboard_description": "位置{{location}}的路徑已復製到剪貼簿。",
"path_copied_to_clipboard_title": "路徑已複製到剪貼簿",
"pause": "暫停",
"peers": "對等",
"people": "人們",
"privacy": "隱私",
"privacy_description": "Spacedrive是為隱私而構建的這就是為什麼我們是開源的並且首先在本地。所以我們將非常清楚地告知我們分享了哪些數據。",
"quick_preview": "快速預覽",
"quick_view": "快速查看",
"recent_jobs": "最近的工作",
"recents": "最近的文件",
"regen_labels": "重新生成標籤",
"regen_thumbnails": "重新生成縮略圖",
"regenerate_thumbs": "重新生成縮略圖",
"reindex": "重新索引",
"reject": "拒絕",
"reload": "重載",
"remove": "移除",
"remove_from_recents": "從最近的文件中移除",
"rename": "重命名",
"rename_object": "重新命名物件",
"replica": "複寫",
"rescan_directory": "重新掃描目錄",
"rescan_location": "重新掃描位置",
"reset": "重置",
"resources": "資源",
"restore": "恢復",
"resume": "恢復",
"retry": "重試",
"reveal_in_native_file_manager": "在本機檔案管理器中顯示",
"revel_in_browser": "在{{browser}}中顯示",
"running": "運行",
"save": "保存",
"save_changes": "保存變更",
"saved_searches": "已保存的搜索",
"search_extensions": "搜索擴展",
"secure_delete": "安全刪除",
"security": "安全",
"security_description": "保護您的客戶端安全。",
"send": "發送",
"settings": "設置",
"setup": "設定",
"share": "分享",
"share_anonymous_usage": "分享匿名使用情況",
"share_anonymous_usage_description": "分享完全匿名的遙測數據,以幫助開發人員改進應用程序",
"share_bare_minimum": "分享最低限度",
"share_bare_minimum_description": "僅分享我是Spacedrive的活躍用戶和一些技術細節",
"sharing": "共享",
"sharing_description": "管理誰可以訪問您的圖書館。",
"show_details": "顯示詳情",
"show_hidden_files": "顯示隱藏文件",
"show_object_size": "顯示對象大小",
"show_path_bar": "顯示路徑條",
"show_slider": "顯示滑塊",
"size": "大小",
"skip_login": "跳過登錄",
"sort_by": "排序依據",
"spacedrive_account": "Spacedrive 帳戶",
"spacedrive_cloud": "Spacedrive 雲端",
"spacedrive_cloud_description": "Spacedrive 始終以本地為先,但我們將來會提供自己的選擇性雲端服務。目前,身份驗證僅用於反饋功能,否則不需要。",
"spacedrop_a_file": "Spacedrop文件",
"spacedrop_description": "與在您的網路上運行 Spacedrive 的裝置立即分享。",
"spacedrop_already_progress": "Spacedrop 已在進行中",
"spacedrop_rejected": "Spacedrop 被拒絕",
"square_thumbnails": "方形縮略圖",
"star_on_github": "在GitHub上給星",
"stop": "停止",
"success": "成功",
"support": "支持",
"switch_to_grid_view": "切換到網格視圖",
"switch_to_list_view": "切換到清單視圖",
"switch_to_media_view": "切換到媒體視圖",
"switch_to_next_tab": "切換到下一個分頁",
"switch_to_previous_tab": "切換到上一個分頁",
"sync": "同步",
"syncPreviewMedia_label": "將此位置的預覽媒體與您的設備同步",
"sync_description": "管理Spacedrive如何進行同步。",
"sync_with_library": "與圖書館同步",
"sync_with_library_description": "如果啟用,您的鍵綁定將與圖書館同步,否則它們僅適用於此客戶端。",
"tags": "標籤",
"tags_description": "管理您的標籤。",
"telemetry_description": "切換到ON為開發者提供詳細的使用情況和遙測數據以增強應用程序。切換到OFF只發送基本數據您的活動狀態應用版本核心版本以及平台例如移動網絡或桌面。",
"telemetry_title": "分享額外的遙測和使用情況數據",
"temperature": "溫度",
"thank_you_for_your_feedback": "感謝您的回饋!",
"thumbnailer_cpu_usage": "縮略圖處理器使用情況",
"thumbnailer_cpu_usage_description": "限制縮略圖製作工具在後台處理時可以使用多少CPU。",
"toggle_all": "切換全部",
"toggle_hidden_files": "切換顯示隱藏檔案",
"toggle_image_slider_within_quick_preview": "切換快速預覽中的圖片滑塊",
"toggle_inspector": "切換檢查器",
"toggle_job_manager": "切換工作管理器",
"toggle_metadata": "切換元數據",
"toggle_path_bar": "切換顯示路徑列",
"toggle_quick_preview": "切換快速預覽",
"type": "類型",
"ui_animations": "UI動畫",
"ui_animations_description": "對話框和其它UI元素在打開和關閉時會有動畫效果。",
"unnamed_location": "未命名位置",
"usage": "使用情況",
"usage_description": "您的圖書館使用情況和硬體資訊。",
"value": "值",
"video_preview_not_supported": "不支援視頻預覽。",
"want_to_do_this_later": "想要稍後進行這操作嗎?",
"website": "網站",
"your_account": "您的帳戶",
"your_account_description": "Spacedrive帳戶和資訊。",
"your_local_network": "您的本地網路",
"your_privacy": "您的隱私",
"new_update_available": "新版本可用!",
"version": "版本 {{version}}",
"downloading_update": "下載更新",
"update_downloaded": "更新已下載。重新啟動 Spacedrive 進行安裝",
"failed_to_download_update": "無法下載更新",
"updated_successfully": "成功更新,您目前使用的是版本 {{version}}",
"view_changes": "檢視變更",
"update": "更新",
"ask_spacedrive": "詢問 Spacedrive",
"close_command_palette": "關閉命令面板",
"disconnected": "已斷開連接",
"failed_to_rescan_location": "重新掃描位置失敗",
"go_to_labels": "轉到標籤",
"go_to_location": "前往地點",
"go_to_overview": "前往概覽",
"go_to_recents": "前往最近的內容",
"go_to_settings": "前往設定",
"go_to_tag": "轉到標籤",
"no_labels": "無標籤",
"search_for_files_and_actions": "搜尋文件和操作...",
"toggle_command_palette": "切換命令面板"
"about": "關於",
"about_vision_text": "我們中的許多人都擁有數個雲帳戶這些雲帳戶中的硬碟未備份且資料面臨丟失的風險。我們依賴諸如Google照片和iCloud之類的雲服務但這些服務容量有限且幾乎不能在不同的服務及作業系統間進行互通。相簿不應僅限於某個裝置生態系統內或被用於收集廣告數據。它們應該是與作業系統無關永久且屬於個人所有的。我們創建的數據是我們的遺產它們將比我們存活得更久——開源技術是確保我們對定義我們生活的數據擁有絕對控制權的唯一方式並且無限規模地延伸。",
"about_vision_title": "遠景",
"accept": "接受",
"accessed": "訪問的",
"account": "帳號",
"actions": "行動",
"add": "新增",
"add_device": "新增裝置",
"add_library": "新增圖書館",
"add_location": "新增位置",
"add_location_description": "通過將您喜歡的位置添加到您的個人圖書館可增強您的Spacedrive體驗實現無縫高效的文件管理。",
"add_location_tooltip": "添加路徑作為索引位置",
"add_locations": "添加位置",
"add_tag": "添加標籤",
"advanced_settings": "高級設置",
"all_jobs_have_been_cleared": "所有工作已被清除。",
"alpha_release_description": "我們很高興您嘗試Spacedrive現在以Alpha版發布展示激動人心的新功能。與任何初始版本一樣這個版本可能包含一些錯誤。我們誠懇請求您協助我們在Discord頻道報告您遇到的任何問題。您寶貴的反饋將極大地促進用戶體驗的提升。",
"alpha_release_title": "Alpha版本",
"appearance": "外觀",
"appearance_description": "改變您的客戶端外觀。",
"archive": "存檔",
"archive_coming_soon": "存檔位置功能即將開通...",
"archive_info": "將數據從圖書館中提取出來作為存檔,用途是保存位置文件夾結構。",
"are_you_sure": "您確定嗎?",
"assign_tag": "指定標籤",
"audio_preview_not_supported": "不支援音頻預覽。",
"back": "返回",
"backups": "備份",
"backups_description": "管理您的Spacedrive數據庫備份。",
"blur_effects": "模糊效果",
"blur_effects_description": "某些組件將應用模糊效果。",
"cancel": "取消",
"cancel_selection": "取消選擇",
"celcius": "攝氏",
"change": "更改",
"changelog": "變更日誌",
"changelog_page_description": "了解我們正在創建的酷炫新功能",
"changelog_page_title": "變更日誌",
"checksum": "校驗和",
"clear_finished_jobs": "清除已完成的工作",
"client": "客戶端",
"close": "關閉",
"close_current_tab": "關閉目前分頁",
"clouds": "雲",
"color": "顏色",
"coming_soon": "即將推出",
"compress": "壓縮",
"configure_location": "配置位置",
"connected": "已連接",
"contacts": "聯繫人",
"contacts_description": "在Spacedrive中管理您的聯繫人。",
"content_id": "內容 ID",
"continue": "繼續",
"convert_to": "轉換為",
"coordinates": "坐標",
"copied": "已複製",
"copy": "複製",
"copy_as_path": "作為路徑複製",
"copy_object": "複製物件",
"copy_path_to_clipboard": "複製路徑到剪貼簿",
"copy_success": "項目已複製",
"create": "創建",
"create_library": "創建圖書館",
"create_library_description": "圖書館是一個安全的、設備上的數據庫。您的文件保留在原地圖書館對其進行目錄整理並存儲所有Spacedrive相關數據。",
"create_new_library": "創建新圖書館",
"create_new_library_description": "圖書館是一個安全的、設備上的數據庫。您的文件保留在原地圖書館對其進行目錄整理並存儲所有Spacedrive相關數據。",
"create_new_tag": "創建新標籤",
"create_new_tag_description": "選擇一個名稱和顏色。",
"create_tag": "創建標籤",
"created": "已創建",
"creating_library": "正在創建圖書館...",
"creating_your_library": "正在創建您的圖書館",
"current": "當前",
"current_directory": "當前目錄",
"current_directory_with_descendants": "當前目錄及其子目錄",
"custom": "自定義",
"cut": "剪切",
"cut_object": "剪下物件",
"cut_success": "剪下項目",
"data_folder": "數據文件夾",
"debug_mode": "除錯模式",
"debug_mode_description": "在應用程序中啟用額外的除錯功能。",
"default": "默認",
"delete": "刪除",
"delete_dialog_title": "刪除 {{prefix}} {{type}}",
"delete_info": "這不會刪除磁盤上的實際文件夾。預覽媒體將被刪除。",
"delete_library": "刪除圖書館",
"delete_library_description": "這是永久性的您的文件不會被刪除只有Spacedrive圖書館會被刪除。",
"delete_location": "刪除位置",
"delete_location_description": "刪除一個位置還將從Spacedrive數據庫中移除與其相關的所有文件文件本身不會被刪除。",
"delete_object": "刪除物件",
"delete_rule": "刪除規則",
"delete_tag": "刪除標籤",
"delete_tag_description": "您確定要刪除這個標籤嗎?這不能撤銷,並且帶有標籤的文件將被取消鏈接。",
"delete_warning": "警告:這將永遠刪除您的{{type}},我們還沒有垃圾箱...",
"description": "描述",
"deselect": "取消選擇",
"details": "詳情",
"devices": "設備",
"devices_coming_soon_tooltip": "即將推出這個alpha版本不包括圖書館同步它將很快準備好。",
"dialog": "對話框",
"dialog_shortcut_description": "執行操作和操作",
"direction": "方向",
"disabled": "已禁用",
"display_formats": "顯示格式",
"display_name": "顯示名稱",
"distance": "距離",
"done": "完成",
"dont_show_again": "不再顯示",
"double_click_action": "雙擊操作",
"download": "下載",
"duplicate": "複製",
"duplicate_object": "複製物件",
"duplicate_success": "項目已複製",
"edit": "編輯",
"edit_library": "編輯圖書館",
"edit_location": "編輯位置",
"enable_networking": "啟用網絡",
"encrypt": "加密",
"encrypt_library": "加密圖書館",
"encrypt_library_coming_soon": "圖書館加密即將推出",
"encrypt_library_description": "為這個圖書館啟用加密這將僅加密Spacedrive數據庫而不是文件本身。",
"ephemeral_notice_browse": "直接從您的設備瀏覽您的文件和文件夾。",
"ephemeral_notice_consider_indexing": "考慮索引您的本地位置,以實現更快更高效的探索。",
"erase": "擦除",
"erase_a_file": "擦除文件",
"erase_a_file_description": "配置您的擦除設置。",
"error": "錯誤",
"error_loading_original_file": "加載原始文件出錯",
"expand": "展開",
"explorer": "資源管理器",
"explorer_shortcut_description": "導覽和與檔案系統互動",
"export": "導出",
"export_library": "導出圖書館",
"export_library_coming_soon": "導出圖書館即將推出",
"export_library_description": "將此圖書館導出到文件。",
"extensions": "擴展",
"extensions_description": "安裝擴展以擴展此客戶端的功能。",
"fahrenheit": "華氏",
"failed_to_cancel_job": "取消工作失敗。",
"failed_to_clear_all_jobs": "清除所有工作失敗。",
"failed_to_copy_file": "複製檔案失敗",
"failed_to_copy_file_path": "複製文件路徑失敗",
"failed_to_cut_file": "剪下檔案失敗",
"failed_to_duplicate_file": "複製文件失敗",
"failed_to_generate_checksum": "生成校驗和失敗",
"failed_to_generate_labels": "生成標籤失敗",
"failed_to_generate_thumbnails": "生成縮略圖失敗",
"failed_to_load_tags": "加載標籤失敗",
"failed_to_pause_job": "暫停工作失敗。",
"failed_to_reindex_location": "重新索引位置失敗",
"failed_to_remove_file_from_recents": "從最近文件中移除文件失敗",
"failed_to_remove_job": "移除工作失敗。",
"failed_to_resume_job": "恢復工作失敗。",
"failed_to_update_location_settings": "更新位置設置失敗",
"favorite": "最愛",
"favorites": "收藏夾",
"feedback": "回饋",
"feedback_is_required": "需要回饋",
"feedback_login_description": "登入可讓我們回應您的回饋",
"feedback_placeholder": "您的回饋...",
"feedback_toast_error_message": "提交回饋時發生錯誤。請重試。",
"file_already_exist_in_this_location": "該位置已存在該檔案",
"file_indexing_rules": "文件索引規則",
"filters": "篩選器",
"forward": "前進",
"full_disk_access": "完全磁碟訪問",
"full_disk_access_description": "為了提供最佳體驗,我們需要訪問您的磁碟以索引您的文件。您的文件僅供您使用。",
"full_reindex": "完全重新索引",
"full_reindex_info": "對此位置進行完整重新掃描。",
"general": "通用",
"general_settings": "通用設置",
"general_settings_description": "與此客戶端相關的一般設置。",
"general_shortcut_description": "一般使用快捷鍵",
"generatePreviewMedia_label": "為這個位置生成預覽媒體",
"generate_checksums": "生成校驗和",
"go_back": "返回",
"got_it": "知道了",
"grid_gap": "間隙",
"grid_view": "網格視圖",
"grid_view_notice_description": "使用網格視圖來視覺化你的文件概覽。這個視圖以縮略圖形式顯示你的文件和文件夾,讓你快速辨認你正在尋找的文件。",
"hidden_label": "隱藏位置和其內容從概要分類、搜索和標籤中顯示,除非啟用了“顯示隱藏項目”。",
"hide_in_library_search": "在圖書館搜索中隱藏",
"hide_in_library_search_description": "在搜索整個圖書館時從結果中隱藏帶有此標籤的文件。",
"hide_in_sidebar": "在側邊欄中隱藏",
"hide_in_sidebar_description": "防止此標籤在應用的側欄中顯示。",
"hide_location_from_view": "從視圖中隱藏位置和內容",
"home": "主頁",
"image_labeler_ai_model": "圖像標籤識別AI模型",
"image_labeler_ai_model_description": "用於識別圖像中對象的模型。模型越大,準確性越高,但速度越慢。",
"import": "導入",
"indexed": "已索引",
"indexer_rule_reject_allow_label": "默認情況下,索引器規則作為拒絕列表,導致與其匹配的任何文件被排除在外。啟用此選項將其變為允許列表,使位置僅索引符合其規定規則的文件。",
"indexer_rules": "索引器規則",
"indexer_rules_info": "索引器規則允許您使用通配符指定要忽略的路徑。",
"install": "安裝",
"install_update": "安裝更新",
"installed": "已安裝",
"item_size": "項目大小",
"item_with_count_one": "{{count}} 项目",
"item_with_count_other": "{{count}} 项目",
"job_has_been_canceled": "工作已取消。",
"job_has_been_paused": "工作已暫停。",
"job_has_been_removed": "工作已移除。",
"job_has_been_resumed": "工作已恢復。",
"join": "加入",
"join_discord": "加入Discord",
"join_library": "加入圖書館",
"join_library_description": "圖書館是一個安全的、設備上的數據庫。您的文件保留在原地圖書館對其進行目錄整理並存儲所有Spacedrive相關數據。",
"key": "鍵",
"key_manager": "密鑰管理器",
"key_manager_description": "創建加密密鑰,掛載和卸載您的密鑰,即時查看解密後的文件。",
"keybinds": "鍵綁定",
"keybinds_description": "查看和管理客戶端鍵綁定",
"keys": "鍵",
"kilometers": "公里",
"labels": "標籤",
"language": "語言",
"language_description": "更改Spacedrive界面的語言",
"learn_more_about_telemetry": "了解更多關於遙測的信息",
"libraries": "圖書館",
"libraries_description": "數據庫包含所有圖書館數據和文件元數據。",
"library": "圖書館",
"library_name": "圖書館名稱",
"library_overview": "圖書館概覽",
"library_settings": "圖書館設置",
"library_settings_description": "與當前活躍圖書館相關的通用設置。",
"list_view": "列表視圖",
"list_view_notice_description": "使用列表視圖輕鬆導航您的文件和文件夾。這個視圖以簡單、有組織的列表格式顯示您的文件,幫助您快速定位和訪問所需文件。",
"loading": "加載中",
"local": "本地",
"local_locations": "本地位置",
"local_node": "本地節點",
"location_connected_tooltip": "正在監視位置是否有變化",
"location_disconnected_tooltip": "正在監視位置是否有變化",
"location_display_name_info": "這個位置的名稱,這是在側邊欄中顯示的內容。不會重命名磁碟上的實際文件夾。",
"location_is_already_linked": "位置已經被連接",
"location_path_info": "這是位置的路徑,這是在磁碟上存儲文件的位置。",
"location_type": "位置類型",
"location_type_managed": "Spacedrive將為你分類文件。如果位置不是空的將創建一個“spacedrive”文件夾。",
"location_type_normal": "內容將按原樣被索引,新文件不會自動排序。",
"location_type_replica": "這個位置是另一個位置的副本,其內容將自動同步。",
"locations": "位置",
"locations_description": "管理您的存儲位置。",
"lock": "鎖定",
"log_in_with_browser": "使用瀏覽器登入",
"log_out": "登出",
"logged_in_as": "已登入為{{email}}",
"logout": "登出",
"manage_library": "管理圖書館",
"managed": "已管理",
"media": "媒體",
"media_view_context": "媒體視圖上下文",
"media_view_notice_description": "輕鬆發現照片和視頻,媒體視圖會從當前位置(包括子目錄)顯示結果。",
"meet_contributors_behind_spacedrive": "認識Spacedrive背後的貢獻者",
"meet_title": "會見 {{title}}",
"miles": "英里",
"mode": "模式",
"modified": "已修改",
"more": "更多",
"more_actions": "更多操作...",
"more_info": "更多信息",
"move_back_within_quick_preview": "在快速預覽中向後移動",
"move_files": "移動文件",
"move_forward_within_quick_preview": "在快速預覽中向前移動",
"name": "名稱",
"navigate_back": "後退",
"navigate_backwards": "向後導覽",
"navigate_files_downwards": "向下導覽檔案",
"navigate_files_leftwards": "向左導覽檔案",
"navigate_files_rightwards": "向右導覽檔案",
"navigate_files_upwards": "向上導覽檔案",
"navigate_forward": "前進",
"navigate_forwards": "向前導覽",
"navigate_to_settings_page": "導覽至設定頁面",
"network": "網絡",
"network_page_description": "您局域網上的其他Spacedrive節點將顯示在這裡以及您預設的OS網絡掛載。",
"networking": "網絡",
"networking_port": "網絡端口",
"networking_port_description": "Spacedrive的點對點網絡通信使用的端口。除非您有嚴格的防火牆否則應該禁用此功能。不要暴露於互聯網",
"new_folder": "新文件夾",
"new_library": "新圖書館",
"new_location": "新位置",
"new_location_web_description": "由於您正在使用Spacedrive的瀏覽器版本您將目前需要指定一個位於遠端節點本地的目錄的絕對URL。",
"new_tab": "新標籤",
"new_tag": "新標籤",
"no_files_found_here": "這裡未找到文件",
"no_jobs": "沒有工作。",
"no_tag_selected": "沒有選擇標籤",
"no_tags": "沒有標籤",
"node_name": "節點名稱",
"no_nodes_found": "找不到 Spacedrive 節點.",
"nodes": "節點",
"nodes_description": "管理連接到此圖書館的節點。一個節點是在設備或服務器上運行的Spacedrive後端實例。每個節點帶有數據庫副本通過點對點連接實時同步。",
"none": "無",
"normal": "常規",
"not_you": "不是您?",
"number_of_passes": "通過次數",
"object_id": "對象ID",
"offline": "離線",
"online": "在線",
"open": "打開",
"open_file": "打開文件",
"open_new_location_once_added": "添加後打開新位置",
"open_new_tab": "開啟新分頁",
"open_object": "開啟物件",
"open_object_from_quick_preview_in_native_file_manager": "在快速預覽中以本機檔案管理器開啟物件",
"open_settings": "打開設置",
"open_with": "打開方式",
"or": "或者",
"overview": "概覽",
"page": "頁面",
"page_shortcut_description": "應用程式中的不同頁面",
"pair": "配對",
"pairing_with_node": "正在與{{node}}配對",
"paste": "貼上",
"paste_object": "貼上物件",
"paste_success": "已貼上項目",
"path": "路徑",
"path_copied_to_clipboard_description": "位置{{location}}的路徑已復製到剪貼簿。",
"path_copied_to_clipboard_title": "路徑已複製到剪貼簿",
"pause": "暫停",
"peers": "對等",
"people": "人們",
"privacy": "隱私",
"privacy_description": "Spacedrive是為隱私而構建的這就是為什麼我們是開源的並且首先在本地。所以我們將非常清楚地告知我們分享了哪些數據。",
"quick_preview": "快速預覽",
"quick_view": "快速查看",
"recent_jobs": "最近的工作",
"recents": "最近的文件",
"regen_labels": "重新生成標籤",
"regen_thumbnails": "重新生成縮略圖",
"regenerate_thumbs": "重新生成縮略圖",
"reindex": "重新索引",
"reject": "拒絕",
"reload": "重載",
"remove": "移除",
"remove_from_recents": "從最近的文件中移除",
"rename": "重命名",
"rename_object": "重新命名物件",
"replica": "複寫",
"rescan_directory": "重新掃描目錄",
"rescan_location": "重新掃描位置",
"reset": "重置",
"resources": "資源",
"restore": "恢復",
"resume": "恢復",
"retry": "重試",
"reveal_in_native_file_manager": "在本機檔案管理器中顯示",
"revel_in_browser": "在{{browser}}中顯示",
"running": "運行",
"save": "保存",
"save_changes": "保存變更",
"saved_searches": "已保存的搜索",
"search_extensions": "搜索擴展",
"secure_delete": "安全刪除",
"security": "安全",
"security_description": "保護您的客戶端安全。",
"send": "發送",
"settings": "設置",
"setup": "設定",
"share": "分享",
"share_anonymous_usage": "分享匿名使用情況",
"share_anonymous_usage_description": "分享完全匿名的遙測數據,以幫助開發人員改進應用程序",
"share_bare_minimum": "分享最低限度",
"share_bare_minimum_description": "僅分享我是Spacedrive的活躍用戶和一些技術細節",
"sharing": "共享",
"sharing_description": "管理誰可以訪問您的圖書館。",
"show_details": "顯示詳情",
"show_hidden_files": "顯示隱藏文件",
"show_object_size": "顯示對象大小",
"show_path_bar": "顯示路徑條",
"show_slider": "顯示滑塊",
"size": "大小",
"skip_login": "跳過登錄",
"sort_by": "排序依據",
"spacedrive_account": "Spacedrive 帳戶",
"spacedrive_cloud": "Spacedrive 雲端",
"spacedrive_cloud_description": "Spacedrive 始終以本地為先,但我們將來會提供自己的選擇性雲端服務。目前,身份驗證僅用於反饋功能,否則不需要。",
"spacedrop_a_file": "Spacedrop文件",
"spacedrop_description": "與在您的網路上運行 Spacedrive 的裝置立即分享。",
"spacedrop_already_progress": "Spacedrop 已在進行中",
"spacedrop_rejected": "Spacedrop 被拒絕",
"square_thumbnails": "方形縮略圖",
"star_on_github": "在GitHub上給星",
"stop": "停止",
"success": "成功",
"support": "支持",
"switch_to_grid_view": "切換到網格視圖",
"switch_to_list_view": "切換到清單視圖",
"switch_to_media_view": "切換到媒體視圖",
"switch_to_next_tab": "切換到下一個分頁",
"switch_to_previous_tab": "切換到上一個分頁",
"sync": "同步",
"syncPreviewMedia_label": "將此位置的預覽媒體與您的設備同步",
"sync_description": "管理Spacedrive如何進行同步。",
"sync_with_library": "與圖書館同步",
"sync_with_library_description": "如果啟用,您的鍵綁定將與圖書館同步,否則它們僅適用於此客戶端。",
"tags": "標籤",
"tags_description": "管理您的標籤。",
"telemetry_description": "切換到ON為開發者提供詳細的使用情況和遙測數據以增強應用程序。切換到OFF只發送基本數據您的活動狀態應用版本核心版本以及平台例如移動網絡或桌面。",
"telemetry_title": "分享額外的遙測和使用情況數據",
"temperature": "溫度",
"thank_you_for_your_feedback": "感謝您的回饋!",
"thumbnailer_cpu_usage": "縮略圖處理器使用情況",
"thumbnailer_cpu_usage_description": "限制縮略圖製作工具在後台處理時可以使用多少CPU。",
"toggle_all": "切換全部",
"toggle_hidden_files": "切換顯示隱藏檔案",
"toggle_image_slider_within_quick_preview": "切換快速預覽中的圖片滑塊",
"toggle_inspector": "切換檢查器",
"toggle_job_manager": "切換工作管理器",
"toggle_metadata": "切換元數據",
"toggle_path_bar": "切換顯示路徑列",
"toggle_quick_preview": "切換快速預覽",
"type": "類型",
"ui_animations": "UI動畫",
"ui_animations_description": "對話框和其它UI元素在打開和關閉時會有動畫效果。",
"unnamed_location": "未命名位置",
"usage": "使用情況",
"usage_description": "您的圖書館使用情況和硬體資訊。",
"value": "值",
"video_preview_not_supported": "不支援視頻預覽。",
"want_to_do_this_later": "想要稍後進行這操作嗎?",
"website": "網站",
"your_account": "您的帳戶",
"your_account_description": "Spacedrive帳戶和資訊。",
"your_local_network": "您的本地網路",
"your_privacy": "您的隱私",
"new_update_available": "新版本可用!",
"version": "版本 {{version}}",
"downloading_update": "下載更新",
"update_downloaded": "更新已下載。重新啟動 Spacedrive 進行安裝",
"failed_to_download_update": "無法下載更新",
"updated_successfully": "成功更新,您目前使用的是版本 {{version}}",
"view_changes": "檢視變更",
"update": "更新",
"ask_spacedrive": "詢問 Spacedrive",
"close_command_palette": "關閉命令面板",
"disconnected": "已斷開連接",
"failed_to_rescan_location": "重新掃描位置失敗",
"go_to_labels": "轉到標籤",
"go_to_location": "前往地點",
"go_to_overview": "前往概覽",
"go_to_recents": "前往最近的內容",
"go_to_settings": "前往設定",
"go_to_tag": "轉到標籤",
"no_labels": "無標籤",
"search_for_files_and_actions": "搜尋文件和操作...",
"toggle_command_palette": "切換命令面板"
}

View file

@ -1,3 +1,4 @@
/* eslint-disable react-hooks/rules-of-hooks */
import {
createElement,
createContext as createReactContext,

View file

@ -14,7 +14,7 @@ interface ContextMenuProps extends RadixCM.MenuContentProps {
export const contextMenuClassNames = clsx(
'z-50 max-h-[calc(100vh-20px)] overflow-y-auto',
'my-2 min-w-[12rem] max-w-[16rem] py-0.5',
'my-2 min-w-48 max-w-64 py-0.5',
'cool-shadow bg-menu',
'border border-menu-line',
'cursor-default select-none rounded-md',

View file

@ -212,7 +212,7 @@ export function Dialog<S extends FieldValues>({
show ? (
<RDialog.Portal forceMount>
<AnimatedDialogOverlay
className="z-49 fixed inset-0 m-[1px] grid place-items-center overflow-y-auto rounded-xl bg-app/50"
className="z-49 fixed inset-0 m-px grid place-items-center overflow-y-auto rounded-xl bg-app/50"
style={{
opacity: styles.opacity
}}

View file

@ -77,7 +77,7 @@ export const Button = forwardRef<HTMLButtonElement, UI.ButtonProps>(
{children}
<span className="grow" />
<CaretDown
className="ml-2 w-[12px] shrink-0 translate-y-[1px] text-ink-dull transition-transform ui-open:translate-y-[-1px] ui-open:rotate-180 group-radix-state-open:translate-y-[-1px] group-radix-state-open:rotate-180"
className="ml-2 w-[12px] shrink-0 translate-y-px text-ink-dull transition-transform ui-open:-translate-y-px ui-open:rotate-180 group-radix-state-open:-translate-y-px group-radix-state-open:rotate-180"
aria-hidden="true"
/>
</UI.Button>

View file

@ -58,7 +58,7 @@ export const Popover = ({ popover, trigger, children, disabled, className, ...pr
onCloseAutoFocus={(event) => event.preventDefault()}
className={clsx(
'flex flex-col',
'z-50 m-2 min-w-[11rem]',
'z-50 m-2 min-w-44',
'cursor-default select-none rounded-lg',
'text-left text-sm text-ink',
'bg-app-overlay',